br.com.damsete.arq.report.Report Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ireport Show documentation
Show all versions of ireport Show documentation
Component that facilitates the handling of reports with JasperReports library
The newest version!
package br.com.damsete.arq.report;
import net.sf.jasperreports.engine.JRException;
import java.io.Serializable;
import java.util.Collection;
import java.util.Map;
public interface Report extends Serializable {
Object getSource() throws JRException;
Object getReportObject();
String getPath();
void prepare(Collection> dataSource, Map param) throws JRException;
byte[] export(Collection> dataSource, Map param, TypeReport type) throws JRException;
byte[] export(TypeReport type) throws JRException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy