Class SvnHunkInfo
- java.lang.Object
-
- org.tmatesoft.svn.core.internal.wc2.patch.SvnHunkInfo
-
public class SvnHunkInfo extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) boolean
alreadyApplied
private int
fuzz
private SvnDiffHunk
hunk
private int
matchedLine
private boolean
rejected
-
Constructor Summary
Constructors Constructor Description SvnHunkInfo(SvnDiffHunk hunk, int matchedLine, boolean rejected, boolean alreadyApplied, int fuzz)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getFuzz()
SvnDiffHunk
getHunk()
int
getMatchedLine()
boolean
isAlreadyApplied()
boolean
isRejected()
void
setAlreadyApplied(boolean alreadyApplied)
void
setFuzz(int fuzz)
void
setHunk(SvnDiffHunk hunk)
void
setMatchedLine(int matchedLine)
void
setRejected(boolean rejected)
-
-
-
Field Detail
-
hunk
private SvnDiffHunk hunk
-
matchedLine
private int matchedLine
-
rejected
private boolean rejected
-
alreadyApplied
boolean alreadyApplied
-
fuzz
private int fuzz
-
-
Constructor Detail
-
SvnHunkInfo
public SvnHunkInfo(SvnDiffHunk hunk, int matchedLine, boolean rejected, boolean alreadyApplied, int fuzz)
-
-
Method Detail
-
getHunk
public SvnDiffHunk getHunk()
-
setHunk
public void setHunk(SvnDiffHunk hunk)
-
getMatchedLine
public int getMatchedLine()
-
setMatchedLine
public void setMatchedLine(int matchedLine)
-
isRejected
public boolean isRejected()
-
setRejected
public void setRejected(boolean rejected)
-
isAlreadyApplied
public boolean isAlreadyApplied()
-
setAlreadyApplied
public void setAlreadyApplied(boolean alreadyApplied)
-
getFuzz
public int getFuzz()
-
setFuzz
public void setFuzz(int fuzz)
-
-