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

Variable Index

 o _array
Object array.

Constructor Index

 o IVector()

Method Index

 o _allocate(int, int)
IXVector _allocate implementation.
 o _copy(int, int, int)
IXVector _copy implementation.
 o _unset(int, int)
IXVector _unset implementation.
 o addElement(Object)
Add element to the end.
 o elementAt(int)
Get element at given index.
 o insertElementAt(Object, int)
Insert an element at given index.
 o removeElementAt(int)
Remove an element at given index.
 o setElementAt(Object, int)
Set element at given index.

Variables

 o _array
 protected Object _array[]
Object array.

Constructors

 o IVector
 public IVector()

Methods

 o _allocate
 protected void _allocate(int length,
                          int keepLength)
IXVector _allocate implementation.

Overrides:
_allocate in class IXVector
 o _copy
 protected void _copy(int sourceIndex,
                      int destIndex,
                      int length)
IXVector _copy implementation.

Overrides:
_copy in class IXVector
 o _unset
 protected void _unset(int index,
                       int length)
IXVector _unset implementation.

Overrides:
_unset in class IXVector
 o elementAt
 public final Object elementAt(int index)
Get element at given index.

 o setElementAt
 public final void setElementAt(Object element,
                                int index)
Set element at given index.

 o addElement
 public final void addElement(Object element)
Add element to the end.

 o insertElementAt
 public final void insertElementAt(Object element,
                                   int index)
Insert an element at given index.

 o removeElementAt
 public final Object removeElementAt(int index)
Remove an element at given index.


All Packages  Class Hierarchy  This Package  Previous  Next  Index