use of org.qii.weiciyuan.dao.maintimeline.CommentsTimeLineByMeDao in project weiciyuan by qii.
the class CommentsByMeMsgLoader method loadData.
public CommentListBean loadData() throws WeiboException {
CommentsTimeLineByMeDao dao = new CommentsTimeLineByMeDao(token);
dao.setSince_id(sinceId);
dao.setMax_id(maxId);
CommentListBean result = null;
lock.lock();
try {
result = dao.getGSONMsgList();
} finally {
lock.unlock();
}
return result;
}
Aggregations