Uses of Class
freemarker.core.TemplateConfiguration
-
Packages that use TemplateConfiguration Package Description freemarker.cache Template loading and caching.freemarker.core The seldom used or advanced parts of the fundamental FreeMarker API, compared tofreemarker.template
. -
-
Uses of TemplateConfiguration in freemarker.cache
Methods in freemarker.cache that return TemplateConfiguration Modifier and Type Method Description TemplateConfiguration
ConditionalTemplateConfigurationFactory. get(java.lang.String sourceName, java.lang.Object templateSource)
TemplateConfiguration
FirstMatchTemplateConfigurationFactory. get(java.lang.String sourceName, java.lang.Object templateSource)
TemplateConfiguration
MergingTemplateConfigurationFactory. get(java.lang.String sourceName, java.lang.Object templateSource)
abstract TemplateConfiguration
TemplateConfigurationFactory. get(java.lang.String sourceName, java.lang.Object templateSource)
Returns (maybe creates) theTemplateConfiguration
for the given template source.Constructors in freemarker.cache with parameters of type TemplateConfiguration Constructor Description ConditionalTemplateConfigurationFactory(TemplateSourceMatcher matcher, TemplateConfiguration templateConfiguration)
-
Uses of TemplateConfiguration in freemarker.core
Methods in freemarker.core with parameters of type TemplateConfiguration Modifier and Type Method Description java.lang.Object
CustomAttribute. get(TemplateConfiguration templateConfiguration)
Same asCustomAttribute.get(Template)
, but applies to aTemplateConfiguration
.void
TemplateConfiguration. merge(TemplateConfiguration tc)
Set all settings in thisTemplateConfiguration
that were set in the parameterTemplateConfiguration
, possibly overwriting the earlier value in this object.void
CustomAttribute. set(java.lang.Object value, TemplateConfiguration templateConfiguration)
Same asCustomAttribute.set(Object, Template)
, but applicable to aTemplateConfiguration
.
-