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 . ja v a2 s . c om public abstract class MessageFunction { final static int N_MESSAGES = 10; // TODO: Mesaj sayisi degisecek. final static int MSG_CREATE_USER = 0; final static int MSG_CREATE_COMPANY = 1; final static int MSG_CREATE_QUESTION = 2; final static int MSG_CREATE_INTERVIEW = 3; final static int MSG_LOGIN_MEMBER = 4; final static int MSG_GET_USER = 5; final static int MSG_GET_COMPANY = 6; final static int MSG_GET_INTERVIEW = 7; final static int MSG_ADD_QUESTION = 8; final static int MSG_SEARCH_ITEMS = 9; public abstract XMLMessage process(XMLMessage message); }