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