Example usage for org.apache.commons.el NamedValue getExpressionString

List of usage examples for org.apache.commons.el NamedValue getExpressionString

Introduction

In this page you can find the example usage for org.apache.commons.el NamedValue getExpressionString.

Prototype

public String getExpressionString() 

Source Link

Document

Returns the expression in the expression language syntax

Usage

From source file:com.cybernostics.jsp2thymeleaf.api.expressions.ExpressionWritingVisitor.java

@Override
public void visitNamedValue(NamedValue namedValue) {
    append(w, namedValue.getExpressionString());
}