Back to project page MusicPlayer.
The source code is released under:
MIT License
If you think the Android project MusicPlayer 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.dsvoronin.musicplayer; /*from ww w .ja v a2s.com*/ public class OnPlaybackStartEvent { public Playable song; public int currentPosition; public OnPlaybackStartEvent(Playable song, int currentPosition) { this.song = song; this.currentPosition = currentPosition; } }