Add album container.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 1 Jan 2011 02:11:38 +0000 (03:11 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 1 Jan 2011 02:11:38 +0000 (03:11 +0100)
src/main/java/net/pterodactylus/sone/data/Album.java [new file with mode: 0644]

diff --git a/src/main/java/net/pterodactylus/sone/data/Album.java b/src/main/java/net/pterodactylus/sone/data/Album.java
new file mode 100644 (file)
index 0000000..a85a6ab
--- /dev/null
@@ -0,0 +1,82 @@
+/*
+ * Sone - Album.java - Copyright © 2011 David Roden
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package net.pterodactylus.sone.data;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * Container for images that can also contain nested {@link Album}s.
+ *
+ * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+public class Album {
+
+       /** Nested albums. */
+       private final List<Album> albums = new ArrayList<Album>();
+
+       /** The images in this album. */
+       private final List<Image> images = new ArrayList<Image>();
+
+       /** The name of this album. */
+       private String name;
+
+       //
+       // ACCESSORS
+       //
+
+       /**
+        * Returns the nested albums.
+        *
+        * @return The nested albums
+        */
+       public List<Album> getNestedAlbums() {
+               return new ArrayList<Album>(albums);
+       }
+
+       /**
+        * Returns the images in this album.
+        *
+        * @return The images in this album
+        */
+       public List<Image> getImages() {
+               return new ArrayList<Image>(images);
+       }
+
+       /**
+        * Returns the name of this album.
+        *
+        * @return The name of this album
+        */
+       public String getName() {
+               return name;
+       }
+
+       /**
+        * Sets the name of this album.
+        *
+        * @param name
+        *            The name of this album
+        * @return This album
+        */
+       public Album setName(String name) {
+               this.name = name;
+               return this;
+       }
+
+}