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; /*ww w .j ava 2 s. c o m*/ /** * @author Sergii Zhuk * Date: 13.10.13 * Time: 14:07 */ public class MediaFileData { public String title; public String artist; public MediaFileData(String artist, String title) { this.title = title; this.artist = artist; } }