X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fdemoscenemusic%2Fdata%2FGroup.java;h=054b303f96e8cd0e2257c5733050825e26eff939;hb=b2ab3fd2aefa2815f8c55b5b0e8b8d2eb912a192;hp=bba8866bef181f4454301662b4c2dba7b6ab868c;hpb=7da3008f2142348efd4efc21c5ce36a018227d6e;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 bba8866..054b303 100644 --- a/src/main/java/net/pterodactylus/demoscenemusic/data/Group.java +++ b/src/main/java/net/pterodactylus/demoscenemusic/data/Group.java @@ -20,22 +20,58 @@ package net.pterodactylus.demoscenemusic.data; import java.util.Collection; /** - * TODO + * Data interface for groups. * * @author David ‘Bombe’ Roden */ public interface Group extends Base { + /** + * Returns the name of this group. + * + * @return The name of this group + */ public String getName(); + /** + * Sets the name of this group. + * + * @param name + * The name of this group + * @return This group + */ public Group setName(String name); + /** + * Returns the URL of this group’s website. + * + * @return The URL of this group’s website + */ public String getUrl(); + /** + * Sets the URL of this group’s website. + * + * @param url + * The URL of this group’s website + * @return This group + */ public Group setUrl(String url); + /** + * Returns all artists belonging to this group. + * + * @return All artists belonging to this group + */ public Collection getArtists(); + /** + * Sets all artists belonging to this group. + * + * @param artists + * All artists belonging to this group + * @return This group + */ public Group setArtists(Collection artists); }