|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use HSSFListener | |
---|---|
org.apache.poi.hssf.eventusermodel | HSSF eventmodel Package provides an event-based API for reading HSSF files. |
Uses of HSSFListener in org.apache.poi.hssf.eventusermodel |
---|
Classes in org.apache.poi.hssf.eventusermodel that implement HSSFListener | |
---|---|
class |
AbortableHSSFListener
Abstract class for use with the HSSFRequest and HSSFEventFactory, which allows for the halting of processing. |
static class |
EventWorkbookBuilder.SheetRecordCollectingListener
A wrapping HSSFListener which will collect BoundSheetRecord s and ExternSheetRecord s as
they go past, so you can create a Stub InternalWorkbook from
them once required. |
class |
FormatTrackingHSSFListener
A proxy HSSFListener that keeps track of the document formatting records, and provides an easy way to look up the format strings used by cells from their ids. |
class |
MissingRecordAwareHSSFListener
A HSSFListener which tracks rows and columns, and will trigger your HSSFListener for all rows and cells, even the ones that aren't actually stored in the file. |
Methods in org.apache.poi.hssf.eventusermodel with parameters of type HSSFListener | |
---|---|
void |
HSSFRequest.addListener(HSSFListener lsnr,
short sid)
add an event listener for a particular record type. |
void |
HSSFRequest.addListenerForAllRecords(HSSFListener lsnr)
This is the equivalent of calling addListener(myListener, sid) for EVERY record in the org.apache.poi.hssf.record package. |
Constructors in org.apache.poi.hssf.eventusermodel with parameters of type HSSFListener | |
---|---|
EventWorkbookBuilder.SheetRecordCollectingListener(HSSFListener childListener)
|
|
FormatTrackingHSSFListener(HSSFListener childListener)
Creates a format tracking wrapper around the given listener, using the default locale for the formats. |
|
FormatTrackingHSSFListener(HSSFListener childListener,
java.util.Locale locale)
Creates a format tracking wrapper around the given listener, using the given locale for the formats. |
|
MissingRecordAwareHSSFListener(HSSFListener listener)
Constructs a new MissingRecordAwareHSSFListener, which will fire processRecord on the supplied child HSSFListener for all Records, and missing records. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |