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