From f809fcb6b50b473df56360495f99852819e09e52 Mon Sep 17 00:00:00 2001 From: Nigel Hawkins Date: Thu, 28 Oct 2010 10:15:33 +0100 Subject: Fix javadoc comments in SheetSettings.java --- .../xmerge/converter/xml/sxc/SheetSettings.java | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) (limited to 'xmerge') 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 ColumnRowInfo + * Default Constructor for a SheetSettings * */ public SheetSettings() { @@ -81,10 +80,9 @@ public class SheetSettings implements OfficeConstants { } /** - * Constructor for a ColumnRowInfo + * Constructor for a SheetSettings * - * @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 Point 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 Point where the split occurs + * @return The split type as a Point */ 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() { -- cgit