summaryrefslogtreecommitdiff
path: root/java/gjt/StopwatchClient.java
blob: c2eb5fb046023d8f3554faedb0120ce40ff9678e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package gjt;

/**
 * Client of a Stopwatch.  Stopwatches that have non-null 
 * clients, call their clients' tick() method every 50 
 * milliseconds.<p>
 *
 * @version 1.0, Apr 21 1996
 * @author  David Geary
 * @see     Stopwatch
 */
public interface StopwatchClient {
    public void tick();
}