Back to project page RadioRake.
The source code is released under:
GNU General Public License
If you think the Android project RadioRake 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.asp.radiorake; //from www. j a va2 s . co m public class LastPlayedFile { private String _name; private int _currentPosition; public LastPlayedFile(String name, int currentPosition) { _currentPosition = currentPosition; _name = name; } public String getName() { return _name; } public int getCurrentPosition() { return _currentPosition; } }