public String toString() {
return this.graphItem.toString();
}
public AbstractGuiComponent<Operator> draw(GraphWrapper gw, VisualGraph<Operator> parent) {
this.panel = new OperatorPanel(this, gw, parent, this.prefix.add(this.toString()), "Graph");
return this.panel;
}