()
| 659 | } |
| 660 | |
| 661 | public List<OEColumn> getDatabaseServerColumns() { |
| 662 | List<OEColumn> cols = new ArrayList<OEColumn>(); |
| 663 | for (OEColumn col : mDBHelper.getModelColumns()) { |
| 664 | if (col.canSync()) { |
| 665 | cols.add(col); |
| 666 | } |
| 667 | } |
| 668 | return cols; |
| 669 | } |
| 670 | |
| 671 | public int lastId() { |
| 672 | int last_id = 0; |
no test coverage detected