Back to project page sampleaccountandserver.
The source code is released under:
Apache License
If you think the Android project sampleaccountandserver 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.jiahaoliuliu.android.sampleaccountandserver.completionhandler; //from ww w . j a v a2s. c o m /** * This class is used to implement the error completion handler. */ public interface Callback { /** * Method called when the operation has been finished. * @param error Indication of if any error happened or not */ void done(final boolean error); }