blob: 84ff0a89364884394e9a89bad842d8e40c0c82e9 [file] [log] [blame]
package org.eclipse.jgit.lib;
/**
* Parsed information about a checkout.
*
* @since 3.0
*/
public interface CheckoutEntry {
/**
* Get the name of the branch before checkout
*
* @return the name of the branch before checkout
*/
String getFromBranch();
/**
* Get the name of the branch after checkout
*
* @return the name of the branch after checkout
*/
String getToBranch();
}