Examples of MX4JGaugeMonitor


Examples of mx4j.monitor.MX4JGaugeMonitor

   MX4JMonitor createMX4JMonitor()
   {
      try
      {
         return new MX4JGaugeMonitor()
         {
            protected NotificationBroadcasterSupport createNotificationEmitter()
            {
               return GaugeMonitor.this;
            }
View Full Code Here

Examples of mx4j.monitor.MX4JGaugeMonitor

      return getDerivedGaugeTimeStamp(getObservedObject());
   }

   public Number getDerivedGauge(ObjectName objectName)
   {
      MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor();
      return monitor.getDerivedGauge(objectName);
   }
View Full Code Here

Examples of mx4j.monitor.MX4JGaugeMonitor

      return monitor.getDerivedGauge(objectName);
   }

   public long getDerivedGaugeTimeStamp(ObjectName objectName)
   {
      MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor();
      return monitor.getDerivedGaugeTimeStamp(objectName);
   }
View Full Code Here

Examples of mx4j.monitor.MX4JGaugeMonitor

      return monitor.getDerivedGaugeTimeStamp(objectName);
   }

   public Number getHighThreshold()
   {
      MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor();
      return monitor.getHighThreshold();
   }
View Full Code Here

Examples of mx4j.monitor.MX4JGaugeMonitor

      return monitor.getHighThreshold();
   }

   public Number getLowThreshold()
   {
      MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor();
      return monitor.getLowThreshold();
   }
View Full Code Here

Examples of mx4j.monitor.MX4JGaugeMonitor

      return monitor.getLowThreshold();
   }

   public void setThresholds(Number highValue, Number lowValue) throws IllegalArgumentException
   {
      MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor();
      monitor.setThresholds(highValue, lowValue);
   }
View Full Code Here

Examples of mx4j.monitor.MX4JGaugeMonitor

      monitor.setThresholds(highValue, lowValue);
   }

   public boolean getNotifyHigh()
   {
      MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor();
      return monitor.getNotifyHigh();
   }
View Full Code Here

Examples of mx4j.monitor.MX4JGaugeMonitor

      return monitor.getNotifyHigh();
   }

   public void setNotifyHigh(boolean value)
   {
      MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor();
      monitor.setNotifyHigh(value);
   }
View Full Code Here

Examples of mx4j.monitor.MX4JGaugeMonitor

      monitor.setNotifyHigh(value);
   }

   public boolean getNotifyLow()
   {
      MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor();
      return monitor.getNotifyLow();
   }
View Full Code Here

Examples of mx4j.monitor.MX4JGaugeMonitor

      return monitor.getNotifyLow();
   }

   public void setNotifyLow(boolean value)
   {
      MX4JGaugeMonitor monitor = (MX4JGaugeMonitor)getMX4JMonitor();
      monitor.setNotifyLow(value);
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.