2 * Copyright (c) 2003 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v10.html
9 * IBM - Initial API and implementation
11 package net.sourceforge.phpeclipse.webbrowser;
13 import org.eclipse.jface.action.IAction;
14 import org.eclipse.jface.viewers.ISelection;
15 import org.eclipse.ui.IWorkbenchWindow;
16 import org.eclipse.ui.IWorkbenchWindowActionDelegate;
18 * Action to open the Web broswer.
20 public class OpenBrowserWorkbenchAction implements IWorkbenchWindowActionDelegate {
22 * OpenBrowserWorkbenchAction constructor comment.
24 public OpenBrowserWorkbenchAction() {
29 * Disposes this action delegate. The implementor should unhook any references
30 * to itself so that garbage collection can occur.
32 public void dispose() { }
35 * Initializes this action delegate with the workbench window it will work in.
37 * @param window the window that provides the context for this delegate
39 public void init(IWorkbenchWindow window) { }
42 * Performs this action.
44 * This method is called when the delegating action has been triggered.
45 * Implement this method to do the actual work.
48 * @param action the action proxy that handles the presentation portion of the
51 public void run(IAction action) {
52 WebBrowser.openURL(new WebBrowserEditorInput(null, WebBrowserEditorInput.SHOW_ALL | WebBrowserEditorInput.FORCE_NEW_PAGE));
56 * Notifies this action delegate that the selection in the workbench has changed.
58 * Implementers can use this opportunity to change the availability of the
59 * action or to modify other presentation properties.
62 * @param action the action proxy that handles presentation portion of the action
63 * @param selection the current selection in the workbench
65 public void selectionChanged(IAction action, ISelection selection) { }