Uses of Class
org.jadv.events.Event

Packages that use Event
de.jadv.server.lib The Server Data-Structures ...  
de.jadv.server.manager The different "Manager" of the Server e.g.  
org.jadv.basic JadvLib: Some basic objects
 
org.jadv.basic.interfaces Interfaces that are used by the game.  
org.jadv.events JadvLib: Some basic events
 
 

Uses of Event in de.jadv.server.lib
 

Fields in de.jadv.server.lib declared as Event
private  Event EventList._FIRST_EVENT
           
private  Event EventList._LAST_EVENT
           
private  Event EventTimerTask._Event
           
 

Methods in de.jadv.server.lib that return Event
 Event EventList.getEvent()
          Get an Event from the EventQueue
 

Methods in de.jadv.server.lib with parameters of type Event
 void EventList.addEvent(Event evt)
          Add an Event to the Event Queue
 

Constructors in de.jadv.server.lib with parameters of type Event
EventTimerTask(Event evt)
          Constructor
 

Uses of Event in de.jadv.server.manager
 

Fields in de.jadv.server.manager declared as Event
 Event EventManager.LastHandledEvent
           
 

Methods in de.jadv.server.manager that return Event
 Event EventManager.getEvent()
          Get an Event from the EventQueue
 

Methods in de.jadv.server.manager with parameters of type Event
 void EventManager.addEvent(Event evt)
          Add an Event to the Event Queue
 

Uses of Event in org.jadv.basic
 

Methods in org.jadv.basic with parameters of type Event
 void NPC.receiveEvent(Event event)
          Receive an event
static void SavedObject.addEvent(Event evt)
          Add an event to the EventQueue of the game
 

Uses of Event in org.jadv.basic.interfaces
 

Methods in org.jadv.basic.interfaces with parameters of type Event
 void AcceptEvents.receiveEvent(Event event)
          For each event, this function will be called.
 

Uses of Event in org.jadv.events
 

Subclasses of Event in org.jadv.events
 class ClientEvent
          This event handles an event from the client.
 class HeartBeatEvent
          This is the Event, that handles the HeartBeat of one object.
 class LoadObjectEvent
          Loads an object
 class MoveEvent
          An object should be moved to another location!
 class ObjectMessageEvent
          A Message is sent to an object
 class ObjectNoLongerSeenEvent
          Event, that tells the target object, that another object cannot be seen any longer.
 class ObjectSeenEvent
          Event that tells an target object, that it can see another object.
 class ResetEvent
          The ResetEvent is used to reset objects.
 class TimerEvent
          The TimerEvent simply calles the Timer in the given object.
 

Fields in org.jadv.events declared as Event
 Event Event._NEXT
          The next Event - only set when inside the EventQueue of the EventManager