blob: e88166c298c9c6e91e4a0dbf2c9b7020a4dceed4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2009 Maarten Meijer 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:
* Maarten Meijer - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.sandbox.dev.actions;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.mylyn.commons.core.StatusHandler;
import org.eclipse.mylyn.internal.sandbox.dev.MylynDevPlugin;
import org.eclipse.ui.IViewActionDelegate;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.PartInitException;
/**
* @author Maarten Meijer
*/
public class ShowPropertiesAction implements IViewActionDelegate {
private static final String PROPERTIES_ID = "org.eclipse.ui.views.PropertySheet";
private IViewPart view;
public ShowPropertiesAction() {
}
public void init(IViewPart view) {
this.view = view;
}
public void run(IAction action) {
IWorkbenchPage page = view.getSite().getPage();
try {
page.showView(PROPERTIES_ID, null, IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
StatusHandler.log(new Status(IStatus.ERROR, MylynDevPlugin.ID_PLUGIN,
"Unexpected exception while opening properties view", e));
}
}
public void selectionChanged(IAction action, ISelection selection) {
}
}