Back to project page Amppercent7.
The source code is released under:
GNU General Public License
If you think the Android project Amppercent7 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 my.amppercent.chattables; /*from w w w .j a v a2s . c om*/ import org.jivesoftware.smack.packet.Message; public interface UberChat { public void doLeave(); public boolean send(String msg); public Message recv(boolean synch); public void setChatVisibility(boolean see); }