ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/TemplateClass.java
Revision: 1.3
Committed: Wed Nov 8 19:15:05 2000 UTC (23 years, 6 months ago) by ajm
Branch: MAIN
Changes since 1.2: +11 -7 lines
Log Message:
removed presence of the log in the comments and made a few other minor changes

File Contents

# User Rev Content
1 ajm 1.1 //---PACKAGE DECLARATION---
2    
3     //---IMPORTS---
4    
5     /**
6     * <ONE LINE DESCRIPTION>
7     * <DETAILED DESCRIPTION>
8     *
9 ajm 1.2 * @author $Author: ajm4 $
10 ajm 1.3 * @version $Id: TemplateClass.java,v 1.2 2000/11/08 18:18:07 ajm4 Exp $
11 ajm 1.1 */
12     class TemplateClass {
13 ajm 1.3
14 ajm 1.1 //---FINAL ATTRIBUTES---
15 ajm 1.3
16     /**
17     * The current CVS revision of this class
18     */
19     public final String REVISION = "$Revision: 1.2 $";
20    
21 ajm 1.1 //---STATIC METHODS---
22    
23     //---CONSTRUCTORS---
24    
25     //---PUBLIC METHODS---
26    
27     /**
28     * Overrides the {@link #java.lang.Object.toString() Object.toString()}
29     * method to provide clean logging (every class should have this).
30 ajm 1.3 *
31     * @return the name of this class and its CVS revision
32 ajm 1.1 */
33     public String toString() {
34 ajm 1.3 return this.getClass().getName() + ":" + REVISION;
35 ajm 1.1 }
36    
37     //---PRIVATE METHODS---
38    
39     //---ACCESSOR/MUTATOR METHODS---
40    
41     //---ATTRIBUTES---
42    
43     //---STATIC ATTRIBUTES---
44    
45     }