Inserts an element into the list at the specified index.
public void insertItem( DhElement newElement, int index )
newElement
The new element to insert.
index
The zero-based index where the element is to be placed.
If the index is less than 0 or greater than the number of elements in the list, the element is added to the end of the list.
See Also remove