Back to project page Profiterole.
The source code is released under:
Apache License
If you think the Android project Profiterole 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 profiterole.api; //from ww w . jav a 2s . c o m public abstract class OnUpdateStatusCallback { public abstract void onInit(String info); public abstract void onMediumOne(String info); public abstract void onMediumTwo(String info); public abstract void onFinish(String info); }