Merge "Add missing @since tags"

This commit is contained in:
Matthias Sohn 2013-11-12 18:09:02 -05:00 committed by Gerrit Code Review @ Eclipse.org
commit 05f308af48
7 changed files with 14 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -511,6 +511,7 @@ final HttpURLConnection httpOpen(URL u) throws IOException {
* @param u
* @return the connection
* @throws IOException
* @since 3.2
*/
protected HttpURLConnection httpOpen(String method, URL u)
throws IOException {