Back to project page ampdroid.
The source code is released under:
MIT License
If you think the Android project ampdroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * The MIT License (MIT)/* ww w. j a v a 2 s .c o m*/ * * Copyright (c) 2014 Daniel Schruhl * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */ package com.racoon.ampache; import java.io.Serializable; /** * @author Daniel Schruhl * */ public class Album implements Serializable { /** * */ private static final long serialVersionUID = 1L; private int id; private String name; private String artist; private int artistId; private int tracks; private String art; /** * */ public Album() { // TODO Auto-generated constructor stub } /** * @return the id */ public int getId() { return id; } /** * @param id the id to set */ public void setId(int id) { this.id = id; } /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } /** * @return the artist */ public String getArtist() { return artist; } /** * @param artist the artist to set */ public void setArtist(String artist) { this.artist = artist; } /** * @return the artistId */ public int getArtistId() { return artistId; } /** * @param artistId the artistId to set */ public void setArtistId(int artistId) { this.artistId = artistId; } /** * @return the tracks */ public int getTracks() { return tracks; } /** * @param tracks the tracks to set */ public void setTracks(int tracks) { this.tracks = tracks; } /** * @return the art */ public String getArt() { return art; } /** * @param art the art to set */ public void setArt(String art) { this.art = art; } /* * (non-Javadoc) * @see java.lang.Object#toString() */ @Override public String toString() { return name; } }