Uses of Class
org.apache.commons.jxpath.ri.QName

Packages that use QName
org.apache.commons.jxpath.ri Reference implementation of JXPath. 
org.apache.commons.jxpath.ri.axes Implementations of EvalContext used for different XPath axes (child::, parent:: etc). 
org.apache.commons.jxpath.ri.compiler XPath parse tree. 
org.apache.commons.jxpath.ri.model The "model" package defines APIs that are implemented for every object model to be supported by JXPath. 
org.apache.commons.jxpath.ri.model.beans Implementation of "model" APIs for JavaBeans, Dynamic Property Objects, collections and null. 
org.apache.commons.jxpath.ri.model.container Implementation of "model" APIs for Containers. 
org.apache.commons.jxpath.ri.model.dom Implementation of "model" APIs for W3C DOM. 
org.apache.commons.jxpath.ri.model.dynabeans   
org.apache.commons.jxpath.ri.model.dynamic   
org.apache.commons.jxpath.ri.model.jdom Implementation of "model" APIs for JDOM (see jdom.org). 
 

Uses of QName in org.apache.commons.jxpath.ri
 

Methods in org.apache.commons.jxpath.ri with parameters of type QName
 NodePointer JXPathContextReferenceImpl.getVariablePointer(QName name)
           
 Function JXPathContextReferenceImpl.getFunction(QName functionName, java.lang.Object[] parameters)
           
 

Uses of QName in org.apache.commons.jxpath.ri.axes
 

Methods in org.apache.commons.jxpath.ri.axes with parameters of type QName
 EvalContext RootContext.getVariableContext(QName variableName)
           
 Function RootContext.getFunction(QName functionName, java.lang.Object[] parameters)
           
 

Uses of QName in org.apache.commons.jxpath.ri.compiler
 

Methods in org.apache.commons.jxpath.ri.compiler that return QName
 QName ExtensionFunction.getFunctionName()
           
 QName NodeNameTest.getNodeName()
           
 QName VariableReference.getVariableName()
           
 

Constructors in org.apache.commons.jxpath.ri.compiler with parameters of type QName
Expression.PointerIterator(java.util.Iterator it, QName qname, java.util.Locale locale)
           
ExtensionFunction(QName functionName, Expression[] args)
           
NodeNameTest(QName qname)
           
VariableReference(QName varName)
           
 

Uses of QName in org.apache.commons.jxpath.ri.model
 

Methods in org.apache.commons.jxpath.ri.model that return QName
abstract  QName NodePointer.getName()
          Returns the name of this node.
 QName NodePointer.getExpandedName()
          Returns a name that consists of the namespaceURI and the local name of the node.
 QName VariablePointer.getName()
           
 

Methods in org.apache.commons.jxpath.ri.model with parameters of type QName
static NodePointer NodePointer.newNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
          Allocates an entirely new NodePointer by iterating through all installed NodePointerFactories until it finds one that can create a pointer.
static NodePointer NodePointer.newChildNodePointer(NodePointer parent, QName name, java.lang.Object bean)
          Allocates an new child NodePointer by iterating through all installed NodePointerFactories until it finds one that can create a pointer.
 NodePointer NodePointer.createChild(JXPathContext context, QName name, int index, java.lang.Object value)
          Called by a child pointer if that child needs to assign the value supplied in the createPath(context, value) call to a non-existent node.
 NodePointer NodePointer.createChild(JXPathContext context, QName name, int index)
          Called by a child pointer when it needs to create a parent object for a non-existent collection element.
 NodePointer NodePointer.createAttribute(JXPathContext context, QName name)
          Called to create a non-existing attribute
 NodeIterator NodePointer.attributeIterator(QName qname)
          Returns a NodeIterator that iterates over all attributes of the current node matching the supplied node name (could have a wildcard).
 NodePointer VariablePointer.createChild(JXPathContext context, QName name, int index)
           
 NodePointer VariablePointer.createChild(JXPathContext context, QName name, int index, java.lang.Object value)
           
 NodeIterator VariablePointer.attributeIterator(QName name)
           
 NodePointer NodePointerFactory.createNodePointer(QName name, java.lang.Object object, java.util.Locale locale)
          Create a NodePointer for the supplied object.
 NodePointer NodePointerFactory.createNodePointer(NodePointer parent, QName name, java.lang.Object object)
          Create a NodePointer for the supplied child object.
 

