I\'m using GEF. I have a graphical editor with some \"boxes\" implemented. Now, I want to add a double-click listener to each box (Rectangle). I tried to add a listener to t
viewer.getControl().addListener(SWT.MouseDoubleClick, new Listener() { @Override public void handleEvent(Event event) { //write the double click action });