예제 #1
0
 /**
  * indexで指定した{@link RgtProxy}とそれに対応する{@link Collection}を削除します。
  *
  * @param index
  * @throws IllegalArgumentException indexがコレクションの範囲外の場合
  */
 public void remove(int index) {
   if ((index < 0) || (collection_.size() <= index)) {
     throw new IllegalArgumentException("Bad index:" + index); // $NON-NLS-1$
   }
   collection_.remove(index);
   isRgtEdited_ = true;
 }