DebugSvc.IBreakpointListener Interface

com.bea.ide.debug
DebugSvc.IBreakpointListener Interface

public static interface DebugSvc.IBreakpointListener

The listener interface that can be passed to DebugSvc.I.addBreakpointListener and DebugSvc.I.removeBreakpointListener to listen on breakpoints being added, removed, disabled or changed.

Enclosing class

DebugSvc

Method Summary

public void
onBreakpointAdded(IDebugBreakPoint bp)
called back when a breakpoint has been added.
public void
onBreakpointChanged(IDebugBreakPoint bp)
called back when a breakpoint changes, such as when its line number shifts
public void
onBreakpointDisable(IDebugBreakPoint bp)
called back when a breakpoint has been disabled.
public void
onBreakpointEnable(IDebugBreakPoint bp)
called back when a breakpoint has been enabled.
public void
onBreakpointRemoved(IDebugBreakPoint bp)
called back when a breakpoint has been removed.

Method Detail

onBreakpointAdded(IDebugBreakPoint) Method

public void onBreakpointAdded(IDebugBreakPoint bp)
called back when a breakpoint has been added.

Parameters

bp
-- the breakpoint that jas just been added.

onBreakpointChanged(IDebugBreakPoint) Method

public void onBreakpointChanged(IDebugBreakPoint bp)
called back when a breakpoint changes, such as when its line number shifts

Parameters

bp
-- the breakpoint that has changed.

onBreakpointDisable(IDebugBreakPoint) Method

public void onBreakpointDisable(IDebugBreakPoint bp)
called back when a breakpoint has been disabled. This will not be called when a breakpoint has been removed.

Parameters

bp
-- the breakpoint that as been disabled.

onBreakpointEnable(IDebugBreakPoint) Method

public void onBreakpointEnable(IDebugBreakPoint bp)
called back when a breakpoint has been enabled. This will not be called when a breakpoint is added.

Parameters

bp
-- the brakpoint that has been enabled.

onBreakpointRemoved(IDebugBreakPoint) Method

public void onBreakpointRemoved(IDebugBreakPoint bp)
called back when a breakpoint has been removed.

Parameters

bp
-- the breakpoint that has been removed.