// Table mapped into table of superclass
// Find the superclass - should have been created first
AbstractClassMetaData[] managingCmds = getClassesManagingTableForClass(cmd, clr);
DatastoreTable superTable;
if (managingCmds != null && managingCmds.length == 1) {
MappedStoreData superData = (MappedStoreData) storeDataMgr.get(managingCmds[0].getFullClassName());
if (superData != null) {
// Specify the table if it already exists
superTable = (DatastoreTable) superData.getDatastoreContainerObject();
return buildStoreDataWithTable(cmd, superTable);
}
}
}