示例#1
0
 /*package*/ User(Response res, Element elem, Weibo weibo) throws WeiboException {
   super(res);
   init(elem, weibo);
 }
示例#2
0
 /*package*/ User(JSONObject json) throws WeiboException {
   super();
   init(json);
 }
示例#3
0
 /*package*/ User(Response res, Weibo weibo) throws WeiboException {
   super(res);
   Element elem = res.asDocument().getDocumentElement();
   init(elem, weibo);
 }