use of org.mycore.mets.model.struct.IStructMap in project mycore by MyCoRe-Org.
the class MCRXMLSimpleModelConverter method buidRootSection.
private static MCRMetsSection buidRootSection(Mets mets, Map<String, MCRMetsSection> idSectionMap, Map<String, MCRMetsFile> idFileMap) {
IStructMap structMap = mets.getStructMap(LogicalStructMap.TYPE);
LogicalStructMap logicalStructMap = (LogicalStructMap) structMap;
LogicalDiv divContainer = logicalStructMap.getDivContainer();
return buildSection(divContainer, idSectionMap, null, idFileMap);
}
Aggregations