Examples of PrecedingOrFollowingContext


Examples of org.apache.commons.jxpath.ri.axes.PrecedingOrFollowingContext

            case Compiler.AXIS_DESCENDANT :
                return new DescendantContext(context, false, nodeTest);
            case Compiler.AXIS_DESCENDANT_OR_SELF :
                return new DescendantContext(context, true, nodeTest);
            case Compiler.AXIS_FOLLOWING :
                return new PrecedingOrFollowingContext(
                    context,
                    nodeTest,
                    false);
            case Compiler.AXIS_FOLLOWING_SIBLING :
                return new ChildContext(context, nodeTest, true, false);
            case Compiler.AXIS_NAMESPACE :
                return new NamespaceContext(context, nodeTest);
            case Compiler.AXIS_PARENT :
                return new ParentContext(context, nodeTest);
            case Compiler.AXIS_PRECEDING :
                return new PrecedingOrFollowingContext(context, nodeTest, true);
            case Compiler.AXIS_PRECEDING_SIBLING :
                return new ChildContext(context, nodeTest, true, true);
            case Compiler.AXIS_SELF :
                return new SelfContext(context, nodeTest);
        }
View Full Code Here

Examples of org.apache.commons.jxpath.ri.axes.PrecedingOrFollowingContext

        case Compiler.AXIS_DESCENDANT :
            return new DescendantContext(context, false, nodeTest);
        case Compiler.AXIS_DESCENDANT_OR_SELF :
            return new DescendantContext(context, true, nodeTest);
        case Compiler.AXIS_FOLLOWING :
            return new PrecedingOrFollowingContext(context, nodeTest, false);
        case Compiler.AXIS_FOLLOWING_SIBLING :
            return new ChildContext(context, nodeTest, true, false);
        case Compiler.AXIS_NAMESPACE :
            return new NamespaceContext(context, nodeTest);
        case Compiler.AXIS_PARENT :
            return new ParentContext(context, nodeTest);
        case Compiler.AXIS_PRECEDING :
            return new PrecedingOrFollowingContext(context, nodeTest, true);
        case Compiler.AXIS_PRECEDING_SIBLING :
            return new ChildContext(context, nodeTest, true, true);
        case Compiler.AXIS_SELF :
            return new SelfContext(context, nodeTest);
        default:
View Full Code Here

Examples of org.apache.commons.jxpath.ri.axes.PrecedingOrFollowingContext

        case Compiler.AXIS_DESCENDANT :
            return new DescendantContext(context, false, nodeTest);
        case Compiler.AXIS_DESCENDANT_OR_SELF :
            return new DescendantContext(context, true, nodeTest);
        case Compiler.AXIS_FOLLOWING :
            return new PrecedingOrFollowingContext(context, nodeTest, false);
        case Compiler.AXIS_FOLLOWING_SIBLING :
            return new ChildContext(context, nodeTest, true, false);
        case Compiler.AXIS_NAMESPACE :
            return new NamespaceContext(context, nodeTest);
        case Compiler.AXIS_PARENT :
            return new ParentContext(context, nodeTest);
        case Compiler.AXIS_PRECEDING :
            return new PrecedingOrFollowingContext(context, nodeTest, true);
        case Compiler.AXIS_PRECEDING_SIBLING :
            return new ChildContext(context, nodeTest, true, true);
        case Compiler.AXIS_SELF :
            return new SelfContext(context, nodeTest);
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.