From 1a3fd07f3923158260f9ddc05678eab19d48a8fc Mon Sep 17 00:00:00 2001 From: Rainer Klute Date: Fri, 5 Dec 2003 21:53:03 +0000 Subject: [PATCH] Removed parameter types from @param statements - Javadoc knows about the types by itself. git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353466 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/poi/hssf/record/BOFRecord.java | 12 ++++++------ .../org/apache/poi/hssf/record/BookBoolRecord.java | 2 +- .../org/apache/poi/hssf/record/CodepageRecord.java | 4 ++-- src/java/org/apache/poi/hssf/usermodel/HSSFFont.java | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/java/org/apache/poi/hssf/record/BOFRecord.java b/src/java/org/apache/poi/hssf/record/BOFRecord.java index d174a1461..a44cc0833 100644 --- a/src/java/org/apache/poi/hssf/record/BOFRecord.java +++ b/src/java/org/apache/poi/hssf/record/BOFRecord.java @@ -174,7 +174,7 @@ public class BOFRecord /** * Version number - for BIFF8 should be 0x06 * @see #VERSION - * @param short version to be set + * @param version to be set */ public void setVersion(short version) @@ -190,7 +190,7 @@ public class BOFRecord * @see #TYPE_CHART * @see #TYPE_EXCEL_4_MACRO * @see #TYPE_WORKSPACE_FILE - * @param short type to be set + * @param type to be set */ public void setType(short type) @@ -201,7 +201,7 @@ public class BOFRecord /** * build that wrote this file * @see #BUILD - * @param short build number to set + * @param build number to set */ public void setBuild(short build) @@ -212,7 +212,7 @@ public class BOFRecord /** * Year of the build that wrote this file * @see #BUILD_YEAR - * @param short build year to set + * @param build year to set */ public void setBuildYear(short year) @@ -223,7 +223,7 @@ public class BOFRecord /** * set the history bit mask (not very useful) * @see #HISTORY_MASK - * @param int bitmask to set for the history + * @param bitmask to set for the history */ public void setHistoryBitMask(int bitmask) @@ -235,7 +235,7 @@ public class BOFRecord * set the minimum version required to read this file * * @see #VERSION - * @param int version to set + * @param version to set */ public void setRequiredVersion(int version) diff --git a/src/java/org/apache/poi/hssf/record/BookBoolRecord.java b/src/java/org/apache/poi/hssf/record/BookBoolRecord.java index e20cee81b..122a3fc6c 100644 --- a/src/java/org/apache/poi/hssf/record/BookBoolRecord.java +++ b/src/java/org/apache/poi/hssf/record/BookBoolRecord.java @@ -119,7 +119,7 @@ public class BookBoolRecord /** * set the save ext links flag * - * @param short flag (0/1 -off/on) + * @param flag (0/1 -off/on) */ public void setSaveLinkValues(short flag) diff --git a/src/java/org/apache/poi/hssf/record/CodepageRecord.java b/src/java/org/apache/poi/hssf/record/CodepageRecord.java index 1748f2b93..ab6a21ed7 100644 --- a/src/java/org/apache/poi/hssf/record/CodepageRecord.java +++ b/src/java/org/apache/poi/hssf/record/CodepageRecord.java @@ -102,7 +102,7 @@ public class CodepageRecord * @param id id must be 0x42 or an exception will be throw upon validation * @param size the size of the data area of the record * @param data data of the record (should not contain sid/len) - * @param int offset of the record + * @param offset of the record */ public CodepageRecord(short id, short size, byte [] data, int offset) @@ -127,7 +127,7 @@ public class CodepageRecord * set the codepage for this workbook * * @see #CODEPAGE - * @param codepage - the codepage to set + * @param the codepage to set */ public void setCodepage(short cp) diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java b/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java index 61b8c60de..8a269543d 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java @@ -200,7 +200,7 @@ public class HSSFFont /** * set the font height in unit's of 1/20th of a point. Maybe you might want to * use the setFontHeightInPoints which matches to the familiar 10, 12, 14 etc.. - * @param short - height in 1/20ths of a point + * @param height in 1/20ths of a point * @see #setFontHeightInPoints(short) */ @@ -211,7 +211,7 @@ public class HSSFFont /** * set the font height - * @param short - height in the familiar unit of measure - points + * @param height in the familiar unit of measure - points * @see #setFontHeight(short) */