You can clone with HTTPS or SSH.
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"); } }); }