Add some missing javadoc comments.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 27 May 2013 07:43:01 +0000 (09:43 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 27 May 2013 20:54:39 +0000 (22:54 +0200)
src/main/java/net/pterodactylus/sonitus/data/sink/FileSink.java
src/main/java/net/pterodactylus/sonitus/data/sink/Icecast2Sink.java
src/main/java/net/pterodactylus/sonitus/data/source/MultiSource.java

index 9738c50..48476b3 100644 (file)
@@ -47,6 +47,7 @@ public class FileSink implements Sink {
        /** The path of the file to write to. */
        private final String path;
 
+       /** The output stream writing to the file. */
        private FileOutputStream fileOutputStream;
 
        /** The current metadata. */
index b924cc5..ce55669 100644 (file)
@@ -81,6 +81,7 @@ public class Icecast2Sink implements Sink {
        /** Whether to publish the server. */
        private final boolean publishServer;
 
+       /** The output stream to the server. */
        private OutputStream socketOutputStream;
 
        /** The current metadata. */
index 81f4f7c..13cf030 100644 (file)
@@ -56,6 +56,12 @@ public class MultiSource implements Source {
        /** Whether the source was changed. */
        private boolean sourceChanged;
 
+       /**
+        * Creates a new multi source.
+        *
+        * @param eventBus
+        *              The event bus
+        */
        @Inject
        public MultiSource(EventBus eventBus) {
                this.eventBus = eventBus;