Class CommentHistory


  • public class CommentHistory
    extends java.lang.Object
    Container class for information about changes to a comment.
    • Constructor Summary

      Constructors 
      Constructor Description
      CommentHistory​(Address addr, int commentType, java.lang.String userName, java.lang.String comments, java.util.Date modificationDate)
      Constructs a new CommentHistory object
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Address getAddress()
      Get address for this label history object.
      java.lang.String getComments()
      Get the comments for this history object.
      int getCommentType()
      Get the comment type.
      java.util.Date getModificationDate()
      Get the modification date
      java.lang.String getUserName()
      Get the user that made the change.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CommentHistory

        public CommentHistory​(Address addr,
                              int commentType,
                              java.lang.String userName,
                              java.lang.String comments,
                              java.util.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 Detail

      • getAddress

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

        public java.lang.String getUserName()
        Get the user that made the change.
      • getComments

        public java.lang.String getComments()
        Get the comments for this history object.
      • getCommentType

        public int getCommentType()
        Get the comment type.
      • getModificationDate

        public java.util.Date getModificationDate()
        Get the modification date