TypedEvent

This is the super class for all typed event classes provided by SWT. Typed events contain particular information which is applicable to the event occurrence.

@see org.eclipse.swt.widgets.Event @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>

Constructors

this
this(Object object)

Constructs a new instance of this class.

this
this(Event e)

Constructs a new instance of this class based on the information in the argument.

Members

Functions

getName
String getName()

Returns the name of the event. This is the name of the class without the module name.

toString
String toString()

Returns a string containing a concise, human-readable description of the receiver.

Variables

data
Object data;

a field for application use

display
Display display;

the display where the event occurred

time
int time;

the time that the event occurred.

widget
Widget widget;

the widget that issued the event

Meta