|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.tigris.subversion.javahl.ConflictResult
public class ConflictResult
The result returned by the callback API used to handle conflicts
encountered during merge/update/switch operations. Includes a poor
man's enum for svn_wc_conflict_choice_t
.
Field Summary | |
---|---|
static int |
chooseBase
Resolve the conflict by choosing the base file. |
static int |
chooseMerged
Resolve the conflict by choosing the merged object (potentially manually edited). |
static int |
chooseMineConflict
Resolve the conflict by choosing own (local) version of the object (for conflicted hunks only). |
static int |
chooseMineFull
Resolve the conflict by choosing own (local) version of the object. |
static int |
chooseTheirsConflict
Resolve the conflict by choosing the incoming (repository) version of the object (for conflicted hunks only). |
static int |
chooseTheirsFull
Resolve the conflict by choosing the incoming (repository) version of the object. |
static int |
postpone
Nothing done to resolve the conflict; conflict remains. |
Constructor Summary | |
---|---|
ConflictResult(int choice,
String mergedPath)
Create a new conflict result instance. |
Method Summary | |
---|---|
int |
getChoice()
|
String |
getMergedPath()
|
ConflictResult |
toApache()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int postpone
public static final int chooseBase
public static final int chooseTheirsFull
public static final int chooseMineFull
public static final int chooseTheirsConflict
public static final int chooseMineConflict
public static final int chooseMerged
Constructor Detail |
---|
public ConflictResult(int choice, String mergedPath)
Method Detail |
---|
public ConflictResult toApache()
public int getChoice()
svn_wc_conflict_choice_t
enum.public String getMergedPath()
null
.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |