Back to project page Stack-Chat.
The source code is released under:
MIT License
If you think the Android project Stack-Chat 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.noahhuppert.stackchat.controllers; // ww w.j a v a 2 s . c om import android.content.Context; import com.noahhuppert.stackchat.models.Message; /** * Created by Noah Huppert on 11/8/2014. */ public abstract class NotificationController { public static final int UNREAD_MESSAGES_NOTIFICATION_ID = 0; public static final int MENTIONED_NOTIFICATION_ID = 1; public abstract int showMessage(Message chatMessage, Context context); }