}
public IBreakpoint[] getBreakpoints() {
- return null;
+ return new IBreakpoint[0];
}
public String getModelIdentifier() {
state.setSuspended (false); // We will leave the suspended state
this.frames = null; // Reset the stackframes
- ev = new DebugEvent (this, DebugEvent.RESUME, de); // Create an event resume by stepping
+ ev = new DebugEvent (this, DebugEvent.RESUME, de); // Create an event resume by stepping
DebugPlugin.getDefault ().fireDebugEventSet (new DebugEvent[] { ev }); // Fire the event
}
*/
public boolean canStepInto () {
return isSuspended () && // Is the thread in suspended mode (stopped)
- isStepping () && // and ???
+ isStepping () && // and ???
this.hasStackFrames (); // and does this thread have stack frames?
}
*/
public boolean canStepOver () {
return isSuspended () && // Is the thread in suspended mode (stopped)
- isStepping () && // and ???
+ isStepping () && // and ???
this.hasStackFrames (); // and does this thread have stack frames?
}
*/
public boolean canStepReturn () {
return isSuspended () && // Is the thread in suspended mode (stopped)
- isStepping () && // and ???
+ isStepping () && // and ???
this.hasStackFrames (); // and does this thread have stack frames?
}