Back to project page MOA-Player.
The source code is released under:
MIT License
If you think the Android project MOA-Player 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 us.reimus.moaplayer; /*www . j a v a2 s. co m*/ public class Song { private long id; private String title; private String artist; private String file; public Song(long songID, String songTitle, String songArtist, String fileLocation) { id=songID; title=songTitle; artist=songArtist; file=fileLocation; } public long getID(){return id;} public String getTitle(){return title;} public String getArtist(){return artist;} public String getFileLocation(){return file;} }