final AbstractGuiComponent<Operator> recrusiveOperatorGraph = andContainer.draw(new GraphWrapperOperator(andContainer),
(RuleGraph) arg);
for (int i = 0; i < obj.getChildren().size(); i++) {
final Operator operator = (Operator) obj.getChildren().get(i).accept(this, andContainer.getRecursiveOperatorGraph());
andContainer.addOperator(operator);
}
return andContainer;
}
@Override