From 28d56e3202e1b008964f3d9552c847411d298c6b Mon Sep 17 00:00:00 2001 From: Nigel Hawkins Date: Mon, 1 Nov 2010 15:02:24 +0000 Subject: Fix javadoc comments in filters/xmerge - pocketword --- .../converter/xml/sxw/pocketword/DocumentSerializerImpl.java | 12 +----------- .../converter/xml/sxw/pocketword/PocketWordDocument.java | 2 +- 2 files changed, 2 insertions(+), 12 deletions(-) (limited to 'xmerge') diff --git a/xmerge/source/pocketword/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/DocumentSerializerImpl.java b/xmerge/source/pocketword/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/DocumentSerializerImpl.java index 08424a073803..db53410633ff 100644 --- a/xmerge/source/pocketword/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/DocumentSerializerImpl.java +++ b/xmerge/source/pocketword/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/DocumentSerializerImpl.java @@ -45,7 +45,6 @@ import org.openoffice.xmerge.converter.xml.StyleCatalog; import java.io.IOException; - /** *

Pocket Word implementation of DocumentDeserializer * for use by {@link @@ -67,7 +66,6 @@ public final class DocumentSerializerImpl private boolean inList = false; - /** *

Initialises a new DocumentSerializerImpl using the.
* supplied Document

@@ -76,14 +74,13 @@ public final class DocumentSerializerImpl * org.openoffice.xmerge.converter.xml.sxw.SxwDocument SxwDocument} * object.

* - * @param document The Document to convert. + * @param doc The Document to convert. */ public DocumentSerializerImpl(Document doc) { sxwDoc = (SxwDocument)doc; pswDoc = new PocketWordDocument(sxwDoc.getName()); } - /** *

Convert the data passed into the DocumentSerializerImpl * constructor into Pocket Word format.

@@ -119,7 +116,6 @@ public final class DocumentSerializerImpl return cd; } - /* * Handles the loading of defined styles from the style.xml file as well * as automatic styles from the content.xml file. @@ -175,7 +171,6 @@ public final class DocumentSerializerImpl } } - /* * Process the office:body tag. */ @@ -205,7 +200,6 @@ public final class DocumentSerializerImpl } } - /* * Process a text:p tag */ @@ -238,7 +232,6 @@ public final class DocumentSerializerImpl traverseParagraphContents(node, tstyle); } - /* * Process the contents of a paragraph. This method handles situations * where the paragraph contains multiple children, each representing a @@ -356,7 +349,6 @@ public final class DocumentSerializerImpl } } - /* * Process a text:ordered-list or text:unordered-list tag. Pocket Word has * no concept of a list so there is no need to differentiate between the @@ -387,7 +379,6 @@ public final class DocumentSerializerImpl inList = false; } - /* * Process a text:list-item node. They usually contain have a single * text:p child but can also have sections or other lists. @@ -414,7 +405,6 @@ public final class DocumentSerializerImpl } - /* * Utility method to retrieve a Node attribute. */ diff --git a/xmerge/source/pocketword/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/PocketWordDocument.java b/xmerge/source/pocketword/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/PocketWordDocument.java index bc77e0fa6988..29e04e841203 100644 --- a/xmerge/source/pocketword/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/PocketWordDocument.java +++ b/xmerge/source/pocketword/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/PocketWordDocument.java @@ -105,7 +105,7 @@ public class PocketWordDocument implements Document, PocketWordConstants { *

This method reads byte data from the InputStream and * extracts font and paragraph data from the file.

* - * @param is InputStream containing a Pocket Word data file. + * @param docData InputStream containing a Pocket Word data file. * * @throws IOException In case of any I/O errors. */ -- cgit