Package com.storedobject.vaadin
Class DataList<T>
java.lang.Object
com.storedobject.vaadin.DataList<T>
- Type Parameters:
T
- Type of data in the list.
- All Implemented Interfaces:
Iterable<T>
,Collection<T>
,List<T>
,SequencedCollection<T>
A list data structure with a "refresh" listener. The refresh methods of the
listeners (
DataList.RefreshListener
) are called whenever list is changed by adding/deleting/updating items.
This class may be used instead of normal List
if you want to use it as data for
ListGrid
. The same instance may be used in multiple ListGrid
s and all grids will be
simultaneously updated when data is updated programmatically.
- Author:
- Syam
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interface
Definition of refresh listener that can be added to theDataList
. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
boolean
boolean
addAll
(int index, Collection<? extends T> collection) boolean
addAll
(Collection<? extends T> collection) com.vaadin.flow.shared.Registration
addRefreshListener
(DataList.RefreshListener<T> listener) Add a refresh listener for this list.void
clear()
boolean
boolean
containsAll
(Collection<?> collection) get
(int index) getData()
Get the data of this list.int
boolean
isEmpty()
iterator()
int
lastIndexOf
(Object item) listIterator
(int index) void
refresh()
Inform the listeners that the items in this list are refreshed due to addition or deletion of items.void
Inform the listeners that an item of this in this list is refreshed.remove
(int index) boolean
boolean
removeAll
(Collection<?> collection) boolean
void
replaceAll
(UnaryOperator<T> operator) boolean
retainAll
(Collection<?> collection) int
size()
void
sort
(Comparator<? super T> comparator) subList
(int fromIndex, int toIndex) Object[]
toArray()
<T1> T1[]
toArray
(T1[] a) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, stream, toArray
Methods inherited from interface java.util.List
addFirst, addLast, equals, getFirst, getLast, hashCode, removeFirst, removeLast, reversed, spliterator
-
Constructor Details
-
DataList
public DataList()Constructor. -
DataList
-
-
Method Details
-
getData
Get the data of this list. If the data is directly manipulated,refresh()
orrefresh(Object)
should be invoked to inform the listeners about the changes.- Returns:
- Data of this list.
-
size
-
isEmpty
-
contains
-
iterator
-
toArray
-
toArray
-
add
-
remove
-
containsAll
- Specified by:
containsAll
in interfaceCollection<T>
- Specified by:
containsAll
in interfaceList<T>
-
addAll
-
addAll
-
removeAll
-
removeIf
- Specified by:
removeIf
in interfaceCollection<T>
-
retainAll
-
clear
-
get
-
set
-
add
-
remove
-
indexOf
-
lastIndexOf
- Specified by:
lastIndexOf
in interfaceList<T>
-
listIterator
- Specified by:
listIterator
in interfaceList<T>
-
listIterator
- Specified by:
listIterator
in interfaceList<T>
-
subList
-
refresh
public void refresh()Inform the listeners that the items in this list are refreshed due to addition or deletion of items. -
refresh
Inform the listeners that an item of this in this list is refreshed.- Parameters:
item
- Item that is changed.
-
addRefreshListener
Add a refresh listener for this list.- Parameters:
listener
- Listener to add.- Returns:
- Registration.
-
sort
-
replaceAll
- Specified by:
replaceAll
in interfaceList<T>
-