Add short name to groups.
[demoscenemusic.git] / src / main / java / net / pterodactylus / demoscenemusic / data / Group.java
index 9c86181..08ce879 100644 (file)
@@ -43,6 +43,23 @@ public interface Group extends Base {
        public Group setName(String name);
 
        /**
+        * Returns the short name of this group.
+        *
+        * @return The short name of this group, or {@code null} if this group does
+        *         not have a short name
+        */
+       public String getShortName();
+
+       /**
+        * Sets the short name of this group.
+        *
+        * @param shortName
+        *            The new short name of this group
+        * @return This group
+        */
+       public Group setShortName(String shortName);
+
+       /**
         * Returns all artists belonging to this group.
         *
         * @return All artists belonging to this group