use of org.olat.ims.qti21.repository.handlers.QTI21IMSManifestExplorerVisitor in project OpenOLAT by OpenOLAT.
the class QTI21ImportProcessor method getInfos.
private QTI21Infos getInfos(Path imsmanifestPath) {
try {
QTI21IMSManifestExplorerVisitor visitor = new QTI21IMSManifestExplorerVisitor();
Files.walkFileTree(imsmanifestPath, visitor);
return visitor.getInfos();
} catch (IOException e) {
log.error("", e);
return null;
}
}
use of org.olat.ims.qti21.repository.handlers.QTI21IMSManifestExplorerVisitor in project openolat by klemens.
the class QTI21ImportProcessor method getInfos.
private QTI21Infos getInfos(Path imsmanifestPath) {
try {
QTI21IMSManifestExplorerVisitor visitor = new QTI21IMSManifestExplorerVisitor();
Files.walkFileTree(imsmanifestPath, visitor);
return visitor.getInfos();
} catch (IOException e) {
log.error("", e);
return null;
}
}
Aggregations