mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Fixed Javadoc issues.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2356 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
785e319e7c
commit
5eb9146cb8
1 changed files with 5 additions and 5 deletions
|
@ -189,7 +189,7 @@ public class ServiceDiscoveryManager {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the NodeInformationProvider responsible for providing information
|
* Returns the NodeInformationProvider responsible for providing information
|
||||||
* (i.e. items) related to a given node or <tt>null</null> if none.<p>
|
* (ie items) related to a given node or <tt>null</null> if none.<p>
|
||||||
*
|
*
|
||||||
* In MUC, a node could be 'http://jabber.org/protocol/muc#rooms' which means that the
|
* In MUC, a node could be 'http://jabber.org/protocol/muc#rooms' which means that the
|
||||||
* NodeInformationProvider will provide information about the rooms where the user has joined.
|
* NodeInformationProvider will provide information about the rooms where the user has joined.
|
||||||
|
@ -204,7 +204,7 @@ public class ServiceDiscoveryManager {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the NodeInformationProvider responsible for providing information
|
* Sets the NodeInformationProvider responsible for providing information
|
||||||
* (i.e. items) related to a given node. Every time this client receives a disco request
|
* (ie items) related to a given node. Every time this client receives a disco request
|
||||||
* regarding the items of a given node, the provider associated to that node will be the
|
* regarding the items of a given node, the provider associated to that node will be the
|
||||||
* responsible for providing the requested information.<p>
|
* responsible for providing the requested information.<p>
|
||||||
*
|
*
|
||||||
|
@ -212,8 +212,8 @@ public class ServiceDiscoveryManager {
|
||||||
* NodeInformationProvider will provide information about the rooms where the user has joined.
|
* NodeInformationProvider will provide information about the rooms where the user has joined.
|
||||||
*
|
*
|
||||||
* @param node the node whose items will be provided by the NodeInformationProvider.
|
* @param node the node whose items will be provided by the NodeInformationProvider.
|
||||||
* @return the NodeInformationProvider responsible for providing items related
|
* @param listener the NodeInformationProvider responsible for providing items related
|
||||||
* to the node.
|
* to the node.
|
||||||
*/
|
*/
|
||||||
public void setNodeInformationProvider(String node, NodeInformationProvider listener) {
|
public void setNodeInformationProvider(String node, NodeInformationProvider listener) {
|
||||||
nodeInformationProviders.put(node, listener);
|
nodeInformationProviders.put(node, listener);
|
||||||
|
@ -221,7 +221,7 @@ public class ServiceDiscoveryManager {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Removes the NodeInformationProvider responsible for providing information
|
* Removes the NodeInformationProvider responsible for providing information
|
||||||
* (i.e. items) related to a given node. This means that no more information will be
|
* (ie items) related to a given node. This means that no more information will be
|
||||||
* available for the specified node.
|
* available for the specified node.
|
||||||
*
|
*
|
||||||
* In MUC, a node could be 'http://jabber.org/protocol/muc#rooms' which means that the
|
* In MUC, a node could be 'http://jabber.org/protocol/muc#rooms' which means that the
|
||||||
|
|
Loading…
Reference in a new issue