summaryrefslogtreecommitdiffstats
path: root/tests/ajde/examples/observer/clock/ClockTimer.java
blob: ffd9c905dbeb835cbd262178943f3f0e967743e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package clock;

import java.util.Observable;

public class ClockTimer extends Observable {

    public void tick () {
        notifyObservers();
    }

    public int getHour() {
        return 0;
    }

    public int getMinute() {
        return 0;
    }

    public int getSeconds() {
        return 0;
    }
}