Author: sebb
Date: Thu Mar 31 18:03:31 2011
New Revision: 1087394

URL: http://svn.apache.org/viewvc?rev=1087394&view=rev
Log:
Javadoc

Modified:
    
commons/proper/net/trunk/src/main/java/org/apache/commons/net/SocketClient.java

Modified: 
commons/proper/net/trunk/src/main/java/org/apache/commons/net/SocketClient.java
URL: 
http://svn.apache.org/viewvc/commons/proper/net/trunk/src/main/java/org/apache/commons/net/SocketClient.java?rev=1087394&r1=1087393&r2=1087394&view=diff
==============================================================================
--- 
commons/proper/net/trunk/src/main/java/org/apache/commons/net/SocketClient.java 
(original)
+++ 
commons/proper/net/trunk/src/main/java/org/apache/commons/net/SocketClient.java 
Thu Mar 31 18:03:31 2011
@@ -684,16 +684,18 @@ public abstract class SocketClient
      * Adds a ProtocolCommandListener. 
      *
      * @param listener  The ProtocolCommandListener to add.
+     * @since 3.0
      */
     public void addProtocolCommandListener(ProtocolCommandListener listener) {
         getCommandSupport().addProtocolCommandListener(listener);
     }
 
-    /***
+    /**
      * Removes a ProtocolCommandListener.
      *
      * @param listener  The ProtocolCommandListener to remove.
-     ***/
+     * @since 3.0
+     */
     public void removeProtocolCommandListener(ProtocolCommandListener 
listener) {
         getCommandSupport().removeProtocolCommandListener(listener);
     }
@@ -703,6 +705,7 @@ public abstract class SocketClient
      * 
      * @param replyCode the code extracted from the reply
      * @param reply the full reply text
+     * @since 3.0
      */
     protected void fireReplyReceived(int replyCode, String reply) {
         if (getCommandSupport().getListenerCount() > 0) {


Reply via email to