Package org.sonar.api.batch.scm
Interface BlameCommand.BlameOutput
-
- Enclosing class:
- BlameCommand
public static interface BlameCommand.BlameOutputCallback for the provider to report results of blame per file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidblameResult(InputFile file, java.util.List<BlameLine> lines)Add result of the blame command for a single file.
-
-
-
Method Detail
-
blameResult
void blameResult(InputFile file, java.util.List<BlameLine> lines)
Add result of the blame command for a single file. Number of lines should be consistent withInputFile.lines(). This method is thread safe.- Parameters:
lines- One entry per line in the file. Every line must have anon-nulldate and revision .
-
-