Back to project page callerid-for-android.
The source code is released under:
GNU General Public License
If you think the Android project callerid-for-android 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.integralblue.callerid.contacts; // ww w .j a va2 s . c o m import android.content.Intent; import com.integralblue.callerid.CallerIDResult; import com.integralblue.callerid.CallerIDLookup.NoResultException; public interface ContactsHelper { boolean haveContactWithPhoneNumber(String phoneNumber); Intent createContactEditor(CallerIDResult result); CallerIDResult getContact(String phoneNumber) throws NoResultException; }