Public Member Functions | Package Functions

BinNavi.API.disassembly.CodeNodeListenerAdapter Class Reference

Adapter class for code nodes. More...

Inheritance diagram for BinNavi.API.disassembly.CodeNodeListenerAdapter:
BinNavi.API.disassembly.ICodeNodeListener

List of all members.

Public Member Functions

void removedInstruction (CodeNode codeNode, Instruction instruction)
 Signals that an instruction was removed from the code node.

Package Functions

void addedInstruction (CodeNode codeNode, Instruction instruction)
 Signals that an instruction was added to the code node.

Detailed Description

Adapter class that can be used by objects that want to listen on code nodes but only need to process few events.


Member Function Documentation

void BinNavi.API.disassembly.ICodeNodeListener.addedInstruction ( CodeNode  codeNode,
Instruction  instruction 
) [package, inherited]

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 BinNavi.API.disassembly.ICodeNodeListener.removedInstruction ( CodeNode  codeNode,
Instruction  instruction 
) [inherited]

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.