Class java.util.EventObject
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.util.EventObject

java.lang.Object
   |
   +----java.util.EventObject

public class EventObject
extends Object

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.


Constructor Index

 o EventObject(Object)
Constructs a prototypical Event

Method Index

 o getSource()

Constructors

 o EventObject
  public EventObject(Object source)
Constructs a prototypical Event
Parameters:
source - The object that the Event occurred upon.

Methods

 o getSource
  public Object getSource()
Returns:
The object that the Event initially occurred upon.

All Packages  Class Hierarchy  This Package  Previous  Next  Index