Add javadoc.
[demoscenemusic.git] / src / main / java / net / pterodactylus / demoscenemusic / data / Style.java
index 6f572eb..3a2926d 100644 (file)
 package net.pterodactylus.demoscenemusic.data;
 
 /**
- * TODO
+ * Data interface for styles.
  *
  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
 public interface Style extends Base {
 
+       /**
+        * Returns the name of this style.
+        *
+        * @return The name of this style
+        */
        public String getName();
 
+       /**
+        * Sets the name of this style.
+        *
+        * @param name
+        *            The name of this style
+        * @return This style
+        */
        public Style setName(String name);
 
 }