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; 12 import java.util.Date; 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 22 { 23 public TimerAlarmClock(Timer timer, Date nextOccurrence) 24 { 25 } 26 27 public TimerAlarmClock(Timer timer, long timeout) 28 { 29 } 30 31 public void run() 32 { 33 } 34 } 35