summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/web/export/Exporter.java
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/web/export/Exporter.java')
-rw-r--r--wizards/com/sun/star/wizards/web/export/Exporter.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/wizards/com/sun/star/wizards/web/export/Exporter.java b/wizards/com/sun/star/wizards/web/export/Exporter.java
index 0f88ad05d008..84a6540ceb78 100644
--- a/wizards/com/sun/star/wizards/web/export/Exporter.java
+++ b/wizards/com/sun/star/wizards/web/export/Exporter.java
@@ -26,19 +26,21 @@
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
- ************************************************************************/package com.sun.star.wizards.web.export;
+ ************************************************************************/
+package com.sun.star.wizards.web.export;
import com.sun.star.io.IOException;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.wizards.ui.event.Task;
import com.sun.star.wizards.web.data.*;
-
/**
*
* @author rpiterman
*/
-public interface Exporter {
+public interface Exporter
+{
+
/**
* This method exports a document with a specified filter.<br/>
* The method is responsible for exporting the given source document
@@ -55,7 +57,7 @@ public interface Exporter {
* (call task.advacne(true) ) 3 times, while exporting.
*
*/
- public boolean export(CGDocument source, String targetDirectory ,XMultiServiceFactory xmsf, Task task) throws IOException;
+ public boolean export(CGDocument source, String targetDirectory, XMultiServiceFactory xmsf, Task task) throws IOException;
public void init(CGExporter exporter);
}