[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.tools.gef] Re: Connections are not shown

Is it possible that the problem lies in the layout of my NodeLayer?

By the way, this is how I am linking my layers:

public GraphView(Model model) {
conLayer = new ConnectionLayer();
conLayer.setConnectionRouter(new ManhattanConnectionRouter());
nodeLayer = new NodeLayer(); add(conLayer);
add(methodFigureLayer);
buildMethodsCallGraph();
}


The buildMethodsCallGraph puts many nodes in the NodeLayer and afterwards creates the connections between them.

Please help