aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/lib/CheckoutEntry.java
blob: 58f17d6f4c4777bb5f36c6053a29fe91908d1509 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.eclipse.jgit.lib;

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

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

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

}