All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.damsete.arq.report.Report Maven / Gradle / Ivy

Go to download

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