Class java.util.EventObject
java.lang.Object
|
+----java.util.EventObject
- Subclasses:
- AWTEvent, BeanContextEvent, CaretEvent, ChangeEvent, DragSourceEvent, DropTargetEvent, HttpSessionBindingEvent, 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.
Methods inherited from class java.lang.Object
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
source
protected transient Object source
EventObject
public EventObject(Object source)
- Constructs a prototypical Event
- Parameters:
source
- The object that the Event occurred upon.
getSource
public Object getSource()
- Returns:
- The object that the Event initially occurred upon.
toString
public String toString()
- Overrides:
- toString in class Object
Submit a bug or feature
Submit comments/suggestions about new javadoc look.
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.