blob: 4499725b8d59cd8fd6ac27490f259b2572a5770d [file] [log] [blame]
package org.eclipse.jdt.internal.debug.ui.actions;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.model.IDebugElement;
import org.eclipse.jdt.debug.core.IJavaStackFrame;
public class OpenOnDeclaringTypeAction extends StackFrameAction {
protected String getTypeNameToOpen(IDebugElement frame) throws DebugException {
return ((IJavaStackFrame)frame).getDeclaringTypeName();
}
}