Sfoglia il codice sorgente

Javadoc fix - Generics are type-erased so not included in the javadoc links

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1737317 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_15_BETA2
Nick Burch 8 anni fa
parent
commit
21bcca03e4

+ 2
- 2
src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFCell.java Vedi File

@@ -560,11 +560,11 @@ 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.
* @see org.apache.poi.ss.usermodel.Workbook#createCellStyle()
* @see org.apache.poi.ss.usermodel.Workbook#createCellStyle
*/
@Override
public void setCellStyle(CellStyle style)

+ 1
- 1
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFCell.java Vedi File

@@ -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, java.util.Map<String, Object>)}</p>
* use {@link org.apache.poi.ss.util.CellUtil#setCellStyleProperties(Cell, java.util.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…
Annulla
Salva