Add javadoc.
[demoscenemusic.git] / src / main / java / net / pterodactylus / demoscenemusic / data / DefaultGroup.java
index aae28e3..437fadb 100644 (file)
@@ -20,16 +20,26 @@ package net.pterodactylus.demoscenemusic.data;
 import java.util.Collection;
 
 /**
- * TODO
+ * Default implementation of a group data container.
  *
  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
 public class DefaultGroup extends DefaultBase implements Group {
 
+       /**
+        * Creates a new group data container.
+        *
+        * @param id
+        *            The ID of the group
+        */
        public DefaultGroup(String id) {
                super(id);
        }
 
+       //
+       // GROUP METHODS
+       //
+
        /**
         * {@inheritDoc}
         */