A filter is both source and sink.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 15 Mar 2013 06:57:57 +0000 (07:57 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 15 Mar 2013 07:00:03 +0000 (08:00 +0100)
src/main/java/net/pterodactylus/sonitus/data/Filter.java

index 94c986c..897da01 100644 (file)
@@ -22,26 +22,6 @@ package net.pterodactylus.sonitus.data;
  *
  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
-public interface Filter {
-
-       /**
-        * Returns whether this filter understands the given format.
-        *
-        * @param format
-        *              The format to check for
-        * @return {@code true} if this filter understands the given format, {@code
-        *         false} otherwise
-        */
-       boolean understands(Format format);
-
-       /**
-        * Returns whether this filter can produce the given format.
-        *
-        * @param format
-        *              The format to check for
-        * @return {@code true} if this filter can produce the given format, {@code
-        *         false} otherwise
-        */
-       boolean produces(Format format);
+public interface Filter extends Source, Sink{
 
 }