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  	 * @return the name of the branch before checkout
12  	 */
13  	public abstract String getFromBranch();
14  
15  	/**
16  	 * @return the name of the branch after checkout
17  	 */
18  	public abstract String getToBranch();
19  
20  }