summaryrefslogtreecommitdiff
path: root/xmerge
diff options
context:
space:
mode:
authorNigel Hawkins <n.hawkins@gmx.com>2010-10-28 10:15:33 +0100
committerCaolán McNamara <caolanm@redhat.com>2010-10-29 11:54:37 +0100
commitf809fcb6b50b473df56360495f99852819e09e52 (patch)
tree4182724786874702907f2ed27b9497882d26aa3f /xmerge
parent89342bccf8e059843d6a9b461f4d6df1d60a0b61 (diff)
Fix javadoc comments in SheetSettings.java
Diffstat (limited to 'xmerge')
-rw-r--r--xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java20
1 files changed, 8 insertions, 12 deletions
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java
index 4258e1a5e035..df54d1bbcdb8 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java
@@ -63,9 +63,8 @@ public class SheetSettings implements OfficeConstants {
final public static int SPLIT = 0x01;
final public static int FREEZE = 0x02;
-
/**
- * Default Constructor for a <code>ColumnRowInfo</code>
+ * Default Constructor for a <code>SheetSettings</code>
*
*/
public SheetSettings() {
@@ -81,10 +80,9 @@ public class SheetSettings implements OfficeConstants {
}
/**
- * Constructor for a <code>ColumnRowInfo</code>
+ * Constructor for a <code>SheetSettings</code>
*
- * @param dimension if it's a row the height, a column the width
- * @param repeated
+ * @param name The name for the new sheet
*/
public SheetSettings(String name) {
sheetName = name;
@@ -138,7 +136,7 @@ public class SheetSettings implements OfficeConstants {
}
/**
- * sets the position and type of the split
+ * gets the position of the split
*
* @return The position as a <code>Point</code> where the split occurs
*/
@@ -148,9 +146,9 @@ public class SheetSettings implements OfficeConstants {
}
/**
- * sets the position and type of the split
+ * gets the type of the split
*
- * @return The position as a <code>Point</code> where the split occurs
+ * @return The split type as a <code>Point</code>
*/
public Point getSplitType() {
@@ -180,11 +178,9 @@ public class SheetSettings implements OfficeConstants {
return posLeft;
}
/**
- * Sets the top row visible in the lower pane and the leftmost column
- * visibile in the right pane.
+ * Gets the top row visible in the lower pane.
*
- * @param top The top row visible in the lower pane
- * @param left The leftmost column visibile in the right pane
+ * @return The top row visible in the lower pane
*/
public int getTop() {