Java org.eclipse.jgit.blame BlameGenerator fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jgit.blame BlameGenerator fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jgit.blame BlameGenerator.

The text is from its open source code.

Constructor

BlameGenerator(Repository repository, String path)
Create a blame generator for the repository and path (relative to repository)

Method

BlameResultcomputeBlameResult()
Execute the generator in a blocking fashion until all data is ready.
RawTextgetResultContents()
Get complete file contents of the result file blame is annotating
intgetResultEnd()
Get one past the range of the result that #getSourceCommit() has been blamed for providing
intgetResultStart()
Get first line of the result that #getSourceCommit() has been blamed for providing
PersonIdentgetSourceAuthor()
Get source author
RevCommitgetSourceCommit()
Get the revision blamed for the current region.
StringgetSourcePath()
Get source path
booleannext()
Step the blame algorithm one iteration.
BlameGeneratorpush(String description, byte[] contents)
Push a candidate blob onto the generator's traversal stack.
BlameGeneratorpush(String description, RawText contents)
Push a candidate blob onto the generator's traversal stack.
BlameGeneratorpush(String description, AnyObjectId id)
Push a candidate object onto the generator's traversal stack.