public TwisterProcess fetchProcess() {
if (getContainer() == null) {
return getProcess();
} else {
StructuredActivity container = this.getContainer();
while (container.getContainer() != null) container = container.getContainer();
return container.getProcess();
}
}