Class Event
- java.lang.Object
-
- Event
-
- Direct Known Subclasses:
ComponentEvent
,DialogEvent
public abstract class Event extends Object
Superclass of all Dialog and Operation Events
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Dialog
getDialog()
Gets the associated dialog that this event was fired on.String
getName()
Get a text description of the type of this event.
-
-
-
Constructor Detail
-
Event
public Event(Dialog dialog)
-
-
Method Detail
-
getDialog
public Dialog getDialog()
Gets the associated dialog that this event was fired on.- Returns:
- the associated dialog
-
getName
public String getName()
Get a text description of the type of this event. This is the base name of the class, with no package qualifier.- Returns:
- a String identifying the type of this event
-
-