@Override
public ResultReportSection createReportSection() {
ResultReportSection aggregatedSection =
new ResultReportSection(name, description);
for (IExperimentReportElement subElement : subElements) {
aggregatedSection.addSubSection(subElement.createReportSection());
}
return aggregatedSection;
}
}