您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CheckoutEntry.java 436B

123456789101112131415161718192021222324
  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. * Get the name of the branch before checkout
  10. *
  11. * @return the name of the branch before checkout
  12. */
  13. public abstract String getFromBranch();
  14. /**
  15. * Get the name of the branch after checkout
  16. *
  17. * @return the name of the branch after checkout
  18. */
  19. public abstract String getToBranch();
  20. }