[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.modeling.gmf] Re: Force repaint the connections
|
- From: mgil@xxxxxxxxxxxxx (Marc )
- Date: Mon, 14 Sep 2009 11:35:02 +0000 (UTC)
- Newsgroups: eclipse.modeling.gmf
- Organization: Eclipse
- User-agent: NewsPortal/0.36 (http://florian-amrhein.de/newsportal)
Well, it works now. I must to force a refresh for every outgoing/incoming
connectionEditPart.
***
for (Object o : getTargetConnections()) {
if (!(o instanceof Generalization2EditPart)) {
continue;
}
Generalization2EditPart gen = (Generalization2EditPart) o;
gen.refresh();
}
***