|
Public Member Functions |
| ArrayList (int capacity=DEFAULT_CAPACITY) |
| ArrayList (IN(RCollection) other) |
| ArrayList (IN(RObjectArray) array, bool copy) |
| create ArrayList from array
|
virtual | ~ArrayList () |
virtual void | ensureCapacity (int mincap) |
virtual bool | add (IN(acdk::lang::Object) o) |
| reimplemented from Collection
|
virtual bool | containsAll (IN(RCollection) c) |
| reimplemented from Collection
|
acdk::lang::Object | get (int index) |
int | size () |
bool | isEmpty () |
| reimplemented from Collection
|
acdk::lang::Object | remove (int index) |
bool | removeAll (IN(RCollection) c) |
| reimplemented from Collection
|
bool | retainAll (IN(RCollection) c) |
| reimplemented from Collection
|
bool | remove (IN(acdk::lang::Object) o) |
| reimplemented from Collection
|
void | removeRange (int fromIndex, int toIndex) |
void | add (int index, IN(acdk::lang::Object) obj) |
bool | addAll (IN(RCollection) coll) |
| reimplemented from Collection
|
bool | addAll (int index, IN(RCollection) coll) |
acdk::lang::Object | clone () |
acdk::lang::Object | clone (sys::Allocator *alc) |
bool | contains (IN(acdk::lang::Object) obj) |
| reimplemented from Collection
|
int | indexOf (IN(acdk::lang::Object) obj) |
int | lastIndexOf (IN(acdk::lang::Object) obj) |
RListIterator | listIterator (int index=0) |
void | clear () |
| reimplemented from Collection
|
acdk::lang::Object | set (int index, IN(acdk::lang::Object) obj) |
RObjectArray | toArray () |
| reimplemented from Collection
|
RObjectArray | toArray (IN(RObjectArray) oarray) |
| reimplemented from Collection
|
void | trimToSize () |
Static Public Member Functions |
acdk::lang::Object | create_instance () |
Public Attributes |
int | _size |
RObjectArray | _data |
Static Public Attributes |
const int | DEFAULT_CAPACITY |
Static Private Member Functions |
bool | _isEqual (IN(acdk::lang::Object) o1, IN(acdk::lang::Object) o2) |