Uses of Interface
org.thymeleaf.dialect.IDialect

Packages that use IDialect
org.thymeleaf   
org.thymeleaf.context   
org.thymeleaf.dialect   
org.thymeleaf.processor   
org.thymeleaf.standard   
 

Uses of IDialect in org.thymeleaf
 

Fields in org.thymeleaf declared as IDialect
static IDialect Configuration.STANDARD_THYMELEAF_DIALECT
           
 

Methods in org.thymeleaf that return IDialect
 IDialect DialectConfiguration.getDialect()
           
 

Methods in org.thymeleaf that return types with arguments of type IDialect
 Set<IDialect> TemplateEngine.getDialects()
           Returns the configured dialects.
 Map<String,IDialect> Configuration.getDialects()
           
 Map<String,IDialect> TemplateEngine.getDialectsByPrefix()
           Returns the configured dialects, referenced by their prefixes.
 Set<IDialect> Configuration.getDialectSet()
           
 

Methods in org.thymeleaf with parameters of type IDialect
 void TemplateEngine.addDialect(IDialect dialect)
           Adds a new dialect for this template engine, using the dialect's specified default dialect.
 void TemplateEngine.addDialect(String prefix, IDialect dialect)
           Adds a new dialect for this template engine, using the specified prefix.
 void Configuration.addDialect(String prefix, IDialect dialect)
           
 void TemplateEngine.setDialect(IDialect dialect)
           Sets a new unique dialect for this template engine.
 void Configuration.setDialect(IDialect dialect)
           
 

Method parameters in org.thymeleaf with type arguments of type IDialect
 void TemplateEngine.setAdditionalDialects(Set<IDialect> additionalDialects)
           Sets an additional set of dialects for this template engine, all of them using their default prefixes.
 void Configuration.setDialects(Map<String,IDialect> dialects)
           
 void TemplateEngine.setDialects(Set<IDialect> dialects)
           Sets a new set of dialects for this template engine, all of them using their default prefixes.
 void TemplateEngine.setDialectsByPrefix(Map<String,IDialect> dialects)
           Sets a new set of dialects for this template engine, referenced by the prefixes they will be using.
 

Uses of IDialect in org.thymeleaf.context
 

Constructor parameters in org.thymeleaf.context with type arguments of type IDialect
AbstractDialectAwareProcessingContext(IContext context, Collection<? extends IDialect> dialects)
           
AbstractDialectAwareProcessingContext(IContext context, Map<String,Object> localVariables, Collection<? extends IDialect> dialects)
           
AbstractDialectAwareProcessingContext(IContext context, Map<String,Object> localVariables, Object selectionTarget, boolean selectionTargetSet, Collection<? extends IDialect> dialects)
           
DialectAwareProcessingContext(IContext context, Collection<? extends IDialect> dialects)
           
DialectAwareProcessingContext(IContext context, Map<String,Object> localVariables, Collection<? extends IDialect> dialects)
           
DialectAwareProcessingContext(IContext context, Map<String,Object> localVariables, Object selectionTarget, boolean selectionTargetSet, Collection<? extends IDialect> dialects)
           
DialectAwareProcessingContext(IProcessingContext processingContext, Collection<? extends IDialect> dialects)
           
 

Uses of IDialect in org.thymeleaf.dialect
 

Subinterfaces of IDialect in org.thymeleaf.dialect
 interface IExpressionEnhancingDialect
           Feature-specifier interface for IDialect implementations.
 

Classes in org.thymeleaf.dialect that implement IDialect
 class AbstractDialect
           Abstract implementation of IDialect that returns empty sets for all dialect components.
 class AbstractXHTMLEnabledDialect
           Abstract implementation of IDialect that returns empty sets for all dialect components except for the DOCTYPE resolution entries, which return a set of standard DTD definitions for XHTML 1.0, XHTML 1.1 and HTML5.
 

Uses of IDialect in org.thymeleaf.processor
 

Methods in org.thymeleaf.processor that return IDialect
 IDialect ProcessorMatchingContext.getDialect()
           
 

Constructors in org.thymeleaf.processor with parameters of type IDialect
ProcessorMatchingContext(IDialect dialect, String dialectPrefix)
           
 

Uses of IDialect in org.thymeleaf.standard
 

Classes in org.thymeleaf.standard that implement IDialect
 class StandardDialect
           The Standard Dialect, default implementation of IDialect.
 



Copyright © 2013 The THYMELEAF team. All Rights Reserved.