01: package method;
02:
03: import java.awt.Button;
04: import java.awt.Component;
05: import java.awt.Canvas;
06: import java.awt.Panel;
07:
08: public class Child extends Parent {
09: private long time;
10:
11: public Component getPanel(Canvas canvas, Button button) {
12: return new Panel();
13: }
14:
15: public void setSleepTime(long time) {
16: if (isInitialized())
17: init();
18:
19: this .time = time;
20: total = time + total;
21: }
22:
23: public boolean isInitialized() {
24: return (time > 0);
25: }
26:
27: private void init() {
28: time = 1;
29: }
30:
31: public void stopOne(Object sample) {
32: // Nothing here
33: }
34:
35: public void stopTwo(Object crazy, Double strange) {
36: }
37: }
|