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

Comparing projects/cms/source/util/uk/org/iscream/cms/util/XMLPacket.java (file contents):
Revision 1.8 by pjm2, Tue Dec 5 13:19:19 2000 UTC vs.
Revision 1.9 by ajm, Tue Dec 12 20:44:30 2000 UTC

# Line 26 | Line 26 | public class XMLPacket {
26  
27   //---PUBLIC METHODS---
28  
29 <    // Add a key and value pair to the HashMap.
29 >    /**
30 >     * Add a key and value pair to the HashMap.
31 >     */
32      public synchronized void addParam (String key, String value) {
33          _params.put(key, value);
34      }
35      
36 <    // Return the value associated with a particular key.
37 <    // Returns null if the key does not exist, although
38 <    // this should not necessarily indicate that the key
39 <    // does not exist.
36 >    /**
37 >     * Return the value associated with a particular key.
38 >     * Returns null if the key does not exist, although
39 >     * this should not necessarily indicate that the key
40 >     * does not exist.
41 >     */
42      public synchronized String getParam (String key) {
43          return (String) _params.get(key);
44      }
45      
46 <    // Return a Set of the keys in the HashMap.
46 >    /**
47 >     * Return a Set of the keys in the HashMap.
48 >     */
49      public synchronized Set getSet () {
50          return _params.keySet();
51      }
52      
53 <    // Find if a particular key exists in the HashMap.
53 >    /**
54 >     * Find if a particular key exists in the HashMap.
55 >     */
56      public synchronized boolean containsKey(String key){
57          return _params.containsKey(key);
58      }
59      
60 <    // Print out the entire HashMap.
61 <    // (Mainly for assisting debugging.)
60 >    /**
61 >     * Print out the entire HashMap.
62 >     * (Mainly for assisting debugging.)
63 >     */
64      public synchronized String printAll () {
65          return _params.toString();
66      }
# Line 59 | Line 69 | public class XMLPacket {
69       * Overrides the {@link java.lang.Object#toString() Object.toString()}
70       * method to provide clean logging (every class should have this).
71       *
72 +     * This uses the uk.ac.ukc.iscream.util.NameFormat class
73 +     * to format the toString()
74 +     *
75       * @return the name of this class and its CVS revision
76       */
77 <    public String toString () {
78 <        return this.getClass().getName() + "(" + REVISION.substring(11, REVISION.length() - 2) + ")";
77 >    public String toString() {
78 >        return FormatName.getName(
79 >            _name,
80 >            getClass().getName(),
81 >            REVISION);
82      }
83  
84   //---PRIVATE METHODS---
# Line 72 | Line 88 | public class XMLPacket {
88   //---ATTRIBUTES---
89  
90      private HashMap _params = new HashMap();
91 +
92 +    /**
93 +     * This is the friendly identifier of the
94 +     * component this class is running in.
95 +     * eg, a Filter may be called "filter1",
96 +     * If this class does not have an owning
97 +     * component,  a name from the configuration
98 +     * can be placed here.  This name could also
99 +     * be changed to null for utility classes.
100 +     */
101 +    private String _name = null;
102  
103   //---STATIC ATTRIBUTES---
104  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines