Package com.mckoi.database
Class DatabaseConnection.ConnectionInternalTableInfo
- java.lang.Object
-
- com.mckoi.database.AbstractInternalTableInfo
-
- com.mckoi.database.DatabaseConnection.ConnectionInternalTableInfo
-
- All Implemented Interfaces:
InternalTableInfo
- Enclosing class:
- DatabaseConnection
private class DatabaseConnection.ConnectionInternalTableInfo extends AbstractInternalTableInfo
An internal table info object that handles tables internal to a DatabaseConnection object.
-
-
Constructor Summary
Constructors Constructor Description ConnectionInternalTableInfo()
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableTableDataSource
createInternalTable(int index)
This is the factory method for generating the internal table for the given table in this container.-
Methods inherited from class com.mckoi.database.AbstractInternalTableInfo
containsTableName, findTableName, getDataTableDef, getTableCount, getTableName, getTableType
-
-
-
-
Method Detail
-
createInternalTable
public MutableTableDataSource createInternalTable(int index)
Description copied from interface:InternalTableInfo
This is the factory method for generating the internal table for the given table in this container. This should return an implementation of MutableTableDataSource that is used to represent the internal data being modelled.This method is allowed to throw an exception for table objects that aren't backed by a MutableTableDataSource, such as a view.
-
-