You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CheckoutEntry.java 317B

123456789101112131415161718
  1. package org.eclipse.jgit.lib;
  2. /**
  3. * Parsed information about a checkout.
  4. */
  5. public interface CheckoutEntry {
  6. /**
  7. * @return the name of the branch before checkout
  8. */
  9. public abstract String getFromBranch();
  10. /**
  11. * @return the name of the branch after checkout
  12. */
  13. public abstract String getToBranch();
  14. }