X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fdemoscenemusic%2Fdata%2FArtist.java;h=563a3bc8bf9e87a254bd3aaf7d5644c489f5b103;hb=18e7d99933bc49b3092b156dbb16eef3f1957ec6;hp=26499fbe022cd32b6aba2703def4957b09ca141b;hpb=6927ae801814666e0bb8a7ef0eb148e42c1f8e4d;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 26499fb..563a3bc 100644 --- a/src/main/java/net/pterodactylus/demoscenemusic/data/Artist.java +++ b/src/main/java/net/pterodactylus/demoscenemusic/data/Artist.java @@ -17,15 +17,61 @@ 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(); + + /** + * 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(); - public Artist name(String name); + /** + * Sets the tracks created by this artist. + * + * @param tracks + * The tracks created by this artist + * @return This artist + */ + public Artist setTracks(Collection tracks); }