Back to project page visualekg.
The source code is released under:
GNU General Public License
If you think the Android project visualekg 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 xmlMessages; /*from w w w.j a va2 s .co m*/ public class ErrorDefinitions { public final static int RESULT_OK = 0; public final static int ERR_MEMBER_EXISTS = 1; public final static int ERR_DATABASE_NOT_AVAILABLE = 2; public final static int ERR_LOGIN_INVALID = 3; public final static int ERR_MESSAGE_INVALID = 4; public final static int ERR_MEMBER_NULL=5; public final static String[] errorTexts={ "SYSTEM_OK", "MEMBER_ALREADY_EXISTS", "DB_NOT_AVAILABLE", "LOGIN_INVALID", "MESSAGE_INVALID", "ERR_MEMBER_NULL" }; }