You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by kl...@apache.org on 2003/12/05 22:53:04 UTC

cvs commit: jakarta-poi/src/java/org/apache/poi/hssf/usermodel HSSFFont.java

klute       2003/12/05 13:53:04

  Modified:    src/java/org/apache/poi/hssf/record BOFRecord.java
                        BookBoolRecord.java CodepageRecord.java
               src/java/org/apache/poi/hssf/usermodel HSSFFont.java
  Log:
  Removed parameter types from @param statements - Javadoc knows about the types by itself.
  
  Revision  Changes    Path
  1.5       +6 -6      jakarta-poi/src/java/org/apache/poi/hssf/record/BOFRecord.java
  
  Index: BOFRecord.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/record/BOFRecord.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- BOFRecord.java	30 Apr 2003 04:38:48 -0000	1.4
  +++ BOFRecord.java	5 Dec 2003 21:53:03 -0000	1.5
  @@ -174,7 +174,7 @@
       /**
        * 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 @@
        * @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 @@
       /**
        * 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 @@
       /**
        * 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 @@
       /**
        * 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 @@
        * 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)
  
  
  
  1.4       +1 -1      jakarta-poi/src/java/org/apache/poi/hssf/record/BookBoolRecord.java
  
  Index: BookBoolRecord.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/record/BookBoolRecord.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- BookBoolRecord.java	30 Apr 2003 04:38:47 -0000	1.3
  +++ BookBoolRecord.java	5 Dec 2003 21:53:03 -0000	1.4
  @@ -119,7 +119,7 @@
       /**
        * set the save ext links flag
        *
  -     * @param short flag (0/1 -off/on)
  +     * @param flag (0/1 -off/on)
        */
   
       public void setSaveLinkValues(short flag)
  
  
  
  1.4       +2 -2      jakarta-poi/src/java/org/apache/poi/hssf/record/CodepageRecord.java
  
  Index: CodepageRecord.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/record/CodepageRecord.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- CodepageRecord.java	30 Apr 2003 04:38:48 -0000	1.3
  +++ CodepageRecord.java	5 Dec 2003 21:53:03 -0000	1.4
  @@ -102,7 +102,7 @@
        * @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 @@
        * set the codepage for this workbook
        *
        * @see #CODEPAGE
  -     * @param codepage - the codepage to set
  +     * @param the codepage to set
        */
   
       public void setCodepage(short cp)
  
  
  
  1.5       +2 -2      jakarta-poi/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java
  
  Index: HSSFFont.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- HSSFFont.java	27 Oct 2003 02:40:31 -0000	1.4
  +++ HSSFFont.java	5 Dec 2003 21:53:03 -0000	1.5
  @@ -200,7 +200,7 @@
       /**
        * 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 @@
   
       /**
        * 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)
        */
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: poi-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: poi-dev-help@jakarta.apache.org