Created

Embed URL

HTTPS clone URL

SSH clone URL

You can clone with HTTPS or SSH.

Download Gist
View gist:1062054
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
public void start(BundleContext context) throws Exception {
super.start(context);
 
// OpenDocumentListener is a simply class implementing Listener, not being called though
Display.getDefault().addListener(SWT.OpenDocument, new OpenDocumentListener());
Display.getDefault().addListener(SWT.MouseDown, new Listener() {
@Override
public void handleEvent(Event event) {
System.err.println("click");
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Something went wrong with that request. Please try again.