X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fdemoscenemusic%2Fdata%2FGroup.java;h=08ce87931e3dcdb749b2559a3ef7540b87fd997a;hb=ca45a291a94957a166d842ff483acf8e80876a60;hp=054b303f96e8cd0e2257c5733050825e26eff939;hpb=e3ac92367c0fde656598f388e9026f45c2868c4b;p=demoscenemusic.git diff --git a/src/main/java/net/pterodactylus/demoscenemusic/data/Group.java b/src/main/java/net/pterodactylus/demoscenemusic/data/Group.java index 054b303..08ce879 100644 --- a/src/main/java/net/pterodactylus/demoscenemusic/data/Group.java +++ b/src/main/java/net/pterodactylus/demoscenemusic/data/Group.java @@ -43,20 +43,21 @@ public interface Group extends Base { public Group setName(String name); /** - * Returns the URL of this group’s website. + * Returns the short name of this group. * - * @return The URL of this group’s website + * @return The short name of this group, or {@code null} if this group does + * not have a short name */ - public String getUrl(); + public String getShortName(); /** - * Sets the URL of this group’s website. + * Sets the short name of this group. * - * @param url - * The URL of this group’s website + * @param shortName + * The new short name of this group * @return This group */ - public Group setUrl(String url); + public Group setShortName(String shortName); /** * Returns all artists belonging to this group.