Returns an array containing all of the elements in this list in proper sequence. Obeys the general contract of the Collection.toArray method. @return an array containing all of the elements in this list in proper sequence.
()
| 608 | */ |
| 609 | |
| 610 | public int [] toArray() |
| 611 | { |
| 612 | int[] rval = new int[ _limit ]; |
| 613 | |
| 614 | System.arraycopy(_array, 0, rval, 0, _limit); |
| 615 | return rval; |
| 616 | } |
| 617 | |
| 618 | /** |
| 619 | * Returns an array containing all of the elements in this list in |