Package org.jallinone.system.customizations.java

Examples of org.jallinone.system.customizations.java.ReportFileNameVO


      File[] files = new File(path).listFiles(new FileFilter() {
        public boolean accept(File pathname) {
          return pathname.getName().endsWith(".jasper");
        }
      });
      ReportFileNameVO vo = null;
      for(int i=0;i<files.length;i++) {
        vo = new ReportFileNameVO();
        vo.setReportFileName(files[i].getName());
        list.add(vo);
      }

      VOListResponse res = new VOListResponse(list,false,list.size());
      Response answer = res;
View Full Code Here

TOP

Related Classes of org.jallinone.system.customizations.java.ReportFileNameVO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.