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

Packages that use Element
org.apache.pivot.xml Contains classes that facilitate interaction with an XML DOM. 
 

Uses of Element in org.apache.pivot.xml
 

Methods in org.apache.pivot.xml that return Element
 Element Element.Attribute.getElement()
          Returns the element to which this attribute belongs.
static Element XML.getElement(Element root, String path)
          Returns the element matching a given path.
 Element Node.getParent()
          Returns the parent element of the node.
 Element XMLSerializer.readObject(InputStream inputStream)
           
 Element XMLSerializer.readObject(Reader reader)
           
 

Methods in org.apache.pivot.xml that return types with arguments of type Element
static List<Element> XML.getElements(Element root, String path, String name)
          Returns the sub-elements of a descendant of root whose tag names match the given name.
 List<Element> Element.getElements(String name)
          Returns the sub-elements of of this element whose tag names match the given name.
 

Methods in org.apache.pivot.xml with parameters of type Element
 void ElementListener.attributeInserted(Element element, int index)
          Called when an attribute has been added to an element.
 void ElementListener.Adapter.attributeInserted(Element element, int index)
           
 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)
           
 void XMLSerializerListener.beginElement(XMLSerializer xmlSerializer, Element element)
          Called when the serializer has begun reading an element.
 void XMLSerializerListener.Adapter.beginElement(XMLSerializer xmlSerializer, Element element)
           
 void ElementListener.defaultNamespaceURIChanged(Element element, String previousDefaultNamespaceURI)
          Called when an element's default namespace URI has changed.
 void ElementListener.Adapter.defaultNamespaceURIChanged(Element element, String previousDefaultNamespaceURI)
           
static Element XML.getElement(Element root, String path)
          Returns the element matching a given path.
static List<Element> XML.getElements(Element root, String path, String name)
          Returns the sub-elements of a descendant of root whose tag names match the given name.
 String XMLSerializer.getMIMEType(Element object)
           
static String XML.getText(Element root, String path)
          Returns the text content of a descendant of root.
 void ElementListener.namespaceAdded(Element element, String prefix)
          Called when a namespace has been added to an element.
 void ElementListener.Adapter.namespaceAdded(Element element, String prefix)
           
 void ElementListener.namespaceRemoved(Element element, String prefix, String uri)
          Called when a namespace has been removed from an element.
 void ElementListener.Adapter.namespaceRemoved(Element element, String prefix, String uri)
           
 void ElementListener.namespaceUpdated(Element element, String prefix, String previousURI)
          Called when an element attribute has been updated.
 void ElementListener.Adapter.namespaceUpdated(Element element, String prefix, String previousURI)
           
 void NodeListener.parentChanged(Node node, Element previousParent)
          Called when a node's parent has changed.
protected  void Node.setParent(Element parent)
          Sets the parent element of the node.
 void XMLSerializer.writeObject(Element element, OutputStream outputStream)
           
 void XMLSerializer.writeObject(Element element, Writer writer)