Example usage for Java java.awt.event ComponentEvent fields, constructors, methods, implement or subclass
The text is from its open source code.
int | COMPONENT_FIRST The first number in the range of ids used for component events. |
int | COMPONENT_LAST The last number in the range of ids used for component events. |
int | COMPONENT_MOVED This event indicates that the component's position changed. |
int | COMPONENT_RESIZED This event indicates that the component's size changed. |
int | COMPONENT_SHOWN This event indicates that the component was made visible. |
int | COMPONENT_HIDDEN This event indicates that the component was rendered invisible. |
ComponentEvent(Component source, int id) Constructs a ComponentEvent object. |
Component | getComponent() Returns the originator of the event. |
int | getID() Returns the event type. |
Object | getSource() The object on which the Event initially occurred. |
String | paramString() Returns a parameter string identifying this event. |
String | toString() Returns a String representation of this object. |