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:
parent
22b03ba71b
commit
70f08e1fc5
@ -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()
|
||||
{
|
||||
|
@ -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 {
|
||||
|
@ -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();
|
||||
|
||||
|
@ -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()
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user