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 classMarkupOutputFormat<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.interfaceTemplateMarkupOutputModel<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 classCommonTemplateMarkupOutputModel<MO extends CommonTemplateMarkupOutputModel<MO>>Common superclass for implementingTemplateMarkupOutputModel-s that belong to aCommonMarkupOutputFormatsubclass format.classTemplateCombinedMarkupOutputModelStores combined markup to be printed; used withCombinedMarkupOutputFormat.classTemplateHTMLOutputModelStores HTML markup to be printed; used withHTMLOutputFormat.classTemplateRTFOutputModelStores RTF markup to be printed; used withRTFOutputFormat.classTemplateXHTMLOutputModelStores HTML markup to be printed; used withHTMLOutputFormat.classTemplateXMLOutputModelStores 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 intDefaultTruncateBuiltinAlgorithm. getMTerminatorLength(TemplateMarkupOutputModel<?> mTerminator)Returns the (estimated) length of the argument terminator.protected booleanDefaultTruncateBuiltinAlgorithm. 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.
-