blob: e02697b7727635f79fd6aa42f52ca1f9100d7e2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
* Copyright (C) 2018-2021, Andre Bossert <andre.bossert@siemens.com>
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.eclipse.jgit.internal.diffmergetool;
/**
* The external tool interface.
*/
public interface ExternalDiffTool {
/**
* Get tool name
*
* @return the tool name
*/
String getName();
/**
* Get tool path
*
* @return the tool path
*/
String getPath();
/**
* Get tool command
*
* @return the tool command
*/
String getCommand();
/**
* Whether tool is available
*
* @return availability of the tool: true if tool can be executed and false
* if not
*/
boolean isAvailable();
}
|