Class SvnHunkInfo
- java.lang.Object
-
- org.tmatesoft.svn.core.internal.wc2.patch.SvnHunkInfo
-
public class SvnHunkInfo extends java.lang.Object
-
-
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)
-
-
-
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)
-
-