예제 #1
0
 /**
  * @param index The index at which to insert the row.
  * @param string The string from which to create a StringBuilder to insert.
  */
 public void add(int index, String string) {
   add(index, new StringBuilder(string));
 }