You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2004/01/06 00:56:49 UTC

cvs commit: jakarta-commons/net/src/java/org/apache/commons/net/telnet SimpleOptionHandler.java Telnet.java TelnetClient.java TelnetOptionHandler.java

scohen      2004/01/05 15:56:49

  Modified:    net/src/java/org/apache/commons/net/ftp FTPClient.java
               net/src/java/org/apache/commons/net/ftp/parser
                        DefaultFTPFileEntryParserFactory.java
                        NTFTPEntryParser.java OS2FTPEntryParser.java
                        UnixFTPEntryParser.java VMSFTPEntryParser.java
               net/src/java/org/apache/commons/net/telnet
                        SimpleOptionHandler.java Telnet.java
                        TelnetClient.java TelnetOptionHandler.java
  Log:
  cleanup javadoc errors
  
  Revision  Changes    Path
  1.22      +3 -1      jakarta-commons/net/src/java/org/apache/commons/net/ftp/FTPClient.java
  
  Index: FTPClient.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/net/src/java/org/apache/commons/net/ftp/FTPClient.java,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- FTPClient.java	5 Jan 2004 22:11:12 -0000	1.21
  +++ FTPClient.java	5 Jan 2004 23:56:49 -0000	1.22
  @@ -2164,7 +2164,9 @@
        * @param parser
        * @param pathname
        * 
  -     * @return 
  +     * @return The list of file information contained in the given path in
  +     *         the format determined by<code> parserKey </code>parameter.
  +     *         
        * @exception IOException
        * @since 5 Jan 2004
        * @deprecated use listFiles(String parserKey, String pathname) instead
  
  
  
  1.3       +3 -4      jakarta-commons/net/src/java/org/apache/commons/net/ftp/parser/DefaultFTPFileEntryParserFactory.java
  
  Index: DefaultFTPFileEntryParserFactory.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/net/src/java/org/apache/commons/net/ftp/parser/DefaultFTPFileEntryParserFactory.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DefaultFTPFileEntryParserFactory.java	5 Jan 2004 22:11:12 -0000	1.2
  +++ DefaultFTPFileEntryParserFactory.java	5 Jan 2004 23:56:49 -0000	1.3
  @@ -64,7 +64,7 @@
    * if no other implementation is specified as a system
    * property.
    * 
  - * @see org.apache.commons.net.ftp.FTPClient.getFileList()
  + * @see org.apache.commons.net.ftp.FTPClient.listFiles()
    */
   public class DefaultFTPFileEntryParserFactory 
   implements FTPFileEntryParserFactory 
  @@ -83,9 +83,8 @@
        * the known parsers.  This comparison is <b>case-insensitive</b>.
        * The intent here is where possible, to select as keys strings
        * which are returned by the SYST command on the systems which
  -     * the corresponding parser successfully parses.  This will 
  -     * enable this factory to be used in a future auto-detection
  -     * system. 
  +     * the corresponding parser successfully parses.  This enables 
  +     * this factory to be used in the auto-detection system. 
        * <p/>
        * @param key    should be a fully qualified classname corresponding to
        *               a class implementing the FTPFileEntryParser interface<br/>
  
  
  
  1.8       +2 -2      jakarta-commons/net/src/java/org/apache/commons/net/ftp/parser/NTFTPEntryParser.java
  
  Index: NTFTPEntryParser.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/net/src/java/org/apache/commons/net/ftp/parser/NTFTPEntryParser.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- NTFTPEntryParser.java	2 Jan 2004 03:39:05 -0000	1.7
  +++ NTFTPEntryParser.java	5 Jan 2004 23:56:49 -0000	1.8
  @@ -59,7 +59,7 @@
   import org.apache.commons.net.ftp.FTPFileListParserImpl;
   
   /**
  - * Implementation of FTPFileEntryParser and FTPFileListParser for NT Systems
  + * Implementation of FTPFileEntryParser and FTPFileListParser for NT Systems.
    * 
    * @author  <a href="Winston.Ojeda@qg.com">Winston Ojeda</a>
    * @author <a href="mailto:scohen@apache.org">Steve Cohen</a>
  
  
  
  1.7       +2 -2      jakarta-commons/net/src/java/org/apache/commons/net/ftp/parser/OS2FTPEntryParser.java
  
  Index: OS2FTPEntryParser.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/net/src/java/org/apache/commons/net/ftp/parser/OS2FTPEntryParser.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- OS2FTPEntryParser.java	2 Jan 2004 03:39:05 -0000	1.6
  +++ OS2FTPEntryParser.java	5 Jan 2004 23:56:49 -0000	1.7
  @@ -59,7 +59,7 @@
   import org.apache.commons.net.ftp.FTPFileListParserImpl;
   
   /**
  - * Implementation of FTPFileEntryParser and FTPFileListParser for OS2 Systems
  + * Implementation of FTPFileEntryParser and FTPFileListParser for OS2 Systems.
    * 
    * @author <a href="Winston.Ojeda@qg.com">Winston Ojeda</a>
    * @author <a href="mailto:scohen@apache.org">Steve Cohen</a>
  
  
  
  1.7       +3 -2      jakarta-commons/net/src/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParser.java
  
  Index: UnixFTPEntryParser.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/net/src/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParser.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- UnixFTPEntryParser.java	2 Jan 2004 03:39:05 -0000	1.6
  +++ UnixFTPEntryParser.java	5 Jan 2004 23:56:49 -0000	1.7
  @@ -59,7 +59,8 @@
   import org.apache.commons.net.ftp.FTPFileListParserImpl;
   
   /**
  - * Implementation FTPFileEntryParser and FTPFileListParser for standard Unix Systems
  + * Implementation FTPFileEntryParser and FTPFileListParser for standard 
  + * Unix Systems.
    * 
    * This class is based on the logic of Daniel Savarese's
    * DefaultFTPListParser, but adapted to use regular expressions and to fit the
  
  
  
  1.11      +2 -2      jakarta-commons/net/src/java/org/apache/commons/net/ftp/parser/VMSFTPEntryParser.java
  
  Index: VMSFTPEntryParser.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/net/src/java/org/apache/commons/net/ftp/parser/VMSFTPEntryParser.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- VMSFTPEntryParser.java	2 Jan 2004 03:39:05 -0000	1.10
  +++ VMSFTPEntryParser.java	5 Jan 2004 23:56:49 -0000	1.11
  @@ -73,7 +73,7 @@
   import org.apache.commons.net.ftp.FTPFileListParserImpl;
   
   /**
  - * Implementation FTPFileEntryParser and FTPFileListParser for VMS Systems
  + * Implementation FTPFileEntryParser and FTPFileListParser for VMS Systems.
    * This is a sample of VMS LIST output
    *   
    *  "1-JUN.LIS;1              9/9           2-JUN-1998 07:32:04  [GROUP,OWNER]    (RWED,RWED,RWED,RE)",
  
  
  
  1.3       +1 -1      jakarta-commons/net/src/java/org/apache/commons/net/telnet/SimpleOptionHandler.java
  
  Index: SimpleOptionHandler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/net/src/java/org/apache/commons/net/telnet/SimpleOptionHandler.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SimpleOptionHandler.java	2 Jan 2004 03:39:06 -0000	1.2
  +++ SimpleOptionHandler.java	5 Jan 2004 23:56:49 -0000	1.3
  @@ -56,7 +56,7 @@
   
   /***
    * Simple option handler that can be used for options
  - * that don't require subnegotiation
  + * that don't require subnegotiation.
    * <p>
    * @author Bruno D'Avanzo
    ***/
  
  
  
  1.9       +20 -20    jakarta-commons/net/src/java/org/apache/commons/net/telnet/Telnet.java
  
  Index: Telnet.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/net/src/java/org/apache/commons/net/telnet/Telnet.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Telnet.java	2 Jan 2004 03:39:06 -0000	1.8
  +++ Telnet.java	5 Jan 2004 23:56:49 -0000	1.9
  @@ -443,7 +443,7 @@
       }
   
       /***
  -     * Processes a DO request
  +     * Processes a DO request.
        * <p>
        * @throws IOException - Exception in I/O.
        * <p>
  @@ -541,7 +541,7 @@
       }
   
       /***
  -     * Processes a DONT request
  +     * Processes a DONT request.
        * <p>
        * @throws IOException - Exception in I/O.
        * <p>
  @@ -595,7 +595,7 @@
   
   
       /***
  -     * Processes a WILL request
  +     * Processes a WILL request.
        * <p>
        * @throws IOException - Exception in I/O.
        * <p>
  @@ -662,7 +662,7 @@
       }
   
       /***
  -     * Processes a WONT request
  +     * Processes a WONT request.
        * <p>
        * @throws IOException - Exception in I/O.
        * <p>
  @@ -718,7 +718,7 @@
   
       /* TERMINAL-TYPE option (start)*/
       /***
  -     * Processes a suboption negotiation
  +     * Processes a suboption negotiation.
        * <p>
        * @throws IOException - Exception in I/O.
        * <p>
  @@ -767,7 +767,7 @@
       }
   
       /***
  -     * Sends terminal type information
  +     * Sends terminal type information.
        * <p>
        * @throws IOException - Exception in I/O.
        ***/
  @@ -792,7 +792,7 @@
   
       /* open TelnetOptionHandler functionality (start)*/
       /***
  -     * Manages subnegotiation for Terminal Type
  +     * Manages subnegotiation for Terminal Type.
        * <p>
        * @throws IOException - Exception in I/O.
        * <p>
  @@ -856,7 +856,7 @@
       /* Code Section added for supporting AYT (end)*/
   
       /***
  -     * Called upon connection
  +     * Called upon connection.
        * <p>
        * @throws IOException - Exception in I/O.
        ***/
  @@ -918,7 +918,7 @@
       }
   
       /***
  -     * Sends a DO
  +     * Sends a DO.
        * <p>
        * @throws IOException - Exception in I/O.
        * <p>
  @@ -940,7 +940,7 @@
       }
   
       /***
  -     * Requests a DO
  +     * Requests a DO.
        * <p>
        * @throws IOException - Exception in I/O.
        * <p>
  @@ -960,7 +960,7 @@
       }
   
       /***
  -     * Sends a DONT
  +     * Sends a DONT.
        * <p>
        * @throws IOException - Exception in I/O.
        * <p>
  @@ -982,7 +982,7 @@
       }
   
       /***
  -     * Requests a DONT
  +     * Requests a DONT.
        * <p>
        * @throws IOException - Exception in I/O.
        * <p>
  @@ -1003,7 +1003,7 @@
   
   
       /***
  -     * Sends a WILL
  +     * Sends a WILL.
        * <p>
        * @throws IOException - Exception in I/O.
        * <p>
  @@ -1025,7 +1025,7 @@
       }
   
       /***
  -     * Requests a WILL
  +     * Requests a WILL.
        * <p>
        * @throws IOException - Exception in I/O.
        * <p>
  @@ -1045,7 +1045,7 @@
       }
   
       /***
  -     * Sends a WONT
  +     * Sends a WONT.
        * <p>
        * @throws IOException - Exception in I/O.
        * <p>
  @@ -1067,7 +1067,7 @@
       }
   
       /***
  -     * Requests a WONT
  +     * Requests a WONT.
        * <p>
        * @throws IOException - Exception in I/O.
        * <p>
  @@ -1087,7 +1087,7 @@
       }
   
       /***
  -     * Sends a byte
  +     * Sends a byte.
        * <p>
        * @throws IOException - Exception in I/O.
        * <p>
  @@ -1106,7 +1106,7 @@
   
       /* Code Section added for supporting AYT (start)*/
       /***
  -     * Sends an Are You There sequence and waits for the result
  +     * Sends an Are You There sequence and waits for the result.
        * <p>
        * @throws IOException - Exception in I/O.
        * @throws IllegalArgumentException - Illegal argument
  @@ -1297,7 +1297,7 @@
       }
   
       /***
  -     * Sends a read char on the spy stream
  +     * Sends a read char on the spy stream.
        * <p>
        * @param ch - character read from the session
        ***/
  @@ -1325,7 +1325,7 @@
       }
   
       /***
  -     * Sends a written char on the spy stream
  +     * Sends a written char on the spy stream.
        * <p>
        * @param ch - character written to the session
        ***/
  
  
  
  1.8       +1 -1      jakarta-commons/net/src/java/org/apache/commons/net/telnet/TelnetClient.java
  
  Index: TelnetClient.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/net/src/java/org/apache/commons/net/telnet/TelnetClient.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- TelnetClient.java	2 Jan 2004 03:39:06 -0000	1.7
  +++ TelnetClient.java	5 Jan 2004 23:56:49 -0000	1.8
  @@ -218,7 +218,7 @@
       /* Code Section added for supporting AYT (start)*/
   
       /***
  -     * Sends an Are You There sequence and waits for the result
  +     * Sends an Are You There sequence and waits for the result.
        * <p>
        * @throws InterruptedException
        * @throws IllegalArgumentException
  
  
  
  1.3       +4 -4      jakarta-commons/net/src/java/org/apache/commons/net/telnet/TelnetOptionHandler.java
  
  Index: TelnetOptionHandler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/net/src/java/org/apache/commons/net/telnet/TelnetOptionHandler.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- TelnetOptionHandler.java	2 Jan 2004 03:39:06 -0000	1.2
  +++ TelnetOptionHandler.java	5 Jan 2004 23:56:49 -0000	1.3
  @@ -139,7 +139,7 @@
   
       /***
        * Returns a boolean indicating whether to accept a DO
  -     * request coming from the other end
  +     * request coming from the other end.
        * <p>
        * @return true if a DO request shall be accepted.
        ***/
  @@ -150,7 +150,7 @@
   
       /***
        * Returns a boolean indicating whether to accept a WILL
  -     * request coming from the other end
  +     * request coming from the other end.
        * <p>
        * @return true if a WILL request shall be accepted.
        ***/
  @@ -204,7 +204,7 @@
       }
   
       /***
  -     * Tells this option whether to send a WILL request upon connection
  +     * Tells this option whether to send a WILL request upon connection.
        * <p>
        * @param init - if true, a WILL request will be sent upon subsequent
        * connections.
  @@ -215,7 +215,7 @@
       }
   
       /***
  -     * Tells this option whether to send a DO request upon connection
  +     * Tells this option whether to send a DO request upon connection.
        * <p>
        * @param init - if true, a DO request will be sent upon subsequent
        * connections.
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org