Package org.thymeleaf.spring4.expression
Class Themes
- Object
-
- org.thymeleaf.spring4.expression.Themes
-
public class Themes extends Object
A utility object, accessed in Thymeleaf templates by the#themes
expression, that provides the same features as the Spring<spring:theme>
JSP tag.- Author:
- Emanuel Rabina
-
-
Constructor Summary
Constructors Constructor Description Themes(org.thymeleaf.context.IExpressionContext context)
Constructor, obtains the current theme and locale from the processing context for code lookups later.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
code(String code)
Looks up and returns the value of the given key in the properties file of the currently-selected theme.
-
-
-
Method Detail
-
code
public String code(String code)
Looks up and returns the value of the given key in the properties file of the currently-selected theme.- Parameters:
code
- Key to look up in the theme properties file.- Returns:
- The value of the code in the current theme properties file, or an empty string if the code could not be resolved.
-
-