| Package | Description |
|---|---|
| freemarker.core |
The seldom used or advanced parts of the fundamental FreeMarker API, compared to
freemarker.template. |
| freemarker.template |
The fundamental, most commonly used API-s of FreeMarker;
start with
Configuration (see also the
Getting Started in the Manual.) |
| Modifier and Type | Class and Description |
|---|---|
class |
TemplateConfiguration
Used for customizing the configuration settings for individual
Template-s (or rather groups of templates),
relatively to the common setting values coming from the Configuration. |
| Modifier and Type | Class and 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.
|
| Modifier and Type | Method and Description |
|---|---|
ParserConfiguration |
Template.getParserConfiguration()
Returns the
ParserConfiguration that was used for parsing this template. |
| Constructor and Description |
|---|
Template(java.lang.String name,
java.lang.String sourceName,
java.io.Reader reader,
Configuration cfg,
ParserConfiguration customParserConfiguration,
java.lang.String encoding)
Same as
Template.Template(String, String, Reader, Configuration, String), but also specifies a
TemplateConfiguration. |