1 /*
2 * AbstractReportFactory.java
3 * Created on 31 Август 2006 г., 23:47
4 */
5
6 package org.weda.report.impl;
7
8 import java.util.List;
9 import org.weda.report.Report;
10 import org.weda.report.ReportFactory;
11
12 /**
13 *
14 * @author Mikhail Titov
15 */
16 public abstract class AbstractReportFactory implements ReportFactory {
17 private List<Report> reports;
18
19 public List<Report> getReports() {
20 return reports;
21 }
22
23 public void setReports(List<Report> reports) {
24 this.reports = reports;
25 }
26 }