Package ghidra.program.model.listing
Class CommentHistory
java.lang.Object
ghidra.program.model.listing.CommentHistory
Container class for information about changes to a comment.
-
Constructor Summary
ConstructorDescriptionCommentHistory
(Address addr, int commentType, String userName, String comments, Date modificationDate) Constructs a new CommentHistory object -
Method Summary
Modifier and TypeMethodDescriptionGet address for this label history objectGet the comments for this history objectint
Get the comment typeGet the modification dateGet the user that made the changetoString()
-
Constructor Details
-
CommentHistory
public CommentHistory(Address addr, int commentType, String userName, String comments, Date modificationDate) Constructs a new CommentHistory object- Parameters:
addr
- the address of the commentcommentType
- the type of commentuserName
- the name of the user that changed the commentcomments
- the list of comments.modificationDate
- the date the comment was changed.
-
-
Method Details
-
getAddress
Get address for this label history object- Returns:
- address for this label history object.
-
getUserName
Get the user that made the change- Returns:
- the user that made the change
-
getComments
Get the comments for this history object- Returns:
- the comments for this history object
-
getCommentType
public int getCommentType()Get the comment type- Returns:
- the comment type
-
getModificationDate
Get the modification date- Returns:
- the modification date
-
toString
-