| java.lang.Object it.biobytes.ammentos.util.UpdatableList
UpdatableList | public class UpdatableList implements List<E>(Code) | | A List implementation whith persistent entries. This means that when a add()
call is performed he added Es is also persisted, and when remove() method
is called the E is also removed from the database
author: Davide Deidda |
UpdatableList | public UpdatableList(List<E> list)(Code) | | |
add | public boolean add(E o)(Code) | | |
add | public void add(int index, E element)(Code) | | |
clear | public void clear()(Code) | | |
get | public E get(int index)(Code) | | |
isEmpty | public boolean isEmpty()(Code) | | |
remove | public E remove(int index)(Code) | | |
set | public E set(int index, E element)(Code) | | |
subList | public List<E> subList(int fromIndex, int toIndex)(Code) | | |
toArray | public T[] toArray(T[] a)(Code) | | |
|
|