Public Member Functions | Package Functions

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

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

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

Interface that can be implemented by objects that want to be notified about changes in Instruction objects.


Member Function Documentation

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

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 
)

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 
)

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 
)

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.