Fields Summary |
---|
public static final char | CHAR_UNDEFINEDUsed when for undefined key char events |
protected String | typeThe event's type |
protected ModelNode | targetThe event target |
protected EventTarget | currentTargetThe current event target. |
protected Anchor | anchorThe event's anchor is used to ease the implementation
of hyperlinking. |
protected boolean | stopPropagationControls whether or not the event's dispatch
should be stopped |
protected Time | eventTimeTime stamp. The time is in document simple time, i.e., in the
root container's time. |
protected int | repeatCountUsed to provide the repeat iteration in a repeat event |
protected char | keyCharUsed to provide the key character in a key event |
Methods Summary |
---|
public Anchor | getAnchor()
return anchor;
|
public org.w3c.dom.events.EventTarget | getCurrentTarget()
return currentTarget;
|
public char | getKeyChar()
return keyChar;
|
public boolean | getStopPropagation()
return stopPropagation;
|
public org.w3c.dom.events.EventTarget | getTarget()
return target;
|
public java.lang.String | getType()
return type;
|
public void | setAnchor(Anchor anchor)
if (this.anchor == null) {
this.anchor = anchor;
} else {
throw new IllegalStateException();
}
|
public void | stopPropagation()Stops propagation of the Event during dispatch. See the
DOM Level 2 Event model specification for details.
stopPropagation = true;
|