Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CheckoutEntry.java 334B

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