Back to project page mobile-chat.
The source code is released under:
GNU General Public License
If you think the Android project mobile-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 br.com.etyllica.sonat.chat; /* www. j a v a 2 s . com*/ import br.com.etyllica.sonat.server.ServerHandler; public interface ChatServerHandler extends ServerHandler { public void tellNames(); public void changeName(String key, String msg); public void tellMessage(String name, String message); }