Package org.eclipse.jgit.merge
Class StrategyResolve
- java.lang.Object
-
- org.eclipse.jgit.merge.MergeStrategy
-
- org.eclipse.jgit.merge.ThreeWayMergeStrategy
-
- org.eclipse.jgit.merge.StrategyResolve
-
- Direct Known Subclasses:
StrategyRecursive
public class StrategyResolve extends ThreeWayMergeStrategy
A three-way merge strategy performing a content-merge if necessary
-
-
Field Summary
-
Fields inherited from class org.eclipse.jgit.merge.MergeStrategy
OURS, RECURSIVE, RESOLVE, SIMPLE_TWO_WAY_IN_CORE, THEIRS
-
-
Constructor Summary
Constructors Constructor Description StrategyResolve()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()ThreeWayMergernewMerger(Repository db)Create a new merge instance.ThreeWayMergernewMerger(Repository db, boolean inCore)Create a new merge instance.-
Methods inherited from class org.eclipse.jgit.merge.MergeStrategy
get, get, register, register
-
-
-
-
Method Detail
-
newMerger
public ThreeWayMerger newMerger(Repository db)
Description copied from class:MergeStrategyCreate a new merge instance.- Specified by:
newMergerin classThreeWayMergeStrategy- Parameters:
db- repository database the merger will read from, and eventually write results back to.- Returns:
- the new merge instance which implements this strategy.
-
newMerger
public ThreeWayMerger newMerger(Repository db, boolean inCore)
Description copied from class:MergeStrategyCreate a new merge instance.- Specified by:
newMergerin classThreeWayMergeStrategy- Parameters:
db- repository database the merger will read from, and eventually write results back to.inCore- the merge will happen in memory, working folder will not be modified, in case of a non-trivial merge that requires manual resolution, the merger will fail.- Returns:
- the new merge instance which implements this strategy.
-
getName
public String getName()
- Specified by:
getNamein classMergeStrategy- Returns:
- default name of this strategy implementation.
-
-