ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/TemplateClass.java
Revision: 1.11
Committed: Thu Mar 22 21:50:41 2001 UTC (23 years, 1 month ago) by tdb
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Changes since 1.10: +5 -5 lines
Log Message:
Forgot to change the package in this class.

File Contents

# Content
1 //---PACKAGE DECLARATION---
2
3 //---IMPORTS---
4 import uk.org.iscream.util.*;
5 import uk.org.iscream.componentmanager.*;
6
7 /**
8 * <ONE LINE DESCRIPTION>
9 * <DETAILED DESCRIPTION>
10 *
11 * @author $Author: tdb1 $
12 * @version $Id: TemplateClass.java,v 1.10 2001/01/18 23:14:39 tdb1 Exp $
13 */
14 class TemplateClass {
15
16 //---FINAL ATTRIBUTES---
17
18 /**
19 * The current CVS revision of this class
20 */
21 public static final String REVISION = "$Revision: 1.10 $";
22
23 //---STATIC METHODS---
24
25 //---CONSTRUCTORS---
26
27 //---PUBLIC METHODS---
28
29 /**
30 * Overrides the {@link java.lang.Object#toString() Object.toString()}
31 * method to provide clean logging (every class should have this).
32 *
33 * This uses the uk.ac.ukc.iscream.util.FormatName class
34 * to format the toString()
35 *
36 * @return the name of this class and its CVS revision
37 */
38 public String toString() {
39 return FormatName.getName(
40 _name,
41 getClass().getName(),
42 REVISION);
43 }
44
45 //---PRIVATE METHODS---
46
47 //---ACCESSOR/MUTATOR METHODS---
48
49 //---ATTRIBUTES---
50
51 /**
52 * This is the friendly identifier of the
53 * component this class is running in.
54 * eg, a Filter may be called "filter1",
55 * If this class does not have an owning
56 * component, a name from the configuration
57 * can be placed here. This name could also
58 * be changed to null for utility classes.
59 */
60 private String _name = <!THIS SHOULD CALL A STATIC NAME IN THE COMPONENT CLASS FOR THIS OBJECT!>;
61
62 /**
63 * This holds a reference to the
64 * system logger that is being used.
65 */
66 private Logger _logger = ReferenceManager.getInstance().getLogger();
67
68 //---STATIC ATTRIBUTES---
69
70 }