aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Klute <klute@apache.org>2003-12-05 21:53:03 +0000
committerRainer Klute <klute@apache.org>2003-12-05 21:53:03 +0000
commit922de80904dd86200eec0c0f994d7c66e146c0f7 (patch)
treed92ede66fa755146d1b2324ad52701aa7d5041ab
parent1aa22b815ea1d39fe077d30e27e19a28de2ced4e (diff)
downloadpoi-922de80904dd86200eec0c0f994d7c66e146c0f7.tar.gz
poi-922de80904dd86200eec0c0f994d7c66e146c0f7.zip
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
-rw-r--r--src/java/org/apache/poi/hssf/record/BOFRecord.java12
-rw-r--r--src/java/org/apache/poi/hssf/record/BookBoolRecord.java2
-rw-r--r--src/java/org/apache/poi/hssf/record/CodepageRecord.java4
-rw-r--r--src/java/org/apache/poi/hssf/usermodel/HSSFFont.java4
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 d174a14610..a44cc08339 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 e20cee81be..122a3fc6c3 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 1748f2b93e..ab6a21ed7c 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 61b8c60de7..8a269543d9 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)
*/