All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class java.awt.swing.text.AbstractDocument.LeafElement

java.lang.Object
    |
    +----java.awt.swing.text.AbstractDocument.AbstractElement
            |
            +----java.awt.swing.text.AbstractDocument.LeafElement

public class AbstractDocument.LeafElement
extends AbstractDocument.AbstractElement
Implements an element that directly represents content of some kind.

See Also:
Element

Constructor Index

 o AbstractDocument.LeafElement(AbstractDocument, Element, AttributeSet, int, int)
Construct an element that represents content within the document (has no children).

Method Index

 o getElement(int)
Gets a child element.
 o getElementCount()
Returns the number of child elements.
 o getElementIndex(int)
Gets the child element index closest to the given model offset.
 o getEndOffset()
Gets the ending offset in the model for the element.
 o getName()
Gets the element name.
 o getStartOffset()
Gets the starting offset in the model for the element.
 o isLeaf()
Checks whether the element is a leaf.
 o toString()
Converts the element to a string.

Constructors

 o AbstractDocument.LeafElement
public AbstractDocument.LeafElement(AbstractDocument this$0,
                                    Element parent,
                                    AttributeSet a,
                                    int offs0,
                                    int offs1)
Construct an element that represents content within the document (has no children).

Parameters:
parent - The parent element
a - The element attributes
offs0 - The start offset
offs1 - The end offset

Methods

 o toString
public String toString()
Converts the element to a string.

Returns:
the string
Overrides:
toString in class Object
 o getStartOffset
public int getStartOffset()
Gets the starting offset in the model for the element.

Returns:
the offset
Overrides:
getStartOffset in class AbstractDocument.AbstractElement
 o getEndOffset
public int getEndOffset()
Gets the ending offset in the model for the element.

Returns:
the offset
Overrides:
getEndOffset in class AbstractDocument.AbstractElement
 o getName
public String getName()
Gets the element name.

Returns:
the name
Overrides:
getName in class AbstractDocument.AbstractElement
 o getElementIndex
public int getElementIndex(int pos)
Gets the child element index closest to the given model offset.

Parameters:
pos - the offset
Returns:
the element index
Overrides:
getElementIndex in class AbstractDocument.AbstractElement
 o getElement
public Element getElement(int index)
Gets a child element.

Parameters:
index - the child index
Returns:
the child element
Overrides:
getElement in class AbstractDocument.AbstractElement
 o getElementCount
public int getElementCount()
Returns the number of child elements.

Returns:
the number of children
Overrides:
getElementCount in class AbstractDocument.AbstractElement
 o isLeaf
public boolean isLeaf()
Checks whether the element is a leaf.

Returns:
true if a leaf
Overrides:
isLeaf in class AbstractDocument.AbstractElement

All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Submit a bug or feature