Public Member Functions | Package Functions

com.google.security.zynamics.binnavi.API.debug.IBreakpointManagerListener Interface Reference

Inheritance diagram for com.google.security.zynamics.binnavi.API.debug.IBreakpointManagerListener:
com.google.security.zynamics.binnavi.API.debug.BreakpointManagerListenerAdapter

List of all members.

Public Member Functions

void addedEchoBreakpoint (BreakpointManager breakpointManager, Breakpoint breakpoint)
void removedBreakpoint (BreakpointManager breakpointManager, Breakpoint breakpoint)
void removedEchoBreakpoint (BreakpointManager breakpointManager, Breakpoint breakpoint)

Package Functions

void addedBreakpoint (BreakpointManager breakpointManager, Breakpoint breakpoint)

Detailed Description

Interface that must be implemented by classes that want to be notified about changes in breakpoint managers.


Member Function Documentation

void com.google.security.zynamics.binnavi.API.debug.IBreakpointManagerListener.addedBreakpoint ( BreakpointManager  breakpointManager,
Breakpoint  breakpoint 
) [package]

Invoked after a new breakpoint was added to a breakpoint manager.

Parameters:
breakpointManager The manager where the breakpoint was set.
breakpoint The new breakpoint.
void com.google.security.zynamics.binnavi.API.debug.IBreakpointManagerListener.addedEchoBreakpoint ( BreakpointManager  breakpointManager,
Breakpoint  breakpoint 
)

Invoked after a new echo breakpoint was added to a breakpoint manager.

Parameters:
breakpointManager The manager where the echo breakpoint was set.
breakpoint The new echo breakpoint.
void com.google.security.zynamics.binnavi.API.debug.IBreakpointManagerListener.removedBreakpoint ( BreakpointManager  breakpointManager,
Breakpoint  breakpoint 
)

Invoked after a breakpoint was removed from the breakpoint manager.

Parameters:
breakpointManager The breakpoint manager from where the breakpoint was removed.
breakpoint The removed breakpoint.
void com.google.security.zynamics.binnavi.API.debug.IBreakpointManagerListener.removedEchoBreakpoint ( BreakpointManager  breakpointManager,
Breakpoint  breakpoint 
)

Invoked after an echo breakpoint was removed from the breakpoint manager.

Parameters:
breakpointManager The breakpoint manager from where the echo breakpoint was removed.
breakpoint The removed echo breakpoint.