freemarker.template.TemplateDirectiveModel Java Examples

The following examples show how to use freemarker.template.TemplateDirectiveModel. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ExtPageUrlDirective.java    From scipio-erp with Apache License 2.0 4 votes vote down vote up
public static TemplateDirectiveModel getInstance() {
    return Factory.DEFAULT;
}
 
Example #2
Source File: ExtPageUrlDirective.java    From scipio-erp with Apache License 2.0 4 votes vote down vote up
public static TemplateDirectiveModel create() { // SCIPIO: See CMS's PageUrlDirective
    return new ExtPageUrlDirective();
}
 
Example #3
Source File: TempletContext.java    From jeewx with Apache License 2.0 4 votes vote down vote up
public Map<String, TemplateDirectiveModel> getTags() {
	return tags;
}
 
Example #4
Source File: TempletContext.java    From jeewx with Apache License 2.0 4 votes vote down vote up
public void setTags(Map<String, TemplateDirectiveModel> tags) {
	this.tags = tags;
}
 
Example #5
Source File: TempletContext.java    From jeecg with Apache License 2.0 4 votes vote down vote up
public Map<String, TemplateDirectiveModel> getTags() {
	return tags;
}
 
Example #6
Source File: TempletContext.java    From jeecg with Apache License 2.0 4 votes vote down vote up
public void setTags(Map<String, TemplateDirectiveModel> tags) {
	this.tags = tags;
}
 
Example #7
Source File: TempletContextWord.java    From jeecg with Apache License 2.0 4 votes vote down vote up
public Map<String, TemplateDirectiveModel> getTags() {
	return tags;
}
 
Example #8
Source File: TempletContextWord.java    From jeecg with Apache License 2.0 4 votes vote down vote up
public void setTags(Map<String, TemplateDirectiveModel> tags) {
	this.tags = tags;
}
 
Example #9
Source File: TemplateSession.java    From helidon-build-tools with Apache License 2.0 2 votes vote down vote up
/**
 * Get the directives for this session.
 *
 * @return the list of directive
 */
public Map<String, TemplateDirectiveModel> getDirectives() {
    return directives;
}