Package freemarker.template
Interface TemplateDirectiveModel
-
- All Superinterfaces:
TemplateModel
public interface TemplateDirectiveModel extends TemplateModel
Objects that implement this interface can be used as user-defined directives (much like macros). They can do arbitrary actions, write arbitrary text to the template output, and trigger rendering of their nested content any number of times.- Since:
- 2.3.11
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface freemarker.template.TemplateModel
TemplateModel.InvalidExpressionModel, TemplateModel.JavaNull
-
-
Field Summary
-
Fields inherited from interface freemarker.template.TemplateModel
INVALID_EXPRESSION, JAVA_NULL, NOTHING
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexecute(Environment env, Map<String,TemplateModel> params, TemplateModel[] loopVars, TemplateDirectiveBody body)Executes this user-defined directive; called by FreeMarker when the user-defined directive is called in the template.
-
-
-
Method Detail
-
execute
void execute(Environment env, Map<String,TemplateModel> params, TemplateModel[] loopVars, TemplateDirectiveBody body) throws TemplateException, IOException
Executes this user-defined directive; called by FreeMarker when the user-defined directive is called in the template.- Parameters:
env- the current processing environment. Note that you can access the outputWriterbyEnvironment.getOut().params- the parameters (if any) passed to the directive as a map of key/value pairs where the keys areString-s and the values areTemplateModelinstances. This is nevernull. If you need to convert the template models to POJOs, you can use the utility methods in theDeepUnwrapclass.loopVars- an array that corresponds to the "loop variables", in the order as they appear in the directive call. ("Loop variables" are out-parameters that are available to the nested body of the directive; see in the Manual.) You set the loop variables by writing this array. The length of the array gives the number of loop-variables that the caller has specified. Nevernull, but can be a zero-length array.body- an object that can be used to render the nested content (body) of the directive call. If the directive call has no nested content (i.e., it is [@myDirective /] or [@myDirective][/@myDirective]), then this will benull.- Throws:
TemplateExceptionIOException
-
-