Package hudson.plugins.jobConfigHistory
Class SideBySideView.Line
- java.lang.Object
-
- hudson.plugins.jobConfigHistory.SideBySideView.Line
-
- Enclosing class:
- SideBySideView
public static class SideBySideView.Line extends Object
Holds information about a single line, which consists of the left and right information of the diff.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SideBySideView.Line.Item
Simple representation of a diff element.
-
Constructor Summary
Constructors Constructor Description Line()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SideBySideView.Line.Item
getLeft()
Returns the left version of a modified line.SideBySideView.Line.Item
getRight()
Returns the right version of a modified line.com.github.difflib.text.DiffRow.Tag
getTag()
boolean
isSkipping()
Should we skip this line.void
setSkipping(boolean skipping)
Sets skipping.void
setTag(com.github.difflib.text.DiffRow.Tag tag)
-
-
-
Method Detail
-
getLeft
public SideBySideView.Line.Item getLeft()
Returns the left version of a modified line.- Returns:
- left item.
-
getRight
public SideBySideView.Line.Item getRight()
Returns the right version of a modified line.- Returns:
- right item.
-
isSkipping
public boolean isSkipping()
Should we skip this line.- Returns:
- true when the line should be skipped.
-
setSkipping
public void setSkipping(boolean skipping)
Sets skipping.- Parameters:
skipping
- skip?
-
getTag
public com.github.difflib.text.DiffRow.Tag getTag()
- Returns:
- the tag
-
setTag
public void setTag(com.github.difflib.text.DiffRow.Tag tag)
- Parameters:
tag
- the tag to set
-
-