*/
public Model loadModel(Resource description, File baseDir) {
String pathString = description.getProperty(PREVALOADER.path).getString();
File prevaDir = new File(baseDir, pathString);
try {
return ModelFactory.createModelForGraph(new PrevaGraph(prevaDir.getAbsolutePath(),
15));
} catch (IOException ex) {
throw new RuntimeException("initializing PrevaModel", ex);
}
}