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
This commit is contained in:
Rainer Klute 2003-12-05 21:53:03 +00:00
parent 9d0367838a
commit 1a3fd07f39
4 changed files with 11 additions and 11 deletions

View 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)

View 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)

View 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)

View 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)
*/