Uses of Interface
freemarker.core.ParserConfiguration
-
Packages that use ParserConfiguration Package Description freemarker.core The seldom used or advanced parts of the fundamental FreeMarker API, compared tofreemarker.template
.freemarker.template The fundamental, most commonly used API-s of FreeMarker; start withConfiguration
(see also the Getting Started in the Manual.) -
-
Uses of ParserConfiguration in freemarker.core
Classes in freemarker.core that implement ParserConfiguration Modifier and Type Class Description class
TemplateConfiguration
Used for customizing the configuration settings for individualTemplate
-s (or rather groups of templates), relatively to the common setting values coming from theConfiguration
. -
Uses of ParserConfiguration in freemarker.template
Classes in freemarker.template that implement ParserConfiguration Modifier and Type Class Description class
Configuration
The main entry point into the FreeMarker API; encapsulates the configuration settings of FreeMarker, also serves as a central template-loading and caching service.Methods in freemarker.template that return ParserConfiguration Modifier and Type Method Description ParserConfiguration
Template. getParserConfiguration()
Returns theParserConfiguration
that was used for parsing this template.Constructors in freemarker.template with parameters of type ParserConfiguration Constructor Description Template(java.lang.String name, java.lang.String sourceName, java.io.Reader reader, Configuration cfg, ParserConfiguration customParserConfiguration, java.lang.String encoding)
Same asTemplate(String, String, Reader, Configuration, String)
, but also specifies aTemplateConfiguration
.
-