packageorg.eclipse.jgit.lib;/** * Parsed information about a checkout. */publicinterfaceCheckoutEntry{/** * @return the name of the branch before checkout */publicabstractStringgetFromBranch();/** * @return the name of the branch after checkout */publicabstractStringgetToBranch();}