Bug 61937: Add more javadoc

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1819774 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2018-01-01 14:39:38 +00:00
parent 5923cb895e
commit c9846c3eaa
1 changed files with 7 additions and 1 deletions

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 */