Uses of Class org.dom4j.QName (dom4j 1.6.1 API)

dom4j API


Uses of Class
org.dom4j.QName

Packages that use QName
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.datatype An implementation of the dom4j API which supports the XML Schema Data Types specification. 
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 QName in org.dom4j
 

Methods in org.dom4j that return QName
static QName QName.get(String name)
           
static QName QName.get(String name, Namespace namespace)
           
static QName QName.get(String name, String prefix, String uri)
           
static QName QName.get(String qualifiedName, String uri)
           
static QName QName.get(String localName, Namespace namespace, String qualifiedName)
           
 QName Element.getQName()
           Returns the QName of this element which represents the local name, the qualified name and the Namespace.
 QName Element.getQName(String qualifiedName)
           Returns the QName for the given qualified name, using the namespace URI in scope for the given prefix of the qualified name or the default namespace if the qualified name has no prefix.
static QName DocumentHelper.createQName(String localName, Namespace namespace)
           
static QName DocumentHelper.createQName(String localName)
           
 QName DocumentFactory.createQName(String localName, Namespace namespace)
           
 QName DocumentFactory.createQName(String localName)
           
 QName DocumentFactory.createQName(String name, String prefix, String uri)
           
 QName DocumentFactory.createQName(String qualifiedName, String uri)
           
protected  QName DocumentFactory.intern(QName qname)
          DOCUMENT ME!
 QName Attribute.getQName()
           Returns the QName of this attribute which represents the local name, the qualified name and the Namespace.
 

Methods in org.dom4j with parameters of type QName
 void Element.setQName(QName qname)
           Sets the QName of this element which represents the local name, the qualified name and the Namespace.
 Element Element.addAttribute(QName qName, String value)
           Adds the attribute value of the given fully qualified name.
 Attribute Element.attribute(QName qName)
          DOCUMENT ME!
 String Element.attributeValue(QName qName)
           This returns the attribute value for the attribute with the given fully qualified name or null if there is no such attribute or the empty string if the attribute value is empty.
 String Element.attributeValue(QName qName, String defaultValue)
           This returns the attribute value for the attribute with the given fully qualified name or the default value if there is no such attribute value.
 void Element.setAttributeValue(QName qName, String value)
          Deprecated. As of version 0.5. Please use Element.addAttribute(QName,String) instead. WILL BE REMOVED IN dom4j-1.6 !!
 Element Element.element(QName qName)
          Returns the first element for the given fully qualified name.
 List Element.elements(QName qName)
           Returns the elements contained in this element with the given fully qualified name.
 Iterator Element.elementIterator(QName qName)
          Returns an iterator over the elements contained in this element which match the given fully qualified name.
 Element Element.createCopy(QName qName)
           Creates a deep copy of this element with the given fully qualified name.
 String Element.elementText(QName qname)
           
 String Element.elementTextTrim(QName qname)
           
static Element DocumentHelper.createElement(QName qname)
           
static Attribute DocumentHelper.createAttribute(Element owner, QName qname, String value)
           
 Element DocumentFactory.createElement(QName qname)
           
 Attribute DocumentFactory.createAttribute(Element owner, QName qname, String value)
           
protected  QName DocumentFactory.intern(QName qname)
          DOCUMENT ME!
 Element Branch.addElement(QName qname)
          Adds a new Element node with the given QNameto this branch and returns a reference to the new node.
 

Uses of QName in org.dom4j.bean
 

Methods in org.dom4j.bean that return QName
 QName BeanMetaData.getQName(int index)
           
 QName BeanAttributeList.getQName(int index)
           
 QName BeanAttribute.getQName()
           
 

Methods in org.dom4j.bean with parameters of type QName
 int BeanMetaData.getIndex(QName qName)
           
 Attribute BeanElement.attribute(QName qname)
           
 Element BeanElement.addAttribute(QName qName, String value)
           
 Element BeanDocumentFactory.createElement(QName qname)
           
 Element BeanDocumentFactory.createElement(QName qname, Attributes attributes)
           
 Attribute BeanDocumentFactory.createAttribute(Element owner, QName qname, String value)
           
protected  Object BeanDocumentFactory.createBean(QName qname)
           
protected  Object BeanDocumentFactory.createBean(QName qname, Attributes attributes)
           
 Attribute BeanAttributeList.attribute(QName qname)
           
 

Constructors in org.dom4j.bean with parameters of type QName
BeanElement(QName qname, Object bean)
           
BeanElement(QName qname)
           
 

Uses of QName in org.dom4j.datatype
 

