Uses of Interface
org.dom4j.Attribute
-
Packages that use Attribute Package Description org.dom4j Defines the XML Document Object Model in Java interfaces together with some helper classes.org.dom4j.bean An implementation of the dom4j API which allows JavaBeans to be used to store and retrieve attribute values from Element.org.dom4j.dom An implementation of the dom4j API which also supports the W3C object model.org.dom4j.io Provides input and output via SAX and DOM together with writing dom4j objects to streams as XML text.org.dom4j.tree Contains the default implementations of the dom4j Document Object Model together with some helpful base classes for those wishing to implement their own document object model.org.dom4j.util A collection of utility classes for the dom4j API. -
-
Uses of Attribute in org.dom4j
Methods in org.dom4j that return Attribute Modifier and Type Method Description AttributeElement. attribute(int index)Returns the attribute at the specified indexGets theAttributeElement. attribute(java.lang.String name)Returns the attribute with the given nameAttributeElement. attribute(QName qName)DOCUMENT ME!AttributeDocumentFactory. createAttribute(Element owner, java.lang.String name, java.lang.String value)AttributeDocumentFactory. createAttribute(Element owner, QName qname, java.lang.String value)static AttributeDocumentHelper. createAttribute(Element owner, java.lang.String name, java.lang.String value)static AttributeDocumentHelper. createAttribute(Element owner, QName qname, java.lang.String value)Methods in org.dom4j with parameters of type Attribute Modifier and Type Method Description voidElement. add(Attribute attribute)Adds the givenAttributeto this element.booleanElement. remove(Attribute attribute)Removes the givenAttributefrom this element.voidVisitor. visit(Attribute node)Visits the givenAttributevoidVisitorSupport. visit(Attribute node) -
Uses of Attribute in org.dom4j.bean
Classes in org.dom4j.bean that implement Attribute Modifier and Type Class Description classBeanAttributeBeanAttributerepresents a mutable XML attribute which is backed by a property of the JavaBean of its parent element.Methods in org.dom4j.bean that return Attribute Modifier and Type Method Description AttributeBeanAttributeList. attribute(java.lang.String name)AttributeBeanAttributeList. attribute(QName qname)AttributeBeanElement. attribute(java.lang.String name)AttributeBeanElement. attribute(QName qname)AttributeBeanDocumentFactory. createAttribute(Element owner, QName qname, java.lang.String value) -
Uses of Attribute in org.dom4j.dom
Classes in org.dom4j.dom that implement Attribute Modifier and Type Class Description classDOMAttributeDOMAttributeimplements a doubly linked attribute which supports the W3C DOM API.Methods in org.dom4j.dom that return Attribute Modifier and Type Method Description protected AttributeDOMElement. attribute(java.lang.String namespaceURI, java.lang.String localName)protected AttributeDOMElement. attribute(org.w3c.dom.Attr attr)AttributeDOMDocumentFactory. createAttribute(Element owner, QName qname, java.lang.String value)protected AttributeDOMElement. createAttribute(org.w3c.dom.Attr newAttr) -
Uses of Attribute in org.dom4j.io
Methods in org.dom4j.io that return Attribute Modifier and Type Method Description AttributeSTAXEventReader. createAttribute(Element elem, javax.xml.stream.events.Attribute attr)Constructs a new DOM4J Attribute from the provided StAX Attribute event.AttributeSTAXEventReader. readAttribute(javax.xml.stream.XMLEventReader reader)Constructs a DOM4J Attribute from the provided event stream.Methods in org.dom4j.io with parameters of type Attribute Modifier and Type Method Description javax.xml.stream.events.AttributeSTAXEventWriter. createAttribute(Attribute attr)Constructs a STAXAttributeevent from a DOM4JAttribute.voidXMLWriter. write(Attribute attribute)Writes the givenAttribute.voidSTAXEventWriter. writeAttribute(Attribute attr)Writes a DOM4JAttributeto the stream.protected voidXMLWriter. writeAttribute(Attribute attribute) -
Uses of Attribute in org.dom4j.tree
Classes in org.dom4j.tree that implement Attribute Modifier and Type Class Description classAbstractAttributeAbstractNamespaceis an abstract base class for tree implementors to use for implementation inheritence.classDefaultAttributeDefaultAttributeimplements a doubly linked node which supports the parent relationship and is mutable.classFlyweightAttributeFlyweightAttributeis a Flyweight pattern implementation of a singly linked, read-only XML Attribute.Methods in org.dom4j.tree that return Attribute Modifier and Type Method Description AttributeAbstractElement. attribute(int index)AttributeAbstractElement. attribute(java.lang.String name)AttributeAbstractElement. attribute(java.lang.String name, Namespace namespace)AttributeAbstractElement. attribute(QName qName)AttributeDefaultElement. attribute(int index)AttributeDefaultElement. attribute(java.lang.String name)AttributeDefaultElement. attribute(java.lang.String name, Namespace namespace)AttributeDefaultElement. attribute(QName qName)Methods in org.dom4j.tree with parameters of type Attribute Modifier and Type Method Description voidAbstractElement. add(Attribute attribute)voidDefaultElement. add(Attribute attribute)booleanAbstractElement. remove(Attribute attribute)booleanDefaultElement. remove(Attribute attribute) -
Uses of Attribute in org.dom4j.util
Classes in org.dom4j.util that implement Attribute Modifier and Type Class Description classUserDataAttributeUserDataAttributesupport the adornment of a user data object on an Element or Attribute instance such that the methodsUserDataAttribute.getData()UserDataAttribute.setData(Object)will get and set the values of a user data object.Methods in org.dom4j.util that return Attribute Modifier and Type Method Description AttributeIndexedElement. attribute(java.lang.String name)AttributeIndexedElement. attribute(QName qName)AttributeProxyDocumentFactory. createAttribute(Element owner, java.lang.String name, java.lang.String value)AttributeProxyDocumentFactory. createAttribute(Element owner, QName qname, java.lang.String value)AttributeUserDataDocumentFactory. createAttribute(Element owner, QName qname, java.lang.String value)Methods in org.dom4j.util with parameters of type Attribute Modifier and Type Method Description protected voidIndexedElement. addToAttributeIndex(java.lang.Object key, Attribute value)protected voidIndexedElement. addToAttributeIndex(Attribute attribute)protected static booleanAttributeHelper. booleanValue(Attribute attribute)intNodeComparator. compare(Attribute n1, Attribute n2)protected voidIndexedElement. removeFromAttributeIndex(java.lang.Object key, Attribute value)protected voidIndexedElement. removeFromAttributeIndex(Attribute attribute)
-