Class AbstractDocument.BranchElement
java.lang.Object
javax.swing.text.AbstractDocument.AbstractElement
javax.swing.text.AbstractDocument.BranchElement
- All Implemented Interfaces:
Serializable, AttributeSet, Element, MutableAttributeSet, TreeNode
- Direct Known Subclasses:
DefaultStyledDocument.SectionElement, HTMLDocument.BlockElement
- Enclosing class:
AbstractDocument
Implements a composite element that contains other elements.
Warning:
Serialized objects of this class will not be compatible with
future Swing releases. The current serialization support is
appropriate for short term storage or RMI between applications running
the same version of Swing. As of 1.4, support for long term storage
of all JavaBeans
has been added to the java.beans package.
Please see XMLEncoder.
-
Nested Class Summary
Nested classes/interfaces declared in interface AttributeSet
AttributeSet.CharacterAttribute, AttributeSet.ColorAttribute, AttributeSet.FontAttribute, AttributeSet.ParagraphAttributeModifier and TypeInterfaceDescriptionstatic interfaceThis interface is the type signature that is expected to be present on any attribute key that contributes to character level presentation.static interfaceThis interface is the type signature that is expected to be present on any attribute key that contributes to presentation of color.static interfaceThis interface is the type signature that is expected to be present on any attribute key that contributes to the determination of what font to use to render some text.static interfaceThis interface is the type signature that is expected to be present on any attribute key that contributes to the paragraph level presentation. -
Field Summary
Fields declared in interface AttributeSet
NameAttribute, ResolveAttribute -
Constructor Summary
ConstructorsConstructorDescriptionBranchElement(Element parent, AttributeSet a) Constructs a composite element that initially contains no children. -
Method Summary
Modifier and TypeMethodDescriptionchildren()Returns the children of the receiver as anEnumeration.booleanReturns true if the receiver allows children.getElement(int index) Gets a child element.intGets the number of children for the element.intgetElementIndex(int offset) Gets the child element index closest to the given model offset.intGets the ending offset in the model for the element.getName()Gets the element name.intGets the starting offset in the model for the element.booleanisLeaf()Checks whether the element is a leaf.positionToElement(int pos) Gets the child element that contains the given model position.voidReplaces content with a new set of elements.toString()Converts the element to a string.Methods declared in class AbstractDocument.AbstractElement
addAttribute, addAttributes, containsAttribute, containsAttributes, copyAttributes, dump, getAttribute, getAttributeCount, getAttributeNames, getAttributes, getChildAt, getChildCount, getDocument, getIndex, getParent, getParentElement, getResolveParent, isDefined, isEqual, removeAttribute, removeAttributes, removeAttributes, setResolveParentModifier and TypeMethodDescriptionvoidaddAttribute(Object name, Object value) Adds an attribute to the element.voidaddAttributes(AttributeSet attr) Adds a set of attributes to the element.booleancontainsAttribute(Object name, Object value) Checks whether a given attribute name/value is defined.booleancontainsAttributes(AttributeSet attrs) Checks whether the element contains all the attributes.Copies a set of attributes.voiddump(PrintStream psOut, int indentAmount) Dumps a debugging representation of the element hierarchy.getAttribute(Object attrName) Gets the value of an attribute.intGets the number of attributes that are defined.Enumeration<?> Gets the names of all attributes.Gets the attributes for the element.getChildAt(int childIndex) Returns the childTreeNodeat indexchildIndex.intReturns the number of childrenTreeNode's receiver contains.Retrieves the underlying model.intReturns the index ofnodein the receivers children.Returns the parentTreeNodeof the receiver.Gets the parent of the element.Gets the resolving parent.booleanChecks whether a given attribute is defined.booleanisEqual(AttributeSet attr) Checks whether two attribute sets are equal.voidremoveAttribute(Object name) Removes an attribute from the set.voidremoveAttributes(Enumeration<?> names) Removes a set of attributes for the element.voidremoveAttributes(AttributeSet attrs) Removes a set of attributes for the element.voidsetResolveParent(AttributeSet parent) Sets the resolving parent.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
BranchElement
Constructs a composite element that initially contains no children.- Parameters:
parent- The parent elementa- the attributes for the element- Since:
- 1.4
-
-
Method Details
-
positionToElement
Gets the child element that contains the given model position.- Parameters:
pos- the position >= 0- Returns:
- the element, null if none
-
replace
Replaces content with a new set of elements.- Parameters:
offset- the starting offset >= 0length- the length to replace >= 0elems- the new elements
-
toString
-
getName
Gets the element name.- Specified by:
getNamein interfaceElement- Overrides:
getNamein classAbstractDocument.AbstractElement- Returns:
- the element name
-
getStartOffset
public int getStartOffset()Gets the starting offset in the model for the element.- Specified by:
getStartOffsetin interfaceElement- Specified by:
getStartOffsetin classAbstractDocument.AbstractElement- Returns:
- the offset >= 0
- See Also:
-
getEndOffset
public int getEndOffset()Gets the ending offset in the model for the element.- Specified by:
getEndOffsetin interfaceElement- Specified by:
getEndOffsetin classAbstractDocument.AbstractElement- Returns:
- the offset >= 0
- Throws:
NullPointerException- if this element has no children- See Also:
-
getElement
Gets a child element.- Specified by:
getElementin interfaceElement- Specified by:
getElementin classAbstractDocument.AbstractElement- Parameters:
index- the child index, >= 0 && < getElementCount()- Returns:
- the child element, null if none
-
getElementCount
public int getElementCount()Gets the number of children for the element.- Specified by:
getElementCountin interfaceElement- Specified by:
getElementCountin classAbstractDocument.AbstractElement- Returns:
- the number of children >= 0
-
getElementIndex
public int getElementIndex(int offset) Gets the child element index closest to the given model offset.- Specified by:
getElementIndexin interfaceElement- Specified by:
getElementIndexin classAbstractDocument.AbstractElement- Parameters:
offset- the offset >= 0- Returns:
- the element index >= 0
-
isLeaf
-
getAllowsChildren
public boolean getAllowsChildren()Returns true if the receiver allows children.- Specified by:
getAllowsChildrenin interfaceTreeNode- Specified by:
getAllowsChildrenin classAbstractDocument.AbstractElement- Returns:
- true if the receiver allows children, otherwise false
-
children
Returns the children of the receiver as anEnumeration.- Specified by:
childrenin interfaceTreeNode- Specified by:
childrenin classAbstractDocument.AbstractElement- Returns:
- the children of the receiver
-