Methods in org.dom4j.datatype that return QName
 QName DatatypeElementFactory.getQName()
          DOCUMENT ME!
 QName DatatypeAttribute.getQName()
           
 

Methods in org.dom4j.datatype with parameters of type QName
 com.sun.msv.datatype.xsd.XSDatatype DatatypeElementFactory.getAttributeXSDatatype(QName attributeQName)
          DOCUMENT ME!
 void DatatypeElementFactory.setAttributeXSDatatype(QName attributeQName, com.sun.msv.datatype.xsd.XSDatatype type)
          Registers the given XSDatatype for the given <attribute> QNames
 com.sun.msv.datatype.xsd.XSDatatype DatatypeElementFactory.getChildElementXSDatatype(QName qname)
          DOCUMENT ME!
 void DatatypeElementFactory.setChildElementXSDatatype(QName qname, com.sun.msv.datatype.xsd.XSDatatype dataType)
           
 Element DatatypeElementFactory.createElement(QName qname)
           
 Attribute DatatypeElementFactory.createAttribute(Element owner, QName qname, String value)
           
 DatatypeElementFactory DatatypeDocumentFactory.getElementFactory(QName elementQName)
          Registers the given DatatypeElementFactory for the given <element> schema element
 Attribute DatatypeDocumentFactory.createAttribute(Element owner, QName qname, String value)
           
 

Constructors in org.dom4j.datatype with parameters of type QName
DatatypeElementFactory(QName elementQName)
           
DatatypeElement(QName qname, com.sun.msv.datatype.xsd.XSDatatype datatype)
           
DatatypeElement(QName qname, int attributeCount, com.sun.msv.datatype.xsd.XSDatatype type)
           
DatatypeAttribute(QName qname, com.sun.msv.datatype.xsd.XSDatatype datatype)
           
DatatypeAttribute(QName qname, com.sun.msv.datatype.xsd.XSDatatype datatype, String text)
           
 

Uses of QName in org.dom4j.dom
 

Methods in org.dom4j.dom that return QName
protected  QName DOMElement.getQName(String namespace, String qualifiedName)
           
 

Methods in org.dom4j.dom with parameters of type QName
 Element DOMDocumentFactory.createElement(QName qname)
           
 Element DOMDocumentFactory.createElement(QName qname, int attributeCount)
           
 Attribute DOMDocumentFactory.createAttribute(Element owner, QName qname, String value)
           
 

Constructors in org.dom4j.dom with parameters of type QName
DOMElement(QName qname)
           
DOMElement(QName qname, int attributeCount)
           
DOMAttribute(QName qname)
           
DOMAttribute(QName qname, String value)
           
DOMAttribute(Element parent, QName qname, String value)
           
 

Uses of QName in org.dom4j.io
 

Methods in org.dom4j.io that return QName
 QName STAXEventReader.createQName(javax.xml.namespace.QName qname)
          Constructs a new DOM4J QName from the provided JAXP QName.
 

Methods in org.dom4j.io with parameters of type QName
 javax.xml.namespace.QName STAXEventWriter.createQName(QName qname)
          Constructs a STAX QNamefrom a DOM4J QName.
 

Uses of QName in org.dom4j.tree
 

Methods in org.dom4j.tree that return QName
 QName QNameCache.get(String name)
          DOCUMENT ME!
 QName QNameCache.get(String name, Namespace namespace)
          DOCUMENT ME!
 QName QNameCache.get(String localName, Namespace namespace, String qName)
          DOCUMENT ME!
 QName QNameCache.get(String qualifiedName, String uri)
           
 QName QNameCache.intern(QName qname)
          DOCUMENT ME!
protected  QName QNameCache.createQName(String name)
          Factory method to create a new QName object which can be overloaded to create derived QName instances
protected  QName QNameCache.createQName(String name, Namespace namespace)
          Factory method to create a new QName object which can be overloaded to create derived QName instances
protected  QName QNameCache.createQName(String name, Namespace namespace, String qualifiedName)
          Factory method to create a new QName object which can be overloaded to create derived QName instances
 QName NamespaceStack.getQName(String namespaceURI, String localName, String qualifiedName)
           
 QName NamespaceStack.getAttributeQName(String namespaceURI, String localName, String qualifiedName)
           
protected  QName NamespaceStack.pushQName(String localName, String qualifiedName, Namespace namespace, String prefix)
          Adds the QName to the stack of available QNames
protected  QName NamespaceStack.createQName(String localName, String qualifiedName, Namespace namespace)
          Factory method to creeate new QName instances.
 QName FlyweightAttribute.getQName()
           
 QName DefaultElement.getQName()
           
 QName BaseElement.getQName()
           
 QName AbstractElement.getQName(String qualifiedName)
           
 

