()
| 2672 | public Iterable<TableRow> rows() { |
| 2673 | return new Iterable<TableRow>() { |
| 2674 | public Iterator<TableRow> iterator() { |
| 2675 | if (rowIterator == null) { |
| 2676 | rowIterator = new RowIterator(Table.this); |
| 2677 | } else { |
| 2678 | rowIterator.reset(); |
| 2679 | } |
| 2680 | return rowIterator; |
| 2681 | } |
| 2682 | }; |
| 2683 | } |
| 2684 |
no test coverage detected