diff options
author | Nigel Hawkins <n.hawkins@gmx.com> | 2010-10-28 10:15:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-10-29 11:54:37 +0100 |
commit | f809fcb6b50b473df56360495f99852819e09e52 (patch) | |
tree | 4182724786874702907f2ed27b9497882d26aa3f /xmerge | |
parent | 89342bccf8e059843d6a9b461f4d6df1d60a0b61 (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.java | 20 |
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() { |