Class SVNConflictResult
- java.lang.Object
-
- org.tigris.subversion.svnclientadapter.SVNConflictResult
-
public class SVNConflictResult extends java.lang.ObjectThe result returned by the callback API used to handle conflicts encountered during merge/update/switch operations.
-
-
Field Summary
Fields Modifier and Type Field Description static intchooseBaseResolve the conflict by choosing the base file.static intchooseMergedResolve the conflict by choosing the merged object (potentially manually edited).static intchooseMineResolve the conflict by choosing own (local) version of the object (for conflicted hunks only).static intchooseMineFullResolve the conflict by choosing own (local) version of the object.static intchooseTheirsResolve the conflict by choosing the incoming (repository) version of the object (for conflicted hunks only).static intchooseTheirsFullResolve the conflict by choosing the incoming (repository) version of the object.static intpostponeNothing done to resolve the conflict; conflict remains.
-
Constructor Summary
Constructors Constructor Description SVNConflictResult(int choice, java.lang.String mergedPath)Create a new conflict result instace.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetChoice()java.lang.StringgetMergedPath()
-
-
-
Field Detail
-
postpone
public static final int postpone
Nothing done to resolve the conflict; conflict remains.- See Also:
- Constant Field Values
-
chooseBase
public static final int chooseBase
Resolve the conflict by choosing the base file.- See Also:
- Constant Field Values
-
chooseTheirsFull
public static final int chooseTheirsFull
Resolve the conflict by choosing the incoming (repository) version of the object.- See Also:
- Constant Field Values
-
chooseMineFull
public static final int chooseMineFull
Resolve the conflict by choosing own (local) version of the object.- See Also:
- Constant Field Values
-
chooseTheirs
public static final int chooseTheirs
Resolve the conflict by choosing the incoming (repository) version of the object (for conflicted hunks only).- See Also:
- Constant Field Values
-
chooseMine
public static final int chooseMine
Resolve the conflict by choosing own (local) version of the object (for conflicted hunks only).- See Also:
- Constant Field Values
-
chooseMerged
public static final int chooseMerged
Resolve the conflict by choosing the merged object (potentially manually edited).- See Also:
- Constant Field Values
-
-