java.util
Class EventObject
java.lang.Object
|
+--java.util.EventObject
- Direct Known Subclasses:
- AWTEvent, BeanContextEvent, CaretEvent, ChangeEvent, DragGestureEvent, DragSourceEvent, DropTargetEvent, HyperlinkEvent, ListDataEvent, ListSelectionEvent, MenuEvent, PopupMenuEvent, PropertyChangeEvent, TableColumnModelEvent, TableModelEvent, TreeExpansionEvent, TreeModelEvent, TreeSelectionEvent, UndoableEditEvent
- public class EventObject
- extends Object
- implements Serializable
The Event class is the abstract root class from which all event state
objects shall be derived.
All Event's 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.
- See Also:
- Serialized Form
Field Summary |
protected Object |
source
The object on which the Event initially occurred. |
Method Summary |
Object |
getSource()
The object on which the Event initially occurred. |
String |
toString()
Returns a String representation of this EventObject. |
source
protected transient Object source
- The object on which the Event initially occurred.
EventObject
public EventObject(Object source)
- Constructs a prototypical Event.
- Parameters:
source
- The object on which the Event initially occurred.
getSource
public Object getSource()
- The object on which the Event initially occurred.
- Returns:
- The object on which the Event initially occurred.
toString
public String toString()
- Returns a String representation of this EventObject.
- Returns:
- A a String representation of this EventObject.
- Overrides:
- toString in class Object
Submit a bug or feature Version 1.2 of Java Platform API Specification
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.