Esempio n. 1
0
 public void replaceBy(Collection<? extends T> col) throws IOException {
   data.replaceBy(col);
   onModified();
 }
Esempio n. 2
0
 protected PersistedList(Collection<? extends T> initialList) {
   data.replaceBy(initialList);
 }