X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fdemoscenemusic%2Fdata%2FArtist.java;h=563a3bc8bf9e87a254bd3aaf7d5644c489f5b103;hb=e3ac92367c0fde656598f388e9026f45c2868c4b;hp=d9e66823876c98ada4d264589292b5bf270fc72a;hpb=a8592c3929b25575caf258d4d6a46b96a79ec609;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 d9e6682..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 { + /** + * Returns the name of this artist. + * + * @return The name of this artist + */ public String getName(); + /** + * Sets the name of this artist. + * + * @param name + * The new name of this artist + * @return This artist + */ public Artist setName(String name); + /** + * Returns the groups this artist belongs to. + * + * @return The groups this artist belongs to + */ public Collection getGroups(); + /** + * Sets the groups this artist belongs to. + * + * @param groups + * The groups this artist belongs to + * @return This artist + */ public Artist setGroups(Collection groups); + /** + * Returns the tracks created by this artist. + * + * @return The tracks created by this artist + */ public Collection getTracks(); + /** + * Sets the tracks created by this artist. + * + * @param tracks + * The tracks created by this artist + * @return This artist + */ public Artist setTracks(Collection tracks); }