Uses of Interface
freemarker.core.TemplateMarkupOutputModel
-
Packages that use TemplateMarkupOutputModel Package Description freemarker.core The seldom used or advanced parts of the fundamental FreeMarker API, compared tofreemarker.template
. -
-
Uses of TemplateMarkupOutputModel in freemarker.core
Classes in freemarker.core with type parameters of type TemplateMarkupOutputModel Modifier and Type Class Description class
MarkupOutputFormat<MO extends TemplateMarkupOutputModel>
Superclass ofOutputFormat
-s that represent a "markup" format, which is any format where certain character sequences have special meaning and thus may need escaping.interface
TemplateMarkupOutputModel<MO extends TemplateMarkupOutputModel<MO>>
"markup output" template language data-type; stores markup (some kind of "rich text" / structured format, as opposed to plain text) that meant to be printed as template output.Classes in freemarker.core that implement TemplateMarkupOutputModel Modifier and Type Class Description class
CommonTemplateMarkupOutputModel<MO extends CommonTemplateMarkupOutputModel<MO>>
Common superclass for implementingTemplateMarkupOutputModel
-s that belong to aCommonMarkupOutputFormat
subclass format.class
TemplateCombinedMarkupOutputModel
Stores combined markup to be printed; used withCombinedMarkupOutputFormat
.class
TemplateHTMLOutputModel
Stores HTML markup to be printed; used withHTMLOutputFormat
.class
TemplateRTFOutputModel
Stores RTF markup to be printed; used withRTFOutputFormat
.class
TemplateXHTMLOutputModel
Stores HTML markup to be printed; used withHTMLOutputFormat
.class
TemplateXMLOutputModel
Stores XML markup to be printed; used withXMLOutputFormat
.Methods in freemarker.core that return TemplateMarkupOutputModel Modifier and Type Method Description TemplateMarkupOutputModel<?>
DefaultTruncateBuiltinAlgorithm. getDefaultMTerminator()
See similarly named parameter ofDefaultTruncateBuiltinAlgorithm(String, Integer, Boolean, TemplateMarkupOutputModel, Integer, Boolean, boolean, Double)
the construction}.Methods in freemarker.core with parameters of type TemplateMarkupOutputModel Modifier and Type Method Description protected int
DefaultTruncateBuiltinAlgorithm. getMTerminatorLength(TemplateMarkupOutputModel<?> mTerminator)
Returns the (estimated) length of the argument terminator.protected boolean
DefaultTruncateBuiltinAlgorithm. getMTerminatorRemovesDots(TemplateMarkupOutputModel terminator)
Same asDefaultTruncateBuiltinAlgorithm.getTerminatorRemovesDots(String)
, but invoked for a markup terminator.Constructors in freemarker.core with parameters of type TemplateMarkupOutputModel Constructor Description DefaultTruncateBuiltinAlgorithm(java.lang.String defaultTerminator, TemplateMarkupOutputModel<?> defaultMTerminator, boolean addSpaceAtWordBoundary)
Creates an instance with a string (plain text) terminator and a markup terminator.DefaultTruncateBuiltinAlgorithm(java.lang.String defaultTerminator, java.lang.Integer defaultTerminatorLength, java.lang.Boolean defaultTerminatorRemovesDots, TemplateMarkupOutputModel<?> defaultMTerminator, java.lang.Integer defaultMTerminatorLength, java.lang.Boolean defaultMTerminatorRemovesDots, boolean addSpaceAtWordBoundary, java.lang.Double wordBoundaryMinLength)
Creates an instance with markup terminator.
-