Back to project page push-music-lib-droid.
The source code is released under:
MIT License
If you think the Android project push-music-lib-droid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.mhor.pushmusiclib.model; /* w w w .j av a2 s .com*/ import java.util.ArrayList; public class Album { protected ArrayList<Track> tracks = new ArrayList<Track>(); protected Artist albumArtist; protected String name; protected int id; public Album(int album_id, String album_name) { this.id = album_id; this.name = album_name; } public ArrayList<Track> getTracks() { return tracks; } public int getId() { return id; } }