Uses of Class
org.apache.pivot.xml.Element.Attribute

Packages that use Element.Attribute
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
 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
 Iterator<Element.Attribute> Element.AttributeSequence.iterator()
          Returns an iterator over the attribute sequence.
 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
 int Element.AttributeSequence.add(Element.Attribute attribute)
          Adds an attribute to the sequence.
 void ElementListener.attributeValueChanged(Element.Attribute attribute, String previousValue)
          Called when an attribute's value has changed.
 void ElementListener.Adapter.attributeValueChanged(Element.Attribute attribute, 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
 void ElementListener.attributesRemoved(Element element, int index, Sequence<Element.Attribute> attributes)
          Called when attributes have been removed from an element.
 void ElementListener.Adapter.attributesRemoved(Element element, int index, Sequence<Element.Attribute> attributes)