[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.modeling.gmf] Re: Force repaint the connections

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();
}
***