fix javadocs
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1722609 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
de7807c8a7
commit
4a47ec3d39
@ -884,7 +884,7 @@ public class HSSFCell implements Cell {
|
||||
* the HSSFWorkbook.</p>
|
||||
*
|
||||
* <p>To change the style of a cell without affecting other cells that use the same style,
|
||||
* use {@link org.apache.poi.ss.util.CellUtil#setCellStyleProperties(Cell, Map<String, Object>)}</p>
|
||||
* use {@link org.apache.poi.ss.util.CellUtil#setCellStyleProperties(org.apache.poi.ss.usermodel.Cell, Map)}</p>
|
||||
*
|
||||
* @param style reference contained in the workbook
|
||||
* @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createCellStyle()
|
||||
|
@ -331,7 +331,7 @@ public interface Cell {
|
||||
* the Workbook.</p>
|
||||
*
|
||||
* <p>To change the style of a cell without affecting other cells that use the same style,
|
||||
* use {@link org.apache.poi.ss.util.CellUtil#setCellStyleProperties(Cell, Map<String, Object>)}</p>
|
||||
* use {@link org.apache.poi.ss.util.CellUtil#setCellStyleProperties(Cell, Map)}</p>
|
||||
*
|
||||
* @param style reference contained in the workbook.
|
||||
* If the value is null then the style information is removed causing the cell to used the default workbook style.
|
||||
|
@ -187,8 +187,8 @@ public final class CellUtil {
|
||||
* <p>For performance reasons, if this is the only cell in a workbook that uses a cell style,
|
||||
* this method does NOT remove the old style from the workbook.
|
||||
* <!-- NOT IMPLEMENTED: Unused styles should be
|
||||
* pruned from the workbook with {@link #removeUnusedCellStyles(Workbook)} or
|
||||
* {@link #removeStyleFromWorkbookIfUnused(CellStyle, Workbook)}. -->
|
||||
* pruned from the workbook with [@link #removeUnusedCellStyles(Workbook)] or
|
||||
* [@link #removeStyleFromWorkbookIfUnused(CellStyle, Workbook)]. -->
|
||||
* </p>
|
||||
*
|
||||
* @param cell The cell to change the style of
|
||||
@ -236,7 +236,7 @@ public final class CellUtil {
|
||||
* same style.</p>
|
||||
*
|
||||
* <p>If setting more than one cell style property on a cell, use
|
||||
* {@link #setCellStyleProperties(org.apache.poi.ss.usermodel.Cell, Map<String, Object>)},
|
||||
* {@link #setCellStyleProperties(org.apache.poi.ss.usermodel.Cell, Map)},
|
||||
* which is faster and does not add unnecessary intermediate CellStyles to the workbook.</p>
|
||||
*
|
||||
* @param workbook The workbook that is being worked with.
|
||||
|
@ -545,7 +545,7 @@ public class SXSSFCell implements Cell {
|
||||
* the Workbook.</p>
|
||||
*
|
||||
* <p>To change the style of a cell without affecting other cells that use the same style,
|
||||
* use {@link org.apache.poi.ss.util.CellUtil#setCellStyleProperties(Cell, Map<String, Object>)}</p>
|
||||
* use {@link org.apache.poi.ss.util.CellUtil#setCellStyleProperties(Cell, Map)}</p>
|
||||
*
|
||||
* @param style reference contained in the workbook.
|
||||
* If the value is null then the style information is removed causing the cell to used the default workbook style.
|
||||
|
@ -619,7 +619,7 @@ public final class XSSFCell implements Cell {
|
||||
* the XSSFWorkbook.</p>
|
||||
*
|
||||
* <p>To change the style of a cell without affecting other cells that use the same style,
|
||||
* use {@link org.apache.poi.ss.util.CellUtil#setCellStyleProperties(Cell, Map<String, Object>)}</p>
|
||||
* use {@link org.apache.poi.ss.util.CellUtil#setCellStyleProperties(Cell, Map)}</p>
|
||||
*
|
||||
* @param style reference contained in the workbook.
|
||||
* If the value is null then the style information is removed causing the cell to used the default workbook style.
|
||||
|
Loading…
Reference in New Issue
Block a user