Back to project page ContactsManager.
The source code is released under:
Apache License
If you think the Android project ContactsManager 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 silverhillapps.com.contactsmanager.loader; //from w w w . j av a 2 s . co m /** * Interface for receiving the asynchronous results from the repository */ public interface RepositoryReceiver { public void getResults(Object result, int code); public void getError(int code); }