Package ghidra.app.cmd.comments
Class SetCommentCmd
java.lang.Object
ghidra.app.cmd.comments.SetCommentCmd
Command to set a specific type of comment on a code unit.
-
Constructor Summary
ConstructorDescriptionSetCommentCmd
(Address addr, int commentType, String comment) Construct command -
Method Summary
Modifier and TypeMethodDescriptionboolean
Applies the command to the given domain object.static void
createComment
(Program program, Address addr, String comment, int commentType) Creates the specified comment of the specified type at address.getName()
Returns the name of this command.Returns the status message indicating the status of the command.
-
Constructor Details
-
SetCommentCmd
Construct command- Parameters:
addr
- address of code unit where comment will be placedcommentType
- valid comment type (see CodeUnit)comment
- comment for code unit
-
-
Method Details
-
getName
Description copied from interface:Command
Returns the name of this command. -
applyTo
Description copied from interface:Command
Applies the command to the given domain object. -
getStatusMsg
Description copied from interface:Command
Returns the status message indicating the status of the command.- Specified by:
getStatusMsg
in interfaceCommand<Program>
- Returns:
- reason for failure, or null if the status of the command was successful
-
createComment
Creates the specified comment of the specified type at address. The current comment of this commentType will be cleared.- Parameters:
program
- the program being analyzedaddr
- the address where data is createdcomment
- the comment about the datacommentType
- the type of comment (CodeUnit.PLATE_COMMENT
,CodeUnit.PRE_COMMENT
,CodeUnit.EOL_COMMENT
,CodeUnit.POST_COMMENT
,CodeUnit.REPEATABLE_COMMENT
)
-