home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / management / AttributeChangeNotification.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  925 b   |  35 lines

  1. package javax.management;
  2.  
  3. public class AttributeChangeNotification extends Notification {
  4.    private static final long serialVersionUID = 535176054565814134L;
  5.    public static final String ATTRIBUTE_CHANGE = "jmx.attribute.change";
  6.    private String attributeName = null;
  7.    private String attributeType = null;
  8.    private Object oldValue = null;
  9.    private Object newValue = null;
  10.  
  11.    public AttributeChangeNotification(Object var1, long var2, long var4, String var6, String var7, String var8, Object var9, Object var10) {
  12.       super("jmx.attribute.change", var1, var2, var4, var6);
  13.       this.attributeName = var7;
  14.       this.attributeType = var8;
  15.       this.oldValue = var9;
  16.       this.newValue = var10;
  17.    }
  18.  
  19.    public String getAttributeName() {
  20.       return this.attributeName;
  21.    }
  22.  
  23.    public String getAttributeType() {
  24.       return this.attributeType;
  25.    }
  26.  
  27.    public Object getOldValue() {
  28.       return this.oldValue;
  29.    }
  30.  
  31.    public Object getNewValue() {
  32.       return this.newValue;
  33.    }
  34. }
  35.