/** This is a documentation template for a class. Include a brief description of the class at the top, along with the following information. @author Joe Code @version 1.0 COP2253 Project #: 0 File Name: DocTemplate.java */ public class DocTemplate { /** Include a description for each method, including all parameters and return values. @param aName just a demo parameter @return returns a "test" string */ public String test (String aName) { return "test"; } }