aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/lib/CheckoutEntry.java
blob: 84ff0a89364884394e9a89bad842d8e40c0c82e9 (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
package org.eclipse.jgit.lib;

/**
 * Parsed information about a checkout.
 *
 * @since 3.0
 */
public interface CheckoutEntry {

	/**
	 * Get the name of the branch before checkout
	 *
	 * @return the name of the branch before checkout
	 */
	String getFromBranch();

	/**
	 * Get the name of the branch after checkout
	 *
	 * @return the name of the branch after checkout
	 */
	String getToBranch();

}