Class CommentHistory

java.lang.Object
ghidra.program.model.listing.CommentHistory

public class CommentHistory extends Object
Container class for information about changes to a comment.
  • 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 comment
      commentType - the type of comment
      userName - the name of the user that changed the comment
      comments - the list of comments.
      modificationDate - the date the comment was changed.
  • Method Details

    • getAddress

      public Address getAddress()
      Get address for this label history object
      Returns:
      address for this label history object.
    • getUserName

      public String getUserName()
      Get the user that made the change
      Returns:
      the user that made the change
    • getComments

      public String 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

      public Date getModificationDate()
      Get the modification date
      Returns:
      the modification date
    • toString

      public String toString()
      Overrides:
      toString in class Object