Uses of Class
org.apache.pivot.xml.Element.Attribute
-
Packages that use Element.Attribute Package Description org.apache.pivot.xml Contains classes that facilitate interaction with an XML DOM. -
-
Uses of Element.Attribute in org.apache.pivot.xml
Methods in org.apache.pivot.xml that return Element.Attribute Modifier and Type Method Description Element.Attribute
Element.AttributeSequence. get(int index)
Returns the attribute at a given index.Element.Attribute
Element.AttributeSequence. update(int index, Element.Attribute item)
Methods in org.apache.pivot.xml that return types with arguments of type Element.Attribute Modifier and Type Method Description java.util.Iterator<Element.Attribute>
Element.AttributeSequence. iterator()
Sequence<Element.Attribute>
Element.AttributeSequence. remove(int index, int count)
Removes a range of attributes from the sequence.Methods in org.apache.pivot.xml with parameters of type Element.Attribute Modifier and Type Method Description int
Element.AttributeSequence. add(Element.Attribute attribute)
Adds an attribute to the sequence.void
ElementListener.Adapter. attributeValueChanged(Element.Attribute attribute, java.lang.String previousValue)
Deprecated.default void
ElementListener. attributeValueChanged(Element.Attribute attribute, java.lang.String previousValue)
Called when an attribute's value has changed.void
ElementListener.Listeners. attributeValueChanged(Element.Attribute attribute, java.lang.String previousValue)
int
Element.AttributeSequence. indexOf(Element.Attribute attribute)
Determines the index of an attribute.void
Element.AttributeSequence. insert(Element.Attribute attribute, int index)
Inserts an attribute into the sequence at a specific location.int
Element.AttributeSequence. remove(Element.Attribute attribute)
Removes an attribute from the sequence.Element.Attribute
Element.AttributeSequence. update(int index, Element.Attribute item)
Method parameters in org.apache.pivot.xml with type arguments of type Element.Attribute Modifier and Type Method Description void
ElementListener.Adapter. attributesRemoved(Element element, int index, Sequence<Element.Attribute> attributes)
Deprecated.default void
ElementListener. attributesRemoved(Element element, int index, Sequence<Element.Attribute> attributes)
Called when attributes have been removed from an element.void
ElementListener.Listeners. attributesRemoved(Element element, int index, Sequence<Element.Attribute> attributes)
-