diff options
author | Nigel Hawkins <n.hawkins@gmx.com> | 2010-11-01 15:02:24 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-01 21:04:06 +0000 |
commit | 28d56e3202e1b008964f3d9552c847411d298c6b (patch) | |
tree | 5ce91f7dddcb814c2b5ebda2c670586fd98a17e5 /xmerge | |
parent | 44aa0b06da71a6688cb42123da3b68a940123ce1 (diff) |
Fix javadoc comments in filters/xmerge - pocketword
Diffstat (limited to 'xmerge')
2 files changed, 2 insertions, 12 deletions
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; - /** * <p>Pocket Word implementation of <code>DocumentDeserializer</code> * for use by {@link @@ -67,7 +66,6 @@ public final class DocumentSerializerImpl private boolean inList = false; - /** * <p>Initialises a new <code>DocumentSerializerImpl</code> using the.<br> * supplied <code>Document</code></p> @@ -76,14 +74,13 @@ public final class DocumentSerializerImpl * org.openoffice.xmerge.converter.xml.sxw.SxwDocument SxwDocument} * object.</p> * - * @param document The <code>Document</code> to convert. + * @param doc The <code>Document</code> to convert. */ public DocumentSerializerImpl(Document doc) { sxwDoc = (SxwDocument)doc; pswDoc = new PocketWordDocument(sxwDoc.getName()); } - /** * <p>Convert the data passed into the <code>DocumentSerializerImpl</code> * constructor into Pocket Word format.</p> @@ -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 { * <p>This method reads <code>byte</code> data from the InputStream and * extracts font and paragraph data from the file.</p> * - * @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. */ |