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