Antwort schon gefunden:
Es funktioniert wenn man sich vorher den GenerationTask holt (hier ein Beanshell Beispiel):
gcTask;
tasks = context.getTasks();
for(task : tasks) {
if(task instanceof GenerateTask) {
gcTask = task;
break;
}
}
if(task != null) {
context.logInfo("task: " + task.getClass());
startNodes = task.getStartNodes();
for(startNode : startNodes) {
context.logInfo("StartNode: " + startNode.getClass());
}
}
viele Grüße,
Christopher Eggert