Example usage for org.apache.commons.jxpath.ri.model NodePointer subclass-usage

List of usage examples for org.apache.commons.jxpath.ri.model NodePointer subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.jxpath.ri.model NodePointer subclass-usage.

Usage

From source file org.apache.cocoon.util.jxpath.NamespacesTablePointer.java

/**
 * A JXPath <code>Pointer</code> that tracks namespaces defined by a {@link NamespacesTable}.
 * This class is to be used to inform JXPath of the namespaces declared in a host environment
 * (e.g. JXTemplateGenerator) using
 * <a href="http://jakarta.apache.org/commons/jxpath/apidocs/org/apache/commons/jxpath/JXPathContext.html#setNamespaceContextPointer(org.apache.commons.jxpath.Pointer)">JXPathContext.setNamespaceContextPointer()</a>.
 * 

From source file org.geotools.xml.impl.jxpath.FeatureTypeAttributePointer.java

/**
 * Pointer to a single attribute of a feature type.
 *
 * @author Justin Deoliveira, The Open Planning Project
 *
 *

From source file org.geotools.xml.impl.jxpath.FeaturePropertyPointer.java

/**
 * Pointer to a single property of a feature.
 * <p>
 * THe property of the feature is specified via index. Setting the index to
 * -1 will cause the pointer to point at the feature id.
 * </p>

From source file org.lilyproject.runtime.conf.jxpath.ConfAttributePointer.java

public class ConfAttributePointer extends NodePointer {
    private ConfAttr attr;

    public ConfAttributePointer(NodePointer parent, ConfAttr attr) {
        super(parent);
        this.attr = attr;

From source file org.apache.maven.project.harness.Xpp3DomAttributePointer.java

/**
 * An attribute pointer for JXPath to support <code>Xpp3Dom</code>.
 *
 * @author Benjamin Bentmann
 */
class Xpp3DomAttributePointer extends NodePointer {

From source file org.apache.cocoon.el.impl.jxpath.NamespacesTablePointer.java

/**
 * A JXPath <code>Pointer</code> that tracks namespaces defined by a {@link NamespacesTable}.
 * This class is to be used to inform JXPath of the namespaces declared in a host environment
 * (e.g. JXTemplateGenerator) using
 * <a href="http://jakarta.apache.org/commons/jxpath/apidocs/org/apache/commons/jxpath/JXPathContext.html#setNamespaceContextPointer(org.apache.commons.jxpath.Pointer)">JXPathContext.setNamespaceContextPointer()</a>.
 * 

From source file org.geotools.feature.xpath.XmlAttributeNodePointer.java

/**
 * Special node pointer for an XML-attribute inside an attribute.
 * 
 * @author Niels Charlier (Curtin University of Technology)
 * 
 *

From source file org.geotools.xml.impl.jxpath.FeatureTypePointer.java

/**
 * Special node pointer for {@link org.geotools.feature.FeatureTy}.
 *
 * @author Justin Deoliveira, The Open Planning Project
 *
 *

From source file org.geotools.xml.impl.jxpath.FeaturePointer.java

/**
 * Special node pointer for {@link org.geotools.feature.Feature}.
 *
 * @author Justin Deoliveira, The Open Planning Project
 *
 *

From source file org.geotools.feature.xpath.DescriptorXmlAttributeNodePointer.java

/**
 * Special node pointer for an XML-attribute inside an attribute.
 * 
 * @author Niels Charlier (Curtin University of Technology)
 * 
 *