Package | Description |
---|---|
com.teamdev.jxbrowser.dom |
Provides the interfaces and classes for the Document Object Model (DOM).
|
com.teamdev.jxbrowser.dom.event |
Contains the classes and interfaces of the DOM events.
|
Modifier and Type | Interface and Description |
---|---|
interface |
Attribute
An HTML DOM attribute.
|
interface |
Document
An HTML DOM document.
|
interface |
Element
An HTML DOM element.
|
interface |
FormControlElement
An HTML DOM form control element such as input, select, textarea, etc.
|
interface |
FormElement
An HTML DOM form element.
|
interface |
FrameElement
An HTML DOM frame or iframe element.
|
interface |
ImageElement
An HTML DOM image element.
|
interface |
InputElement
An HTML DOM input element.
|
interface |
Node
A base DOM object providing access to the common DOM object properties and methods to manage the
DOM node structure.
|
interface |
OptionElement
An HTML DOM option element.
|
interface |
SelectElement
An HTML DOM select element.
|
interface |
TextAreaElement
An HTML DOM textarea element.
|
Modifier and Type | Method and Description |
---|---|
java.util.Optional<EventTarget> |
Event.currentTarget()
Returns an
Optional that contains the event target that represents the element to
which the event handler has been attached, otherwise an empty Optional . |
java.util.Optional<EventTarget> |
Event.target()
Returns an
Optional that contains the element on which the event occurred if it
exists, otherwise an empty Optional . |