com.vaadin.flow.internal.nodefeature.
Class SerializableNodeList<T extends Serializable>
- java.lang.Object
-
- com.vaadin.flow.internal.nodefeature.NodeFeature
-
- com.vaadin.flow.internal.nodefeature.NodeList<T>
-
- com.vaadin.flow.internal.nodefeature.SerializableNodeList<T>
-
Type Parameters:
T
- the type of Serializable objects this list containsAll Implemented Interfaces:
Direct Known Subclasses:
public abstract class SerializableNodeList<T extends Serializable> extends NodeList<T>
A list which contains
Serializable
values but notStateNode
s.For a
NodeList
containingStateNode
s, useStateNodeNodeList
.For internal use only. May be renamed or removed in a future release.
Since:
1.0
Author:
Vaadin Ltd
See Also:
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.vaadin.flow.internal.nodefeature.NodeList
NodeList.SetView<T extends Serializable>
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
SerializableNodeList(StateNode node)
Creates a new list for the given node.
-
Method Summary
All Methods Modifier and Type Method Description protected void
add(int index, T item)
Inserts an item at the given index of the list.
-
Methods inherited from class com.vaadin.flow.internal.nodefeature.NodeList
add, addAll, clear, collectChanges, forEachChild, generateChangesFromEmpty, get, getChangeTracker, indexOf, isNodeValues, iterator, onDetach, remove, size
-
Methods inherited from class com.vaadin.flow.internal.nodefeature.NodeFeature
allowsChanges, attachPotentialChild, detatchPotentialChild, getNode, onAttach
-
-
-
-
Constructor Detail
-
SerializableNodeList
protected SerializableNodeList(StateNode node)
Creates a new list for the given node.
Parameters:
node
- the node that the list belongs to
-
-