]> source.dussan.org Git - sonarqube.git/commitdiff
Deprecate Resource#isExcluded(), replaced by SensorContext#isExcluded(Resource)....
authorsimonbrandhof <simon.brandhof@gmail.com>
Fri, 28 Jan 2011 09:28:56 +0000 (10:28 +0100)
committersimonbrandhof <simon.brandhof@gmail.com>
Fri, 28 Jan 2011 12:18:46 +0000 (13:18 +0100)
sonar-plugin-api/src/main/java/org/sonar/api/resources/Resource.java

index 68d06907897971a4d4550325b21e927efd75f3be..11c40999642ecb600a80885b5f073d2cb962a5c4 100644 (file)
@@ -205,13 +205,19 @@ public abstract class Resource<PARENT extends Resource> {
     return this;
   }
 
+  /**
+   * @deprecated since 2.6 should use SensorContext#isExcluded(resource). It will make inheritance of Resource easier.
+   */
+  @Deprecated
   public final boolean isExcluded() {
     return isExcluded;
   }
 
   /**
    * Internal use only
+   * @deprecated since 2.6 should use SensorContext#isExcluded(resource). It will make inheritance of Resource easier.
    */
+  @Deprecated
   public final Resource setExcluded(boolean b) {
     isExcluded = b;
     return this;