1 /*
2 * TextReportFactory.java
3 * Created on 30 Август 2006 г., 10:47
4 */
5
6 package org.weda.report.text;
7
8 import java.util.List;
9 import org.weda.report.Report;
10 import org.weda.report.ReportFactory;
11 import org.weda.report.impl.AbstractReportFactory;
12
13 /**
14 *
15 * @author Mikhail Titov
16 */
17 public class TextReportFactory extends AbstractReportFactory {
18 public String getFactoryName() {
19 return "text reports factory";
20 }
21 }