]> source.dussan.org Git - poi.git/commitdiff
fix javadocs warnings for r1721930 (bug 58775)
authorJaven O'Neal <onealj@apache.org>
Tue, 29 Dec 2015 02:57:58 +0000 (02:57 +0000)
committerJaven O'Neal <onealj@apache.org>
Tue, 29 Dec 2015 02:57:58 +0000 (02:57 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1722049 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/usermodel/HSSFCell.java
src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java
src/java/org/apache/poi/ss/usermodel/Cell.java
src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFCell.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java

index 15540bc0c92b56c71bd41e568f1986e7078a5baa..2009c2f7743ea58548a444b55c93e509f3434d8a 100644 (file)
@@ -885,7 +885,7 @@ public class HSSFCell implements Cell {
      *
      * @param style  reference contained in the workbook
      * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createCellStyle()
-     * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#getCellStyleAt(short)
+     * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#getCellStyleAt(int)
      */
     public void setCellStyle(CellStyle style) {
         setCellStyle( (HSSFCellStyle)style );
@@ -914,7 +914,7 @@ public class HSSFCell implements Cell {
     /**
      * get the style for the cell.  This is a reference to a cell style contained in the workbook
      * object.
-     * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#getCellStyleAt(short)
+     * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#getCellStyleAt(int)
      */
     public HSSFCellStyle getCellStyle()
     {
index 84e41ef68b3d7c2c28733165756c9be4a109d0a2..b6d366c50689ab654bd5490af9352610dc0f9527 100644 (file)
@@ -33,7 +33,7 @@ import org.apache.poi.ss.usermodel.Font;
  * High level representation of the style of a cell in a sheet of a workbook.
  *
  * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createCellStyle()
- * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#getCellStyleAt(short)
+ * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#getCellStyleAt(int)
  * @see org.apache.poi.hssf.usermodel.HSSFCell#setCellStyle(HSSFCellStyle)
  */
 public final class HSSFCellStyle implements CellStyle {
index 1c50006391a0d60f0c22e4cda83f0c20eb3dddd7..0319f312d917cd118832cf68c7ab12bbcde53b56 100644 (file)
@@ -341,7 +341,7 @@ public interface Cell {
      *
      * @return the cell's style. Always not-null. Default cell style has zero index and can be obtained as
      * <code>workbook.getCellStyleAt(0)</code>
-     * @see Workbook#getCellStyleAt(short)
+     * @see Workbook#getCellStyleAt(int)
      */
     CellStyle getCellStyle();
 
index d4036c6fbfe349c2c7fed728b0d7047e2695d59f..90840df9fc6693e941aef8e30a38a7bd93e15a9c 100644 (file)
@@ -559,7 +559,7 @@ public class SXSSFCell implements Cell {
      *
      * @return the cell's style. Always not-null. Default cell style has zero index and can be obtained as
      * <code>workbook.getCellStyleAt(0)</code>
-     * @see org.apache.poi.ss.usermodel.Workbook#getCellStyleAt(short)
+     * @see org.apache.poi.ss.usermodel.Workbook#getCellStyleAt(int)
      */
     @Override
     public CellStyle getCellStyle()
index 15b3e769738a4160a2eb6e26967d03ad4ddc021f..21534a86fa6a61400986a829eeea005000406a05 100644 (file)
@@ -52,7 +52,7 @@ import org.openxmlformats.schemas.spreadsheetml.x2006.main.STPatternType;
  * SpreadsheetML document.
  *
  * @see org.apache.poi.xssf.usermodel.XSSFWorkbook#createCellStyle()
- * @see org.apache.poi.xssf.usermodel.XSSFWorkbook#getCellStyleAt(short)
+ * @see org.apache.poi.xssf.usermodel.XSSFWorkbook#getCellStyleAt(int)
  * @see org.apache.poi.xssf.usermodel.XSSFCell#setCellStyle(org.apache.poi.ss.usermodel.CellStyle)
  */
 public class XSSFCellStyle implements CellStyle {