home *** CD-ROM | disk | FTP | other *** search
- package com.commerceone.util.time;
-
- public class Timer {
- private long m_start_time = 0L;
- private long m_lapsed_time = 0L;
-
- public void stop() {
- this.m_lapsed_time = this.m_lapsed_time + this.currentTimeMillis() - this.m_start_time;
- this.m_start_time = 0L;
- }
-
- public void reset() {
- this.m_lapsed_time = 0L;
- this.m_start_time = 0L;
- }
-
- public Timer() {
- this.reset();
- }
-
- public void start() {
- this.m_start_time = this.currentTimeMillis();
- }
-
- public long getLapsedTime() {
- return this.m_lapsed_time;
- }
-
- private long currentTimeMillis() {
- return System.currentTimeMillis();
- }
- }
-