Example usage for org.apache.commons.jxpath.ri.model NodePointer childIterator

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

Introduction

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

Prototype

public NodeIterator childIterator(NodeTest test, boolean reverse, NodePointer startWith) 

Source Link

Document

Returns a NodeIterator that iterates over all children or all children that match the given NodeTest, starting with the specified one.

Usage

From source file:org.eclipse.e4.emf.internal.xpath.CollectionChildNodeIterator.java

@Override
protected NodeIterator getElementNodeIterator(NodePointer elementPointer) {
    return elementPointer.childIterator(test, false, null);
}