| Package | Description |
|---|---|
| org.w3c.dom.events |
| Modifier and Type | Method and Description |
|---|---|
EventTarget |
Event.getCurrentTarget()
Used to indicate the
EventTarget whose
EventListeners are currently being processed. |
EventTarget |
MouseEvent.getRelatedTarget()
Used to identify a secondary
EventTarget related to a UI
event, depending on the type of event. |
EventTarget |
Event.getTarget()
Used to indicate the event target.
|
| Modifier and Type | Method and Description |
|---|---|
void |
MouseEvent.initMouseEvent(String typeArg,
boolean canBubbleArg,
boolean cancelableArg,
org.w3c.dom.views.AbstractView viewArg,
int detailArg,
int screenXArg,
int screenYArg,
int clientXArg,
int clientYArg,
boolean ctrlKeyArg,
boolean altKeyArg,
boolean shiftKeyArg,
boolean metaKeyArg,
short buttonArg,
EventTarget relatedTargetArg)
The
initMouseEvent method is used to initialize the value
of a MouseEvent object and has the same behavior as
UIEvent.initUIEvent(). |
void |
MouseEvent.initMouseEventNS(String namespaceURI,
String typeArg,
boolean canBubbleArg,
boolean cancelableArg,
org.w3c.dom.views.AbstractView viewArg,
int detailArg,
int screenXArg,
int screenYArg,
int clientXArg,
int clientYArg,
short buttonArg,
EventTarget relatedTargetArg,
String modifiersList)
The
initMouseEventNS method is used to initialize the
value of a MouseEvent object and has the same behavior
as UIEvent.initUIEventNS(). |
Copyright © 2000–2017 Apache Software Foundation. All rights reserved.