Use includes for displaying track information in non-admin mode.
[demoscenemusic.git] / src / main / java / net / pterodactylus / demoscenemusic / data / Style.java
index a7a0e16..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 {
 
-       public String name();
+       /**
+        * Returns the name of this style.
+        *
+        * @return The name of this style
+        */
+       public String getName();
 
-       public Style name(String name);
+       /**
+        * Sets the name of this style.
+        *
+        * @param name
+        *            The name of this style
+        * @return This style
+        */
+       public Style setName(String name);
 
 }