|
|||||||||
| Home >> All >> java >> [ awt overview ] | PREV NEXT | ||||||||
Uses of Class
java.awt.AWTEvent
| Uses of AWTEvent in java.awt |
| Fields in java.awt declared as AWTEvent | |
private AWTEvent[] |
EventQueue.queue
|
private AWTEvent |
EventQueue.currentEvent
|
| Methods in java.awt that return AWTEvent | |
protected AWTEvent |
Component.coalesceEvents(AWTEvent existingEvent,
AWTEvent newEvent)
This is called by the EventQueue if two events with the same event id and owner component are queued. |
AWTEvent |
EventQueue.getNextEvent()
Returns the next event in the queue. |
AWTEvent |
EventQueue.peekEvent()
Returns the next event in the queue without removing it from the queue. |
AWTEvent |
EventQueue.peekEvent(int id)
Returns the next event in the queue that has the specified id without removing it from the queue. |
static AWTEvent |
EventQueue.getCurrentEvent()
Return the event currently being dispatched by the event dispatch thread. |
| Methods in java.awt with parameters of type AWTEvent | |
void |
Component.dispatchEvent(AWTEvent e)
Forwards AWT events to processEvent() if: Events have been enabled for this type of event via enableEvents(),
There is at least one registered listener for this type of event
|
protected AWTEvent |
Component.coalesceEvents(AWTEvent existingEvent,
AWTEvent newEvent)
This is called by the EventQueue if two events with the same event id and owner component are queued. |
protected void |
Component.processEvent(AWTEvent e)
Processes the specified event. |
(package private) static Event |
Component.translateEvent(AWTEvent e)
Translate an AWT 1.1 event (AWTEvent) into an AWT 1.0 event (Event). |
(package private) void |
Component.dispatchEventImpl(AWTEvent e)
Implementation of dispatchEvent. |
protected void |
Container.processEvent(AWTEvent e)
Processes the specified event. |
(package private) void |
Container.dispatchEventImpl(AWTEvent e)
|
(package private) void |
Window.dispatchEventImpl(AWTEvent e)
|
protected void |
Window.processEvent(AWTEvent evt)
Processes the specified event for this window. |
void |
EventQueue.postEvent(AWTEvent evt)
Posts a new event to the queue. |
protected void |
EventQueue.dispatchEvent(AWTEvent evt)
Dispatches an event. |
(package private) void |
Toolkit.globalDispatchEvent(AWTEvent ev)
Dispatches events to listeners registered to this Toolkit. |
abstract boolean |
KeyboardFocusManager.dispatchEvent(AWTEvent e)
The AWT event dispatcher uses this method to request that the manager handle a particular event. |
void |
KeyboardFocusManager.redispatchEvent(Component target,
AWTEvent e)
Handles redispatching of an event so that recursion of dispatch requests does not occur. |
boolean |
DefaultKeyboardFocusManager.dispatchEvent(AWTEvent e)
|
boolean |
LightweightDispatcher.dispatchEvent(AWTEvent event)
Receives notification if a mouse event passes along the eventqueue. |
void |
MenuComponent.dispatchEvent(AWTEvent event)
Sends this event to this component or a subcomponent for processing. |
(package private) void |
MenuComponent.dispatchEventImpl(AWTEvent event)
Implementation of dispatchEvent. |
protected void |
MenuComponent.processEvent(AWTEvent event)
Processes the specified event. |
(package private) void |
MenuItem.dispatchEventImpl(AWTEvent e)
|
protected void |
MenuItem.processEvent(AWTEvent event)
Processes the specified event by calling processActionEvent()
if it is an instance of ActionEvent. |
protected void |
TextField.processEvent(AWTEvent event)
Processes the specified event. |
(package private) void |
TextField.dispatchEventImpl(AWTEvent e)
|
protected void |
TextComponent.processEvent(AWTEvent event)
Processes the specified event for this component. |
(package private) void |
TextComponent.dispatchEventImpl(AWTEvent e)
|
protected void |
Scrollbar.processEvent(AWTEvent event)
Processes events for this scrollbar. |
(package private) void |
Scrollbar.dispatchEventImpl(AWTEvent e)
Package private method to determine whether to call processEvent() or not. |
protected void |
List.processEvent(AWTEvent event)
Processes the specified event for this object. |
(package private) void |
List.dispatchEventImpl(AWTEvent e)
|
protected void |
Choice.processEvent(AWTEvent event)
Processes this event by invoking processItemEvent() if the
event is an instance of ItemEvent, otherwise the event
is passed to the superclass. |
(package private) void |
Choice.dispatchEventImpl(AWTEvent e)
|
protected void |
CheckboxMenuItem.processEvent(AWTEvent event)
Processes the specified event by calling processItemEvent()
if it is an instance of ItemEvent or calling the superclass
method otherwise. |
(package private) void |
CheckboxMenuItem.dispatchEventImpl(AWTEvent e)
|
protected void |
Checkbox.processEvent(AWTEvent event)
Processes this event by calling processItemEvent() if it
is any instance of ItemEvent. |
(package private) void |
Checkbox.dispatchEventImpl(AWTEvent e)
|
protected void |
Button.processEvent(AWTEvent event)
Processes an event for this button. |
(package private) void |
Button.dispatchEventImpl(AWTEvent e)
|
|
|||||||||
| Home >> All >> java >> [ awt overview ] | PREV NEXT | ||||||||