net.sf.jso.util
Class Event

java.lang.Object
  extended bynet.sf.jso.util.Event
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
SchemaEvent, StatusEvent, StorageEvent, TransactionEvent

public class Event
extends java.lang.Object
implements java.io.Serializable

The root class from which all event state objects shall be derived.

All Events are constructed with a reference to the object, the "source", that is logically deemed to be the object upon which the Event in question initially occurred upon.

See Also:
Serialized Form

Field Summary
protected  java.lang.Object source
          The object on which the Event initially occurred.
 
Constructor Summary
Event(java.lang.Object aSource)
          Constructs the event.
 
Method Summary
 java.lang.Object getSource()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

source

protected java.lang.Object source
The object on which the Event initially occurred.

Constructor Detail

Event

public Event(java.lang.Object aSource)
Constructs the event.

Parameters:
aSource - The object on which the Event initially occurred.
Method Detail

getSource

public java.lang.Object getSource()