ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/TemplateClass.java
(Generate patch)

Comparing projects/cms/source/TemplateClass.java (file contents):
Revision 1.1 by ajm, Wed Nov 8 18:16:42 2000 UTC vs.
Revision 1.8 by ajm, Fri Dec 8 11:44:34 2000 UTC

# Line 1 | Line 1
1   //---PACKAGE DECLARATION---
2  
3   //---IMPORTS---
4 + import uk.ac.ukc.iscream.util.NameFormat;
5 + import uk.ac.ukc.iscream.util.ReferenceManager;
6  
7   /**
8   * <ONE LINE DESCRIPTION>
9   * <DETAILED DESCRIPTION>
10   *
9 * $Log$
10 * Revision 1.1  2000/11/08 18:16:42  ajm
11 * initial checkin of template
12 *
13 *
11   * @author  $Author$
12   * @version $Id$
13   */
14   class TemplateClass {
15 +
16   //---FINAL ATTRIBUTES---
17 <    final String REVISION = "$Revision$";
17 >
18 >    /**
19 >     * The current CVS revision of this class
20 >     */
21 >    public static final String REVISION = "$Revision$";
22 >    
23   //---STATIC METHODS---
24  
25   //---CONSTRUCTORS---
# Line 24 | Line 27 | class TemplateClass {
27   //---PUBLIC METHODS---
28  
29      /**
30 <     * Overrides the {@link #java.lang.Object.toString() Object.toString()}
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.NameFormat 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 this.getClass().getName() + REVISION;
39 >        return NameFormat.getName(
40 >            _name,
41 >            this.getClass().getName(),
42 >            REVISION);
43      }
44  
45   //---PRIVATE METHODS---
# Line 36 | Line 47 | class TemplateClass {
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 +    _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 +    _logger = ReferenceManager.getLogger();
67  
68   //---STATIC ATTRIBUTES---
69  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines