blob: 50afaf8303b4ab15062f96830703000c78d58d2a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.internal.ui.views.dependencies;
import org.eclipse.jface.action.Action;
import org.eclipse.pde.core.plugin.IPluginModelBase;
import org.eclipse.pde.internal.ui.*;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.PartInitException;
public class OpenPluginDependenciesAction extends Action {
private IPluginModelBase fModel = null;
public OpenPluginDependenciesAction(IPluginModelBase base) {
setText(PDEUIMessages.PluginsView_openDependencies);
setImageDescriptor(PDEPluginImages.DESC_CALLEES);
fModel = base;
}
@Override
public void run() {
try {
IViewPart view = PDEPlugin.getActivePage().showView(IPDEUIConstants.DEPENDENCIES_VIEW_ID);
((DependenciesView) view).openCalleesFor(fModel);
} catch (PartInitException e) {
PDEPlugin.logException(e);
}
}
}