| org.w3c.dom.events.UIEvent
All known Subclasses: org.apache.batik.dom.events.DOMUIEvent,
UIEvent | public interface UIEvent extends Event(Code) | | The UIEvent interface provides specific contextual
information associated with User Interface events.
To create an instance of the UIEvent interface, use the
DocumentEvent.createEvent("UIEvent") method call.
See also the
Document Object Model (DOM) Level 3 Events Specification
.
since: DOM Level 2 |
Method Summary | |
public int | getDetail() Specifies some detail information about the Event ,
depending on the type of event. | public AbstractView | getView() The view attribute identifies the
AbstractView from which the event was generated. | public void | initUIEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, AbstractView viewArg, int detailArg) The initUIEvent method is used to initialize the value of
a UIEvent object and has the same behavior as
Event.initEvent() . | public void | initUIEventNS(String namespaceURI, String typeArg, boolean canBubbleArg, boolean cancelableArg, AbstractView viewArg, int detailArg) The initUIEventNS method is used to initialize the value
of a UIEvent object and has the same behavior as
Event.initEventNS() . |
getDetail | public int getDetail()(Code) | | Specifies some detail information about the Event ,
depending on the type of event.
|
getView | public AbstractView getView()(Code) | | The view attribute identifies the
AbstractView from which the event was generated.
|
initUIEvent | public void initUIEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, AbstractView viewArg, int detailArg)(Code) | | The initUIEvent method is used to initialize the value of
a UIEvent object and has the same behavior as
Event.initEvent() .
Parameters: typeArg - Refer to the Event.initEvent() method for a description of this parameter. Parameters: canBubbleArg - Refer to the Event.initEvent() method for a description of this parameter. Parameters: cancelableArg - Refer to the Event.initEvent() method for a description of this parameter. Parameters: viewArg - Specifies UIEvent.view . This value may be null . Parameters: detailArg - Specifies UIEvent.detail . |
initUIEventNS | public void initUIEventNS(String namespaceURI, String typeArg, boolean canBubbleArg, boolean cancelableArg, AbstractView viewArg, int detailArg)(Code) | | The initUIEventNS method is used to initialize the value
of a UIEvent object and has the same behavior as
Event.initEventNS() .
Parameters: namespaceURI - Refer to the Event.initEventNS() method for a description of this parameter. Parameters: typeArg - Refer to the Event.initEventNS() method for a description of this parameter. Parameters: canBubbleArg - Refer to the Event.initEventNS() method for a description of this parameter. Parameters: cancelableArg - Refer to the Event.initEventNS() method for a description of this parameter. Parameters: viewArg - Refer to the UIEvent.initUIEvent() method for a description of this parameter. Parameters: detailArg - Refer to the UIEvent.initUIEvent() method for a description of this parameter. since: DOM Level 3 |
|
|