Example usage for org.apache.commons.jxpath.ri.compiler VariableReference getVariableName

List of usage examples for org.apache.commons.jxpath.ri.compiler VariableReference getVariableName

Introduction

In this page you can find the example usage for org.apache.commons.jxpath.ri.compiler VariableReference getVariableName.

Prototype

public QName getVariableName() 

Source Link

Document

Get the variable name.

Usage

From source file:org.xchain.framework.jxpath.JXPathValidator.java

static void validateVariableReference(VariableReference variableReference, NamespaceContext xmlns) {
    QName name = variableReference.getVariableName();
    validatePrefix(name.getPrefix(), xmlns);
}