this.layoutStore = layoutStore;
}
public OperationGraph2D build() {
log("Starting to build the graph.");
OperationGraph2D graph = new OperationGraph2D(operation);
log("Graph created.");
restoreLayout(graph);
restoreZoomLevel(graph);
graph.selectStartOperation();
graph.setEdgeTypePreference(EdgeTypePreference.instance());
restoreScrollLocation(graph);
return graph;
}