Add javadoc.
[demoscenemusic.git] / src / main / java / net / pterodactylus / demoscenemusic / data / DefaultTrack.java
index de84cdb..b357517 100644 (file)
@@ -21,45 +21,73 @@ import java.util.Collection;
 import java.util.List;
 
 /**
- * TODO
+ * Default implementation of a track data container.
  *
  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
 public class DefaultTrack extends DefaultBase implements Track {
 
+       /**
+        * Creates a new track data container.
+        *
+        * @param id
+        *            The ID of the track
+        */
        public DefaultTrack(String id) {
                super(id);
        }
 
+       //
+       // TRACK METHODS
+       //
+
+       /**
+        * {@inheritDoc}
+        */
        @Override
        public String getName() {
                return getValue("name", String.class).get();
        }
 
+       /**
+        * {@inheritDoc}
+        */
        @Override
        public Track setName(String name) {
                getValue("name", String.class).set(name);
                return this;
        }
 
+       /**
+        * {@inheritDoc}
+        */
        @Override
        @SuppressWarnings("unchecked")
        public List<Artist> getArtists() {
                return getValue("artists", List.class).get();
        }
 
+       /**
+        * {@inheritDoc}
+        */
        @Override
        public Track setArtists(List<Artist> artists) {
                getValue("artists", List.class).set(artists);
                return this;
        }
 
+       /**
+        * {@inheritDoc}
+        */
        @Override
        @SuppressWarnings("unchecked")
        public Collection<Style> getStyles() {
                return getValue("styles", Collection.class).get();
        }
 
+       /**
+        * {@inheritDoc}
+        */
        @Override
        public Track setStyles(Collection<? extends Style> styles) {
                getValue("styles", Collection.class).set(styles);