]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-926 Mark FileQuery as deprecated
authorSimon Brandhof <simon.brandhof@gmail.com>
Thu, 20 Feb 2014 18:03:30 +0000 (19:03 +0100)
committerSimon Brandhof <simon.brandhof@gmail.com>
Thu, 20 Feb 2014 18:03:30 +0000 (19:03 +0100)
sonar-plugin-api/src/main/java/org/sonar/api/scan/filesystem/FileQuery.java

index f1adc52953f60b62850a73fb2691ba2a8ab4c870..342fd082b8ac88f611a5b43c4a5a8e429e01b17e 100644 (file)
@@ -36,17 +36,16 @@ import java.util.Set;
 
 /**
  * @since 3.5
+ * @deprecated in 4.2. Replaced by {@link org.sonar.api.batch.fs.FileSystem} and
+ * {@link org.sonar.api.batch.fs.FilePredicate}
  */
+@Deprecated
 public class FileQuery {
 
   private final ListMultimap<String, String> attributes = ArrayListMultimap.create();
   private final Set<String> inclusions = Sets.newHashSet();
   private final Set<String> exclusions = Sets.newHashSet();
 
-  /**
-   * @deprecated since 4.2 use {@link #onMain()} or {@link #onTest()}
-   */
-  @Deprecated
   public static FileQuery on(FileType... types) {
     FileQuery query = new FileQuery();
     for (FileType type : types) {
@@ -55,17 +54,6 @@ public class FileQuery {
     return query;
   }
 
-  /**
-   * @since 4.2
-   */
-  public static FileQuery all() {
-    return on();
-  }
-
-  /**
-   * @deprecated since 4.2 use {@link #onMain()}
-   */
-  @Deprecated
   public static FileQuery onSource() {
     return onMain();
   }
@@ -97,10 +85,6 @@ public class FileQuery {
     return attributes.asMap();
   }
 
-  /**
-   * @deprecated since 4.2 use {@link #typeAttributes()}
-   */
-  @Deprecated
   public Collection<FileType> types() {
     return Collections2.transform(attributes.get("TYPE"), new Function<String, FileType>() {
       @Override