1b3ace4552f37ba362ac10aeb866127a133887c2
[demoscenemusic.git] / src / main / java / net / pterodactylus / demoscenemusic / data / DefaultParty.java
1 /*
2  * DemosceneMusic - AbstractParty.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 /**
22  * Default implementation of a party data container.
23  *
24  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
25  */
26 public class DefaultParty extends DefaultBase implements Party {
27
28         /**
29          * Creates a new party data container.
30          *
31          * @param id
32          *            The ID of the party
33          */
34         public DefaultParty(String id) {
35                 super(id);
36         }
37
38         //
39         // PARTY METHODS
40         //
41
42         /**
43          * {@inheritDoc}
44          */
45         @Override
46         public String getName() {
47                 return getValue("name", String.class).get();
48         }
49
50         /**
51          * {@inheritDoc}
52          */
53         @Override
54         public DefaultParty setName(String name) {
55                 getValue("name", String.class).set(name);
56                 return this;
57         }
58
59         /**
60          * {@inheritDoc}
61          */
62         @Override
63         @SuppressWarnings("unchecked")
64         public Collection<Track> getReleases() {
65                 return getValue("releases", Collection.class).get();
66         }
67
68         /**
69          * {@inheritDoc}
70          */
71         @Override
72         public Party setReleases(Collection<Track> tracks) {
73                 getValue("releases", Collection.class).set(tracks);
74                 return this;
75         }
76
77 }