Package org.pentaho.reporting.libraries.base.util

Examples of org.pentaho.reporting.libraries.base.util.LoggingStopWatch


public class DefaultPerformanceMonitorContext implements PerformanceMonitorContext
{
  public PerformanceLoggingStopWatch createStopWatch(final String tag)
  {
    return new LoggingStopWatch(tag);
  }
View Full Code Here


    return new LoggingStopWatch(tag);
  }

  public PerformanceLoggingStopWatch createStopWatch(final String tag, final Object message)
  {
    return new LoggingStopWatch(tag, message);
  }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.libraries.base.util.LoggingStopWatch

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.