1 /* 2 * Copyright (C) 2018-2019, Tim Neumann <Tim.Neumann@advantest.com> 3 * 4 * This program and the accompanying materials are made available under the 5 * terms of the Eclipse Distribution License v. 1.0 which is available at 6 * https://www.eclipse.org/org/documents/edl-v10.php. 7 * 8 * SPDX-License-Identifier: BSD-3-Clause 9 */ 10 11 package org.eclipse.jgit.internal.diffmergetool; 12 13 import java.util.List; 14 15 /** 16 * A handler for when the diff/merge tool manager wants to inform the user that 17 * no tool has been configured and one of the default tools will be used. 18 */ 19 public interface InformNoToolHandler { 20 /** 21 * Inform the user, that no tool is configured and that one of the given 22 * tools is used. 23 * 24 * @param toolNames 25 * The tools which are tried 26 */ 27 void inform(List<String> toolNames); 28 }