Marks the increase of size of this list, and reflects the change in the parent
(int added)
| 98 | * Marks the increase of size of this list, and reflects the change in the parent |
| 99 | */ |
| 100 | private void increasedSize(int added) |
| 101 | { |
| 102 | end+=added; |
| 103 | } |
| 104 | |
| 105 | private void boundsCheck(int index) throws IndexOutOfBoundsException |
| 106 | { |