]> source.dussan.org Git - poi.git/commitdiff
Removed parameter types from @param statements - Javadoc knows about the types by...
authorRainer Klute <klute@apache.org>
Fri, 5 Dec 2003 21:53:03 +0000 (21:53 +0000)
committerRainer Klute <klute@apache.org>
Fri, 5 Dec 2003 21:53:03 +0000 (21:53 +0000)
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
src/java/org/apache/poi/hssf/record/BookBoolRecord.java
src/java/org/apache/poi/hssf/record/CodepageRecord.java
src/java/org/apache/poi/hssf/usermodel/HSSFFont.java

index d174a146106dbeef8b176f03878d2235c8464fef..a44cc08339e1ca24da39abae51bfc9c17f0cf3b2 100644 (file)
@@ -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)
index e20cee81be703d291d6bf0a4241484840c15c8a7..122a3fc6c31097cf26c33b23e9dfbc9819a532f8 100644 (file)
@@ -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)
index 1748f2b93ebbccd5b00c5b0be17f858c3889d7fd..ab6a21ed7c625a5e2cc2c49d0a1d49d42a5203a7 100644 (file)
@@ -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)
index 61b8c60de757578fdc24b4d5ac34d669699244d6..8a269543d9deedd0cc102391c7ee634ec8e5d8a8 100644 (file)
@@ -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)
      */