Esempio n. 1
0
 /**
  * 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);
 }