summaryrefslogtreecommitdiff
path: root/xmerge/source/xmerge/java/org/openoffice/xmerge/util/OfficeUtil.java
diff options
context:
space:
mode:
Diffstat (limited to 'xmerge/source/xmerge/java/org/openoffice/xmerge/util/OfficeUtil.java')
-rw-r--r--xmerge/source/xmerge/java/org/openoffice/xmerge/util/OfficeUtil.java15
1 files changed, 7 insertions, 8 deletions
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/util/OfficeUtil.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/util/OfficeUtil.java
index eef2ded2e76f..949565d5af88 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/util/OfficeUtil.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/util/OfficeUtil.java
@@ -27,22 +27,21 @@ import org.openoffice.xmerge.converter.xml.OfficeConstants;
import java.util.ArrayList;
-
/**
- * Class providing utility methods for OpenOffice plugins.
+ * Class providing utility methods for OpenOffice plug-ins.
*
* @version 1.1
*/
public class OfficeUtil implements OfficeConstants {
/**
- * <p>Method to replace whitespace character within text with appropriate
- * OpenOffice tags.</p>
+ * Method to replace whitespace character within text with appropriate
+ * OpenOffice tags.
*
- * @param text The text to parse for whitespace.
+ * @param text The text to parse for whitespace.
*
- * @return <code>Node</code> array containing OpenOffice XML nodes
- * representing the text.
+ * @return {@code Node} array containing OpenOffice XML nodes representing
+ * the text.
*/
public static Node[] parseText(String text, Document parentDoc) {
ArrayList<Node> nodeVec = new ArrayList<Node>();
@@ -122,4 +121,4 @@ public class OfficeUtil implements OfficeConstants {
nodes[i] = nodeVec.get(i);
return nodes;
}
-}
+} \ No newline at end of file