Interface ExternalMergeTool
-
- All Superinterfaces:
ExternalDiffTool
- All Known Implementing Classes:
PreDefinedMergeTool
,UserDefinedMergeTool
public interface ExternalMergeTool extends ExternalDiffTool
The merge tool interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCommand(boolean withBase)
BooleanTriState
getTrustExitCode()
-
Methods inherited from interface org.eclipse.jgit.internal.diffmergetool.ExternalDiffTool
getCommand, getName, getPath, isAvailable
-
-
-
-
Method Detail
-
getTrustExitCode
BooleanTriState getTrustExitCode()
- Returns:
- the tool "trust exit code" option
-
getCommand
String getCommand(boolean withBase)
- Parameters:
withBase
- get command with base present (true) or without base present (false)- Returns:
- the tool command
-
-