lib/l5m-tools/template/TemplateServicerImpl.java in l5m-tools-0.0.9 vs lib/l5m-tools/template/TemplateServicerImpl.java in l5m-tools-0.0.10
- old
+ new
@@ -57,11 +57,11 @@
@Override
public void clearCache() {
super.clearCache();
- this.servicerParamBean.setPanelIndex(PANEL.Help.panelIndex());
+ this.servicerParamBean.setPanelIndex(0);
System.gc();
}
@@ -209,8 +209,29 @@
@Override
public void processFilter() {
}
-
+ public ArrayList<String> updateExportInformationBean(){
+ ArrayList<String> footerList = new ArrayList<String>();
+ //TODO
+ if(this.getExportInformationBean() != null){
+ this.getExportInformationBean().setFooterList(footerList);
+ }
+ return footerList;
+ }
+
+ @RequestParse(parseType = ParseMethodType.StateBean, actions = "exportExcelAction")
+ protected ExcelOptionStateBean excelOption;
+
+
+
+ public ExcelOptionStateBean getExcelOption () {
+ if (excelOption == null) {
+ excelOption = new ExcelOptionStateBean();
+ excelOption.setId("excelOption");
+ }
+ return excelOption;
+ }
+
}