fix javadocs warnings for r1721930 (bug 58775)

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1722049 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2015-12-29 02:57:58 +00:00
parent a67a49f42d
commit ac12a2a9ef
5 changed files with 6 additions and 6 deletions

View File

@ -885,7 +885,7 @@ public class HSSFCell implements Cell {
* *
* @param style reference contained in the workbook * @param style reference contained in the workbook
* @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createCellStyle() * @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) { public void setCellStyle(CellStyle style) {
setCellStyle( (HSSFCellStyle)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 * get the style for the cell. This is a reference to a cell style contained in the workbook
* object. * object.
* @see org.apache.poi.hssf.usermodel.HSSFWorkbook#getCellStyleAt(short) * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#getCellStyleAt(int)
*/ */
public HSSFCellStyle getCellStyle() public HSSFCellStyle getCellStyle()
{ {

View 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. * 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#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) * @see org.apache.poi.hssf.usermodel.HSSFCell#setCellStyle(HSSFCellStyle)
*/ */
public final class HSSFCellStyle implements CellStyle { public final class HSSFCellStyle implements CellStyle {

View 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 * @return the cell's style. Always not-null. Default cell style has zero index and can be obtained as
* <code>workbook.getCellStyleAt(0)</code> * <code>workbook.getCellStyleAt(0)</code>
* @see Workbook#getCellStyleAt(short) * @see Workbook#getCellStyleAt(int)
*/ */
CellStyle getCellStyle(); CellStyle getCellStyle();

View 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 * @return the cell's style. Always not-null. Default cell style has zero index and can be obtained as
* <code>workbook.getCellStyleAt(0)</code> * <code>workbook.getCellStyleAt(0)</code>
* @see org.apache.poi.ss.usermodel.Workbook#getCellStyleAt(short) * @see org.apache.poi.ss.usermodel.Workbook#getCellStyleAt(int)
*/ */
@Override @Override
public CellStyle getCellStyle() public CellStyle getCellStyle()

View File

@ -52,7 +52,7 @@ import org.openxmlformats.schemas.spreadsheetml.x2006.main.STPatternType;
* SpreadsheetML document. * SpreadsheetML document.
* *
* @see org.apache.poi.xssf.usermodel.XSSFWorkbook#createCellStyle() * @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) * @see org.apache.poi.xssf.usermodel.XSSFCell#setCellStyle(org.apache.poi.ss.usermodel.CellStyle)
*/ */
public class XSSFCellStyle implements CellStyle { public class XSSFCellStyle implements CellStyle {