Package framework.beans.report

Examples of framework.beans.report.FileDetails


   * @throws java.io.IOException - ошибка чтения файла
   * @throws net.sf.jasperreports.engine.JRException - ошибка компиляции файла отчета
   */
 
  public FileLocal(File fileName) throws FileNotFoundException, IOException, JRException{
    super(new FileDetails());
    setFile(fileName);
  }
View Full Code Here


        return getDetails().fileData;
      }
    }
   
    if (getDetails().id != 0){
      FileDetails      tmpfile = report.getFileData(getDetails().id);
     
      if (tmpfile.fileSourceData != null) {
        return tmpfile.fileSourceData;
      }
      return tmpfile.fileData;
View Full Code Here

    if (getDetails().fileData != null) {
      return getDetails().fileData;
    }
   
    if (getDetails().id != 0){
      FileDetails      tmpfile = report.getFileData(getDetails().id);
      return tmpfile.fileData;
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of framework.beans.report.FileDetails

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.