Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 1d473462ea4ca8311d78b384db39fb3fbcb76e0c (plain) (tree)
1
2
3
4
5
6
7
8
                                                                                
                                                        





                                                                         











                                                                                 
 
                                        
 


                                                                  
 
                 


                                                                                                                  

                                                                         




                                                  
/*******************************************************************************
 *  Copyright (c) 2007, 2015 IBM Corporation 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:
 *     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.IPDEUIConstants;
import org.eclipse.pde.internal.ui.PDEPlugin;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.PartInitException;

public class OpenPluginReferencesAction extends Action {

	private IPluginModelBase fModel;

	public OpenPluginReferencesAction(IPluginModelBase base) {
		fModel = base;
	}

	@Override
	public void run() {
		try {
			IViewPart view = PDEPlugin.getActivePage().showView(IPDEUIConstants.DEPENDENCIES_VIEW_ID);
			((DependenciesView) view).openCallersFor(fModel);
		} catch (PartInitException e) {
			PDEPlugin.logException(e);
		}
	}

}

Back to the top