]> source.dussan.org Git - sonarqube.git/commitdiff
Deprecate some constants that should have been deprecated in 4.2
authorJulien HENRY <julien.henry@sonarsource.com>
Tue, 8 Apr 2014 14:07:58 +0000 (16:07 +0200)
committerJulien HENRY <julien.henry@sonarsource.com>
Tue, 8 Apr 2014 14:08:24 +0000 (16:08 +0200)
sonar-plugin-api/src/main/java/org/sonar/api/resources/Scopes.java

index 1df626a38627cd550c81f47a5294bff5a1c2e4b8..7f20c86647acd752b43a910e9f4c225d1b7b38d9 100644 (file)
@@ -57,17 +57,20 @@ public final class Scopes {
 
   /**
    * Types like Java classes/interfaces. Not persisted in database.
+   * @deprecated since 4.3 resources under FILE level are no more be supported since 4.2.
    */
+  @Deprecated
   public static final String PROGRAM_UNIT = "PGU";
 
   /**
    * Block units like methods, functions or Cobol paragraphs.
+   * @deprecated since 4.3 resources under FILE level are no more be supported since 4.2.
    */
+  @Deprecated
   public static final String BLOCK_UNIT = "BLU";
 
   public static final String[] SORTED_SCOPES = {PROJECT, DIRECTORY, FILE, PROGRAM_UNIT, BLOCK_UNIT};
 
-
   public static boolean isProject(final Resource resource) {
     return StringUtils.equals(PROJECT, resource.getScope());
   }
@@ -85,11 +88,17 @@ public final class Scopes {
 
   /**
    * A program unit can be a Java class.
+   * @deprecated since 4.3 resources under FILE level are no more be supported since 4.2.
    */
+  @Deprecated
   public static boolean isProgramUnit(final Resource resource) {
     return StringUtils.equals(PROGRAM_UNIT, resource.getScope());
   }
 
+  /**
+   * @deprecated since 4.3 resources under FILE level are no more be supported since 4.2.
+   */
+  @Deprecated
   public static boolean isBlockUnit(final Resource resource) {
     return StringUtils.equals(BLOCK_UNIT, resource.getScope());
   }