public interface Element
Interface to describe a structural piece of a document. It is intended to capture the spirit of an SGML element.
Document getDocument()
Fetches the document associated with this element.
Element getParentElement()
Fetches the parent element. If the element is a root level element returns null
.
String getName()
Fetches the name of the element. If the element is used to represent some type of structure, this would be the type name.
AttributeSet getAttributes()
Fetches the collection of attributes this element contains.
int getStartOffset()
Fetches the offset from the beginning of the document that this element begins at. If this element has children, this will be the offset of the first child. As a document position, there is an implied forward bias.
Document
, AbstractDocument
int getEndOffset()
Fetches the offset from the beginning of the document that this element ends at. If this element has children, this will be the end offset of the last child. As a document position, there is an implied backward bias.
All the default Document
implementations descend from AbstractDocument
. AbstractDocument
models an implied break at the end of the document. As a result of this, it is possible for this to return a value greater than the length of the document.
Document
, AbstractDocument
int getElementIndex(int offset)
Gets the child element index closest to the given offset. The offset is specified relative to the beginning of the document. Returns -1
if the Element
is a leaf, otherwise returns the index of the Element
that best represents the given location. Returns 0
if the location is less than the start offset. Returns getElementCount() - 1
if the location is greater than or equal to the end offset.
offset
- the specified offset >= 0int getElementCount()
Gets the number of child elements contained by this element. If this element is a leaf, a count of zero is returned.
Element getElement(int index)
Fetches the child element at the given index.
index
- the specified index >= 0boolean isLeaf()
Is this element a leaf element? An element that may have children, even if it currently has no children, would return false
.
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.