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.manager; /*from www . j av a 2s. co m*/ import java.util.List; import silverhillapps.com.contactsmanager.loader.RepositoryReceiver; import silverhillapps.com.contactsmanager.model.Contact; /** * This interface defines the skeleton for a generic manager */ public interface ManagerInterface { public List<Contact> getContactList(RepositoryReceiver receiver); public void getResults(Object result, int code); }