X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fdemoscenemusic%2Fdata%2FArtist.java;h=563a3bc8bf9e87a254bd3aaf7d5644c489f5b103;hb=70e99ae2ccefa4cebec5b282ff0d528ab1654d74;hp=3b2615547ec7d7ca4711b2ebe3650035e8d3e03d;hpb=a2983e36c9603ddb43f7016f16e445e1b26bd885;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 3b26155..563a3bc 100644 --- a/src/main/java/net/pterodactylus/demoscenemusic/data/Artist.java +++ b/src/main/java/net/pterodactylus/demoscenemusic/data/Artist.java @@ -17,26 +17,61 @@ package net.pterodactylus.demoscenemusic.data; +import java.util.Collection; + /** - * TODO + * Data interface for artists. * * @author David ‘Bombe’ Roden */ -public class Artist extends AbstractBase { +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); - private String name; + /** + * Returns the groups this artist belongs to. + * + * @return The groups this artist belongs to + */ + public Collection getGroups(); - public Artist(String id) { - super(id); - } + /** + * Sets the groups this artist belongs to. + * + * @param groups + * The groups this artist belongs to + * @return This artist + */ + public Artist setGroups(Collection groups); - public String name() { - return name; - } + /** + * Returns the tracks created by this artist. + * + * @return The tracks created by this artist + */ + public Collection getTracks(); - public Artist name(String name) { - this.name = name; - return this; - } + /** + * Sets the tracks created by this artist. + * + * @param tracks + * The tracks created by this artist + * @return This artist + */ + public Artist setTracks(Collection tracks); }