Add javadoc.
[demoscenemusic.git] / src / main / java / net / pterodactylus / demoscenemusic / data / DefaultStyle.java
index 19995e2..1b6ae3c 100644 (file)
 package net.pterodactylus.demoscenemusic.data;
 
 /**
- * TODO
+ * Default implementation of a style data container.
  *
  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
 public class DefaultStyle extends DefaultBase implements Style {
 
+       /**
+        * Creates a new style data container.
+        *
+        * @param id
+        *            The ID of the style
+        */
        public DefaultStyle(String id) {
                super(id);
        }
 
+       //
+       // STYLE METHODS
+       //
+
+       /**
+        * {@inheritDoc}
+        */
        @Override
        public String getName() {
                return getValue("name", String.class).get();
        }
 
+       /**
+        * {@inheritDoc}
+        */
        @Override
        public Style setName(String name) {
                getValue("name", String.class).set(name);