From 5eb9146cb853c8d1c46e8cf0ec839eec1a7e4068 Mon Sep 17 00:00:00 2001 From: Matt Tucker Date: Mon, 9 Aug 2004 21:15:42 +0000 Subject: [PATCH] Fixed Javadoc issues. git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2356 b35dd754-fafc-0310-a699-88a17e54d16e --- .../jivesoftware/smackx/ServiceDiscoveryManager.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/org/jivesoftware/smackx/ServiceDiscoveryManager.java b/source/org/jivesoftware/smackx/ServiceDiscoveryManager.java index 2fe4a5b6d..c381e740d 100644 --- a/source/org/jivesoftware/smackx/ServiceDiscoveryManager.java +++ b/source/org/jivesoftware/smackx/ServiceDiscoveryManager.java @@ -189,7 +189,7 @@ public class ServiceDiscoveryManager { /** * Returns the NodeInformationProvider responsible for providing information - * (i.e. items) related to a given node or null if none.

+ * (ie items) related to a given node or null if none.

* * 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. @@ -204,7 +204,7 @@ public class ServiceDiscoveryManager { /** * 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 * responsible for providing the requested information.

* @@ -212,8 +212,8 @@ public class ServiceDiscoveryManager { * NodeInformationProvider will provide information about the rooms where the user has joined. * * @param node the node whose items will be provided by the NodeInformationProvider. - * @return the NodeInformationProvider responsible for providing items related - * to the node. + * @param listener the NodeInformationProvider responsible for providing items related + * to the node. */ public void setNodeInformationProvider(String node, NodeInformationProvider listener) { nodeInformationProviders.put(node, listener); @@ -221,7 +221,7 @@ public class ServiceDiscoveryManager { /** * 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. * * In MUC, a node could be 'http://jabber.org/protocol/muc#rooms' which means that the