]> source.dussan.org Git - jgit.git/commitdiff
Add missing @since tags 99/11399/1
authorMatthias Sohn <matthias.sohn@sap.com>
Fri, 22 Mar 2013 20:15:48 +0000 (21:15 +0100)
committerMatthias Sohn <matthias.sohn@sap.com>
Fri, 22 Mar 2013 20:21:07 +0000 (21:21 +0100)
Change-Id: I6b20d78e6bd1f245fdca331554c106f8bae44b9c
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java
org.eclipse.jgit/src/org/eclipse/jgit/merge/MergeStrategy.java
org.eclipse.jgit/src/org/eclipse/jgit/merge/Merger.java
org.eclipse.jgit/src/org/eclipse/jgit/merge/RecursiveMerger.java
org.eclipse.jgit/src/org/eclipse/jgit/merge/ResolveMerger.java
org.eclipse.jgit/src/org/eclipse/jgit/storage/file/FileRepositoryBuilder.java
org.eclipse.jgit/src/org/eclipse/jgit/transport/PackParser.java
org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java
org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPackLoggerChain.java
org.eclipse.jgit/src/org/eclipse/jgit/treewalk/WorkingTreeOptions.java

index 3a396aa1191a1e2ea25c747c2157e09d06a85533..de14282cfd9c9a925a77124966730d50234ecab0 100644 (file)
@@ -1269,7 +1269,9 @@ public abstract class Repository {
         * @param refName
         * @return a {@link ReflogReader} for the supplied refname, or null if the
         *         named ref does not exist.
-        * @throws IOException the ref could not be accessed.
+        * @throws IOException
+        *             the ref could not be accessed.
+        * @since 3.0
         */
        public abstract ReflogReader getReflogReader(String refName)
                        throws IOException;
index 3b64ddd36120b4a960716b6d9ecd1ca17575bebe..c5e615ed87eb5024bfaebe202673e85c3fc4c728 100644 (file)
@@ -76,6 +76,7 @@ public abstract class MergeStrategy {
        /**
         * Recursive strategy to merge paths. It tries to merge also contents.
         * Multiple merge bases are supported
+        * @since 3.0
         */
        public static final ThreeWayMergeStrategy RECURSIVE = new StrategyRecursive();
 
index 04c29e6e8366be31d6c094216dd72c7c907a31f2..13463287611e4709b8d50b37700bb1f03bc82b21 100644 (file)
@@ -197,6 +197,7 @@ public abstract class Merger {
         *             one of the input objects is not a commit.
         * @throws IOException
         *             objects are missing or multiple merge bases were found.
+        * @since 3.0
         */
        protected AbstractTreeIterator mergeBase(RevCommit a, RevCommit b)
                        throws IOException {
@@ -241,6 +242,7 @@ public abstract class Merger {
         *             one of the input objects is not a commit.
         * @throws IOException
         *             objects are missing or multiple merge bases were found.
+        * @since 3.0
         */
        protected RevCommit getBaseCommit(RevCommit a, RevCommit b)
                        throws IncorrectObjectTypeException, IOException {
index d68be35403776e630431022c0eb35dcc464c7efc..540d6a8c66ea70da7274e28d863275ceba009193 100644 (file)
@@ -82,9 +82,8 @@ import org.eclipse.jgit.treewalk.WorkingTreeIterator;
  * - uses "Lists" instead of Arrays for chained types
  *
  * - recursively merges the merge bases together to compute a usable base
- *
+ * @since 3.0
  */
-
 public class RecursiveMerger extends ResolveMerger {
        static Logger log = Logger.getLogger(RecursiveMerger.class.toString());
 
index 213a1d4daa31391cac9f0936af20c4b309405d3c..2ea1160793ddb21d6dd3002b90841d3b591907f0 100644 (file)
@@ -109,6 +109,8 @@ public class ResolveMerger extends ThreeWayMerger {
 
        /**
         * string versions of a list of commit SHA1s
+        *
+        * @since 3.0
         */
        protected String commitNames[];
 
@@ -126,6 +128,8 @@ public class ResolveMerger extends ThreeWayMerger {
 
        /**
         * merge result as tree
+        *
+        * @since 3.0
         */
        protected ObjectId resultTree;
 
@@ -149,6 +153,7 @@ public class ResolveMerger extends ThreeWayMerger {
         * created as temporary files and a new empty, in-memory dircache will be
         * used instead the repo's one. Often used for bare repos where the repo
         * doesn't even have a workingtree and dircache.
+        * @since 3.0
         */
        protected boolean inCore;
 
@@ -157,22 +162,26 @@ public class ResolveMerger extends ThreeWayMerger {
         * repository and should handle locking and unlocking of the dircache. If
         * this merger should work in-core or if an explicit dircache was specified
         * during construction then this field is set to false.
+        * @since 3.0
         */
        protected boolean implicitDirCache;
 
        /**
         * Directory cache
+        * @since 3.0
         */
        protected DirCache dircache;
 
        /**
         * The iterator to access the working tree. If set to <code>null</code> this
         * merger will not touch the working tree.
+        * @since 3.0
         */
        protected WorkingTreeIterator workingTreeIterator;
 
        /**
         * our merge algorithm
+        * @since 3.0
         */
        protected MergeAlgorithm mergeAlgorithm;
 
@@ -893,6 +902,7 @@ public class ResolveMerger extends ThreeWayMerger {
         * @param mergeTree
         * @return whether the trees merged cleanly
         * @throws IOException
+        * @since 3.0
         */
        protected boolean mergeTrees(AbstractTreeIterator baseTree,
                        RevTree headTree, RevTree mergeTree) throws IOException {
index 5efa2507a80769ebf789d7c13c5bf26bd29c0bd4..944fb4f5ea6e72aa0a0ea1f42f6a498d3d2d3e2f 100644 (file)
@@ -104,6 +104,7 @@ public class FileRepositoryBuilder extends
         * @throws IOException
         *             the repository could not be accessed to configure the rest of
         *             the builder's parameters.
+        * @since 3.0
         */
        public static Repository create(File gitDir) throws IOException {
                return new FileRepositoryBuilder().setGitDir(gitDir).readEnvironment()
index 50158d880dbf3e46bd2147c7afc98fbb9c456f56..e16cce0e3d666e379c2eca3dc38bc9f26a370314 100644 (file)
@@ -428,6 +428,7 @@ public abstract class PackParser {
         *         {@link #setLockMessage(String)}.
         * @throws IOException
         *             the stream is malformed, or contains corrupt objects.
+        * @since 3.0
         */
        public final PackLock parse(ProgressMonitor progress) throws IOException {
                return parse(progress, progress);
@@ -446,6 +447,7 @@ public abstract class PackParser {
         *         {@link #setLockMessage(String)}.
         * @throws IOException
         *             the stream is malformed, or contains corrupt objects.
+        * @since 3.0
         */
        public PackLock parse(ProgressMonitor receiving, ProgressMonitor resolving)
                        throws IOException {
index 01bc5b75bad5e7e427170c094815e2bd6e0fc1d5..1377a37cd8fe52c9bd04f13b1475b1926d1fbd57 100644 (file)
@@ -537,6 +537,7 @@ public class UploadPack {
         * @return statistics about pack output, if a pack was sent. Null if no pack
         *         was sent, such as during the negotation phase of a smart HTTP
         *         connection, or if the client was already up-to-date.
+        * @since 3.0
         */
        public PackWriter.Statistics getPackStatistics() {
                return statistics;
index 0facfe0e48c21b2476ca803b0cca3ea29e412abc..3f14cc6f589ba51b549148e889c88ec990d96583 100644 (file)
@@ -78,6 +78,9 @@ public class UploadPackLoggerChain implements UploadPackLogger {
                        return new UploadPackLoggerChain(newLoggers, i);
        }
 
+       /**
+        * @since 3.0
+        */
        public void onPackStatistics(PackWriter.Statistics stats) {
                for (int i = 0; i < count; i++)
                        loggers[i].onPackStatistics(stats);
index 93590fd222a3169313561d7d328459cc76450e40..15bfb917db718958a2c2485178e48089b9a20fb6 100644 (file)
@@ -85,7 +85,7 @@ public class WorkingTreeOptions {
 
        /**
         * @return how stat data is compared
-        * @since 2.3
+        * @since 3.0
         */
        public CheckStat getCheckStat() {
                return checkStat;