ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/TemplateClass.java
Revision: 1.2
Committed: Wed Nov 8 18:18:07 2000 UTC (23 years, 6 months ago) by ajm
Branch: MAIN
Changes since 1.1: +6 -4 lines
Log Message:
made small (very) layout change

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 * $Log: TemplateClass.java,v $
10     * Revision 1.1 2000/11/08 18:16:42 ajm4
11     * initial checkin of template
12 ajm 1.1 *
13 ajm 1.2 * @author $Author: ajm4 $
14     * @version $Id: TemplateClass.java,v 1.1 2000/11/08 18:16:42 ajm4 Exp $
15 ajm 1.1 */
16     class TemplateClass {
17     //---FINAL ATTRIBUTES---
18 ajm 1.2 final String REVISION = "$Revision: 1.1 $";
19 ajm 1.1 //---STATIC METHODS---
20    
21     //---CONSTRUCTORS---
22    
23     //---PUBLIC METHODS---
24    
25     /**
26     * Overrides the {@link #java.lang.Object.toString() Object.toString()}
27     * method to provide clean logging (every class should have this).
28     */
29     public String toString() {
30     return this.getClass().getName() + REVISION;
31     }
32    
33     //---PRIVATE METHODS---
34    
35     //---ACCESSOR/MUTATOR METHODS---
36    
37     //---ATTRIBUTES---
38    
39     //---STATIC ATTRIBUTES---
40    
41     }