Package org.glassfish.j2ee.statistics

Examples of org.glassfish.j2ee.statistics.TimeStatistic


    final BoundedRangeStatistic bs = (BoundedRangeStatistic)stc;
    return ( s.append(bs.getUpperBound()).append(SEP).append(bs.getLowerBound()).toString() );
  }
  private String timeStatisticSpecificString() {
    final StringBuffer s = new StringBuffer();
    final TimeStatistic ts = (TimeStatistic)stc;
    return ( s.append(ts.getMaxTime()).append(SEP).append(ts.getMinTime()).append(SEP).append(ts.getTotalTime()).toString() );
  }
View Full Code Here

TOP

Related Classes of org.glassfish.j2ee.statistics.TimeStatistic

Copyright © 2018 www.massapicom. 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.