We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
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
.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 and Description protected
SerializableNodeList(StateNode node)
Creates a new list for the given node.
-
Method Summary
All Methods Modifier and Type Method and 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
-
-