Back to project page kup.
The source code is released under:
GNU General Public License
If you think the Android project kup 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.stark.kup; //from w w w .j ava2 s. c o m public class Song { private long id; private String title; private String artist; public Song(long songID, String songTitle, String songArtist) { id=songID; title=songTitle; artist=songArtist; } public long getID(){return id;} public String getTitle(){return title;} public String getArtist(){return artist;} }