org.jadv.events
Class LoadObjectEvent

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

public class LoadObjectEvent
extends Event

Loads an object

Author:
neitzel

Field Summary
 java.lang.String _id
           
 
Fields inherited from class org.jadv.events.Event
_NEXT
 
Constructor Summary
LoadObjectEvent(java.lang.String id)
           
 
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

_id

public java.lang.String _id
Constructor Detail

LoadObjectEvent

public LoadObjectEvent(java.lang.String id)
Method Detail

doEvent

public void doEvent()
Description copied from class: Event
doEvent() This is the function, that will be called by the EventThread

Specified by:
doEvent in class Event

markBad

public void markBad()
Description copied from class: Event
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