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; /*from www . j a v a2 s . com*/ import android.app.PendingIntent; import android.content.Context; /** * * @author Poh Kah Kong * */ public interface NotificationService { public void setNotificationManager(Context context); public int getRequestCode(); public void show(String title, String content, PendingIntent pendingIntent); public void cancel(); }