fEnclosingLevel = enclosingLevel;
}
@Override
public void execute() throws CoreException {
IRuntimeContext context = getContext();
IJavaObject thisInstance = context.getThis();
if (thisInstance == null) {
// static context
push(context.getReceivingType());
} else {
if (fEnclosingLevel != 0) {
thisInstance = ((JDIObjectValue) thisInstance)
.getEnclosingObject(fEnclosingLevel);
if (thisInstance == null) {