Back to project page cnp.
The source code is released under:
MIT License
If you think the Android project cnp 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.urucas.copynpaste.callbacks; import java.util.ArrayList; import com.urucas.copynpaste.model.User; public interface UserCallback { public void onSuccess(User user); public void onError(String message); }