org.datamanager.event
Class DetachLinkEvent

java.lang.Object
  |
  +--org.datamanager.event.DataManagerEventAdapter
        |
        +--org.datamanager.event.DetachLinkEvent
All Implemented Interfaces:
ContainsEntityEvent, DataManagerEvent, EntityEvent, EntityValue, KernelEvent, LinkEvent, Serializable

public class DetachLinkEvent
extends DataManagerEventAdapter
implements LinkEvent, ContainsEntityEvent

This event is fired when Entity.detach() is invoked.

Author:
Matthew Farrellee
See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.datamanager.event.DataManagerEventAdapter
source, time
 
Constructor Summary
DetachLinkEvent(EventGenerator source, Entity detachedEntity)
          The public constructor used to create a DetachLinkEvent.
 
Method Summary
 Entity getEntity()
          Reports the Entity that was detached.
 String toString()
          A toString() method to provide a meaningful String representation of this event.
 
Methods inherited from class org.datamanager.event.DataManagerEventAdapter
getSource, getTime
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.datamanager.event.DataManagerEvent
getSource, getTime
 

Constructor Detail

DetachLinkEvent

public DetachLinkEvent(EventGenerator source,
                       Entity detachedEntity)
The public constructor used to create a DetachLinkEvent.

Parameters:
source - The source of this event. Usually 'this.'
detachedEntity - The Entity that was detached.
Method Detail

getEntity

public Entity getEntity()
Reports the Entity that was detached.

Specified by:
getEntity in interface ContainsEntityEvent
Returns:
The Entity that was detached.

toString

public String toString()
A toString() method to provide a meaningful String representation of this event.

Specified by:
toString in interface DataManagerEvent
Specified by:
toString in class DataManagerEventAdapter
Returns:
A meaningful String representation of this event.


See the Helium Website