Back to project page CipherChat.
The source code is released under:
MIT License
If you think the Android project CipherChat 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.ist.cipherchat.networking; /*from ww w. j a v a2 s .c o m*/ public class ThreadComm { public boolean error; public boolean loginFail; public boolean registerFail; public boolean noUsers; public boolean contactsFail; public ThreadComm(){ this.error = false; this.loginFail = false; this.registerFail = false; this.noUsers = false; this.contactsFail = false; } public void clean(){ this.error = false; this.loginFail = false; this.registerFail = false; this.noUsers = false; this.contactsFail = false; } }