]> source.dussan.org Git - jgit.git/commitdiff
Annotated to be removed Tree API with @noreference and @noextend 47/64647/1
authorAndrey Loskutov <loskutov@gmx.de>
Tue, 19 Jan 2016 13:27:41 +0000 (14:27 +0100)
committerAndrey Loskutov <loskutov@gmx.de>
Tue, 19 Jan 2016 13:27:41 +0000 (14:27 +0100)
See https://wiki.eclipse.org/Eclipse/API_Central/API_Removal_Process.

Bug: 486105
Change-Id: I460e43da0d487279608729a2081c614e7065f56f
Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
org.eclipse.jgit/src/org/eclipse/jgit/lib/FileTreeEntry.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/GitlinkTreeEntry.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/SymlinkTreeEntry.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/Tree.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/TreeEntry.java

index 6811417ee0d7e668f629d590b787b5bef3d3afbb..9c689440bb77319e2e15bf996a6cecfa87ca8eed 100644 (file)
@@ -54,6 +54,8 @@ import java.io.IOException;
  * To lookup information about multiple paths at once, use a
  * {@link org.eclipse.jgit.treewalk.TreeWalk} and obtain the current entry's
  * information from its getter methods.
+ * @noreference This class is not intended to be referenced by clients.
+ * @noextend This class is not intended to be subclassed by clients.
  */
 @Deprecated
 public class FileTreeEntry extends TreeEntry {
index 936fd82bfdac8bb707128ed44a3553d80773a891..f42f7a2211015ce66297be96d67d6d55c8959bea 100644 (file)
@@ -55,6 +55,8 @@ package org.eclipse.jgit.lib;
  * To lookup information about multiple paths at once, use a
  * {@link org.eclipse.jgit.treewalk.TreeWalk} and obtain the current entry's
  * information from its getter methods.
+ * @noreference This class is not intended to be referenced by clients.
+ * @noextend This class is not intended to be subclassed by clients.
  */
 @Deprecated
 public class GitlinkTreeEntry extends TreeEntry {
index c7e41bce041fa816d9265cc479496ee418bab368..5ff83260d04be49d45bde010918e6d9a2a62a99f 100644 (file)
@@ -54,6 +54,8 @@ package org.eclipse.jgit.lib;
  * To lookup information about multiple paths at once, use a
  * {@link org.eclipse.jgit.treewalk.TreeWalk} and obtain the current entry's
  * information from its getter methods.
+ * @noreference This class is not intended to be referenced by clients.
+ * @noextend This class is not intended to be subclassed by clients.
  */
 @Deprecated
 public class SymlinkTreeEntry extends TreeEntry {
index 43bd489dc04ed1d0266fe9ed4f4ad5b9baf53137..94d14401db5ebac4ca147b40d479361be5533c6a 100644 (file)
@@ -63,6 +63,8 @@ import org.eclipse.jgit.util.RawParseUtils;
  * To lookup information about multiple paths at once, use a
  * {@link org.eclipse.jgit.treewalk.TreeWalk} and obtain the current entry's
  * information from its getter methods.
+ * @noreference This class is not intended to be referenced by clients.
+ * @noextend This class is not intended to be subclassed by clients.
  */
 @Deprecated
 public class Tree extends TreeEntry {
index a1ffa6805652497432ab204303cd4ddb223db2a5..83be44cf303acad478faa9c9ad86338847da9148 100644 (file)
@@ -56,6 +56,8 @@ import org.eclipse.jgit.util.RawParseUtils;
  * To lookup information about multiple paths at once, use a
  * {@link org.eclipse.jgit.treewalk.TreeWalk} and obtain the current entry's
  * information from its getter methods.
+ * @noreference This class is not intended to be referenced by clients.
+ * @noextend This class is not intended to be subclassed by clients.
  */
 @Deprecated
 public abstract class TreeEntry implements Comparable {