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) booleanalreadyAppliedprivate intfuzzprivate SvnDiffHunkhunkprivate intmatchedLineprivate booleanrejected
-
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 intgetFuzz()SvnDiffHunkgetHunk()intgetMatchedLine()booleanisAlreadyApplied()booleanisRejected()voidsetAlreadyApplied(boolean alreadyApplied)voidsetFuzz(int fuzz)voidsetHunk(SvnDiffHunk hunk)voidsetMatchedLine(int matchedLine)voidsetRejected(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)
-
-