4041424344454647484950
MX4JMonitor createMX4JMonitor() { try { return new MX4JGaugeMonitor() { protected NotificationBroadcasterSupport createNotificationEmitter() { return GaugeMonitor.this; }
949596979899100101
return getDerivedGaugeTimeStamp(getObservedObject()); } public Number getDerivedGauge(ObjectName objectName) { MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor(); return monitor.getDerivedGauge(objectName); }
100101102103104105106107
return monitor.getDerivedGauge(objectName); } public long getDerivedGaugeTimeStamp(ObjectName objectName) { MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor(); return monitor.getDerivedGaugeTimeStamp(objectName); }
106107108109110111112113
return monitor.getDerivedGaugeTimeStamp(objectName); } public Number getHighThreshold() { MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor(); return monitor.getHighThreshold(); }
112113114115116117118119
return monitor.getHighThreshold(); } public Number getLowThreshold() { MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor(); return monitor.getLowThreshold(); }
118119120121122123124125
return monitor.getLowThreshold(); } public void setThresholds(Number highValue, Number lowValue) throws IllegalArgumentException { MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor(); monitor.setThresholds(highValue, lowValue); }
124125126127128129130131
monitor.setThresholds(highValue, lowValue); } public boolean getNotifyHigh() { MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor(); return monitor.getNotifyHigh(); }
130131132133134135136137
return monitor.getNotifyHigh(); } public void setNotifyHigh(boolean value) { MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor(); monitor.setNotifyHigh(value); }
136137138139140141142143
monitor.setNotifyHigh(value); } public boolean getNotifyLow() { MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor(); return monitor.getNotifyLow(); }
142143144145146147148149
return monitor.getNotifyLow(); } public void setNotifyLow(boolean value) { MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor(); monitor.setNotifyLow(value); }