01: /*
02: * XmlExportWriter.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 support@sql-workbench.net
17: */
18: public class OdsExportWriter extends ExportWriter {
19: public OdsExportWriter(DataExporter exp) {
20: super (exp);
21: }
22:
23: public RowDataConverter createConverter() {
24: return new OdsRowDataConverter();
25: }
26:
27: public boolean managesOutput() {
28: return true;
29: }
30:
31: }
|