Methods in org.dom4j.tree with parameters of type QName
 QName QNameCache.intern(QName qname)
          DOCUMENT ME!
 void DefaultElement.setQName(QName name)
           
 Element DefaultElement.element(QName qName)
           
 Attribute DefaultElement.attribute(QName qName)
           
 void BaseElement.setQName(QName name)
           
 Element AbstractElement.element(QName qName)
           
 List AbstractElement.elements(QName qName)
           
 Iterator AbstractElement.elementIterator(QName qName)
           
 Attribute AbstractElement.attribute(QName qName)
           
 String AbstractElement.attributeValue(QName qName)
           
 String AbstractElement.attributeValue(QName qName, String defaultValue)
           
 void AbstractElement.setAttributeValue(QName qName, String value)
          Deprecated. As of version 0.5. Please use AbstractElement.addAttribute(String,String) instead. WILL BE REMOVED IN dom4j-1.6 !!
 Element AbstractElement.addAttribute(QName qName, String value)
           
 String AbstractElement.elementText(QName qName)
           
 String AbstractElement.elementTextTrim(QName qName)
           
 Element AbstractElement.createCopy(QName qName)
           
protected  Element AbstractElement.createElement(QName qName)
           
 Element AbstractDocument.addElement(QName qName)
           
 Element AbstractBranch.addElement(QName qname)
           
 

Constructors in org.dom4j.tree with parameters of type QName
FlyweightAttribute(QName qname)
           
FlyweightAttribute(QName qname, String value)
           
ElementQNameIterator(Iterator proxy, QName qName)
          Deprecated.  
DefaultElement(QName qname)
           
DefaultElement(QName qname, int attributeCount)
           
DefaultAttribute(QName qname)
           
DefaultAttribute(QName qname, String value)
           
DefaultAttribute(Element parent, QName qname, String value)
           
BaseElement(QName qname)
           
 

Uses of QName in org.dom4j.util
 

Fields in org.dom4j.util declared as QName
protected static QName XMLErrorHandler.ERROR_QNAME
           
protected static QName XMLErrorHandler.FATALERROR_QNAME
           
protected static QName XMLErrorHandler.WARNING_QNAME
           
 

Methods in org.dom4j.util that return QName
 QName XMLErrorHandler.getErrorQName()
           
 QName XMLErrorHandler.getFatalErrorQName()
           
 QName XMLErrorHandler.getWarningQName()
           
 QName ProxyDocumentFactory.createQName(String localName, Namespace namespace)
           
 QName ProxyDocumentFactory.createQName(String localName)
           
 QName ProxyDocumentFactory.createQName(String name, String prefix, String uri)
           
 QName ProxyDocumentFactory.createQName(String qualifiedName, String uri)
           
 

Methods in org.dom4j.util with parameters of type QName
 void XMLErrorHandler.setErrorQName(QName errorQName)
           
 void XMLErrorHandler.setFatalErrorQName(QName fatalErrorQName)
           
 void XMLErrorHandler.setWarningQName(QName warningQName)
           
protected  Element UserDataElement.createElement(QName qName)
           
 Element UserDataDocumentFactory.createElement(QName qname)
           
 Attribute UserDataDocumentFactory.createAttribute(Element owner, QName qname, String value)
           
 Element ProxyDocumentFactory.createElement(QName qname)
           
 Attribute ProxyDocumentFactory.createAttribute(Element owner, QName qname, String value)
           
 Element NonLazyDocumentFactory.createElement(QName qname)
           
 int NodeComparator.compare(QName n1, QName n2)
           
 Attribute IndexedElement.attribute(QName qName)
           
 Element IndexedElement.element(QName qName)
           
 List IndexedElement.elements(QName qName)
           
 Element IndexedDocumentFactory.createElement(QName qname)
           
 Element IndexedDocumentFactory.createElement(QName qname, int attributeCount)
           
static boolean AttributeHelper.booleanValue(Element element, QName attributeQName)
           
 

Constructors in org.dom4j.util with parameters of type QName
UserDataElement(QName qname)
           
UserDataAttribute(QName qname)
           
UserDataAttribute(QName qname, String text)
           
NonLazyElement(QName qname)
           
NonLazyElement(QName qname, int attributeCount)
           
IndexedElement(QName qname)
           
IndexedElement(QName qname, int attributeCount)
           
 



Copyright © 2001-2005 MetaStuff Ltd.. All Rights Reserved.