/*
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
*/
|
package com.megatim.reporting.adhoc.pojo;
|
|
import java.io.File;
|
|
/**
|
*
|
* @author ASUS
|
*/
|
public class ProcessorElements {
|
|
private File templateFile;
|
|
private String jrxmlFolder;
|
|
private String jasperFolder;
|
|
private ReportDefinition reportDefinition;
|
|
public ProcessorElements(File templateFile, String jrxmlFolder, String jasperFolder, ReportDefinition reportDefinition) {
|
this.templateFile = templateFile;
|
this.jrxmlFolder = jrxmlFolder;
|
this.jasperFolder = jasperFolder;
|
this.reportDefinition = reportDefinition;
|
}
|
|
public File getTemplateFile() {
|
return templateFile;
|
}
|
|
public void setTemplateFile(File templateFile) {
|
this.templateFile = templateFile;
|
}
|
|
public String getJrxmlFolder() {
|
return jrxmlFolder;
|
}
|
|
public void setJrxmlFolder(String jrxmlFolder) {
|
this.jrxmlFolder = jrxmlFolder;
|
}
|
|
public String getJasperFolder() {
|
return jasperFolder;
|
}
|
|
public void setJasperFolder(String jasperFolder) {
|
this.jasperFolder = jasperFolder;
|
}
|
|
public ReportDefinition getReportDefinition() {
|
return reportDefinition;
|
}
|
|
public void setReportDefinition(ReportDefinition reportDefinition) {
|
this.reportDefinition = reportDefinition;
|
}
|
|
}
|