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