If you think the Android project unmp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package com.parnswir.unmp.media;
/*www.java2s.com*/import java.io.Serializable;
import com.parnswir.unmp.playlist.Playlist;
publicclass MediaPlayerStatus implements Serializable {
privatestaticfinallong serialVersionUID = -3086458695042317582L;
publicstaticfinalint DO_NOT_REPEAT = 0, REPEAT_ALL = 1, REPEAT_ONE = 2;
publicboolean
stopped = true,
playing = false,
paused = false,
shuffled = true;
publicint
length = 0,
position = 0,
repeatMode = REPEAT_ALL,
rating = 0;
public String
file = "",
title = "",
album = "",
artist = "",
publisher = "",
composer = "",
year = "";
publicbyte[] cover = null;
public Playlist playlist = null;
public MediaPlayerStatus() {
super();
}
}