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

Comparing projects/cms/source/server/uk/org/iscream/cms/server/client/Alert.java (file contents):
Revision 1.4 by tdb, Fri Mar 2 00:13:57 2001 UTC vs.
Revision 1.5 by tdb, Fri Mar 2 00:35:50 2001 UTC

# Line 34 | Line 34 | public class Alert {
34       *
35       * @param level the level of the alert
36       */
37 <    public Alert(int level, String thresholdValue, String value, String attributeName) {
37 >    public Alert(int level, String source, String thresholdValue, String value, String attributeName) {
38          _level = level;
39 +        _source = source;
40          _thresholdValue = thresholdValue;
41          _value = value;
42          _attributeName = attributeName;
# Line 70 | Line 71 | public class Alert {
71          return _level;
72      }
73      
74 +    public String getSource() {
75 +        return _source;
76 +    }
77 +    
78      public String getValue() {
79          return _value;
80      }
# Line 100 | Line 105 | public class Alert {
105       */
106      private int _level;
107      
108 +    private String _source;
109      private String _value;
110      private String _thresholdValue;
111      private String _attributeName;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines