Public Member Functions | Package Functions

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

Inheritance diagram for com.google.security.zynamics.binnavi.API.disassembly.IFunctionNodeListener:
com.google.security.zynamics.binnavi.API.disassembly.FunctionNodeListenerAdapter

List of all members.

Public Member Functions

void deletedComment (FunctionNode node, IComment comment)
void editedComment (FunctionNode node, IComment comment)
void initializedComment (FunctionNode node, ArrayList< IComment > comment)

Package Functions

void appendedComment (FunctionNode node, IComment comment)

Detailed Description

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


Member Function Documentation

void com.google.security.zynamics.binnavi.API.disassembly.IFunctionNodeListener.appendedComment ( FunctionNode  node,
IComment  comment 
) [package]

Invoked after the local comment of the function node changed.

Parameters:
node The function node whose comment changed.
comment The new comment of the function node.
void com.google.security.zynamics.binnavi.API.disassembly.IFunctionNodeListener.deletedComment ( FunctionNode  node,
IComment  comment 
)

invoked after a function node comment has been deleted.

Parameters:
node The node where the function node comment has been deleted.
comment The comment which has been deleted.
void com.google.security.zynamics.binnavi.API.disassembly.IFunctionNodeListener.editedComment ( FunctionNode  node,
IComment  comment 
)

Invoked after a function node comment has been edited.

Parameters:
node The function node where the comment has been edited.
comment The comment which has been edited.
void com.google.security.zynamics.binnavi.API.disassembly.IFunctionNodeListener.initializedComment ( FunctionNode  node,
ArrayList< IComment >  comment 
)

Invoked after a function node comment has been initialized.

Parameters:
node The function node where the comment has been initialized.
comment The comments with which the node has been initialized.