org.thymeleaf.dialect
Interface IDialect

All Known Subinterfaces:
IExpressionEnhancingDialect
All Known Implementing Classes:
AbstractDialect, AbstractXHTMLEnabledDialect, StandardDialect

public interface IDialect

Interface for all Thymeleaf Dialects.

A Dialect must define:

A template engine can be specified more than one dialect (each with its processors). In that case, dialects are first checked for conflicts so that, for example, they do not declare DOCTYPE translations or resolution entries conflicting with the ones in other dialect/s (although they can be equal).

Since:
1.0
Author:
Daniel Fernández

Method Summary
 Set<IDocTypeResolutionEntry> getDocTypeResolutionEntries()
           Returns the set of DOCTYPE resolution entries.
 Set<IDocTypeTranslation> getDocTypeTranslations()
           Returns the set of DOCTYPE translations.
 Map<String,Object> getExecutionAttributes()
           Returns the execution attributes that will be set during executions of the template engine.
 String getPrefix()
           Returns the default dialect prefix (the one that will be used if none is explicitly specified during dialect configuration).
 Set<IProcessor> getProcessors()
           Returns the set of processors.
 

Method Detail

getPrefix

String getPrefix()

Returns the default dialect prefix (the one that will be used if none is explicitly specified during dialect configuration).

If null is returned, then every attribute and/or element is considered processable by the processors in the dialect that apply to that kind of node (elements with their attributes), and not only those that start with a specific prefix.

Prefixes are not exclusive to a dialect: several dialects can declare the same prefix, effectively acting as an aggregate dialect.

Returns:
the dialect prefix.

getProcessors

Set<IProcessor> getProcessors()

Returns the set of processors.

Returns:
the set of processors.

getExecutionAttributes

Map<String,Object> getExecutionAttributes()

Returns the execution attributes that will be set during executions of the template engine.

If more than one dialect are set, all of their execution attributes will be added to the available execution attributes map.

Returns:
the execution attributes for this dialect.
Since:
1.1

getDocTypeTranslations

Set<IDocTypeTranslation> getDocTypeTranslations()

Returns the set of DOCTYPE translations.

Returns:
the set of DOCTYPE translations.

getDocTypeResolutionEntries

Set<IDocTypeResolutionEntry> getDocTypeResolutionEntries()

Returns the set of DOCTYPE resolution entries.

Returns:
the set of DOCTYPE resolution entries.


Copyright © 2014 The THYMELEAF team. All Rights Reserved.