All Packages Class Hierarchy This Package Previous Next Index
Class de.tudarmstadt.ito.xmldbms.RootTableMap
java.lang.Object
|
+----de.tudarmstadt.ito.xmldbms.RootTableMap
- public class RootTableMap
- extends Object
Provides information needed to retrieve data from root tables beyond
that found in TableMap; not for general
use.
- Version:
- 1.01
- Author:
- Ronald Bourret, Technical University of Darmstadt
-
candidateKey
- The key used to retrieve data from the table.
-
ignoredRootType
- The unprefixed name of the ignored root element type to be constructed
as a parent of the root table's element type.
-
orderColumn
- The column used to order column retrieved from the table.
-
prefixedIgnoredRootType
- The prefixed name of the ignored root element type to be constructed
as a parent of the root table's element type.
-
tableMap
- TableMap for the root table.
-
RootTableMap()
- Construct a RootTableMap with null initial values.
-
RootTableMap(TableMap, String, String, Column[], Column)
- Construct a RootTableMap with non-null initial values.
tableMap
public TableMap tableMap
- TableMap for the root table.
ignoredRootType
public String ignoredRootType
- The unprefixed name of the ignored root element type to be constructed
as a parent of the root table's element type. In the future, this and
prefixedIgnoredRootType should probably be replaced by an NSName.
- See Also:
- usePrefixes
prefixedIgnoredRootType
public String prefixedIgnoredRootType
- The prefixed name of the ignored root element type to be constructed
as a parent of the root table's element type. In the future, this and
ignoredRootType should probably be replaced by an NSName.
- See Also:
- usePrefixes
candidateKey
public Column candidateKey[]
- The key used to retrieve data from the table.
orderColumn
public Column orderColumn
- The column used to order column retrieved from the table. Null if
there is no order column.
RootTableMap
public RootTableMap()
- Construct a RootTableMap with null initial values.
RootTableMap
public RootTableMap(TableMap tableMap,
String ignoredRootType,
String prefixedIgnoredRootType,
Column candidateKey[],
Column orderColumn)
- Construct a RootTableMap with non-null initial values.
All Packages Class Hierarchy This Package Previous Next Index