|
|||||||||
| Home >> All >> org >> w3c >> dom >> [ events overview ] | PREV NEXT | ||||||||
A
- ADDITION - Static variable in interface org.w3c.dom.events.MutationEvent
- The
Attrwas just added. - AT_TARGET - Static variable in interface org.w3c.dom.events.Event
- The event is currently being evaluated at the target
EventTarget. - addEventListener(String, EventListener, boolean) - Method in interface org.w3c.dom.events.EventTarget
- This method allows the registration of event listeners on the event target.
B
- BUBBLING_PHASE - Static variable in interface org.w3c.dom.events.Event
- The current event phase is the bubbling phase.
C
- CAPTURING_PHASE - Static variable in interface org.w3c.dom.events.Event
- The current event phase is the capturing phase.
- code - Variable in class org.w3c.dom.events.EventException
- createEvent(String) - Method in interface org.w3c.dom.events.DocumentEvent
D
- DocumentEvent - interface org.w3c.dom.events.DocumentEvent.
- The
DocumentEventinterface provides a mechanism by which the user can create an Event of a type supported by the implementation. - dispatchEvent(Event) - Method in interface org.w3c.dom.events.EventTarget
- This method allows the dispatch of events into the implementations event model.
E
- Event - interface org.w3c.dom.events.Event.
- The
Eventinterface is used to provide contextual information about an event to the handler processing the event. - EventException - exception org.w3c.dom.events.EventException.
- Event operations may throw an
EventExceptionas specified in their method descriptions. - EventException(short, String) - Constructor for class org.w3c.dom.events.EventException
- EventListener - interface org.w3c.dom.events.EventListener.
- The
EventListenerinterface is the primary method for handling events. - EventTarget - interface org.w3c.dom.events.EventTarget.
- The
EventTargetinterface is implemented by allNodesin an implementation which supports the DOM Event Model.
G
- getAltKey() - Method in interface org.w3c.dom.events.MouseEvent
- Used to indicate whether the 'alt' key was depressed during the firing of the event.
- getAttrChange() - Method in interface org.w3c.dom.events.MutationEvent
attrChangeindicates the type of change which triggered the DOMAttrModified event.- getAttrName() - Method in interface org.w3c.dom.events.MutationEvent
attrNameindicates the name of the changedAttrnode in a DOMAttrModified event.- getBubbles() - Method in interface org.w3c.dom.events.Event
- Used to indicate whether or not an event is a bubbling event.
- getButton() - Method in interface org.w3c.dom.events.MouseEvent
- During mouse events caused by the depression or release of a mouse
button,
buttonis used to indicate which mouse button changed state. - getCancelable() - Method in interface org.w3c.dom.events.Event
- Used to indicate whether or not an event can have its default action prevented.
- getClientX() - Method in interface org.w3c.dom.events.MouseEvent
- The horizontal coordinate at which the event occurred relative to the DOM implementation's client area.
- getClientY() - Method in interface org.w3c.dom.events.MouseEvent
- The vertical coordinate at which the event occurred relative to the DOM implementation's client area.
- getCtrlKey() - Method in interface org.w3c.dom.events.MouseEvent
- Used to indicate whether the 'ctrl' key was depressed during the firing of the event.
- getCurrentTarget() - Method in interface org.w3c.dom.events.Event
- Used to indicate the
EventTargetwhoseEventListenersare currently being processed. - getDetail() - Method in interface org.w3c.dom.events.UIEvent
- Specifies some detail information about the
Event, depending on the type of event. - getEventPhase() - Method in interface org.w3c.dom.events.Event
- Used to indicate which phase of event flow is currently being evaluated.
- getMetaKey() - Method in interface org.w3c.dom.events.MouseEvent
- Used to indicate whether the 'meta' key was depressed during the firing of the event.
- getNewValue() - Method in interface org.w3c.dom.events.MutationEvent
newValueindicates the new value of theAttrnode in DOMAttrModified events, and of theCharacterDatanode in DOMCharacterDataModified events.- getPrevValue() - Method in interface org.w3c.dom.events.MutationEvent
prevValueindicates the previous value of theAttrnode in DOMAttrModified events, and of theCharacterDatanode in DOMCharacterDataModified events.- getRelatedNode() - Method in interface org.w3c.dom.events.MutationEvent
relatedNodeis used to identify a secondary node related to a mutation event.- getRelatedTarget() - Method in interface org.w3c.dom.events.MouseEvent
- Used to identify a secondary
EventTargetrelated to a UI event. - getScreenX() - Method in interface org.w3c.dom.events.MouseEvent
- The horizontal coordinate at which the event occurred relative to the origin of the screen coordinate system.
- getScreenY() - Method in interface org.w3c.dom.events.MouseEvent
- The vertical coordinate at which the event occurred relative to the origin of the screen coordinate system.
- getShiftKey() - Method in interface org.w3c.dom.events.MouseEvent
- Used to indicate whether the 'shift' key was depressed during the firing of the event.
- getTarget() - Method in interface org.w3c.dom.events.Event
- Used to indicate the
EventTargetto which the event was originally dispatched. - getTimeStamp() - Method in interface org.w3c.dom.events.Event
- Used to specify the time (in milliseconds relative to the epoch) at which the event was created.
- getType() - Method in interface org.w3c.dom.events.Event
- The name of the event (case-insensitive).
- getView() - Method in interface org.w3c.dom.events.UIEvent
- The
viewattribute identifies theAbstractViewfrom which the event was generated.
H
- handleEvent(Event) - Method in interface org.w3c.dom.events.EventListener
- This method is called whenever an event occurs of the type for which
the
EventListenerinterface was registered.
I
- initEvent(String, boolean, boolean) - Method in interface org.w3c.dom.events.Event
- The
initEventmethod is used to initialize the value of anEventcreated through theDocumentEventinterface. - initMouseEvent(String, boolean, boolean, AbstractView, int, int, int, int, int, boolean, boolean, boolean, boolean, short, EventTarget) - Method in interface org.w3c.dom.events.MouseEvent
- The
initMouseEventmethod is used to initialize the value of aMouseEventcreated through theDocumentEventinterface. - initMutationEvent(String, boolean, boolean, Node, String, String, String, short) - Method in interface org.w3c.dom.events.MutationEvent
- The
initMutationEventmethod is used to initialize the value of aMutationEventcreated through theDocumentEventinterface. - initUIEvent(String, boolean, boolean, AbstractView, int) - Method in interface org.w3c.dom.events.UIEvent
- The
initUIEventmethod is used to initialize the value of aUIEventcreated through theDocumentEventinterface.
M
- MODIFICATION - Static variable in interface org.w3c.dom.events.MutationEvent
- The
Attrwas modified in place. - MouseEvent - interface org.w3c.dom.events.MouseEvent.
- The
MouseEventinterface provides specific contextual information associated with Mouse events. - MutationEvent - interface org.w3c.dom.events.MutationEvent.
- The
MutationEventinterface provides specific contextual information associated with Mutation events.
O
- org.w3c.dom.events - package org.w3c.dom.events
P
- preventDefault() - Method in interface org.w3c.dom.events.Event
- If an event is cancelable, the
preventDefaultmethod is used to signify that the event is to be canceled, meaning any default action normally taken by the implementation as a result of the event will not occur.
R
- REMOVAL - Static variable in interface org.w3c.dom.events.MutationEvent
- The
Attrwas just removed. - removeEventListener(String, EventListener, boolean) - Method in interface org.w3c.dom.events.EventTarget
- This method allows the removal of event listeners from the event target.
S
- stopPropagation() - Method in interface org.w3c.dom.events.Event
- The
stopPropagationmethod is used prevent further propagation of an event during event flow.
U
- UIEvent - interface org.w3c.dom.events.UIEvent.
- The
UIEventinterface provides specific contextual information associated with User Interface events. - UNSPECIFIED_EVENT_TYPE_ERR - Static variable in class org.w3c.dom.events.EventException
- If the
Event's type was not specified by initializing the event before the method was called.
A B C D E G H I M O P R S U
|
|||||||||
| Home >> All >> org >> w3c >> dom >> [ events overview ] | PREV NEXT | ||||||||