[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[news.eclipse.tools.gef] Re: Connections are not shown
|
- From: cleversons@xxxxxxxxx (Cleverson Schmidt)
- Date: Fri, 7 Oct 2005 15:20:02 +0000 (UTC)
- Newsgroups: eclipse.tools.gef
- Organization: not organized
- User-agent: NewsPortal/0.36 (http://florian-amrhein.de/newsportal)
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