Browse Source

Enable call chaining on LsRemoteCommand methods

Change-Id: I706332386415892d7a964b241442832ad79fa223
stable-2.0
Dave Borowitz 13 years ago
parent
commit
37307af6b4
  1. 14
      org.eclipse.jgit/src/org/eclipse/jgit/api/LsRemoteCommand.java

14
org.eclipse.jgit/src/org/eclipse/jgit/api/LsRemoteCommand.java

@ -106,27 +106,33 @@ public class LsRemoteCommand extends
* Include refs/heads in references results * Include refs/heads in references results
* *
* @param heads * @param heads
* @return {@code this}
*/ */
public void setHeads(boolean heads) { public LsRemoteCommand setHeads(boolean heads) {
this.heads = heads; this.heads = heads;
return this;
} }
/** /**
* Include refs/tags in references results * Include refs/tags in references results
* *
* @param tags * @param tags
* @return {@code this}
*/ */
public void setTags(boolean tags) { public LsRemoteCommand setTags(boolean tags) {
this.tags = tags; this.tags = tags;
return this;
} }
/** /**
* The full path of git-upload-pack on the remote host * The full path of git-upload-pack on the remote host
* *
* @param uploadPack * @param uploadPack
* @return {@code this}
*/ */
public void setUploadPack(String uploadPack) { public LsRemoteCommand setUploadPack(String uploadPack) {
this.uploadPack = uploadPack; this.uploadPack = uploadPack;
return this;
} }
/** /**
@ -193,4 +199,4 @@ public class LsRemoteCommand extends
} }
} }
} }

Loading…
Cancel
Save