}
private void extractExecutionPaths() throws TranslationException {
for (Activity act : activitiesInfo.keySet()) {
ActivityInfo actInfo = activitiesInfo.get(act);
PathAnalyzer analyzer = new PathAnalyzer(actInfo);
try {
actInfo.setExecutionPaths(analyzer.analyze());
} catch (AnalysisException e) {
throw new TranslationException(this, "Unable to extract the execution paths for activity : \"" + act.getQualifiedName() + "\"", e);
}
}
}