Interface ExtensibilityDirective
-
- All Superinterfaces:
freemarker.template.TemplateDirectiveModel,freemarker.template.TemplateModel
- All Known Implementing Classes:
AbstractExtensibilityDirective,MarkupDirective
public interface ExtensibilityDirective extends freemarker.template.TemplateDirectiveModelAlthough this is currently an interface that defines no methods. It's existence allows us to support generics in the
ExtensibilityModeland also provides a location for defining new methods should they be required at a later date.- Author:
- David Draper
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringACTIONstatic java.lang.StringACTION_AFTERstatic java.lang.StringACTION_BEFOREstatic java.lang.StringACTION_MERGEstatic java.lang.StringACTION_MODIFYstatic java.lang.StringACTION_REMOVEstatic java.lang.StringACTION_REPLACEstatic java.lang.StringDIRECTIVE_IDstatic java.lang.StringTARGET
-
-
-
Field Detail
-
DIRECTIVE_ID
static final java.lang.String DIRECTIVE_ID
- See Also:
- Constant Field Values
-
TARGET
static final java.lang.String TARGET
- See Also:
- Constant Field Values
-
ACTION
static final java.lang.String ACTION
- See Also:
- Constant Field Values
-
ACTION_MERGE
static final java.lang.String ACTION_MERGE
- See Also:
- Constant Field Values
-
ACTION_REPLACE
static final java.lang.String ACTION_REPLACE
- See Also:
- Constant Field Values
-
ACTION_REMOVE
static final java.lang.String ACTION_REMOVE
- See Also:
- Constant Field Values
-
ACTION_MODIFY
static final java.lang.String ACTION_MODIFY
- See Also:
- Constant Field Values
-
ACTION_BEFORE
static final java.lang.String ACTION_BEFORE
- See Also:
- Constant Field Values
-
ACTION_AFTER
static final java.lang.String ACTION_AFTER
- See Also:
- Constant Field Values
-
-