package <package name>;

import <package>;

/**
 * <Class description>
 * @author <author name>
 */
public class <class name>
       extends <superclass>
       implements <interfaces>
{
/* =======================================================================
       CONSTRUCTORS
   =======================================================================
*/

/* =======================================================================
       PUBLIC INTERFACE
   =======================================================================
*/

/* --Public class constants-------------------------------------------- */

/* --Getters----------------------------------------------------------- */

/* --Setters----------------------------------------------------------- */

/* --Common object interface------------------------------------------- */

   /**
    * Determines whether the specified object is equal to this <class name>.
    * The result is true if and only if <...>.
    *
    * @param anObject the object to compare this <class name> against.
    * @return true if <...>; false otherwise.
    */
   public boolean equals(Object anObject)
   {
   }

   /**
    * Returns a string representation of this <class name>, which includes
    * <...>.
    *
    * @return a string representation of this <class name>.
    */
   public String toString()
   {
   }

/* =======================================================================
       HELPER METHODS
   =======================================================================
*/

/* =======================================================================
       INSTANCE VARIABLES & CLASS VARIABLES
   =======================================================================
*/

/* =======================================================================
       TEST DRIVER
   =======================================================================
*/
   public static void main(String[] args)
   {
   }
}
