X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fdemoscenemusic%2Fdata%2FArtist.java;h=563a3bc8bf9e87a254bd3aaf7d5644c489f5b103;hb=7d564a0d18ae3385677021e396a02b9fbedd8f94;hp=f0948da24f34b774e40eb63067ac78c410567b5e;hpb=10561cf7c1b437433d58eaa13e32c3ee6156fa76;p=demoscenemusic.git diff --git a/src/main/java/net/pterodactylus/demoscenemusic/data/Artist.java b/src/main/java/net/pterodactylus/demoscenemusic/data/Artist.java index f0948da..563a3bc 100644 --- a/src/main/java/net/pterodactylus/demoscenemusic/data/Artist.java +++ b/src/main/java/net/pterodactylus/demoscenemusic/data/Artist.java @@ -20,22 +20,58 @@ package net.pterodactylus.demoscenemusic.data; import java.util.Collection; /** - * TODO + * Data interface for artists. * * @author David ‘Bombe’ Roden */ public interface Artist extends Base { - public String name(); + /** + * Returns the name of this artist. + * + * @return The name of this artist + */ + public String getName(); - public Artist name(String name); + /** + * Sets the name of this artist. + * + * @param name + * The new name of this artist + * @return This artist + */ + public Artist setName(String name); - public Collection groups(); + /** + * Returns the groups this artist belongs to. + * + * @return The groups this artist belongs to + */ + public Collection getGroups(); - public Artist groups(Collection groups); + /** + * Sets the groups this artist belongs to. + * + * @param groups + * The groups this artist belongs to + * @return This artist + */ + public Artist setGroups(Collection groups); - public Collection tracks(); + /** + * Returns the tracks created by this artist. + * + * @return The tracks created by this artist + */ + public Collection getTracks(); - public Artist tracks(Collection tracks); + /** + * Sets the tracks created by this artist. + * + * @param tracks + * The tracks created by this artist + * @return This artist + */ + public Artist setTracks(Collection tracks); }