Back to project page SimpleAndroidChat.
The source code is released under:
GNU General Public License
If you think the Android project SimpleAndroidChat 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.anderscore.simpleandroidchat; // w w w . ja v a2s .c om public interface ConnectionAdapterEventbus { /** notification about new Contact data * * @param contact */ public abstract void contactEvent(Contact contact); /** notification about an incomming Msg * * @param chatMsg */ public abstract void incommingMsgEvent(ChatMsg chatMsg); }