Class BlameCallbackImpl.BlameLine

java.lang.Object
org.tigris.subversion.javahl.BlameCallbackImpl.BlameLine
Enclosing class:
BlameCallbackImpl

public static class BlameCallbackImpl.BlameLine extends Object
Class represeting one line of the lines, i.e. a blame record
  • Field Details

    • revision

      private long revision
    • author

      private String author
    • changed

      private Date changed
    • line

      private String line
  • Constructor Details

    • BlameLine

      public BlameLine(long revision, String author, Date changed, String line)
      Constructor
      Parameters:
      revision -
      author -
      changed -
      line -
  • Method Details

    • getAuthor

      public String getAuthor()
      Returns:
      Returns the author.
    • getChanged

      public Date getChanged()
      Returns:
      Returns the date changed.
    • getLine

      public String getLine()
      Returns:
      Returns the source line content.
    • getRevision

      public long getRevision()
      Returns:
      Returns the revision.
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • pad

      private void pad(StringBuffer sb, String val, int len)
      Left pad the input string to a given length, to simulate printf()- style output. This method appends the output to the class sb member.
      Parameters:
      sb - StringBuffer to append to
      val - the input string
      len - the minimum length to pad to