Public Member Functions | Package Functions

com.google.security.zynamics.binnavi.API.disassembly.CodeNodeListenerAdapter Class Reference

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

List of all members.

Public Member Functions

void removedInstruction (CodeNode codeNode, Instruction instruction)

Package Functions

void addedInstruction (CodeNode codeNode, Instruction instruction)

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 com.google.security.zynamics.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 com.google.security.zynamics.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.