Add javadoc.
[demoscenemusic.git] / src / main / java / net / pterodactylus / demoscenemusic / data / Base.java
index 921ca30..e187041 100644 (file)
 
 package net.pterodactylus.demoscenemusic.data;
 
-
 /**
- * TODO
+ * Base class for all data interfaces and implementations.
  *
  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
 public interface Base {
 
+       /**
+        * Returns the ID of the data container.
+        *
+        * @return The ID of the data container
+        */
        public String getId();
 
 }