Package | Description |
---|---|
freemarker.core |
The seldom used or advanced parts of the fundamental FreeMarker API, compared to
freemarker.template . |
Modifier and Type | Method and Description |
---|---|
Environment.Namespace |
Environment.getCurrentNamespace()
Returns the main name-space.
|
Environment.Namespace |
Environment.getGlobalNamespace()
Returns a fictitious name-space that contains the globally visible variables
that were created in the template, but not the variables of the data-model.
|
Environment.Namespace |
Environment.getMainNamespace()
Returns the main name-space.
|
Environment.Namespace |
Environment.getNamespace(java.lang.String name)
Returns the name-space for the name if exists, or null.
|
Environment.Namespace |
Environment.importLib(java.lang.String name,
java.lang.String namespace)
Emulates
import directive, except that name must be tempate
root relative. |
Environment.Namespace |
Environment.importLib(Template loadedTemplate,
java.lang.String namespace)
Emulates
import directive. |