Package er.extensions.foundation

Examples of er.extensions.foundation.ERXStopWatch


  /**
   * @return a stopwatch timer, lazy initialized and started on first call of this method
   **/
  public ERXStopWatch stopWatch() {
    if ( _stopWatch == null ) {
      _stopWatch = new ERXStopWatch();
      _stopWatch.start();
      isStopWatchRunning = true;

    }
    return _stopWatch;
View Full Code Here


    }
    return tasks.immutableClone();
  }

  public void startStopWatch() {
    _stopWatch = new ERXStopWatch();
    _stopWatch.start();
  }
View Full Code Here

TOP

Related Classes of er.extensions.foundation.ERXStopWatch

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.