Package hudson.plugins.jobConfigHistory
Class SideBySideView
- java.lang.Object
-
- hudson.plugins.jobConfigHistory.SideBySideView
-
public class SideBySideView extends Object
Holds information for the SideBySideView.- Author:
- Kojima Takanori, Mirko Friedenhagen
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SideBySideView.Line
Holds information about a single line, which consists of the left and right information of the diff.
-
Constructor Summary
Constructors Constructor Description SideBySideView()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addLine(SideBySideView.Line line)
Adds a line.void
clearDuplicateLines()
Deletes all dupes in the given lines.List<SideBySideView.Line>
getLines()
Returns the lines of theSideBySideView
.
-
-
-
Method Detail
-
getLines
public List<SideBySideView.Line> getLines()
Returns the lines of theSideBySideView
.- Returns:
- an unmodifiable view of the lines.
-
addLine
public void addLine(SideBySideView.Line line)
Adds a line.- Parameters:
line
- A single line.
-
clearDuplicateLines
public void clearDuplicateLines()
Deletes all dupes in the given lines.
-
-