Uses of Interface
freemarker.template.TemplateMethodModelEx
-
Packages that use TemplateMethodModelEx Package Description freemarker.ext.beans Thedefault object wrapperof FreeMarker uses this to expose Java Beans and POJO-s to templates, but it can also be used in itself as a better alternativeObjectWrapper.freemarker.ext.jython Exposes Jython objects to templates.freemarker.ext.rhino Exposes Rhino (ECMAScript) objects to templates.freemarker.template.utility Various classes used by core FreeMarker code but might be useful outside of it too. -
-
Uses of TemplateMethodModelEx in freemarker.ext.beans
Classes in freemarker.ext.beans that implement TemplateMethodModelEx Modifier and Type Class Description classMapModelA special case ofBeanModelthat adds implementation forTemplateMethodModelExon map objects that is a shortcut for the Map.get() method.classOverloadedMethodsModelWraps a set of same-name overloaded methods behindTemplateMethodModelinterface, like if it was a single method, chooses among them behind the scenes on call-time based on the argument values.classResourceBundleModelA hash model that wraps a resource bundle.classSimpleMapModelModel used byBeansWrapperwhen simpleMapWrapper mode is enabled.classSimpleMethodModelA class that will wrap a reflected method call into aTemplateMethodModelinterface.Methods in freemarker.ext.beans that return TemplateMethodModelEx Modifier and Type Method Description TemplateMethodModelExBeansWrapper. wrap(Object object, Method method)Wraps a Java method so that it can be called from templates, without wrapping its parent ("this") object. -
Uses of TemplateMethodModelEx in freemarker.ext.jython
Classes in freemarker.ext.jython that implement TemplateMethodModelEx Modifier and Type Class Description classJythonHashModelModel for Jython dictionaries (PyDictionaryandPyStringMap).classJythonModelGeneric model for arbitrary Jython objects.classJythonNumberModelclassJythonSequenceModelModel for Jython sequence objects (PySequencedescendants). -
Uses of TemplateMethodModelEx in freemarker.ext.rhino
Classes in freemarker.ext.rhino that implement TemplateMethodModelEx Modifier and Type Class Description classRhinoFunctionModel -
Uses of TemplateMethodModelEx in freemarker.template.utility
Classes in freemarker.template.utility that implement TemplateMethodModelEx Modifier and Type Class Description classObjectConstructorAn object that you can make available in a template to instantiate arbitrary beans-wrapped objects in a template.
-