Examples of PerfDataSupport


Examples of com.adahas.tools.jmxeval.model.PerfDataSupport

   * @param parentElement Parent element
   */
  public PerfData(final Node node, final Element parentElement) {
    super(parentElement);
   
    final PerfDataSupport parent = (PerfDataSupport) parentElement;
   
    this.label = getNodeAttribute(node, "label", parent.getVar());
    this.var = parent.getVar();
    this.critical = getNodeAttribute(node, "critical", parent.getCritical());
    this.warning = getNodeAttribute(node, "warning", parent.getWarning());
    this.min = getNodeAttribute(node, "min");
    this.max = getNodeAttribute(node, "max");
    this.unit = getNodeAttribute(node, "unit");
  }
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.