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.
*
* @author Eric J. Bowersox <erbo@silcom.com>
* @version X
*/
public class DynamoEventObject extends EventObject
{
/*--------------------------------------------------------------------------------
* Constructor
*--------------------------------------------------------------------------------
*/
/**
* Constructs a new DynamoEventObject.
*
* @param src The object on which the event initially occurred.
*/
public DynamoEventObject(Object src)
{
super(src);
} // end constructor
/*--------------------------------------------------------------------------------
* Overrides from class EventObject
*--------------------------------------------------------------------------------
*/
/**
* Returns a string representation of the object. In general, the toString method returns a string
* that "textually represents" this object.
*
* @return A string representation of the object.
*/
public String toString()
{
return "DynamoEventObject: source = " + source;
} // end toString
} // end class DynamoEventObject