org.jadv.events
Class TimerEvent

java.lang.Object
  |
  +--org.jadv.events.Event
        |
        +--org.jadv.events.TimerEvent

public class TimerEvent
extends Event

The TimerEvent simply calles the Timer in the given object.
This class isn't implemented until now!

Author:
neitzel

Field Summary
private  JAdvObject _obj
           
 
Fields inherited from class org.jadv.events.Event
_NEXT
 
Constructor Summary
TimerEvent(JAdvObject obj)
           
 
Method Summary
 void doEvent()
          doEvent() This is the function, that will be called by the EventThread
 void markBad()
          markBad() Mark an Event as bad.
 
Methods inherited from class org.jadv.events.Event
findObject
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

_obj

private JAdvObject _obj
Constructor Detail

TimerEvent

public TimerEvent(JAdvObject obj)
Method Detail

doEvent

public void doEvent()
doEvent() This is the function, that will be called by the EventThread

Specified by:
doEvent in class Event

markBad

public void markBad()
markBad() Mark an Event as bad. This means: This event wasn't finished in time. If possible, something should be done (e.g. turning the Hearbeat of an Object off, Stop a timer, ... Maybe writing some Message to the developer!

Specified by:
markBad in class Event