Browse Source

Bug 61937: Add more javadoc

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1819774 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_4_0_0_FINAL
Dominik Stadler 6 years ago
parent
commit
c9846c3eaa

+ 7
- 1
src/ooxml/java/org/apache/poi/xssf/eventusermodel/XSSFSheetXMLHandler.java View File

@@ -511,7 +511,13 @@ public class XSSFSheetXMLHandler extends DefaultHandler {

/**
* A cell, with the given formatted value (may be null),
* and possibly a comment (may be null), was encountered */
* and possibly a comment (may be null), was encountered.
*
* Sheets that have missing or empty cells may result in
* sparse calls to <code>cell</code>. See the code in
* <code>src/examples/src/org/apache/poi/xssf/eventusermodel/XLSX2CSV.java</code>
* for an example of how to handle this scenario.
*/
public void cell(String cellReference, String formattedValue, XSSFComment comment);

/** A header or footer has been encountered */

Loading…
Cancel
Save