Back to project page msghandle.
The source code is released under:
GNU General Public License
If you think the Android project msghandle 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.anlong.msghandle.response; /*w w w . j av a 2 s .c om*/ import com.anlong.msghandle.vo.UserInfo; /** * @Title: Response1050.java * @Package com.anlong.msghandle.response * @company ShenZhen AnLong Technology CO.,LTD. * @author lixl * @date 2014-3-12 ????4:59:00 * @version V1.0 * @Description: ?????? */ public class Response1050 extends BaseResponse { /** ??????? */ private UserInfo userInfo; private String[] fieldArr = {"userInfo"}; public UserInfo getUserInfo() { return userInfo; } public void setUserInfo(UserInfo userInfo) { this.userInfo = userInfo; } @Override public String toString() { return "Response1050 [userInfo=" + userInfo + "]"; } }