|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.scalagent.scheduler.ScheduleItem
public class ScheduleItem
Implements a double linked list of ScheduleEvent
objects.
Both ends are marked with a null
value. Events are ordered in
increasing order of dates.
Scheduler
,
ScheduleEvent
,
Serialized FormField Summary | |
---|---|
(package private) java.util.Date |
date
next schedule date |
(package private) ScheduleEvent |
event
may be of a derived class |
(package private) ScheduleItem |
next
next item, null terminated |
(package private) ScheduleItem |
prev
previous item, null terminated |
private static long |
serialVersionUID
define serialVersionUID for interoperability |
(package private) ScheduleTask |
task
the schedule task |
Constructor Summary | |
---|---|
ScheduleItem(ScheduleEvent event,
ScheduleTask task)
Creates an item. |
Method Summary | |
---|---|
java.lang.String |
toString()
Provides a string image for this object. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private static final long serialVersionUID
ScheduleEvent event
java.util.Date date
ScheduleItem prev
ScheduleItem next
ScheduleTask task
Constructor Detail |
---|
public ScheduleItem(ScheduleEvent event, ScheduleTask task)
event
- event to schedule.task
- task to execute.Method Detail |
---|
public java.lang.String toString()
toString
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |