// Any package statements go here. // Any import statements go here. /** * Project #??? * CS 2334, Section 010 * Date Goes Here *

* A comment describing the class fully. *

* @author * @version 1.0 */ public class ClassNameGoesHere { /* Static Variables */ /** A description of the variable goes here. */ // Variable declaration goes here. /* Instance Variables */ /** A description of the variable goes here. */ // Variable declaration goes here. /** * A comment describing the class constructor. *

* Algorithm:
* 1. Step 1
*

* @param name description * @return description * @exception name description * *
Conditions: *
PRE - List any preconditions here. *
POST - List any postconditions here. */ public ClassNameGoesHere() { // TODO code class initialization logic here } /* * Accessor Methods */ /** * A descriptive comment goes here. *

* Algorithm:
* 1. Step 1
*

* @param name description * @return description * @exception name description * *
Conditions: *
PRE - List any preconditions here. *
POST - List any postconditions here. */ public void accessorMethodNameGoesHere() { // TODO code method logic here } /* * Mutator Methods */ /** * A descriptive comment goes here. *

* Algorithm:
* 1. Step 1
*

* @param name description * @return description * @exception name description * *
Conditions: *
PRE - List any preconditions here. *
POST - List any postconditions here. */ public void mutatorMethodNameGoesHere() { // TODO code method logic here } /** * A descriptive comment goes here. *

* Algorithm:
* 1. Step 1
*

* @param name description * @exception name description * *
Conditions: *
PRE - List any preconditions here. *
POST - List any postconditions here. */ public static void main(String[] args) { // TODO code application logic here } }