FileDocCategorySizeDatePackage
UIEvent.javaAPI DocAndroid 1.5 API2700Wed May 06 22:42:46 BST 2009org.w3c.dom.events

UIEvent

public interface UIEvent implements Event
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

Fields Summary
Constructors Summary
Methods Summary
public intgetDetail()
Specifies some detail information about the Event, depending on the type of event.

public org.w3c.dom.views.AbstractViewgetView()
The view attribute identifies the AbstractView from which the event was generated.

public voidinitUIEvent(java.lang.String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.views.AbstractView viewArg, int detailArg)
Initializes attributes of an UIEvent object. This method has the same behavior as Event.initEvent().

param
typeArg Refer to the Event.initEvent() method for a description of this parameter.
param
canBubbleArg Refer to the Event.initEvent() method for a description of this parameter.
param
cancelableArg Refer to the Event.initEvent() method for a description of this parameter.
param
viewArg Specifies UIEvent.view. This value may be null.
param
detailArg Specifies UIEvent.detail.