1 21 22 package org.dbunit.dataset; 23 24 31 public interface IDataSet 32 { 33 38 public String [] getTableNames() throws DataSetException; 39 40 49 public ITableMetaData getTableMetaData(String tableName) 50 throws DataSetException; 51 52 61 public ITable getTable(String tableName) throws DataSetException; 62 63 69 public ITable[] getTables() throws DataSetException; 70 71 74 public ITableIterator iterator() throws DataSetException; 75 76 79 public ITableIterator reverseIterator() throws DataSetException; 80 } 81 82 83 84 85 86 87 | Popular Tags |