01: /*
02: * HtmlExportWriter.java
03: *
04: * This file is part of SQL Workbench/J, http://www.sql-workbench.net
05: *
06: * Copyright 2002-2008, Thomas Kellerer
07: * No part of this code maybe reused without the permission of the author
08: *
09: * To contact the author please send an email to: support@sql-workbench.net
10: *
11: */
12: package workbench.db.exporter;
13:
14: /**
15: *
16: * @author Alessandro Palumbo
17: */
18: public class XlsExportWriter extends ExportWriter {
19:
20: public XlsExportWriter(DataExporter exp) {
21: super (exp);
22: }
23:
24: public RowDataConverter createConverter() {
25: return new XlsRowDataConverter();
26: }
27:
28: public boolean managesOutput() {
29: return true;
30: }
31:
32: }
|