blob: 9f3c6cf0559271606f30764e832eeb8bd018d1af [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.registry;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.internal.WorkbenchMessages;
/**
* Command handler to show a particular view.
*
* @since 3.0
*/
public final class ShowViewHandler extends AbstractHandler {
/**
* The identifier of the view this handler should open. This value should
* never be <code>null</code>.
*/
private final String viewId;
/**
* Constructs a new instance of <code>ShowViewHandler</code>.
*
* @param viewId
* The identifier of the view this handler should open; must not
* be <code>null</code>.
*/
public ShowViewHandler(final String viewId) {
this.viewId = viewId;
}
public final Object execute(final ExecutionEvent event) {
final IWorkbenchWindow activeWorkbenchWindow = PlatformUI
.getWorkbench().getActiveWorkbenchWindow();
if (activeWorkbenchWindow == null) {
return null;
}
final IWorkbenchPage activePage = activeWorkbenchWindow.getActivePage();
if (activePage == null) {
return null;
}
try {
activePage.showView(viewId);
} catch (PartInitException e) {
ErrorDialog.openError(activePage.getWorkbenchWindow().getShell(),
WorkbenchMessages.ShowView_errorTitle, e.getMessage(), e
.getStatus());
}
return null;
}
}