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