Class Event

java.lang.Object
  |
  +--Event
Direct Known Subclasses:
AudioEvent, BodyEvent, VisualEvent

public abstract class Event
extends java.lang.Object

The class Event is the superclass of all events to be represented during the game.

Version:
1.00
Author:
Daniel Förderer and Moritz Steiner

Constructor Summary
Event()
           
 
Method Summary
 boolean isAudioEvent()
          indicates that the Event type
 boolean isBodyEvent()
          indicates that the Event type
 boolean isVisualEvent()
          indicates that the Event type
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Constructor Detail

Event

public Event()
Method Detail

isBodyEvent

public boolean isBodyEvent()
indicates that the Event type
Returns:
a boolean value indicating that this event is not a BodyEvent

isVisualEvent

public boolean isVisualEvent()
indicates that the Event type
Returns:
a boolean value indicating that this event is not a VisualEvent

isAudioEvent

public boolean isAudioEvent()
indicates that the Event type
Returns:
a boolean value indicating that this event is not an AudioEvent