public void createPartControl(Composite parent) {
browser = new Browser(parent, SWT.NONE);
createActions();
// Prevent navigation away from JPM4J.org, and redirect from HTTP back to HTTPS
browser.addLocationListener(new LocationAdapter() {
@Override
public void changing(LocationEvent event) {
if (event.location.startsWith(HTTPS_URL))
return;
if (event.location.startsWith(HTTP_URL))