Uses of Class
freemarker.core.Environment.Namespace
-
Packages that use Environment.Namespace Package Description freemarker.core The seldom used or advanced parts of the fundamental FreeMarker API, compared tofreemarker.template
. -
-
Uses of Environment.Namespace in freemarker.core
Methods in freemarker.core that return Environment.Namespace Modifier and Type Method Description Environment.Namespace
Environment. getCurrentNamespace()
Returns the current namespace.Environment.Namespace
Environment. getGlobalNamespace()
Returns the name-space that contains the globally visible non-data-model variables (usually created with<#global ...>
).Environment.Namespace
Environment. getMainNamespace()
Returns the main namespace.Environment.Namespace
Environment. getNamespace(String name)
Returns the name-space for the name if exists, or null.Environment.Namespace
Environment. importLib(Template loadedTemplate, String namespace)
Emulatesimport
directive.Environment.Namespace
Environment. importLib(String name, String namespace)
Emulatesimport
directive, except thatname
must be tempate root relative.
-