private EntityPageDisplayer pageDisplayer;
public DependencyGraph(IntegrationEntity entity, ProjectDependencies deps, NodeUiFactory2D nodeUiFactory) {
model = new DependencyGraphModel(entity, deps);
graph = new Graph2D(model, nodeUiFactory, new DefaultEdgeUiFactory2D()) {
@Override
protected GraphLayout2D createLayout() {
return new DependencyGraphLayout(this, (DependencyGraphModel) getModel());
}