blob: d6608cd1c6293ef682dcecd3048e7915429c2fe1 [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();
}