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