01: /*
02: * Copyright (C) The MX4J Contributors.
03: * All rights reserved.
04: *
05: * This software is distributed under the terms of the MX4J License version 1.0.
06: * See the terms of the MX4J License in the documentation provided with this software.
07: */
08:
09: package javax.management.timer;
10:
11: import java.util.Date;
12: import java.util.TimerTask;
13:
14: /**
15: * This class is here only to provide signature compatibility for
16: * {@link TimerAlarmClockNotification}.
17: *
18: * @version $Revision: 1.3 $
19: */
20: class TimerAlarmClock extends TimerTask {
21: public TimerAlarmClock(Timer timer, Date nextOccurrence) {
22: }
23:
24: public TimerAlarmClock(Timer timer, long timeout) {
25: }
26:
27: public void run() {
28: }
29: }
|