Browse Source

Add missing @since tags

Change-Id: Ic4fabec818d6fe336d3256ddc95934271272914a
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-3.2
Matthias Sohn 11 years ago
parent
commit
7cae388118
  1. 2
      org.eclipse.jgit/src/org/eclipse/jgit/api/RebaseCommand.java
  2. 3
      org.eclipse.jgit/src/org/eclipse/jgit/api/RebaseResult.java
  3. 2
      org.eclipse.jgit/src/org/eclipse/jgit/api/errors/InvalidRebaseStepException.java
  4. 2
      org.eclipse.jgit/src/org/eclipse/jgit/lib/RebaseTodoFile.java
  5. 2
      org.eclipse.jgit/src/org/eclipse/jgit/lib/RebaseTodoLine.java
  6. 2
      org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java
  7. 1
      org.eclipse.jgit/src/org/eclipse/jgit/transport/TransportHttp.java

2
org.eclipse.jgit/src/org/eclipse/jgit/api/RebaseCommand.java

@ -180,6 +180,7 @@ public class RebaseCommand extends GitCommand<RebaseResult> {
ABORT, ABORT,
/** /**
* Starts processing steps * Starts processing steps
* @since 3.2
*/ */
PROCESS_STEPS; PROCESS_STEPS;
} }
@ -1202,6 +1203,7 @@ public class RebaseCommand extends GitCommand<RebaseResult> {
* @param stopAfterRebaseInteractiveInitialization * @param stopAfterRebaseInteractiveInitialization
* if {@code true} the rebase stops after initialization * if {@code true} the rebase stops after initialization
* @return this instance * @return this instance
* @since 3.2
*/ */
public RebaseCommand runInteractively(InteractiveHandler handler, public RebaseCommand runInteractively(InteractiveHandler handler,
final boolean stopAfterRebaseInteractiveInitialization) { final boolean stopAfterRebaseInteractiveInitialization) {

3
org.eclipse.jgit/src/org/eclipse/jgit/api/RebaseResult.java

@ -86,6 +86,8 @@ public class RebaseResult {
}, },
/** /**
* Stopped for editing in the context of an interactive rebase * Stopped for editing in the context of an interactive rebase
*
* @since 3.2
*/ */
EDIT { EDIT {
@Override @Override
@ -144,6 +146,7 @@ public class RebaseResult {
/** /**
* Interactive rebase has been prepared * Interactive rebase has been prepared
* @since 3.2
*/ */
INTERACTIVE_PREPARED { INTERACTIVE_PREPARED {
@Override @Override

2
org.eclipse.jgit/src/org/eclipse/jgit/api/errors/InvalidRebaseStepException.java

@ -40,6 +40,8 @@ package org.eclipse.jgit.api.errors;
/** /**
* Exception thrown if a rebase step is invalid. E.g., a rebase must not start * Exception thrown if a rebase step is invalid. E.g., a rebase must not start
* with squash or fixup. * with squash or fixup.
*
* @since 3.2
*/ */
public class InvalidRebaseStepException extends GitAPIException { public class InvalidRebaseStepException extends GitAPIException {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;

2
org.eclipse.jgit/src/org/eclipse/jgit/lib/RebaseTodoFile.java

@ -58,6 +58,8 @@ import org.eclipse.jgit.util.RawParseUtils;
/** /**
* Offers methods to read and write files formatted like the git-rebase-todo * Offers methods to read and write files formatted like the git-rebase-todo
* file * file
*
* @since 3.2
*/ */
public class RebaseTodoFile { public class RebaseTodoFile {
private Repository repo; private Repository repo;

2
org.eclipse.jgit/src/org/eclipse/jgit/lib/RebaseTodoLine.java

@ -50,6 +50,8 @@ import org.eclipse.jgit.internal.JGitText;
/** /**
* Describes a single line in a file formatted like the git-rebase-todo file. * Describes a single line in a file formatted like the git-rebase-todo file.
*
* @since 3.2
*/ */
public class RebaseTodoLine { public class RebaseTodoLine {
/** /**

2
org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java

@ -1575,6 +1575,7 @@ public abstract class Repository {
* <code>true</code> if also comments should be reported * <code>true</code> if also comments should be reported
* @return the list of steps * @return the list of steps
* @throws IOException * @throws IOException
* @since 3.2
*/ */
public List<RebaseTodoLine> readRebaseTodo(String path, public List<RebaseTodoLine> readRebaseTodo(String path,
boolean includeComments) boolean includeComments)
@ -1593,6 +1594,7 @@ public abstract class Repository {
* @param append * @param append
* whether to append to an existing file or to write a new file * whether to append to an existing file or to write a new file
* @throws IOException * @throws IOException
* @since 3.2
*/ */
public void writeRebaseTodoFile(String path, List<RebaseTodoLine> steps, public void writeRebaseTodoFile(String path, List<RebaseTodoLine> steps,
boolean append) boolean append)

1
org.eclipse.jgit/src/org/eclipse/jgit/transport/TransportHttp.java

@ -511,6 +511,7 @@ public class TransportHttp extends HttpTransport implements WalkTransport,
* @param u * @param u
* @return the connection * @return the connection
* @throws IOException * @throws IOException
* @since 3.2
*/ */
protected HttpURLConnection httpOpen(String method, URL u) protected HttpURLConnection httpOpen(String method, URL u)
throws IOException { throws IOException {

Loading…
Cancel
Save