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 w w w.ja va2 s . co m public class PlayingFile { private int _duration; private String _name; public PlayingFile(int duration, String name) { _duration = duration; _name = name; } public int getDuration() { return _duration; } public String getName() { return _name; } }