Uses of Interface
com.ap.store.Store

Packages that use Store
com.ap.jdbcunit   
com.ap.jdbcunit.csv   
com.ap.store   
 

Uses of Store in com.ap.jdbcunit
 

Methods in com.ap.jdbcunit with parameters of type Store
static Media MediaManager.createMedia(Store store)
           
 Media MediaFactory.create(Store store)
           
 boolean MediaFactory.accepts(Store store)
           
static void JDBCUnit.start(Store store)
           
 

Uses of Store in com.ap.jdbcunit.csv
 

Constructors in com.ap.jdbcunit.csv with parameters of type Store
CSVMedia(Store repository)
          Creates a CSVMedia that is writing the TOC, the repository, to the given store and the result sets are stored at the same level as the repository.
 

Uses of Store in com.ap.store
 

Classes in com.ap.store that implement Store
 class JavaFile
           
 class MemoryStore
           
 class ZipStore
           
 

Methods in com.ap.store that return Store
 Store ZipStore.add(java.lang.String name)
           
 Store Store.getParent()
           
 Store Store.child(java.lang.String name)
          Returns the child store with the given name
 Store Store.add(java.lang.String name)
          Creates a new store and adds it as children
 Store MemoryStore.getParent()
           
 Store MemoryStore.child(java.lang.String name)
           
 Store MemoryStore.add(java.lang.String name)
           
 Store MemoryStore.add(java.lang.String name, Content content)
           
 Store JavaFile.getParent()
           
 Store JavaFile.child(java.lang.String name)
           
 Store JavaFile.add(java.lang.String name)
           
 

Methods in com.ap.store with parameters of type Store
 void ZipStore.setParent(Store store)
           
 void Store.setParent(Store store)
           
 void Store.attach(Store store)
          reserved not yet defined
 void Store.detach(Store store)
          reserved not yet defined
 void MemoryStore.setParent(Store store)
           
 void MemoryStore.attach(Store store)
           
 void MemoryStore.detach(Store store)
           
 void JavaFile.setParent(Store store)
           
 void JavaFile.attach(Store store)
           
 void JavaFile.detach(Store store)