Class powersoft.jcm.event.EventData
All Packages Class Hierarchy This Package Previous Next Index
Class powersoft.jcm.event.EventData
java.lang.Object
|
+----powersoft.jcm.event.EventData
- public class EventData
- extends Object
The base class for JCM event data.
This class is analogous to the Beans java.util.EventObject class.
- See Also:
- EventListener
-
_handled
-
-
_rawEvent
-
-
_source
-
-
EventData(Object, Object)
- Constructs an empty event object.
-
getHandled()
-
-
getRawEvent()
- Gets the raw event data that triggered the event.
-
getSource()
- Gets the source of the event.
-
setHandled(boolean)
-
_source
protected Object _source
_rawEvent
protected Object _rawEvent
_handled
protected boolean _handled
EventData
public EventData(Object source,
Object rawEvent)
- Constructs an empty event object.
- Parameters:
- source - The event source, the object that fired the event.
- awtEvent - The low-level AWT event that triggered the
event (may be null).
getSource
public Object getSource()
- Gets the source of the event.
getRawEvent
public Object getRawEvent()
- Gets the raw event data that triggered the event. May
return null.
getHandled
public boolean getHandled()
setHandled
public void setHandled(boolean h)
All Packages Class Hierarchy This Package Previous Next Index