1 package org.eclipse.jgit.lib;
2
3 /**
4 * Parsed information about a checkout.
5 *
6 * @since 3.0
7 */
8 public interface CheckoutEntry {
9
10 /**
11 * Get the name of the branch before checkout
12 *
13 * @return the name of the branch before checkout
14 */
15 public abstract String getFromBranch();
16
17 /**
18 * Get the name of the branch after checkout
19 *
20 * @return the name of the branch after checkout
21 */
22 public abstract String getToBranch();
23
24 }