|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
ICacheManager
implementations, useful
for taking care of the lazy initialization of cache objects when their
corresponding getXCache() methods are called.IContext
implementations, providing some of the
features required to implement this interface.IContextExecutionInfo
implementations, providing some of the
features required to implement this interface.IDialect
that returns empty
sets for all dialect components.IMessageResolver
interface.Text
s and CDATASection
s.IDialect
that returns empty
sets for all dialect components except for the DOCTYPE resolution entries, which
return a set of standard DTD definitions for XHTML 1.0, XHTML 1.1 and HTML5.ITemplateResolutionValidity
that considers the template resolution to be always cacheable
and always valid.IContextExecutionInfo
to be added
to the context as the execInfo variable.
Calendar
) operations.IResourceResolver
that resolves
resources as classloader resources:
Thread.currentThread().getContextClassLoader().getResourceAsStream(resourceName)
ITemplateResolver
that extends TemplateResolver
and uses a ClassLoaderResourceResolver
for resource resolution.Node
.
TemplateEngine
, including all the info for every configured
IDialect
.IContext
.IContextExecutionInfo
interface.Date
) operations.StandardParsedTemplateEntryValidator
.
IDialect
.IResourceResolver
that resolves
resources as files in the filesystem:
final File resourceFile = new File(resourceName);
try {
return new FileInputStream(resourceFile);
} catch (FileNotFoundException e) {
return null;
}
ITemplateResolver
that extends TemplateResolver
and uses a FileResourceResolver
for resource resolution.VariablesMap
object with all the attributes associated
with the ServletContext
object linked to the
HttpServletRequest
used for creating the context.
Element
children
of this node, discarding children of any other types.
Element
.
HttpServletRequest
object associated with the
request this context has been created for.
HttpSession
object associated with the
request this context has been created for.
IProcessorMatcher
) that
defines the applicability of this processor.
AbstractProcessor.getMessageForTemplate(Arguments, String, Object[])
) and,
if not found, as a processor message (see AbstractProcessor.getMessageForProcessor(Arguments, String, Object[])
.
VariablesMap
object with all the attributes associated
with the HttpServletRequest
used for creating the context.
VariablesMap
object with all the parameters associated
with the HttpServletRequest
used for creating the context.
TemplateResolution.getResourceName()
).
IResourceResolver
) that will
be used to resolve the resource names that are assigned to templates resolved
by this template resolver.
Arguments.getSelectionTarget()
, and raises an
exception if there isn't any.
ServletContext
object associated with the
web application.
VariablesMap
object with all the attributes associated
with the HttpSession
object linked to the
HttpServletRequest
used for creating the context.
VariablesMap
object containing the variables that will be
available for the execution of expressions inside templates.
IProcessorMatcher
for matchers based on attribute names.ICache
object before returning it as the result of a get
operation.IContext
implementations.IProcessorMatcher
for matchers based on element names.IProcessorMatcher
for matchers that match Text/CDATA nodes.IContext
for implementations that can be
used for creating HTML/XHTML interfaces in web applications.Document
nodes
for specifying the "XML Encoding" info from the XML Declaration.
Document
nodes
for specifying the "XML Standalone" flag from the XML Declaration.
Document
nodes
for specifying the "XML Version" info from the XML Declaration.
ITemplateResolutionValidity
that considers the template resolution to be non-cacheable.MessageResolution
object.
IResourceResolver
that resolves
resources as servlet context resources:
servletContext.getResourceAsStream(resourceName)
ITemplateResolver
that extends TemplateResolver
and uses a ServletContextResourceResolver
for resource resolution.TemplateResolver.setCacheable(boolean)
).
TemplateResolver.setCacheable(boolean)
).
ClassLoaderResourceResolver
.
FileResourceResolver
.
ServletContextResourceResolver
.
TemplateResolution
results.
UrlResourceResolver
.
TemplateResolver.setTemplateMode(String)
instead.
ICacheManager
, returning
configurable instances of StandardCache
for each of
the default caches defined at the cache manager interface.IDialect
.IMessageResolver
.ITemplateModeHandler
objects.TemplateResolver.setTemplateMode(String)
.ITemplateModeHandler
.ITemplateResolver
.ITemplateResolutionValidity
that uses a TTL (time-to-live) expressed in milliseconds to
compute the validity of template cache entries.IResourceResolver
that resolves
resources as URLs:
try {
final URL url = new URL(resourceName);
return url.openStream();
} catch (final Exception e1) {
return null;
}
ITemplateResolver
that extends TemplateResolver
and uses a UrlResourceResolver
for resource resolution.Map
interface that
will be used for containing context variables in IContext
implementations.IWebContext
interface.IContextExecutionInfo
interface, for
web contexts.
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |