dlr         02/03/01 09:28:59

  Modified:    src/java/org/apache/stratum/jcs/auxiliary/lateral/javagroups/utils
                        JGSocketOpener.java
  Log:
  Broke long lines and tweaked method JavaDoc.
  
  Revision  Changes    Path
  1.3       +14 -5     
jakarta-turbine-stratum/src/java/org/apache/stratum/jcs/auxiliary/lateral/javagroups/utils/JGSocketOpener.java
  
  Index: JGSocketOpener.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-stratum/src/java/org/apache/stratum/jcs/auxiliary/lateral/javagroups/utils/JGSocketOpener.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -u -r1.2 -r1.3
  --- JGSocketOpener.java       26 Feb 2002 06:03:58 -0000      1.2
  +++ JGSocketOpener.java       1 Mar 2002 17:28:59 -0000       1.3
  @@ -71,7 +71,7 @@
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Aaron Smuts</a>
    * @created January 15, 2002
  - * @version $Id: JGSocketOpener.java,v 1.2 2002/02/26 06:03:58 asmuts Exp $
  + * @version $Id: JGSocketOpener.java,v 1.3 2002/03/01 17:28:59 dlr Exp $
    */
   public class JGSocketOpener implements Runnable
   {
  @@ -85,8 +85,11 @@
   
       private String groupName;
   
  -    /** Constructor for the SocketOpener object */
  -    public static Channel openSocket( ILateralCacheAttributes lca, int timeOut, 
String groupName )
  +    /**
  +     * Constructor for the <code>SocketOpener</code> object.
  +     */
  +    public static Channel openSocket( ILateralCacheAttributes lca,
  +                                      int timeOut, String groupName )
       {
           JGSocketOpener opener = new JGSocketOpener( lca, groupName );
           Thread t = new Thread( opener );
  @@ -117,7 +120,10 @@
       }
   
   
  -    /** Main processing method for the SocketOpener object */
  +    /**
  +     * Main processing method for the <code>SocketOpener</code>
  +     * object.
  +     */
       public void run()
       {
           try
  @@ -139,7 +145,10 @@
           }
       }
   
  -    /** Gets the socket attribute of the SocketOpener object */
  +    /**
  +     * Gets the socket attribute of the <code>SocketOpener</code>
  +     * object.
  +     */
       public Channel getSocket()
       {
           return javagroups;
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to