(String operator)
| 383 | } |
| 384 | |
| 385 | private OEDomain getLocalIdsDomain(String operator) { |
| 386 | OEDomain domain = new OEDomain(); |
| 387 | JSONArray ids = new JSONArray(); |
| 388 | for (OEDataRow row : mDatabase.select()) { |
| 389 | ids.put(row.getInt("id")); |
| 390 | } |
| 391 | domain.add("id", operator, ids); |
| 392 | return domain; |
| 393 | } |
| 394 | |
| 395 | private List<OEDataRow> search_read(boolean getRemain) { |
| 396 | List<OEDataRow> rows = new ArrayList<OEDataRow>(); |
no test coverage detected