Back to project page simpleplayer.
The source code is released under:
GNU General Public License
If you think the Android project simpleplayer 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 org.sergez.splayer.util; // w w w. j a v a2 s . c o m public class DurationAlbumID { public String duration; public int albumID; public DurationAlbumID(String duration, int albumID) { this.duration = duration; this.albumID = albumID; } }