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

RemoteHelperProvider.java 522B

12345678910111213141516171819202122
  1. package org.eclipse.jgit.integrate.remotehelper;
  2. import java.util.Collection;
  3. public abstract class RemoteHelperProvider {
  4. private final RemoteHelperContext context;
  5. public RemoteHelperProvider(RemoteHelperContext context) {
  6. this.context = context;
  7. context.setProvider(this);
  8. }
  9. public abstract RemoteHelperCommand getCommand(String name);
  10. public abstract Collection<RemoteHelperCapability> getCapabilities();
  11. public RemoteHelperContext getContext() {
  12. return context;
  13. }
  14. public abstract void close();
  15. }