Public Member Functions | Package Functions

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

Inheritance diagram for com.google.security.zynamics.binnavi.API.disassembly.InstructionListenerAdapter:
com.google.security.zynamics.binnavi.API.disassembly.IInstructionListener

List of all members.

Public Member Functions

void deletedComment (Instruction instruction, IComment comment)
void editedComment (Instruction instruction, IComment comment)
void initializedComment (Instruction instruction, List< IComment > comments)

Package Functions

void appendedComment (Instruction instruction, IComment comment)

Detailed Description

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


Member Function Documentation

void com.google.security.zynamics.binnavi.API.disassembly.IInstructionListener.appendedComment ( Instruction  instruction,
IComment  comment 
) [package, inherited]

Invoked after a comment has been added to the list of instruction comments.

Parameters:
instruction The instruction where the comment was added.
comment The comment which was added.
void com.google.security.zynamics.binnavi.API.disassembly.IInstructionListener.deletedComment ( Instruction  instruction,
IComment  comment 
) [inherited]

Invoked after a comment has been deleted from the list of instruction comments.

Parameters:
instruction The instruction where the comment was deleted.
comment The comment which was deleted.
void com.google.security.zynamics.binnavi.API.disassembly.IInstructionListener.editedComment ( Instruction  instruction,
IComment  comment 
) [inherited]

Invoked after the comment of the instruction was edited.

Parameters:
instruction The instruction whose comment changed.
comment The new comment of the instruction.
void com.google.security.zynamics.binnavi.API.disassembly.IInstructionListener.initializedComment ( Instruction  instruction,
List< IComment >  comments 
) [inherited]

Invoked after the comments of an instruction have been initialized.

Parameters:
instruction The instructions whose comments are initialized.
comments The comments with which the instruction is initialized.