Public Member Functions | Package Functions

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

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

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

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


Member Function Documentation

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

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 
) [inherited]

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 
) [inherited]

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 
) [inherited]

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.