Public Member Functions | Package Functions

com.google.security.zynamics.binnavi.API.disassembly.ICodeNodeListener Interface Reference

Inheritance diagram for com.google.security.zynamics.binnavi.API.disassembly.ICodeNodeListener:
com.google.security.zynamics.binnavi.API.disassembly.CodeNodeListenerAdapter

List of all members.

Public Member Functions

void removedInstruction (CodeNode codeNode, Instruction instruction)

Package Functions

void addedInstruction (CodeNode codeNode, Instruction instruction)

Detailed Description

Listener interface that must be implemented by all objects that want to be notified about changes in a code node.


Member Function Documentation

void com.google.security.zynamics.binnavi.API.disassembly.ICodeNodeListener.addedInstruction ( CodeNode  codeNode,
Instruction  instruction 
) [package]

Invoked after an instruction was added to a code node.

Parameters:
codeNode The code node the instruction was added to.
instruction The instruction that was added to the code node.
void com.google.security.zynamics.binnavi.API.disassembly.ICodeNodeListener.removedInstruction ( CodeNode  codeNode,
Instruction  instruction 
)

Invoked after an instruction was removed from a code node.

Parameters:
codeNode The code node the instruction was removed from.
instruction The instruction that was removed from the code node.