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.client; /*from www .ja va 2 s . co m*/ public interface Client { public void init() throws Exception; public void finish(); public void sendMessage(String message); public void setListener(ClientListener listener); }