I want to create a context menu when I create and finish the Connection between two editParts, because I want to select some feature for the connection. How can I create a contextMenu or a popup menu in an Editpart without clicking the right button?

link|improve this question

33% accept rate
feedback

1 Answer

You could do it in the setTargetAnchor(ConnectionAnchor) method of your Connection implementation, e.g.:

PolylineConnection connection = new PolylineConnection() {
  @Override
  public void setTargetAnchor(ConnectionAnchor anchor) {
    super.setTargetAnchor(anchor);
    if (anchor == null)
      return;
    // create menu
  }
};
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.