freemarker.template.TemplateMethodModel Java Examples
The following examples show how to use
freemarker.template.TemplateMethodModel.
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: JobStatusMethods.java From freeacs with MIT License | 4 votes |
public TemplateMethodModel getNextAvailableStatusCodesMethod() { return allowedStatusVerificator; }
Example #2
Source File: JobStatusMethods.java From freeacs with MIT License | 4 votes |
public TemplateMethodModel getIsStatusFinishedMethod() { return statusFinishedVerificator; }
Example #3
Source File: JobStatusMethods.java From freeacs with MIT License | 4 votes |
public TemplateMethodModel getIsStatusReadyMethod() { return statusReadyVerificator; }
Example #4
Source File: JobStatusMethods.java From freeacs with MIT License | 4 votes |
public TemplateMethodModel getStatusFromAcronymMethod() { return statusFromAcronymConverter; }
Example #5
Source File: JobStatusMethods.java From freeacs with MIT License | 4 votes |
public TemplateMethodModel getStatusToAcronymMethod() { return statusToAcronymConverter; }
Example #6
Source File: ReportModel.java From testability-explorer with Apache License 2.0 | 4 votes |
public void setMessageBundle(TemplateMethodModel resourceBundleModel) { this.messageBundleModel = resourceBundleModel; }
Example #7
Source File: ReportModel.java From testability-explorer with Apache License 2.0 | 4 votes |
public void setSourceLinker(TemplateMethodModel sourceLinker) { this.sourceLinker = sourceLinker; }
Example #8
Source File: ReportModel.java From testability-explorer with Apache License 2.0 | 4 votes |
public TemplateMethodModel getMessage() { return messageBundleModel; }
Example #9
Source File: ReportModel.java From testability-explorer with Apache License 2.0 | 4 votes |
public TemplateMethodModel getSourceLink() { return sourceLinker; }