summaryrefslogtreecommitdiff
path: root/xmerge
diff options
context:
space:
mode:
authorNigel Hawkins <n.hawkins@gmx.com>2010-10-28 10:55:49 +0100
committerCaolán McNamara <caolanm@redhat.com>2010-10-29 11:54:12 +0100
commitabe492234be23176ca0a4da5640024ebb00310fd (patch)
tree8902870873db8553735155728fa61a96ebd613c4 /xmerge
parent33b2a939a8837a4336d019ace8f9020cf9005741 (diff)
Fix javadoc comments in BookSettings.java
Diffstat (limited to 'xmerge')
-rw-r--r--xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/BookSettings.java15
1 files changed, 9 insertions, 6 deletions
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/BookSettings.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/BookSettings.java
index 9c1ae2768524..d5baba59a7e3 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/BookSettings.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/BookSettings.java
@@ -54,33 +54,37 @@ public class BookSettings implements OfficeConstants {
private Vector worksheetSettings = new Vector();
/**
- * Default Constructor for a <code>BookSettings</code>
+ * Constructor for a <code>BookSettings</code>. Reads document settings
+ * from xml and inits SheetSettings variables.
*
- * @param dimension if it's a row the height, a column the width
- * @param repeated
+ * @param root The root XML node to read from.
*/
public BookSettings(Node root) {
readNode(root);
}
/**
- * Default Constructor for a <code>BookSettings</code>
+ * Constructor for a <code>BookSettings</code>
*
- * @param worksheetSettings if it's a row the height, a column the width
+ * @param worksheetSettings If it's a row the height, a column the width
*/
public BookSettings(Vector worksheetSettings) {
this.worksheetSettings = worksheetSettings;
}
/**
+ * Set the flag indicating whether we have row/column headers.
*
+ * @param hasColumnRowHeaders Flag to enable or disable headers.
*/
public void setColumnRowHeaders(boolean hasColumnRowHeaders) {
this.hasColumnRowHeaders = hasColumnRowHeaders;
}
/**
+ * Get the flag indicating whether we have row/column headers.
*
+ * @return Flag indicating whether we have row/column headers.
*/
public boolean hasColumnRowHeaders() {
return hasColumnRowHeaders;
@@ -115,7 +119,6 @@ public class BookSettings implements OfficeConstants {
this.activeSheet = activeSheet;
}
-
/**
* Adds an XML entry for a particular setting
*