// package name goes here (if this class is part of a package)

// imports go here

/**
 * Description of the class goes here.  Explain what the class does.
 */
public class ClassDefTemplate {

    // Constant definitions go here
    
    // Enumerations go here
    
    // Declare instance variables here (don't initialize, just declare)
    

    /*
     * Implement constructors and methods here 
     * Include javadoc, heading, and method body
     * for each constructor and method
     */
    
     // Sample Constructor
    /**
     * Construct a ClassDefTemplate object with (such-and-such characteristics)
     */
    public ClassDefTemplate() {
        // Intialize ALL instance variables here
    }
       
    // Sample method:
    /**
     * Generate a String with labels and values for name and age.
     * @param name the name to include in the String
     * @param age the age to include in the String
     * @return a String representaion of name and age - including labels
     */
    public String sampleMethod(String name, int age) {
        String rval = "";
        rval += "Name: " + name;
        rval += " Age: " + age;
        return rval;
    }
    
    
    // method toString
    // method equals
    // main method (only needed if this class definition is also a program)
}
