Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a5d3d798d0e7e8a1fdf32edbfc17b055fbec34ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*******************************************************************************
 * Copyright (C) 2012, Manuel Doninger <manuel.doninger@googlemail.com>
 * Copyright (C) 2012, Steffen Pingel <steffen.pingel@tasktop.com>
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *******************************************************************************/
package org.eclipse.egit.ui;

/**
 * A branch name provider suggests a branch name based on current context.
 */
public interface IBranchNameProvider {

	/**
	 * @return a branch name suggestion
	 */
	public String getBranchNameSuggestion();

}

Back to the top