CS202 Java-157
l
lpublic 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