예제 #1
0
 @Override
 public void loadSendList() {
   pd = ProgressDialog.show(this, null, getString(R.string.progress_msg_loading));
   MispBaseReqJson req = new MispBaseReqJson();
   List<QueryCondition> conditionList = new ArrayList<QueryCondition>();
   conditionList.add(
       new QueryCondition(
           ConditionTypeEnum.EQUAL,
           "create_user_id",
           AppCache.getInstance().getUser().getUser_id()));
   req.setConditionList(conditionList);
   WebServiceContext.getInstance().getProjectRest(this).loadAll(req);
 }