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.8 by ajm, Fri Dec 8 11:44:34 2000 UTC vs.
Revision 1.9 by ajm, Tue Dec 12 18:30:01 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;
4 > import uk.ac.ukc.iscream.util.*;
5  
6   /**
7   * <ONE LINE DESCRIPTION>
# Line 30 | Line 29 | class TemplateClass {
29       * Overrides the {@link java.lang.Object#toString() Object.toString()}
30       * method to provide clean logging (every class should have this).
31       *
32 <     * This uses the uk.ac.ukc.iscream.util.NameFormat class
32 >     * This uses the uk.ac.ukc.iscream.util.FormatName class
33       * to format the toString()
34       *
35       * @return the name of this class and its CVS revision
36       */
37      public String toString() {
38 <        return NameFormat.getName(
38 >        return FormatName.getName(
39              _name,
40 <            this.getClass().getName(),
40 >            getClass().getName(),
41              REVISION);
42      }
43  
# Line 57 | Line 56 | class TemplateClass {
56       * can be placed here.  This name could also
57       * be changed to null for utility classes.
58       */
59 <    _name = <!THIS SHOULD CALL A STATIC NAME IN THE COMPONENT CLASS FOR THIS OBJECT!>;
59 >    private String _name = <!THIS SHOULD CALL A STATIC NAME IN THE COMPONENT CLASS FOR THIS OBJECT!>;
60  
61      /**
62       * This holds a reference to the
63       * system logger that is being used.
64       */
65 <    _logger = ReferenceManager.getLogger();
65 >    private Logger _logger = ReferenceManager.getInstance().getLogger();
66  
67   //---STATIC ATTRIBUTES---
68  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines