Remember
that all Java source code files (hard copies and electronic copies) must
have a file header containing the following information: /*
* File: Main.java <substitute your file name here>
* Name: Dale Skrien <substitute your name here>
* Class: CS 361
* Project 1 <substitute the project or lab number here>
* Date: February 7 <substitute the due date here>
*/
Note
that this is a file header for my use in organizing the code that you turn
in. This file header does not replace the class headers, which should also
be included before each class definition in each file. The class header summarizes
the role of the class and lists the author of the class using the "@author"
Javadoc tag. The name given in the file header should always be your name, even
if you are not the author of the classes defined in the file. For example, any
files you turn in that I created for you should have my name as author and should
have your name at the top in the file header.