/*
|
* 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.util.ArrayList;
|
import java.util.List;
|
|
/**
|
* Pojo permettant de stocker la description d'un état
|
*
|
* @author ASUS
|
*/
|
public class ReportDefinition extends MainReportDefinition {
|
|
private final List<SubReportDefinition> subReportDefs = new ArrayList<>(); // Liste des sous-rapports s'il y en a
|
|
public ReportDefinition(String reportName) {
|
this.reportName = reportName;
|
}
|
|
public List<SubReportDefinition> getSubReportDefs() {
|
return subReportDefs;
|
}
|
}
|