Name: dsC58869 Date: 07/02/98
The java.awt.List spec says the following about the
replaceItem(String newValue, int index) method:
/**
* Replaces the item at the specified index in the scrolling list
* with the new string.
* @param newValue a new string to replace an existing item.
* @param index the position of the item to replace.
*/
public synchronized void replaceItem(String newValue, int index) {
The spec doesn't specify that this method throws
an ArrayIndexOutOfBoundsException if the index is out of range.
======================================================================
Justification:
Wrong specification, should be fixed for JCK testing.
======================================================================