use of de.catma.document.source.TechInfoSet in project catma by forTEXT.
the class TeiSourceDocumentInfoSerializationHandler method deserialize.
private SourceDocumentInfo deserialize(TeiDocument teiDocument) {
ContentInfoSet contentInfoSet = teiDocument.getContentInfoSet();
TechInfoSet techInfoSet = teiDocument.getTechInfoset();
IndexInfoSet indexInfoSet = teiDocument.getIndexInfoSet();
return new SourceDocumentInfo(indexInfoSet, contentInfoSet, techInfoSet);
}
Aggregations