CS202 Java-157
l
l
public void insert(String item)
l
// Result: If the list is not full, puts item in
l
// the last position in the list; otherwise list
l
// is unchanged.
l
{
l
if (!isFull())
l
{
l
listItems[numItems] = item;
l
numItems++;
l
}
l
}
157
Transformer Method Insert