Add name to all controlled components.
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / data / filter / AudioProcessingFilter.java
index 5539eea..e87935b 100644 (file)
@@ -30,6 +30,16 @@ import net.pterodactylus.sonitus.io.ProcessingOutputStream;
  */
 public abstract class AudioProcessingFilter extends DummyFilter {
 
+       /**
+        * Creates a new audio processing filter with the given name.
+        *
+        * @param name
+        *              The name of the filter
+        */
+       protected AudioProcessingFilter(String name) {
+               super(name);
+       }
+
        //
        // DUMMYFILTER METHODS
        //