[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[news.eclipse.tools.jdt] Debugging Framework issue with Stepping Over action not enabled
|
- From: AL <unbonnevie@xxxxxxxxx>
- Date: Sat, 01 Apr 2006 23:29:59 -0800
- Newsgroups: eclipse.tools.jdt
- Organization: EclipseCorner
- User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040804 Netscape/7.2 (ax)
Hi,
Another issue in my adventure of writing a debugger in Eclipse. I am
able to do stepping. When I click on my stack frame, I am able to have
the JDT's stepping menu items highlighted and enabled correctly, that
is, 'Run->StepOver', 'Run->StepInto', etc., are enabled for me to use.
The problem I have is: When I do a step over, I have to click again on
the top stack frame to have 'Run->Step Over' menu item enabled to do the
next step over. Why do I lose focus on the stack frame on successive
'Run->Step Over' or pressing F6? I have made sure that my
IThread.canStepOver() actually returns true.
Notice that my IThread model does fire the resume event with detail code
DebugEvent.STEP_OVER for each IStep.stepOver() call I invoke.
I am using Eclipse 3.2M5a build.
Greatly appreciate it for any tips or help from Eclipse's JDT team
and/or Eclipse Debug Framework team!
I really need some pointers on this issue.