Subversion Repositories general

Compare Revisions

No changes between revisions

Ignore whitespace Rev 45 → Rev 46

/sun/xmleditor/trunk/src/TemplateFile.java
0,0 → 1,48
package src;
 
/** Insert a one-sentence description of the file here.
*
* This is a template for any java source file of the project. Its sole purpose is
* to demonstrate a standardized way of commenting java source files. Any new source
* file of the team project (group 5) can be created by making a copy of this file
* and overwriting all comment blocks while maintaining their general structure.
* Place some detailed text description concerning the general contents of the new
* file here.
*
* @version $Revision: 1.6 $
*
* Last modification: $Date: 2003/06/11 16:29:31 $
* /
 
/** Insert a one-sentence description of the class here.
*
* This class was written to demonstrate a possible class comment in front of a class
* definition. Insert a description of what the class is all about and supposed to do
* in general here.
*/
public class TemplateFile {
 
/** Insert a one-sentence description of the method here.
*
* This method was written to demonstrate a possible standard comment in front of
* a method definition. Insert a detailed description of what the method is supposed
* to do here. Always state full sentences!
*
* @param someParameter Place a description of the parameter meaning and possible
* content here.
* @param someFurtherParameter Do the same as for someParameter, i.e. make a comment
* on the parameter meaning and content here.
*
* @return Describe the meaning and possible content of the return value here.
*
* @author Dirk Stoessel
* @author Jane User
* @author John Doe
*
* Last Revision: 5-Jun-2003
*/
public int SomeMethod(int someParameter, int someFurtherParameter)
{
return someParameter;
}
}
Property changes:
Added: svn:keywords
+LastChangedDate LastChangedRevision LastChangedBy HeadURL Id
\ No newline at end of property