org.thymeleaf.dialect
Interface IDialect

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 tag/attribute 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<IAttrProcessor> getAttrProcessors()
           Returns the set of attribute processors.
 Set<IDocTypeResolutionEntry> getDocTypeResolutionEntries()
           Returns the set of DOCTYPE resolution entries.
 Set<IDocTypeTranslation> getDocTypeTranslations()
           Returns the set of DOCTYPE translations.
 String getPrefix()
           Returns the default dialect prefix (the one that will be used if none is explicitly specified during dialect configuration).
 Set<ITagProcessor> getTagProcessors()
           Returns the set of tag processors.
 Set<IValueProcessor> getValueProcessors()
           Returns the set of value processors.
 boolean isLenient()
           Returns whether the dialect is lenient or not.
 

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 tag is considered processable by the processors in the dialect, 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.

isLenient

boolean isLenient()

Returns whether the dialect is lenient or not. If the dialect is not lenient, then the existence of attributes or tags starting with the dialect prefix for which no attribute/tag processor exists is considered an error.

For non-lenient dialects, any xmlns:{prefix} attributes in the document root or any other element will be removed from output. These attributes will not be removed for lenient dialects.

When several dialects act on the same prefix, a prefix will be considered to be lenient if any of the dialects for that prefix is lenient.

Unless it is really required (for instance, in dialects with null prefix), dialects should be non-lenient.

Returns:
true if the dialect is lenient, false if not.

getAttrProcessors

Set<IAttrProcessor> getAttrProcessors()

Returns the set of attribute processors.

Returns:
the set of attribute processors.

getTagProcessors

Set<ITagProcessor> getTagProcessors()

Returns the set of tag processors.

Returns:
the set of tag processors.

getValueProcessors

Set<IValueProcessor> getValueProcessors()

Returns the set of value processors.

Returns:
the set of value processors.

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 © 2011 The THYMELEAF team. All Rights Reserved.