1 /*******************************************************************************2 * Copyright (c) 2007 IBM Corporation and others.3 * All rights reserved. This program and the accompanying materials4 * are made available under the terms of the Eclipse Public License v1.05 * which accompanies this distribution, and is available at6 * http://www.eclipse.org/legal/epl-v10.html7 *8 * Contributors:9 * IBM Corporation - initial API and implementation10 *******************************************************************************/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 OpenPluginDependenciesAction extends Action {21 22 private IPluginModelBase fModel = null;23 24 public OpenPluginDependenciesAction(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).openCalleesFor(fModel);32 }33 catch (PartInitException e) {34 PDEPlugin.logException(e);35 }36 }37 38 }39