/**
  * This method fetches the XSL style-sheets required for transforming the generated XML into PDF.
  *
  * @return {@link ArrayList}} of {@link Source} XSLs
  */
 public List<Source> getXSLTemplates() {
   List<Source> sourceList =
       PrintingUtils.getXSLTforReport(
           AwardPrintType.MONEY_AND_END_DATES_HISTORY.getAwardPrintType());
   return sourceList;
 }
 /**
  * This method fetches the XSL style-sheets required for transforming the generated XML into PDF.
  *
  * @return {@link ArrayList}} of {@link Source} XSLs
  */
 public List<Source> getXSLTemplates() {
   ArrayList<Source> sourceList =
       PrintingUtils.getXSLTforReport(
           BudgetPrintType.INDUSTRIAL_CUMULATIVE_BUDGET_REPORT.getBudgetPrintType());
   return sourceList;
 }