]> source.dussan.org Git - jgit.git/commitdiff
Add missing @since tags 11/18211/2
authorMatthias Sohn <matthias.sohn@sap.com>
Fri, 8 Nov 2013 08:04:56 +0000 (09:04 +0100)
committerMatthias Sohn <matthias.sohn@sap.com>
Sat, 9 Nov 2013 00:16:46 +0000 (01:16 +0100)
Change-Id: Ic4fabec818d6fe336d3256ddc95934271272914a
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit/src/org/eclipse/jgit/api/RebaseCommand.java
org.eclipse.jgit/src/org/eclipse/jgit/api/RebaseResult.java
org.eclipse.jgit/src/org/eclipse/jgit/api/errors/InvalidRebaseStepException.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/RebaseTodoFile.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/RebaseTodoLine.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java
org.eclipse.jgit/src/org/eclipse/jgit/transport/TransportHttp.java

index 80f46ccf5a9bb2822b6098aaab6a880f7402ae1b..8ae51d74ce62db64939bcd51068daeebd82cc8c4 100644 (file)
@@ -180,6 +180,7 @@ public class RebaseCommand extends GitCommand<RebaseResult> {
                ABORT,
                /**
                 * Starts processing steps
+                * @since 3.2
                 */
                PROCESS_STEPS;
        }
@@ -1202,6 +1203,7 @@ public class RebaseCommand extends GitCommand<RebaseResult> {
         * @param stopAfterRebaseInteractiveInitialization
         *            if {@code true} the rebase stops after initialization
         * @return this instance
+        * @since 3.2
         */
        public RebaseCommand runInteractively(InteractiveHandler handler,
                        final boolean stopAfterRebaseInteractiveInitialization) {
index 6df5ffdd1d5a9e062b6e7e12b00ba9dca8cca023..aaa75d9b8897915423c852c304653e60027d567c 100644 (file)
@@ -86,6 +86,8 @@ public class RebaseResult {
                },
                /**
                 * Stopped for editing in the context of an interactive rebase
+                *
+                * @since 3.2
                 */
                EDIT {
                        @Override
@@ -144,6 +146,7 @@ public class RebaseResult {
 
                /**
                 * Interactive rebase has been prepared
+                * @since 3.2
                 */
                INTERACTIVE_PREPARED {
                        @Override
index 764725dcbb9019f490d738474f3741e87fd1ab83..ef89a98c9cf892597ad3495327441cf9a43cb4de 100644 (file)
@@ -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
  * with squash or fixup.
+ *
+ * @since 3.2
  */
 public class InvalidRebaseStepException extends GitAPIException {
        private static final long serialVersionUID = 1L;
index 8db75662a2fd3cb2eaaedc2583219e8aa8440760..cac67e11e939b20ba5ee22da84ec1c63cd414684 100644 (file)
@@ -58,6 +58,8 @@ import org.eclipse.jgit.util.RawParseUtils;
 /**
  * Offers methods to read and write files formatted like the git-rebase-todo
  * file
+ *
+ * @since 3.2
  */
 public class RebaseTodoFile {
        private Repository repo;
index 8eeb1ea8901fba83f880cce44f93d6d94f11fe27..3aa331c72c1fd18c0a40d91509a29da37c8548e2 100644 (file)
@@ -50,6 +50,8 @@ import org.eclipse.jgit.internal.JGitText;
 
 /**
  * Describes a single line in a file formatted like the git-rebase-todo file.
+ *
+ * @since 3.2
  */
 public class RebaseTodoLine {
        /**
index 7df538ceddbab3efece3812fb666bb41d709458d..4a352e8b69bf0d5876dc3e0788dc6e955945a29a 100644 (file)
@@ -1575,6 +1575,7 @@ public abstract class Repository {
         *            <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 abstract class Repository {
         * @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)
index 45bf2db47e8d5ab2d5a9af549c4e22f5c29e7bd0..75838466f39cbcd020c1af5e9189b58953b7572e 100644 (file)
@@ -511,6 +511,7 @@ public class TransportHttp extends HttpTransport implements WalkTransport,
         * @param u
         * @return the connection
         * @throws IOException
+        * @since 3.2
         */
        protected HttpURLConnection httpOpen(String method, URL u)
                        throws IOException {