[all packages] [package java.util] [class hierarchy] [index]

public class java.util.EventObject

(source file: EventObject.java)
java.lang.Object
   |
   +----java.util.EventObject

The pure class interface.
public class EventObject
  implements java.io.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.


Constuctor Index

O EventObject(Object)
Constructs a prototypical Event

Variables Index

O source

Methods

O getSource()
O toString()

Constructors

O EventObject
public EventObject(Object source);
Constructs a prototypical Event

Parameters:
source - The object that the Event occurred upon.

Variables

O source
protected transient Object source;

Methods

O getSource
public Object getSource();

Returns:
The object that the Event initially occurred upon.

O toString

public String toString();


[all packages] [package java.util] [class hierarchy] [index]
java.util.EventObject.html