Interface EventTypes
public interface EventTypes
Event type constants
- 
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringCalled when a node is appended onto another node.static final Stringstatic final StringCalled when an element stops being active after being clicked.static final StringCalled when a text node's content is changed.static final StringCalled when a document is about to be closed.static final StringCalled when the DOM has been fully loaded and is about to be spawned.static final StringCalled when the DOM has been spawned after being loadedstatic final StringCalled when anInputElement's value is changed, either by a player or by invoking theInputElement.setValue(String)method.static final StringCalled when an attribute is modified.static final StringCalled when an option is modified.static final StringCalled when a cursor enter an element's bounds.static final StringCalled when a cursor leaves an element's bounds.static final StringCalled when the mouse is moved inside of an element.static final StringCalled when a node is removed from another node Details BubblesfalseCancellablefalseTypeMutationEventTags Allstatic final StringCalled when an element's tooltip is changed.static final StringCalled when the current document view is moved, or it's location changes. 
- 
Field Details
- 
MOUSE_ENTER
Called when a cursor enter an element's bounds.Details Bubbles trueCancellable falseType MouseEventTags All - See Also:
 
 - 
MOUSE_LEAVE
Called when a cursor leaves an element's bounds.Details Bubbles trueCancellable falseType MouseEventTags All - See Also:
 
 - 
MOUSE_MOVE
Called when the mouse is moved inside of an element.This event will only be called if the mouse movement happens inside of an element, if the mouse moves in or out of an element, then
MOUSE_LEAVEorMOUSE_ENTERwill be called instead.Details Bubbles falseCancellable falseType MouseEventTags All - See Also:
 
 - 
CLICK
Called when the mouse is clickedDetails Bubbles falseCancellable falseType MouseEventTags All - See Also:
 
 - 
CLICK_EXPIRE
Called when an element stops being active after being clicked.Length of time between clicking and the active state expiring is determined by
Document.ACTIVE_TICKSDetails Bubbles falseCancellable falseType MouseEventTags All - See Also:
 
 - 
APPEND_CHILD
Called when a node is appended onto another node.Details Bubbles falseCancellable falseType MutationEventTags All - See Also:
 
 - 
REMOVE_CHILD
Called when a node is removed from another nodeDetails Bubbles falseCancellable falseType MutationEventTags All - See Also:
 
 - 
MODIFY_ATTR
Called when an attribute is modified.Details Bubbles falseCancellable falseType AttributeMutateEventTags All - See Also:
 
 - 
MODIFY_OPTION
Called when an option is modified.Details Bubbles falseCancellable falseType AttributeMutateEventTags All - See Also:
 
 - 
DOM_LOADED
 - 
DOM_SPAWNED
 - 
DOM_CLOSING
 - 
INPUT
Called when anInputElement's value is changed, either by a player or by invoking theInputElement.setValue(String)method.Details Bubbles falseCancellable trueType EventTags None, only triggered on the Documentitself- See Also:
 
 - 
CONTENT_CHANGED
 - 
VIEW_MOVED
Called when the current document view is moved, or it's location changes. Only called onDocument.getDocumentElement()instances.Details Bubbles falseCancellable falseType EventTags Document- See Also:
 
 - 
TOOLTIP_CHANGED
Called when an element's tooltip is changed.Details Bubbles trueCancellable falseType TooltipEventTags All - See Also:
 
 
 -