Uses of Interface
org.apache.poi.hssf.eventusermodel.HSSFListener

Packages that use HSSFListener
org.apache.poi.hssf.eventusermodel HSSF eventmodel Package provides an event-based API for reading HSSF files. 
org.apache.poi.hssf.usermodel.examples   
 

Uses of HSSFListener in org.apache.poi.hssf.eventusermodel
 

Classes in org.apache.poi.hssf.eventusermodel that implement HSSFListener
 class AbortableHSSFListener
          Interface for use with the HSSFRequest and HSSFEventFactory.
 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 equivilent 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
MissingRecordAwareHSSFListener(HSSFListener listener)
          Constructs a new MissingRecordAwareHSSFListener, which will fire processRecord on the supplied child HSSFListener for all Records, and missing records.
 

Uses of HSSFListener in org.apache.poi.hssf.usermodel.examples
 

Classes in org.apache.poi.hssf.usermodel.examples that implement HSSFListener
 class EventExample
          This example shows how to use the event API for reading a file.
 



Copyright 2008 The Apache Software Foundation or its licensors, as applicable.