Back to project page wiki-contacts-android.
The source code is released under:
Apache License
If you think the Android project wiki-contacts-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.kahkong.wikicontacts.service; // ww w . j a va 2 s.c o m import android.content.Context; /** * * @author Poh Kah Kong * */ public interface PhoneBookService { public boolean isContactExists(String number); public void setContext(Context context); }