/******************************************************************************* * Copyright (c) 2015, 2016 Pivotal Software, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Pivotal Software, Inc. - initial API and implementation *******************************************************************************/ package org.springframework.ide.eclipse.boot.dash.views; import org.springframework.ide.eclipse.boot.dash.BootDashActivator; import org.springframework.ide.eclipse.boot.dash.livexp.MultiSelection; import org.springframework.ide.eclipse.boot.dash.model.BootDashElement; import org.springframework.ide.eclipse.boot.dash.model.BootDashViewModel; import org.springframework.ide.eclipse.boot.dash.model.UserInteractions; public class OpenInBrowserAction extends AbstractBootDashElementsAction { public OpenInBrowserAction(BootDashViewModel model, MultiSelection<BootDashElement> selection, UserInteractions ui) { super(model, selection, ui); this.setText("Open Web Browser"); this.setToolTipText("Open a Web Browser on the default URL"); this.setImageDescriptor(BootDashActivator.getImageDescriptor("icons/open_browser.gif")); this.setDisabledImageDescriptor(BootDashActivator.getImageDescriptor("icons/open_browser_disabled.gif")); } @Override public void updateEnablement() { String url = getUrl(); setEnabled(url!=null); } private String getUrl() { BootDashElement el = getSingleSelectedElement(); if (el!=null) { return el.getUrl(); } return null; } @Override public void run() { String url = getUrl(); if (url!=null) { ui.openUrl(url); } } @Override public void dispose() { super.dispose(); } }