01: /*******************************************************************************
02: * Copyright (c) 2007 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.pde.internal.ui.views.dependencies;
11:
12: import org.eclipse.jface.action.Action;
13: import org.eclipse.pde.core.plugin.IPluginModelBase;
14: import org.eclipse.pde.internal.ui.IPDEUIConstants;
15: import org.eclipse.pde.internal.ui.PDEPlugin;
16: import org.eclipse.ui.IViewPart;
17: import org.eclipse.ui.PartInitException;
18:
19: public class OpenPluginDependenciesAction extends Action {
20:
21: private IPluginModelBase fModel = null;
22:
23: public OpenPluginDependenciesAction(IPluginModelBase base) {
24: fModel = base;
25: }
26:
27: public void run() {
28: try {
29: IViewPart view = PDEPlugin.getActivePage().showView(
30: IPDEUIConstants.DEPENDENCIES_VIEW_ID);
31: ((DependenciesView) view).openCalleesFor(fModel);
32: } catch (PartInitException e) {
33: PDEPlugin.logException(e);
34: }
35: }
36:
37: }
|