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

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

Introduction

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

Prototype

public NodeIterator attributeIterator(QName qname) 

Source Link

Document

Returns a NodeIterator that iterates over all attributes of the current node matching the supplied node name (could have a wildcard).

Usage

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

@Override
protected NodeIterator getElementNodeIterator(NodePointer elementPointer) {
    return elementPointer.attributeIterator(name);
}