fix javadoc
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 9 Apr 2008 11:25:59 +0000 (11:25 +0000)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 9 Apr 2008 11:25:59 +0000 (11:25 +0000)
git-svn-id: http://trooper/svn/projects/jSite/trunk@661 c3eda9e8-030b-0410-8277-bc7414b0a119

src/net/pterodactylus/util/fcp/FcpListener.java

index 2c72280..23ea9ff 100644 (file)
@@ -36,7 +36,7 @@ import net.pterodactylus.util.fcp.message.SSKKeypair;
 public interface FcpListener extends EventListener {
 
        /**
-        * Notifies listeners that a “NodeHello” message was received.
+        * Notifies a listener that a “NodeHello” message was received.
         * 
         * @param fcpConnection
         *            The connection that received the message
@@ -46,8 +46,8 @@ public interface FcpListener extends EventListener {
        public void receivedNodeHello(FcpConnection fcpConnection, NodeHello nodeHello);
 
        /**
-        * Notifies all listeners that a “CloseConnectionDuplicateClientName”
-        * message was received.
+        * Notifies a listener that a “CloseConnectionDuplicateClientName” message
+        * was received.
         * 
         * @param fcpConnection
         *            The connection that received the message
@@ -57,7 +57,7 @@ public interface FcpListener extends EventListener {
        public void receivedCloseConnectionDuplicateClientName(FcpConnection fcpConnection, CloseConnectionDuplicateClientName closeConnectionDuplicateClientName);
 
        /**
-        * Notifies all listeners that a “SSKKeypair” message was received.
+        * Notifies a listener that a “SSKKeypair” message was received.
         * 
         * @param fcpConnection
         *            The connection that received themessage
@@ -67,7 +67,7 @@ public interface FcpListener extends EventListener {
        public void receivedSSKKeypair(FcpConnection fcpConnection, SSKKeypair sskKeypair);
 
        /**
-        * Notifies all listeners that a “Peer” message was received.
+        * Notifies a listener that a “Peer” message was received.
         * 
         * @param fcpConnection
         *            The connection that received the message
@@ -87,7 +87,7 @@ public interface FcpListener extends EventListener {
        public void receivedEndListPeers(FcpConnection fcpConnection, EndListPeers endListPeers);
 
        /**
-        * Notifies listeners that a message has been received. This method is only
+        * Notifies a listener that a message has been received. This method is only
         * called if {@link FcpConnection#handleMessage(FcpMessage)} does not
         * recognize the message. Should that ever happen, please file a bug report!
         *