Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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. }