Save This Page
Home » openjdk-7 » org.w3c » dom » events » [javadoc | source]
org.w3c.dom.events
public interface: UIEvent [javadoc | source]

All Implemented Interfaces:
    Event

All Known Implementing Classes:
    MouseEvent, SVGZoomEvent

The UIEvent interface provides specific contextual information associated with User Interface events.

See also the Document Object Model (DOM) Level 2 Events Specification.

Method from org.w3c.dom.events.UIEvent Summary:
getDetail,   getView,   initUIEvent
Method from org.w3c.dom.events.UIEvent Detail:
 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 created through the DocumentEvent interface. This method may only be called before the UIEvent has been dispatched via the dispatchEvent method, though it may be called multiple times during that phase if necessary. If called multiple times, the final invocation takes precedence.