(int index)
| 139 | } |
| 140 | |
| 141 | private void boundsCheck(int index) throws IndexOutOfBoundsException |
| 142 | { |
| 143 | if(index >= end) |
| 144 | throw new IndexOutOfBoundsException("List of of size " + size() + ", index requested was " + index); |
| 145 | } |
| 146 | |
| 147 | @Override |
| 148 | public int size() |