Uses of Interface
com.ricebridge.csvman.LineProvider

Packages that use LineProvider
com.ricebridge.csvman Main package for CSV Manager component. 
com.ricebridge.csvman.test Unit tests for CSV Manager component. 
 

Uses of LineProvider in com.ricebridge.csvman
 

Classes in com.ricebridge.csvman that implement LineProvider
 class AsListsLineProvider
          Simple implementation of LineProvider that provides data lines for saving from a List of Lists of Strings.
 class BasicLineProvider
          Simple implementation of LineProvider that provides data lines for saving from a List of String[] arrays.
 class BeanLineProvider
          Simple implementation of LineProvider that provides data records for saving a List of Java Beans.
 class CustomLineProvider
          Extend this class to create your own LineProvider.
 class LineProviderFixer
          Compatibility fixer class for previous LineProviderSupport implementations.
 class LineProviderSupport
          DO NOT USE.
 class LineProviderSupportImpl
          Helper class for implementing the LineProvider interface.
 class ResultSetLineProvider
          An implementation of LineProvider that provides data lines for saving from a ResultSet object.
 class TableModelLineProvider
          An implementation of LineProvider that provides data lines for saving from a TableModel object.
 

Methods in com.ricebridge.csvman that return LineProvider
 LineProvider CsvHandler.getLineProvider()
          Get current LineProvider.
 

Methods in com.ricebridge.csvman with parameters of type LineProvider
 void CsvHandler.setLineProvider(LineProvider pLineProvider)
          Set LineProvider to provide data.
 void CsvManager.save(Object pSink, LineProvider pLineProvider)
          Save CSV data using your own LineListener.
 void CsvManager.save(Object pSink, LineSpec pLineSpec, LineProvider pLineProvider)
          Save CSV data using your own LineProvider.
 void CsvManager.save(File pCsvFile, LineProvider pLineProvider)
          Deprecated.
 void CsvManager.save(String pCsvFilePath, LineProvider pLineProvider)
          Deprecated.
 void CsvManager.save(OutputStream pOutputStream, LineProvider pLineProvider)
          Deprecated.
 String CsvManager.saveToString(LineProvider pLineProvider)
          Deprecated.  
 

Uses of LineProvider in com.ricebridge.csvman.test
 

Classes in com.ricebridge.csvman.test that implement LineProvider
static class CsvHandlerTest.TestLineProvider
           
static class PerformanceTestFileMaker.RandomValueLineProvider
          Provides random values as data for saving.
 class Snippets.MyLineProvider
           
static class Snippets.NumbersLineProvider
           
static class Snippets.StringsProvider
           
 

Methods in com.ricebridge.csvman.test that return LineProvider
static LineProvider CsvManagerTest.makeTestLineProvider()
          An example of a very simple LineProvider.
 



Copyright © 2003-2006 Ricebridge