X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/actions/OpenPHPPerspectiveAction.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/actions/OpenPHPPerspectiveAction.java index 3da1363..266ba85 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/actions/OpenPHPPerspectiveAction.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/actions/OpenPHPPerspectiveAction.java @@ -1,10 +1,10 @@ /******************************************************************************* * Copyright (c) 2000, 2004 IBM Corporation and others. - * All rights reserved. This program and the accompanying materials + * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/cpl-v10.html - * + * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ @@ -25,11 +25,11 @@ import org.eclipse.ui.WorkbenchException; /** * Action to programmatically open a Java perspective. - * + * *
* This class may be instantiated; it is not intended to be subclassed. *
- * + * * @since 2.0 */ public class OpenPHPPerspectiveAction extends Action { @@ -38,24 +38,28 @@ public class OpenPHPPerspectiveAction extends Action { * Create a newOpenPHPPerspectiveAction
.
*/
public OpenPHPPerspectiveAction() {
-// WorkbenchHelp.setHelp(this, IJavaHelpContextIds.OPEN_JAVA_PERSPECTIVE_ACTION);
+ // WorkbenchHelp.setHelp(this,
+ // IJavaHelpContextIds.OPEN_JAVA_PERSPECTIVE_ACTION);
}
public void run() {
- IWorkbench workbench= PHPeclipsePlugin.getDefault().getWorkbench();
- IWorkbenchWindow window= workbench.getActiveWorkbenchWindow();
- IWorkbenchPage page= window.getActivePage();
- IAdaptable input;
- if (page != null)
- input= page.getInput();
- else
- input= ResourcesPlugin.getWorkspace().getRoot();
+ IWorkbench workbench = PHPeclipsePlugin.getDefault().getWorkbench();
+ IWorkbenchWindow window = workbench.getActiveWorkbenchWindow();
+ IWorkbenchPage page = window.getActivePage();
+ IAdaptable input;
+
+ if (page != null) {
+ input = page.getInput();
+ }
+ else {
+ input = ResourcesPlugin.getWorkspace().getRoot();
+ }
try {
- workbench.showPerspective(PHPeclipsePlugin.ID_PERSPECTIVE, window, input);
+ workbench.showPerspective (PHPeclipsePlugin.ID_PERSPECTIVE, window, input);
} catch (WorkbenchException e) {
- ExceptionHandler.handle(e, window.getShell(),
- ActionMessages.getString("OpenPHPPerspectiveAction.dialog.title"), //$NON-NLS-1$
- ActionMessages.getString("OpenPHPPerspectiveAction.error.open_failed")); //$NON-NLS-1$
+ ExceptionHandler.handle (e, window.getShell (),
+ ActionMessages.getString ("OpenPHPPerspectiveAction.dialog.title"), //$NON-NLS-1$
+ ActionMessages.getString ("OpenPHPPerspectiveAction.error.open_failed")); //$NON-NLS-1$
}
}
}