Search in sources :

Example 1 with CommentsTimeLineByIdDao

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;
}
Also used : CommentsTimeLineByIdDao(org.qii.weiciyuan.dao.timeline.CommentsTimeLineByIdDao) CommentListBean(org.qii.weiciyuan.bean.CommentListBean)

Aggregations

CommentListBean (org.qii.weiciyuan.bean.CommentListBean)1 CommentsTimeLineByIdDao (org.qii.weiciyuan.dao.timeline.CommentsTimeLineByIdDao)1