Constructors in org.apache.commons.jxpath.ri.model with parameters of type QName
VariablePointer(Variables variables, QName name)
           
VariablePointer(QName name)
           
 

Uses of QName in org.apache.commons.jxpath.ri.model.beans
 

Methods in org.apache.commons.jxpath.ri.model.beans that return QName
abstract  QName PropertyOwnerPointer.getName()
           
 QName NullPointer.getName()
           
 QName CollectionPointer.getName()
           
 QName PropertyPointer.getName()
           
 QName BeanPointer.getName()
           
 QName NullElementPointer.getName()
           
 QName NullPropertyPointer.getName()
           
 QName LangAttributePointer.getName()
           
 QName LangAttributePointer.getExpandedName()
           
 

Methods in org.apache.commons.jxpath.ri.model.beans with parameters of type QName
 NodeIterator PropertyOwnerPointer.attributeIterator(QName name)
           
 NodePointer NullPointer.createChild(JXPathContext context, QName name, int index)
           
 NodePointer NullPointer.createChild(JXPathContext context, QName name, int index, java.lang.Object value)
           
 NodePointer CollectionPointer.createChild(JXPathContext context, QName name, int index, java.lang.Object value)
           
 NodePointer CollectionPointer.createChild(JXPathContext context, QName name, int index)
           
 NodeIterator CollectionPointer.attributeIterator(QName name)
           
 NodePointer PropertyPointer.createChild(JXPathContext context, QName name, int index, java.lang.Object value)
           
 NodePointer PropertyPointer.createChild(JXPathContext context, QName name, int index)
           
 NodePointer BeanPointerFactory.createNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
           
 NodePointer BeanPointerFactory.createNodePointer(NodePointer parent, QName name, java.lang.Object bean)
           
 NodePointer CollectionPointerFactory.createNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
           
 NodePointer CollectionPointerFactory.createNodePointer(NodePointer parent, QName name, java.lang.Object bean)
           
 NodePointer NullPropertyPointer.createChild(JXPathContext context, QName name, int index)
           
 NodePointer NullPropertyPointer.createChild(JXPathContext context, QName name, int index, java.lang.Object value)
           
 

Constructors in org.apache.commons.jxpath.ri.model.beans with parameters of type QName
NullPointer(QName name, java.util.Locale locale)
           
NullPointer(NodePointer parent, QName name)
          Used for the root node
BeanAttributeIterator(PropertyOwnerPointer parent, QName name)
           
BeanPointer(QName name, java.lang.Object bean, JXPathBeanInfo beanInfo, java.util.Locale locale)
           
BeanPointer(NodePointer parent, QName name, java.lang.Object bean, JXPathBeanInfo beanInfo)
           
 

Uses of QName in org.apache.commons.jxpath.ri.model.container
 

Methods in org.apache.commons.jxpath.ri.model.container that return QName
 QName ContainerPointer.getName()
           
 

Methods in org.apache.commons.jxpath.ri.model.container with parameters of type QName
 NodeIterator ContainerPointer.attributeIterator(QName name)
           
 NodePointer ContainerPointerFactory.createNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
           
 NodePointer ContainerPointerFactory.createNodePointer(NodePointer parent, QName name, java.lang.Object bean)
           
 

Uses of QName in org.apache.commons.jxpath.ri.model.dom
 

Methods in org.apache.commons.jxpath.ri.model.dom that return QName
 QName DOMNodePointer.getName()
           
 QName DOMNodePointer.getExpandedName()
           
 QName DOMAttributePointer.getName()
           
 QName DOMAttributePointer.getExpandedName()
           
 QName NamespacePointer.getName()
           
 

