Introduction to Computer Programming
Replace the <text> with the appropriate description. Do not include the <> brackets.
Class comment header
/**
* <Description of the class> * References: <With whom you discussed this assignment and what resources you used.> *
* @author <name>
* @version <Created: date, Modified: date - description>
*/
Method comment headers
/** * <Description of the method> * * @param <parameter name> <description> * @return <description> */
Inline comments
// <inline comment>