Uses of Interface
com.ricebridge.xmlman.RecordListener

Packages that use RecordListener
com.ricebridge.xmlman   
com.ricebridge.xmlman.in   
com.ricebridge.xmlman.test   
 

Uses of RecordListener in com.ricebridge.xmlman
 

Classes in com.ricebridge.xmlman that implement RecordListener
 class BeanRecordListener
          Implementation of RecordListener that stores data records as a List of Java Beans.
 class RecordListenerSupport
          Helper class for implementing the RecordListener interface.
 class ResultSetRecordListener
          Implementation of RecordListener that stores data records as a ResultSet.
 class StringArrayRecordListener
          Implementation of RecordListener that stores data records as a List of String[] arrays.
 class StringListRecordListener
          Implementation of RecordListener that stores data records as a List of Lists ofStrings.
 class TableModelRecordListener
          Implementation of RecordListener that stores data records as a TableModel.
 

Methods in com.ricebridge.xmlman with parameters of type RecordListener
 void XmlManager.load(File pXmlFile, RecordListener pRecordListener)
          Load XML data from a file as a stream using your own RecordListener, using the default RecordSpec.
 void XmlManager.load(String pXmlFilePath, RecordListener pRecordListener)
          Load XML data from a specified file path as a stream using your own RecordListener, using the default RecordSpec.
 void XmlManager.load(InputStream pInputStream, RecordListener pRecordListener)
          Load XML data from an InputStream as a stream using your own RecordListener, using the default RecordSpec.
 void XmlManager.load(InputSource pInputSource, RecordListener pRecordListener)
          Load XML data from an InputSource as a stream using your own RecordListener, using the default RecordSpec.
 void XmlManager.loadFromURI(String pURI, RecordListener pRecordListener)
          Load XML data specified by a Uniform Resource Identifier (URI) as a stream using your own RecordListener, using the default RecordSpec.
 void XmlManager.loadFromString(String pXmlString, RecordListener pRecordListener)
          Load XML data from a String variable as a stream using your own RecordListener, using the default RecordSpec.
 void XmlManager.load(File pXmlFile, RecordSpec pRecordSpec, RecordListener pRecordListener)
          Load XML data from a file as a stream using your own RecordListener.
 void XmlManager.load(String pXmlFilePath, RecordSpec pRecordSpec, RecordListener pRecordListener)
          Load XML data from a specified file path as a stream using your own RecordListener.
 void XmlManager.load(InputStream pInputStream, RecordSpec pRecordSpec, RecordListener pRecordListener)
          Load XML data from an InputStream as a stream using your own RecordListener.
 void XmlManager.load(InputSource pInputSource, RecordSpec pRecordSpec, RecordListener pRecordListener)
          Load XML data from an InputSource as a stream using your own RecordListener.
 void XmlManager.loadFromURI(String pURI, RecordSpec pRecordSpec, RecordListener pRecordListener)
          Load XML data specified by a Uniform Resource Identifier (URI) as a stream using your own RecordListener.
 void XmlManager.loadFromString(String pXmlString, RecordSpec pRecordSpec, RecordListener pRecordListener)
          Load XML data from a String variable as a stream using your own RecordListener.
 

Uses of RecordListener in com.ricebridge.xmlman.in
 

Methods in com.ricebridge.xmlman.in that return RecordListener
 RecordListener XmlInputHandler.getAutoRecordListener()
          Retrieve the automatic RecordListener object for the current load operation.
 RecordListener XmlInputHandler.getRecordListener()
          Get the current RecordListener.
 

Methods in com.ricebridge.xmlman.in with parameters of type RecordListener
 void XmlInputHandler.setAutoRecordListener(RecordListener pRecordListener)
          Store the automatic RecordListener object for the current load operation.
 void XmlInputHandler.setRecordListener(RecordListener pRecordListener)
          Set the RecordListener for the current parse operation.
 void RecordTrigger.setRecordListener(RecordListener pRecordListener)
          Set the RecordListener that will receive data records from this RecordTrigger.
 

Uses of RecordListener in com.ricebridge.xmlman.test
 

Classes in com.ricebridge.xmlman.test that implement RecordListener
static class BackgroundTest.DelayedResultSetRecordListener
           
static class BackgroundTest.DelayedStringArrayRecordListener
           
static class BackgroundTest.DelayedStringListRecordListener
           
static class BackgroundTest.DelayedTableModelRecordListener
           
static class BadRecordsTest.FailingRecordListener
           
 class CallSequenceTest.SequenceRecordListener
           
static class LoadRecordListenerTest.SimpleRecordListener
           
static class PerformanceTest.MeasureBeanRecordListener
           
static class PerformanceTest.MeasureResultSetRecordListener
           
static class PerformanceTest.MeasureStringArrayRecordListener
           
static class PerformanceTest.MeasureStringListRecordListener
           
static class PerformanceTest.MeasureTableModelRecordListener
           
 



Copyright © 2004-2005 Ricebridge