https://bz.apache.org/bugzilla/show_bug.cgi?id=60737
Bug ID: 60737 Summary: XSSFSheetXMLHandler class's inside interface SheetContentsHandler should have an endSheet method Product: POI Version: 3.15-FINAL Hardware: PC Status: NEW Severity: enhancement Priority: P2 Component: XSSF Assignee: dev@poi.apache.org Reporter: zakim2...@yahoo.com Target Milestone: --- interface SheetContentsHandler inside XSSFSheetXMLHandler class should have an endSheet method, which should be called from the : public void endElement(String uri, String localName, String qName) throws SAXException { method's "switch" modified as follows: ... } else if ("sheetData".equals(localName)) { // Handle any "missing" cells which had comments attached checkForEmptyCellComments(EmptyCellCommentsCheckType.END_OF_SHEET_DATA); output.endSheet(); } ... This is is useful when the sheet finished processing, and you need to do something with the sheet data yet available. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org For additional commands, e-mail: dev-h...@poi.apache.org