Browse Source

Add missing @since tags to mark API added in 2.2

Change-Id: I458167739210214fa54c4b3d62fac5abc82f96f7
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Signed-off-by: Chris Aniszczyk <zx@twitter.com>
tags/v2.2.0.201212191850-r
Matthias Sohn 11 years ago
parent
commit
05a7113002

+ 1
- 0
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/CLIText.java View File

@@ -67,6 +67,7 @@ public class CLIText extends TranslationBundle {
* @param line
* the line to format
* @return the formatted line
* @since 2.2
*/
public static String formatLine(String line) {
return MessageFormat.format(get().lineFormat, line);

+ 10
- 2
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/TextBuiltin.java View File

@@ -83,10 +83,18 @@ public abstract class TextBuiltin {
@Option(name = "--help", usage = "usage_displayThisHelpText", aliases = { "-h" })
private boolean help;

/** Writer to output to, typically this is standard output. */
/**
* Writer to output to, typically this is standard output.
*
* @since 2.2
*/
protected ThrowingPrintWriter outw;

/** Stream to output to, typically this is standard output. */
/**
* Stream to output to, typically this is standard output.
*
* @since 2.2
*/
protected OutputStream outs;

/**

+ 1
- 0
org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheEntry.java View File

@@ -450,6 +450,7 @@ public class DirCacheEntry {
* Returns whether this entry is in the fully-merged stage (0).
*
* @return true if this entry is merged
* @since 2.2
*/
public boolean isMerged() {
return getStage() == STAGE_0;

+ 5
- 1
org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/BeforeDfsPackIndexLoadedListener.java View File

@@ -45,7 +45,11 @@ package org.eclipse.jgit.storage.dfs;

import org.eclipse.jgit.events.RepositoryListener;

/** Receives {@link BeforeDfsPackIndexLoadedEvent}s. */
/**
* Receives {@link BeforeDfsPackIndexLoadedEvent}s.
*
* @since 2.2
*/
public interface BeforeDfsPackIndexLoadedListener extends RepositoryListener {
/**
* Invoked just before a pack index is loaded from the block cache.

+ 4
- 1
org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsPackFile.java View File

@@ -172,7 +172,10 @@ public final class DfsPackFile {
return packDesc;
}

/** @return whether the pack index file is loaded and cached in memory. */
/**
* @return whether the pack index file is loaded and cached in memory.
* @since 2.2
*/
public boolean isIndexLoaded() {
DfsBlockCache.Ref<PackIndex> idxref = index;
return idxref != null && idxref.get() != null;

+ 2
- 0
org.eclipse.jgit/src/org/eclipse/jgit/util/RawParseUtils.java View File

@@ -67,6 +67,8 @@ import org.eclipse.jgit.lib.PersonIdent;
public final class RawParseUtils {
/**
* UTF-8 charset constant.
*
* @since 2.2
*/
public static final Charset UTF8_CHARSET = Charset.forName("UTF-8");


+ 2
- 0
org.eclipse.jgit/src/org/eclipse/jgit/util/io/ThrowingPrintWriter.java View File

@@ -51,6 +51,8 @@ import org.eclipse.jgit.util.SystemReader;

/**
* An alternative PrintWriter that doesn't catch exceptions.
*
* @since 2.2
*/
public class ThrowingPrintWriter extends Writer {


Loading…
Cancel
Save