org.thymeleaf.standard.expression
Interface IStandardExpressionParser

All Known Implementing Classes:
StandardExpressionParser

public interface IStandardExpressionParser

Common interface for all objects in charge of parsing Thymeleaf Standard Expressions.

Default implementation (used by most parts of the Thymeleaf core): StandardExpressionParser.

Implementations of this interface should be thread-safe.

Since:
2.1.0
Author:
Daniel Fernández

Method Summary
 IStandardExpression parseExpression(Configuration configuration, IProcessingContext processingContext, String input)
           Parse the specified expression.
 

Method Detail

parseExpression

IStandardExpression parseExpression(Configuration configuration,
                                    IProcessingContext processingContext,
                                    String input)

Parse the specified expression.

Parameters:
configuration - the Configuration object for the template execution environment.
processingContext - the processing context object containing the variables to be applied to the expression.
input - the expression to be parsed, as an input String.
Returns:
the expression object resulting from parsing the expression.


Copyright © 2013 The THYMELEAF team. All Rights Reserved.