Uses of Interface
org.thymeleaf.dialect.IDialect

Packages that use IDialect
org.thymeleaf   
org.thymeleaf.dialect   
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 types with arguments of type IDialect
 Map<String,IDialect> Configuration.getDialects()
           
 Set<IDialect> TemplateEngine.getDialects()
           Returns the configured dialects.
 Map<String,IDialect> TemplateEngine.getDialectsByPrefix()
           Returns the configured dialects, referenced by their prefixes.
 

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 TemplateEngine.setDialect(IDialect dialect)
           Sets a new unique dialect for this template engine.
 

Method parameters in org.thymeleaf with type arguments of type IDialect
 Set<IAttrProcessor> Configuration.getAttrProcessors(Class<? extends IDialect> dialectClass)
           
 Set<ITagProcessor> Configuration.getTagProcessors(Class<? extends IDialect> dialectClass)
           
 Set<IValueProcessor> Configuration.getValueProcessors(Class<? extends IDialect> dialectClass)
           
 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.dialect
 

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.standard
 

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



Copyright © 2011 The THYMELEAF team. All Rights Reserved.