Methods in org.apache.commons.jxpath.ri.model.dom with parameters of type QName
 NodePointer DOMPointerFactory.createNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
           
 NodePointer DOMPointerFactory.createNodePointer(NodePointer parent, QName name, java.lang.Object bean)
           
 NodeIterator DOMNodePointer.attributeIterator(QName name)
           
 NodePointer DOMNodePointer.createChild(JXPathContext context, QName name, int index)
           
 NodePointer DOMNodePointer.createChild(JXPathContext context, QName name, int index, java.lang.Object value)
           
 NodePointer DOMNodePointer.createAttribute(JXPathContext context, QName name)
           
 

Constructors in org.apache.commons.jxpath.ri.model.dom with parameters of type QName
DOMAttributeIterator(NodePointer parent, QName name)
           
 

Uses of QName in org.apache.commons.jxpath.ri.model.dynabeans
 

Methods in org.apache.commons.jxpath.ri.model.dynabeans that return QName
 QName DynaBeanPointer.getName()
           
 

Methods in org.apache.commons.jxpath.ri.model.dynabeans with parameters of type QName
 NodePointer DynaBeanPointerFactory.createNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
           
 NodePointer DynaBeanPointerFactory.createNodePointer(NodePointer parent, QName name, java.lang.Object bean)
           
 

Constructors in org.apache.commons.jxpath.ri.model.dynabeans with parameters of type QName
DynaBeanPointer(QName name, org.apache.commons.beanutils.DynaBean dynaBean, java.util.Locale locale)
           
DynaBeanPointer(NodePointer parent, QName name, org.apache.commons.beanutils.DynaBean dynaBean)
           
 

Uses of QName in org.apache.commons.jxpath.ri.model.dynamic
 

Methods in org.apache.commons.jxpath.ri.model.dynamic that return QName
 QName DynamicPointer.getName()
           
 

Methods in org.apache.commons.jxpath.ri.model.dynamic with parameters of type QName
 NodePointer DynamicPointerFactory.createNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
           
 NodePointer DynamicPointerFactory.createNodePointer(NodePointer parent, QName name, java.lang.Object bean)
           
 NodeIterator DynamicPointer.attributeIterator(QName name)
           
 

Constructors in org.apache.commons.jxpath.ri.model.dynamic with parameters of type QName
DynamicAttributeIterator(PropertyOwnerPointer parent, QName name)
           
DynamicPointer(QName name, java.lang.Object bean, DynamicPropertyHandler handler, java.util.Locale locale)
           
DynamicPointer(NodePointer parent, QName name, java.lang.Object bean, DynamicPropertyHandler handler)
           
 

Uses of QName in org.apache.commons.jxpath.ri.model.jdom
 

Methods in org.apache.commons.jxpath.ri.model.jdom that return QName
 QName JDOMAttributePointer.getName()
           
 QName JDOMAttributePointer.getExpandedName()
           
 QName JDOMNodePointer.getName()
           
 QName JDOMNodePointer.getExpandedName()
           
 QName JDOMNamespacePointer.getName()
           
 

Methods in org.apache.commons.jxpath.ri.model.jdom with parameters of type QName
 NodeIterator JDOMNodePointer.attributeIterator(QName name)
           
 NodePointer JDOMNodePointer.createChild(JXPathContext context, QName name, int index)
           
 NodePointer JDOMNodePointer.createChild(JXPathContext context, QName name, int index, java.lang.Object value)
           
 NodePointer JDOMNodePointer.createAttribute(JXPathContext context, QName name)
           
 NodePointer JDOMPointerFactory.createNodePointer(QName name, java.lang.Object bean, java.util.Locale locale)
           
 NodePointer JDOMPointerFactory.createNodePointer(NodePointer parent, QName name, java.lang.Object bean)
           
 

Constructors in org.apache.commons.jxpath.ri.model.jdom with parameters of type QName
JDOMAttributeIterator(NodePointer parent, QName name)
           
 



Copyright © 2001-2003 Apache Software Foundation. All Rights Reserved.