KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > management > timer > TimerAlarmClock


1 /*
2  * Copyright (C) MX4J.
3  * All rights reserved.
4  *
5  * This software is distributed under the terms of the MX4J License version 1.0.
6  * See the terms of the MX4J License in the documentation provided with this software.
7  */

8
9 package javax.management.timer;
10
11 import java.util.TimerTask JavaDoc;
12 import java.util.Date JavaDoc;
13
14 /**
15  * This class is here only to provide signature compatibility for
16  * {@link TimerAlarmClockNotification}.
17  *
18  * @author <a HREF="mailto:biorn_steedom@users.sourceforge.net">Simone Bordet</a>
19  * @version $Revision: 1.1 $
20  */

21 class TimerAlarmClock extends TimerTask JavaDoc
22 {
23    public TimerAlarmClock(Timer JavaDoc timer, Date JavaDoc nextOccurrence)
24    {
25    }
26
27    public TimerAlarmClock(Timer JavaDoc timer, long timeout)
28    {
29    }
30
31    public void run()
32    {
33    }
34 }
35
Popular Tags