예제 #1
0
파일: ListStore.java 프로젝트: Jullil/gxt
 /**
  * Remove a item from the store and fires the <i>Remove</i> event.
  *
  * @param model the model to remove
  */
 public void remove(M model) {
   int index = indexOf(model);
   remove(index);
 }