Package ghidra.app.cmd.comments
Class SetCommentCmd
java.lang.Object
ghidra.app.cmd.comments.SetCommentCmd
- All Implemented Interfaces:
Command
Command to set a specific type of comment on a code unit.
-
Constructor Summary
ConstructorsConstructorDescriptionSetCommentCmd(Address addr, int commentType, String comment) Construct command -
Method Summary
Modifier and TypeMethodDescriptionbooleanapplyTo(DomainObject obj) Applies the command to the given domain object.static voidcreateComment(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:CommandReturns the name of this command. -
applyTo
Description copied from interface:CommandApplies the command to the given domain object. -
getStatusMsg
Description copied from interface:CommandReturns the status message indicating the status of the command.- Specified by:
getStatusMsgin interfaceCommand- 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)
-