Class BlameLine

java.lang.Object
org.apache.maven.scm.command.blame.BlameLine
All Implemented Interfaces:
Serializable

public class BlameLine extends Object implements Serializable
Since:
1.4
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • date

      private Date date
    • revision

      private String revision
    • author

      private String author
    • committer

      private String committer
  • Constructor Details

    • BlameLine

      public BlameLine(Date date, String revision, String author)
      Parameters:
      date - of the commit
      revision - of the commit
      author - will also be used as committer identification
    • BlameLine

      public BlameLine(Date date, String revision, String author, String committer)
      Parameters:
      date - of the commit
      revision - of the commit
      author - the person who wrote the line
      committer - the person who committed the change
  • Method Details

    • getRevision

      public String getRevision()
    • setRevision

      public void setRevision(String revision)
    • getAuthor

      public String getAuthor()
    • setAuthor

      public void setAuthor(String author)
    • getCommitter

      public String getCommitter()
    • setCommitter

      public void setCommitter(String committer)
    • getDate

      public Date getDate()
      Returns:
      the commit date
    • setDate

      public void setDate(Date date)