4d359aa40e104d93d125de053566b14504349ee5
[demoscenemusic.git] / src / main / java / net / pterodactylus / demoscenemusic / data / DefaultArtist.java
1 /*
2  * DemosceneMusic - Artist.java - Copyright © 2012 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.demoscenemusic.data;
19
20 import java.util.Collection;
21 import java.util.Comparator;
22
23 /**
24  * Default implementation for an artist data container.
25  *
26  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
27  */
28 public class DefaultArtist extends DefaultBase implements Artist {
29
30         /** Comparator that sorts artists by name. */
31         public static final Comparator<Artist> NAME_COMPARATOR = new Comparator<Artist>() {
32
33                 @Override
34                 public int compare(Artist leftArtist, Artist rightArtist) {
35                         return leftArtist.getName().compareToIgnoreCase(rightArtist.getName());
36                 }
37         };
38
39         /**
40          * Creates a new artist data container.
41          *
42          * @param id
43          *            The ID of the artist
44          */
45         public DefaultArtist(String id) {
46                 super(id);
47         }
48
49         //
50         // ARTIST METHODS
51         //
52
53         /**
54          * {@inheritDoc}
55          */
56         @Override
57         public String getName() {
58                 return getValue("name", String.class).get();
59         }
60
61         /**
62          * {@inheritDoc}
63          */
64         @Override
65         public Artist setName(String name) {
66                 getValue("name", String.class).set(name);
67                 return this;
68         }
69
70         /**
71          * {@inheritDoc}
72          */
73         @Override
74         @SuppressWarnings("unchecked")
75         public Collection<Group> getGroups() {
76                 return getValue("groups", Collection.class).get();
77         }
78
79         /**
80          * {@inheritDoc}
81          */
82         @Override
83         public Artist setGroups(Collection<Group> groups) {
84                 getValue("groups", Collection.class).set(groups);
85                 return this;
86         }
87
88         /**
89          * {@inheritDoc}
90          */
91         @Override
92         @SuppressWarnings({ "unchecked" })
93         public Collection<Track> getTracks() {
94                 return getValue("tracks", Collection.class).get();
95         }
96
97         /**
98          * {@inheritDoc}
99          */
100         @Override
101         public Artist setTracks(Collection<Track> tracks) {
102                 getValue("tracks", Collection.class).set(tracks);
103                 return this;
104         }
105
106 }