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
ConstructorsConstructorDescriptionSetCommentCmd
(Address addr, int commentType, String comment) Deprecated, for removal: This API element is subject to removal in a future version.SetCommentCmd
(Address addr, CommentType 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) Deprecated, for removal: This API element is subject to removal in a future version.static void
createComment
(Program program, Address addr, String comment, CommentType 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
@Deprecated(forRemoval=true, since="11.4") public SetCommentCmd(Address addr, int commentType, String comment) Deprecated, for removal: This API element is subject to removal in a future version.Construct command- Parameters:
addr
- address of code unit where comment will be placedcommentType
- valid comment type (see CodeUnit)comment
- comment for code unit
-
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
@Deprecated(forRemoval=true, since="11.4") public static void createComment(Program program, Address addr, String comment, int commentType) Deprecated, for removal: This API element is subject to removal in a future version.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
)
-
createComment
public static void createComment(Program program, Address addr, String comment, CommentType commentType) 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
-
createComment(Program, Address, String, CommentType)
instead