summaryrefslogtreecommitdiff
path: root/xmerge
diff options
context:
space:
mode:
authorNigel Hawkins <n.hawkins@gmx.com>2010-10-28 10:19:11 +0100
committerCaolán McNamara <caolanm@redhat.com>2010-10-29 11:54:40 +0100
commitd23d3c5b56865e7c226f7dfa9e6250de6da77eb0 (patch)
tree5dfb1dc0c4933682350b7752c8ce563c66193a97 /xmerge
parentf809fcb6b50b473df56360495f99852819e09e52 (diff)
Fix javadoc comments in SpreadsheetEncoder.java
Diffstat (limited to 'xmerge')
-rw-r--r--xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SpreadsheetEncoder.java12
1 files changed, 5 insertions, 7 deletions
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SpreadsheetEncoder.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SpreadsheetEncoder.java
index fc965bcd88b1..fe7a61e3cbae 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SpreadsheetEncoder.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SpreadsheetEncoder.java
@@ -105,24 +105,22 @@ public abstract class SpreadsheetEncoder {
/**
* Set the width of the columns in the WorkBook.
*
- * @param columnWidths An <code>IntArrayList</code> of column
+ * @param columnRows An <code>IntArrayList</code> of column
* widths.
*/
public abstract void setColumnRows(Vector columnRows) throws IOException;
/**
- * Set the width of the columns in the WorkBook.
+ * Set the name definition of this spreadsheet
*
- * @param columnWidths An <code>IntArrayList</code> of column
- * widths.
+ * @param nd The <code>NameDefinition</code> to use.
*/
public abstract void setNameDefinition(NameDefinition nd) throws IOException;
/**
- * Set the width of the columns in the WorkBook.
+ * Adds settings to the WorkBook.
*
- * @param columnWidths An <code>IntArrayList</code> of column
- * widths.
+ * @param s The <code>BookSettings</code> to add.
*/
public abstract void addSettings(BookSettings s) throws IOException;
}