You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
p62xrbca7/javax/management/timer/TimerAlarmClockNotification...

53 lines
829 B

/*
* Copyright (c) 2002, 2006, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package javax.management.timer;
/**
* <p>Definitions of the notifications sent by TimerAlarmClock
* MBeans.</p>
*/
class TimerAlarmClockNotification
extends javax.management.Notification {
/* Serial version */
private static final long serialVersionUID = -4841061275673620641L;
/*
* ------------------------------------------
* CONSTRUCTORS
* ------------------------------------------
*/
/**
* Constructor.
*
* @param source the source.
*/
public TimerAlarmClockNotification(TimerAlarmClock source) {
super("", source, 0);
}
}