From: Javen O'Neal Date: Tue, 29 Dec 2015 02:57:58 +0000 (+0000) Subject: fix javadocs warnings for r1721930 (bug 58775) X-Git-Tag: REL_3_14_FINAL~151 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ac12a2a9ef090e600b99056d1c9e8803f82064de;p=poi.git fix javadocs warnings for r1721930 (bug 58775) git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1722049 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java b/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java index 15540bc0c9..2009c2f774 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFCell.java @@ -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() { diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java b/src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java index 84e41ef68b..b6d366c506 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFCellStyle.java @@ -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 { diff --git a/src/java/org/apache/poi/ss/usermodel/Cell.java b/src/java/org/apache/poi/ss/usermodel/Cell.java index 1c50006391..0319f312d9 100644 --- a/src/java/org/apache/poi/ss/usermodel/Cell.java +++ b/src/java/org/apache/poi/ss/usermodel/Cell.java @@ -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 * workbook.getCellStyleAt(0) - * @see Workbook#getCellStyleAt(short) + * @see Workbook#getCellStyleAt(int) */ CellStyle getCellStyle(); diff --git a/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFCell.java b/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFCell.java index d4036c6fbf..90840df9fc 100644 --- a/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFCell.java +++ b/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFCell.java @@ -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 * workbook.getCellStyleAt(0) - * @see org.apache.poi.ss.usermodel.Workbook#getCellStyleAt(short) + * @see org.apache.poi.ss.usermodel.Workbook#getCellStyleAt(int) */ @Override public CellStyle getCellStyle() diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java index 15b3e76973..21534a86fa 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCellStyle.java @@ -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 {