Developer's Daily Java Education - Test Projects
  front page | java | perl | unix | DevDirectory
   
Front Page
Java
Education
   
 


/** 
 *  This is a fine example of good documentation.
 *  @author Alvin J. Alexander
 *  @version 1.0
 */
public class GoodDocs {
  /** 
     This is a fine method.
     @return Something void.
     @param one This is the first param.
     @param two This is the second param.
   */
   public void fineMethod(int one, int two) {
   }


}
  
Copyright © 1998-2003 DevDaily Interactive, Inc.
All Rights Reserved.