View Javadoc
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  	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  	String getToBranch();
23  
24  }