blob: 34d0b14adf873cee683da677c486bb32745af566 [file] [log] [blame]
package org.eclipse.jgit.lib;
/**
* Parsed information about a checkout.
*
* @since 3.0
*/
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();
}