blob: 621039781ae4d8249ce8069856ef44810abc323d [file] [log] [blame]
package org.eclipse.jdt.internal.debug.ui.actions;
/**********************************************************************
Copyright (c) 2002 IBM Corp. All rights reserved.
This file is made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v10.html
**********************************************************************/
import org.eclipse.debug.core.DebugException;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.internal.ui.util.OpenTypeHierarchyUtil;
import org.eclipse.jface.action.IAction;
import org.eclipse.ui.IWorkbenchPart;
public class OpenDeclaringTypeHierarchyAction extends OpenDeclaringTypeAction {
protected IWorkbenchPart fTargetPart;
protected void doAction(Object e) throws DebugException {
Object sourceElement= getSourceElement(e);
if (sourceElement != null) {
OpenTypeHierarchyUtil.open((IJavaElement)sourceElement, fTargetPart.getSite().getWorkbenchWindow());
}
}
/**
* @see IObjectActionDelegate#setActivePart(IAction, IWorkbenchPart)
*/
public void setActivePart(IAction action, IWorkbenchPart targetPart) {
super.setActivePart(action, targetPart);
fTargetPart= targetPart;
}
}