All Packages Class Hierarchy This Package Previous Next Index
Class com.micronova.util.IVector
java.lang.Object
|
+----com.micronova.util.IXVector
|
+----com.micronova.util.IVector
- public class IVector
- extends IXVector
Object Vector.
- Version:
- 1.0
-
_array
- Object array.
-
IVector()
-
-
_allocate(int, int)
- IXVector _allocate implementation.
-
_copy(int, int, int)
- IXVector _copy implementation.
-
_unset(int, int)
- IXVector _unset implementation.
-
addElement(Object)
- Add element to the end.
-
elementAt(int)
- Get element at given index.
-
insertElementAt(Object, int)
- Insert an element at given index.
-
removeElementAt(int)
- Remove an element at given index.
-
setElementAt(Object, int)
- Set element at given index.
_array
protected Object _array[]
- Object array.
IVector
public IVector()
_allocate
protected void _allocate(int length,
int keepLength)
- IXVector _allocate implementation.
- Overrides:
- _allocate in class IXVector
_copy
protected void _copy(int sourceIndex,
int destIndex,
int length)
- IXVector _copy implementation.
- Overrides:
- _copy in class IXVector
_unset
protected void _unset(int index,
int length)
- IXVector _unset implementation.
- Overrides:
- _unset in class IXVector
elementAt
public final Object elementAt(int index)
- Get element at given index.
setElementAt
public final void setElementAt(Object element,
int index)
- Set element at given index.
addElement
public final void addElement(Object element)
- Add element to the end.
insertElementAt
public final void insertElementAt(Object element,
int index)
- Insert an element at given index.
removeElementAt
public final Object removeElementAt(int index)
- Remove an element at given index.
All Packages Class Hierarchy This Package Previous Next Index