]> source.dussan.org Git - jgit.git/commitdiff
Add missing @since tags for new API methods in archive bundle 43/43743/2
authorMatthias Sohn <matthias.sohn@sap.com>
Thu, 12 Mar 2015 18:25:19 +0000 (11:25 -0700)
committerMatthias Sohn <matthias.sohn@sap.com>
Fri, 13 Mar 2015 01:35:46 +0000 (18:35 -0700)
Change-Id: I891e2cf9ca89ae1948e9713a412d31ec66faac86
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/BaseFormat.java
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TarFormat.java
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/Tbz2Format.java
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TgzFormat.java
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/TxzFormat.java
org.eclipse.jgit.archive/src/org/eclipse/jgit/archive/ZipFormat.java

index 6803251f938e2b52b60aa380f171faea78319964..f47fa12a44d9519a7bb974b53bba43e68047cf10 100644 (file)
@@ -52,6 +52,8 @@ import org.eclipse.jgit.util.StringUtils;
 
 /**
  * Base format class
+ *
+ * @since 4.0
  */
 public class BaseFormat {
 
index c510c64c9dd1a845a944e4d00c89bdfa7ac2b692..d56cb35d9d9004902b1ad56a2e54a8a66857e5d4 100644 (file)
@@ -73,6 +73,9 @@ public final class TarFormat extends BaseFormat implements
                                Collections.<String, Object> emptyMap());
        }
 
+       /**
+        * @since 4.0
+        */
        public ArchiveOutputStream createArchiveOutputStream(OutputStream s,
                        Map<String, Object> o) throws IOException {
                TarArchiveOutputStream out = new TarArchiveOutputStream(s, "UTF-8"); //$NON-NLS-1$
index ba5348a1542cd62409b718488620fbbba337e39e..f3ab4da43ab8e9c98ba5bbba3290c11c87c7d2b8 100644 (file)
@@ -71,6 +71,9 @@ public final class Tbz2Format extends BaseFormat implements
                                Collections.<String, Object> emptyMap());
        }
 
+       /**
+        * @since 4.0
+        */
        public ArchiveOutputStream createArchiveOutputStream(OutputStream s,
                        Map<String, Object> o) throws IOException {
                BZip2CompressorOutputStream out = new BZip2CompressorOutputStream(s);
index 71adca0e5d850e3a6b7a96678bd3d694504dd941..06f09a48870230c177f8a88a507cd73a2fcb8d32 100644 (file)
@@ -71,6 +71,9 @@ public final class TgzFormat extends BaseFormat implements
                                Collections.<String, Object> emptyMap());
        }
 
+       /**
+        * @since 4.0
+        */
        public ArchiveOutputStream createArchiveOutputStream(OutputStream s,
                        Map<String, Object> o) throws IOException {
                GzipCompressorOutputStream out = new GzipCompressorOutputStream(s);
index 19723591350fd99b2b013e3df1b04d643654e663..14839353d49dbc9046941657d518940392a430e9 100644 (file)
@@ -71,6 +71,9 @@ public final class TxzFormat extends BaseFormat implements
                                Collections.<String, Object> emptyMap());
        }
 
+       /**
+        * @since 4.0
+        */
        public ArchiveOutputStream createArchiveOutputStream(OutputStream s,
                        Map<String, Object> o) throws IOException {
                XZCompressorOutputStream out = new XZCompressorOutputStream(s);
index 0b5108ad0440074ddcbc389d4468d790c07aa5fe..0e1b2536f23e1fa556f187ccce617c2a45251a39 100644 (file)
@@ -72,6 +72,9 @@ public final class ZipFormat extends BaseFormat implements
                                Collections.<String, Object> emptyMap());
        }
 
+       /**
+        * @since 4.0
+        */
        public ArchiveOutputStream createArchiveOutputStream(OutputStream s,
                        Map<String, Object> o) throws IOException {
                return applyFormatOptions(new ZipArchiveOutputStream(s), o);