Uses of Class
com.vaadin.flow.internal.StateNode
-
-
Uses of StateNode in com.vaadin.flow.component.combobox
Constructors in com.vaadin.flow.component.combobox with parameters of type StateNode Constructor Description ComboBoxDataCommunicator(ComboBoxBase<?,TItem,?> comboBox, DataGenerator<TItem> dataGenerator, ArrayUpdater arrayUpdater, SerializableConsumer<elemental.json.JsonArray> dataUpdater, StateNode stateNode, boolean fetchEnabled) -
Uses of StateNode in com.vaadin.flow.component.internal
Methods in com.vaadin.flow.component.internal that return StateNode Modifier and Type Method Description StateNodePendingJavaScriptInvocation. getOwner()Gets the state node that this invocation belongs to.Constructors in com.vaadin.flow.component.internal with parameters of type StateNode Constructor Description PendingJavaScriptInvocation(StateNode owner, UIInternals.JavaScriptInvocation invocation)Creates a new pending invocation for the given owner node and invocation. -
Uses of StateNode in com.vaadin.flow.component.ironlist.paging
Constructors in com.vaadin.flow.component.ironlist.paging with parameters of type StateNode Constructor Description PagelessDataCommunicator(DataGenerator<T> dataGenerator, ArrayUpdater arrayUpdater, SerializableConsumer<elemental.json.JsonArray> dataUpdater, StateNode stateNode) -
Uses of StateNode in com.vaadin.flow.component.polymertemplate
Methods in com.vaadin.flow.component.polymertemplate that return StateNode Modifier and Type Method Description protected StateNodeAbstractTemplate. getStateNode()Deprecated.Gets the state node for current template.Constructors in com.vaadin.flow.component.polymertemplate with parameters of type StateNode Constructor Description AbstractTemplate(StateNode stateNode)Deprecated. -
Uses of StateNode in com.vaadin.flow.component.virtuallist.paging
Constructors in com.vaadin.flow.component.virtuallist.paging with parameters of type StateNode Constructor Description PagelessDataCommunicator(DataGenerator<T> dataGenerator, ArrayUpdater arrayUpdater, SerializableConsumer<elemental.json.JsonArray> dataUpdater, StateNode stateNode) -
Uses of StateNode in com.vaadin.flow.data.provider
Constructors in com.vaadin.flow.data.provider with parameters of type StateNode Constructor Description DataCommunicator(DataGenerator<T> dataGenerator, ArrayUpdater arrayUpdater, SerializableConsumer<elemental.json.JsonArray> dataUpdater, StateNode stateNode)Creates a new instance.DataCommunicator(DataGenerator<T> dataGenerator, ArrayUpdater arrayUpdater, SerializableConsumer<elemental.json.JsonArray> dataUpdater, StateNode stateNode, boolean fetchEnabled)Creates a new instance. -
Uses of StateNode in com.vaadin.flow.data.provider.hierarchy
Constructors in com.vaadin.flow.data.provider.hierarchy with parameters of type StateNode Constructor Description HierarchicalDataCommunicator(CompositeDataGenerator<T> dataGenerator, HierarchicalArrayUpdater arrayUpdater, SerializableConsumer<elemental.json.JsonArray> dataUpdater, StateNode stateNode, SerializableSupplier<ValueProvider<T,String>> uniqueKeyProviderSupplier)Construct a new hierarchical data communicator backed by aTreeDataProvider. -
Uses of StateNode in com.vaadin.flow.dom
Methods in com.vaadin.flow.dom that return StateNode Modifier and Type Method Description StateNodeElementStateProvider. attachShadow(StateNode node)Attaches the shadow root for thenode.StateNodeNode. getNode()Gets the node this element is connected to.StateNodeElementStateProvider. getShadowRoot(StateNode node)Gets shadow root for thenodeif it has been attached.Methods in com.vaadin.flow.dom with parameters of type StateNode Modifier and Type Method Description DomListenerRegistrationElementStateProvider. addEventListener(StateNode node, String eventType, DomEventListener listener)Adds a DOM event listener.RegistrationElementStateProvider. addPropertyChangeListener(StateNode node, String name, PropertyChangeListener listener)Adds a property change listener.voidElementStateProvider. appendVirtualChild(StateNode node, Element child, String type, String payload)Append the given element as a virtual child.voidElementStateProvider. attachExistingElement(StateNode node, String tagName, Element previousSibling, ChildElementConsumer callback)Attaches a child element with the giventagNamewhich is the next sibling for thepreviousSibling.StateNodeElementStateProvider. attachShadow(StateNode node)Attaches the shadow root for thenode.static ElementElement. get(StateNode node)Gets the element mapped to the given state node.static ElementElement. get(StateNode node, ElementStateProvider stateProvider)Gets the element mapped to the given state node and element state provider.static ShadowRootShadowRoot. get(StateNode node)Gets the shadow root instance mapped to the given state node.StringElementStateProvider. getAttribute(StateNode node, String attribute)Gets the value of the given attribute.Stream<String>ElementStateProvider. getAttributeNames(StateNode node)Gets the defined attribute names.ElementElementStateProvider. getChild(StateNode node, int index)Returns the child element at the given position.intElementStateProvider. getChildCount(StateNode node)Gets the number of child elements.ClassListElementStateProvider. getClassList(StateNode node)Gets a list representation of all CSS class names set for an element.default Optional<Component>ElementStateProvider. getComponent(StateNode node)Gets the component this element is mapped to.NodeElementStateProvider. getParent(StateNode node)Gets the parent element.SerializableElementStateProvider. getProperty(StateNode node, String name)Gets the value of the given property.Stream<String>ElementStateProvider. getPropertyNames(StateNode node)Gets the defined property names.StateNodeElementStateProvider. getShadowRoot(StateNode node)Gets shadow root for thenodeif it has been attached.StyleElementStateProvider. getStyle(StateNode node)Returns a style instance for managing element inline styles.StringElementStateProvider. getTag(StateNode node)Gets the tag name for the given node.StringElementStateProvider. getTextContent(StateNode node)Gets the text content.booleanElementStateProvider. hasAttribute(StateNode node, String attribute)Checks if the given attribute has been set.booleanElementStateProvider. hasProperty(StateNode node, String name)Checks if the given property has been set.voidElementStateProvider. insertChild(StateNode node, int index, Element child)Inserts the given child at the given position.static booleanShadowRoot. isShadowRoot(StateNode node)Checks whether the givennodeis a shadow root node.booleanElementStateProvider. isTextNode(StateNode node)Checks if the state node represents a text node.booleanElementStateProvider. isVisible(StateNode node)Gets thenodevisibility.voidElementStateProvider. removeAllChildren(StateNode node)Removes all child elements.voidElementStateProvider. removeAttribute(StateNode node, String attribute)Removes the given attribute if it has been set.voidElementStateProvider. removeChild(StateNode node, int index)Removes the child at the given position.voidElementStateProvider. removeChild(StateNode node, Element child)Removes the given child.voidElementStateProvider. removeProperty(StateNode node, String name)Removes the given property if it has been set.voidElementStateProvider. setAttribute(StateNode node, String attribute, AbstractStreamResource resource)Sets the given attribute to the givenStreamResourcevalue.voidElementStateProvider. setAttribute(StateNode node, String attribute, String value)Sets the given attribute to the given value.default voidElementStateProvider. setComponent(StateNode node, Component component)Defines a mapping between the element and the given component.voidElementStateProvider. setProperty(StateNode node, String name, Serializable value, boolean emitChange)Sets the given property to the given value.voidElementStateProvider. setTextContent(StateNode node, String textContent)Sets the text content.voidElementStateProvider. setVisible(StateNode node, boolean visible)Sets thenodevisibility.booleanElementStateProvider. supports(StateNode node)Checks if the element state provider supports the given state node.voidElementStateProvider. visit(StateNode node, NodeVisitor visitor)Visit thenodeapplyingvisitorto it and its descendants based on the return value from the visitor.Constructors in com.vaadin.flow.dom with parameters of type StateNode Constructor Description Element(StateNode node, ElementStateProvider stateProvider)Private constructor for initializing with an existing node and state provider.Node(StateNode node, ElementStateProvider stateProvider)Private constructor for initializing with an existing node and state provider. -
Uses of StateNode in com.vaadin.flow.dom.impl
Methods in com.vaadin.flow.dom.impl that return StateNode Modifier and Type Method Description StateNodeAbstractTextElementStateProvider. attachShadow(StateNode node)StateNodeBasicElementStateProvider. attachShadow(StateNode node)StateNodeShadowRootStateProvider. attachShadow(StateNode node)StateNodeShadowRootStateProvider. createShadowRootNode(StateNode node)Create a new shadow root node for the given elementnode.static StateNodeBasicElementStateProvider. createStateNode(String tag)Creates a compatible element state node using the giventag.static StateNodeBasicTextElementStateProvider. createStateNode(String text)Creates a compatible text state node using the given text.StateNodeAbstractTextElementStateProvider. getShadowRoot(StateNode node)StateNodeBasicElementStateProvider. getShadowRoot(StateNode node)StateNodeShadowRootStateProvider. getShadowRoot(StateNode node)Methods in com.vaadin.flow.dom.impl with parameters of type StateNode Modifier and Type Method Description DomListenerRegistrationAbstractTextElementStateProvider. addEventListener(StateNode node, String eventType, DomEventListener listener)DomListenerRegistrationBasicElementStateProvider. addEventListener(StateNode node, String eventType, DomEventListener listener)DomListenerRegistrationShadowRootStateProvider. addEventListener(StateNode node, String eventType, DomEventListener listener)RegistrationAbstractTextElementStateProvider. addPropertyChangeListener(StateNode node, String name, PropertyChangeListener listener)RegistrationBasicElementStateProvider. addPropertyChangeListener(StateNode node, String name, PropertyChangeListener listener)RegistrationShadowRootStateProvider. addPropertyChangeListener(StateNode node, String name, PropertyChangeListener listener)voidAbstractNodeStateProvider. appendVirtualChild(StateNode node, Element child, String type, String payload)voidAbstractTextElementStateProvider. appendVirtualChild(StateNode node, Element child, String type, String payload)voidAbstractNodeStateProvider. attachExistingElement(StateNode node, String tagName, Element previousSibling, ChildElementConsumer callback)voidAbstractTextElementStateProvider. attachExistingElement(StateNode node, String tagName, Element previousSibling, ChildElementConsumer callback)StateNodeAbstractTextElementStateProvider. attachShadow(StateNode node)StateNodeBasicElementStateProvider. attachShadow(StateNode node)StateNodeShadowRootStateProvider. attachShadow(StateNode node)StateNodeShadowRootStateProvider. createShadowRootNode(StateNode node)Create a new shadow root node for the given elementnode.StringAbstractTextElementStateProvider. getAttribute(StateNode node, String attribute)StringBasicElementStateProvider. getAttribute(StateNode node, String attribute)StringShadowRootStateProvider. getAttribute(StateNode node, String attribute)Stream<String>AbstractTextElementStateProvider. getAttributeNames(StateNode node)Stream<String>BasicElementStateProvider. getAttributeNames(StateNode node)Stream<String>ShadowRootStateProvider. getAttributeNames(StateNode node)ElementAbstractNodeStateProvider. getChild(StateNode node, int index)ElementAbstractTextElementStateProvider. getChild(StateNode node, int index)intAbstractNodeStateProvider. getChildCount(StateNode node)intAbstractTextElementStateProvider. getChildCount(StateNode node)ClassListAbstractTextElementStateProvider. getClassList(StateNode node)ClassListBasicElementStateProvider. getClassList(StateNode node)ClassListShadowRootStateProvider. getClassList(StateNode node)protected abstract Node<?>AbstractNodeStateProvider. getNode(StateNode node)Gets the flyweight instance for thenodesupported by the provider.protected Node<?>BasicElementStateProvider. getNode(StateNode node)protected Node<?>ShadowRootStateProvider. getNode(StateNode node)NodeAbstractNodeStateProvider. getParent(StateNode node)NodeBasicElementStateProvider. getParent(StateNode node)Node<?>BasicTextElementStateProvider. getParent(StateNode node)SerializableAbstractTextElementStateProvider. getProperty(StateNode node, String name)SerializableBasicElementStateProvider. getProperty(StateNode node, String name)SerializableShadowRootStateProvider. getProperty(StateNode node, String name)Stream<String>AbstractTextElementStateProvider. getPropertyNames(StateNode node)Stream<String>BasicElementStateProvider. getPropertyNames(StateNode node)Stream<String>ShadowRootStateProvider. getPropertyNames(StateNode node)StateNodeAbstractTextElementStateProvider. getShadowRoot(StateNode node)StateNodeBasicElementStateProvider. getShadowRoot(StateNode node)StateNodeShadowRootStateProvider. getShadowRoot(StateNode node)StyleAbstractTextElementStateProvider. getStyle(StateNode node)StyleBasicElementStateProvider. getStyle(StateNode node)StyleShadowRootStateProvider. getStyle(StateNode node)StringAbstractTextElementStateProvider. getTag(StateNode node)StringBasicElementStateProvider. getTag(StateNode node)StringShadowRootStateProvider. getTag(StateNode node)StringBasicElementStateProvider. getTextContent(StateNode node)StringBasicTextElementStateProvider. getTextContent(StateNode node)StringShadowRootStateProvider. getTextContent(StateNode node)booleanAbstractTextElementStateProvider. hasAttribute(StateNode node, String attribute)booleanBasicElementStateProvider. hasAttribute(StateNode node, String attribute)booleanShadowRootStateProvider. hasAttribute(StateNode node, String attribute)booleanAbstractTextElementStateProvider. hasProperty(StateNode node, String name)booleanBasicElementStateProvider. hasProperty(StateNode node, String name)booleanShadowRootStateProvider. hasProperty(StateNode node, String name)voidAbstractNodeStateProvider. insertChild(StateNode node, int index, Element child)voidAbstractTextElementStateProvider. insertChild(StateNode node, int index, Element child)booleanAbstractTextElementStateProvider. isTextNode(StateNode node)booleanBasicElementStateProvider. isTextNode(StateNode node)booleanShadowRootStateProvider. isTextNode(StateNode node)booleanAbstractTextElementStateProvider. isVisible(StateNode node)booleanBasicElementStateProvider. isVisible(StateNode node)booleanShadowRootStateProvider. isVisible(StateNode node)voidAbstractNodeStateProvider. removeAllChildren(StateNode node)voidAbstractTextElementStateProvider. removeAllChildren(StateNode node)voidAbstractTextElementStateProvider. removeAttribute(StateNode node, String attribute)voidBasicElementStateProvider. removeAttribute(StateNode node, String attribute)voidShadowRootStateProvider. removeAttribute(StateNode node, String attribute)voidAbstractNodeStateProvider. removeChild(StateNode node, int index)voidAbstractNodeStateProvider. removeChild(StateNode node, Element child)voidAbstractTextElementStateProvider. removeChild(StateNode node, int index)voidAbstractTextElementStateProvider. removeChild(StateNode node, Element child)voidAbstractTextElementStateProvider. removeProperty(StateNode node, String name)voidBasicElementStateProvider. removeProperty(StateNode node, String name)voidShadowRootStateProvider. removeProperty(StateNode node, String name)voidAbstractTextElementStateProvider. setAttribute(StateNode node, String attribute, AbstractStreamResource resource)voidAbstractTextElementStateProvider. setAttribute(StateNode node, String attribute, String value)voidBasicElementStateProvider. setAttribute(StateNode node, String attribute, AbstractStreamResource receiver)voidBasicElementStateProvider. setAttribute(StateNode node, String attribute, String value)voidShadowRootStateProvider. setAttribute(StateNode node, String attribute, AbstractStreamResource resource)voidShadowRootStateProvider. setAttribute(StateNode node, String attribute, String value)voidAbstractTextElementStateProvider. setProperty(StateNode node, String name, Serializable value, boolean emitChange)voidBasicElementStateProvider. setProperty(StateNode node, String name, Serializable value, boolean emitChange)voidShadowRootStateProvider. setProperty(StateNode node, String name, Serializable value, boolean emitChange)voidBasicElementStateProvider. setTextContent(StateNode node, String textContent)voidBasicTextElementStateProvider. setTextContent(StateNode node, String textContent)voidShadowRootStateProvider. setTextContent(StateNode node, String textContent)voidAbstractTextElementStateProvider. setVisible(StateNode node, boolean visible)voidBasicElementStateProvider. setVisible(StateNode node, boolean visible)voidShadowRootStateProvider. setVisible(StateNode node, boolean visible)booleanAbstractNodeStateProvider. supports(StateNode node)booleanBasicElementStateProvider. supports(StateNode node)booleanBasicTextElementStateProvider. supports(StateNode node)voidAbstractTextElementStateProvider. visit(StateNode node, NodeVisitor visitor)voidBasicElementStateProvider. visit(StateNode node, NodeVisitor visitor)voidShadowRootStateProvider. visit(StateNode node, NodeVisitor visitor) -
Uses of StateNode in com.vaadin.flow.internal
Methods in com.vaadin.flow.internal that return StateNode Modifier and Type Method Description StateNodeStateTree. getNodeById(int id)Finds a node with the given id.StateNodeStateNode. getParent()Gets the parent node that this node belongs to.StateNodeStateTree. getRootNode()Gets the root node of this state tree.StateNodeStateTree.BeforeClientResponseEntry. getStateNode()Methods in com.vaadin.flow.internal that return types with arguments of type StateNode Modifier and Type Method Description Set<StateNode>StateTree. collectDirtyNodes()Gets all the nodes that have been marked.Methods in com.vaadin.flow.internal with parameters of type StateNode Modifier and Type Method Description StateTree.ExecutionRegistrationStateTree. beforeClientResponse(StateNode context, SerializableConsumer<ExecutionContext> execution)Registers a task to be executed before the response is sent to the client.booleanNodeOwner. hasNode(StateNode node)Check if given node is registered to this node owner.booleanNullOwner. hasNode(StateNode node)booleanStateTree. hasNode(StateNode node)voidNodeOwner. markAsDirty(StateNode node)Marks a node owned by this instance as dirty.voidNullOwner. markAsDirty(StateNode node)voidStateTree. markAsDirty(StateNode node)intNodeOwner. register(StateNode node)Registers a node with this node owner.intNullOwner. register(StateNode node)intStateTree. register(StateNode node)voidStateNode. setParent(StateNode parent)Sets the parent node that this node belongs to.voidNodeOwner. unregister(StateNode node)Unregisters a node from this owner.voidNullOwner. unregister(StateNode node)voidStateTree. unregister(StateNode node)Method parameters in com.vaadin.flow.internal with type arguments of type StateNode Modifier and Type Method Description voidStateNode. forEachChild(Consumer<StateNode> action)Executes the given action for each child node of this state node.voidStateNode. visitNodeTree(Consumer<StateNode> visitor)Applies thevisitorto this node and all its descendants.Constructors in com.vaadin.flow.internal with parameters of type StateNode Constructor Description StateNode(StateNode node)Create a new instance using the same features as providednodedeclares. -
Uses of StateNode in com.vaadin.flow.internal.change
Methods in com.vaadin.flow.internal.change that return StateNode Modifier and Type Method Description StateNodeNodeChange. getNode()Gets the changed node.Constructors in com.vaadin.flow.internal.change with parameters of type StateNode Constructor Description NodeAttachChange(StateNode node)Creates a new attach change.NodeChange(StateNode node)Creates a new change for the given node.NodeDetachChange(StateNode node)Creates a new detach change. -
Uses of StateNode in com.vaadin.flow.internal.nodefeature
Methods in com.vaadin.flow.internal.nodefeature that return StateNode Modifier and Type Method Description StateNodeElementChildrenList. get(int index)StateNodeModelList. get(int index)StateNodeVirtualChildrenList. get(int index)StateNodeShadowRootHost. getHost()Gets the host state node of the shadow root node.StateNodeNodeFeature. getNode()Gets the node that this feature belongs to.StateNodeShadowRootData. getShadowRoot()StateNodeElementChildrenList. remove(int index)StateNodeModelList. remove(int index)protected StateNodeStateNodeNodeList. remove(int index)StateNodeVirtualChildrenList. remove(int index)Methods in com.vaadin.flow.internal.nodefeature that return types with arguments of type StateNode Modifier and Type Method Description Iterator<StateNode>VirtualChildrenList. iterator()Methods in com.vaadin.flow.internal.nodefeature with parameters of type StateNode Modifier and Type Method Description voidElementChildrenList. add(int index, StateNode node)voidModelList. add(int index, StateNode item)voidModelList. add(StateNode item)protected voidStateNodeNodeList. add(int index, StateNode item)voidVirtualChildrenList. add(int index, StateNode node, String type)Inserts an item supplied with payload type at the given index of the list.voidVirtualChildrenList. add(int index, StateNode node, String type, elemental.json.JsonValue payload)Inserts an item supplied with payload data at the given index of the list.voidVirtualChildrenList. add(int index, StateNode node, String type, String payload)Inserts an item supplied with payload data at the given index of the list.voidVirtualChildrenList. append(StateNode node, String type)Appends an item supplied with payload type as last in the list.voidVirtualChildrenList. append(StateNode node, String type, elemental.json.JsonValue payload)Appends an item supplied with payload data as last in the list.voidVirtualChildrenList. append(StateNode node, String type, String payload)Appends an item supplied with payload data as last in the list.booleanModelList. contains(StateNode node)Returnstrueif this list contains the specified node.static NodeFeatureNodeFeatureRegistry. create(Class<? extends NodeFeature> nodeFeatureType, StateNode node)Creates a feature of the given type for a node.ChildElementConsumerAttachExistingElementFeature. getCallback(StateNode node)Gets callback of the registerednode.static Optional<Component>ComponentMapping. getComponent(StateNode node)Gets the component mapped to the given state node.static ElementPropertyMapElementPropertyMap. getModel(StateNode node)Gets the model map for the given node.Node<?>AttachExistingElementFeature. getParent(StateNode node)Gets parentNodeof the registerednode.ElementAttachExistingElementFeature. getPreviousSibling(StateNode node)Gets previous sibling of the registerednode.intElementChildrenList. indexOf(StateNode node)intModelList. indexOf(StateNode item)intVirtualChildrenList. indexOf(StateNode node)voidAttachExistingElementFeature. register(Node<?> parent, Element previousSibling, StateNode child, ChildElementConsumer callback)Registers the data for thechildnode requested as being attached to an existing element.voidShadowRootData. setShadowRoot(StateNode node)voidAttachExistingElementFeature. unregister(StateNode node)Unregister thenodeand clean up all associated data.Method parameters in com.vaadin.flow.internal.nodefeature with type arguments of type StateNode Modifier and Type Method Description voidModelList. addAll(Collection<? extends StateNode> items)protected voidStateNodeNodeList. addAll(Collection<? extends StateNode> items)voidAttachExistingElementFeature. forEachChild(Consumer<StateNode> action)abstract voidNodeFeature. forEachChild(Consumer<StateNode> action)Passes each child node instance to the given consumer.voidNodeList. forEachChild(Consumer<StateNode> action)voidNodeMap. forEachChild(Consumer<StateNode> action)voidNodeValue. forEachChild(Consumer<StateNode> action)voidServerSideFeature. forEachChild(Consumer<StateNode> action)voidStateNodeNodeList. forEachChild(Consumer<StateNode> action)Constructors in com.vaadin.flow.internal.nodefeature with parameters of type StateNode Constructor Description AbstractPropertyMap(StateNode node)Creates a new element property map for the given node.AbstractServerHandlers(StateNode node)Creates a new meta information list for the given state node.AttachExistingElementFeature(StateNode node)Creates a new instance for the given node.BasicTypeValue(StateNode node)Creates a new value map for the given node.ClientCallableHandlers(StateNode node)Creates a new meta information list for the given state node.ComponentMapping(StateNode node)Creates an instance of this node feature.ElementAttributeMap(StateNode node)Creates a new element attribute map for the given node.ElementChildrenList(StateNode node)Creates a new element children list for the given node.ElementClassList(StateNode node)Creates a new class list for the given node.ElementData(StateNode node)Creates a new element data map for the given node.ElementListenerMap(StateNode node)Creates a new element listener map for the given node.ElementPropertyMap(StateNode node)Creates a new element property map for the given node.ElementStylePropertyMap(StateNode node)Creates a new element style map for the given node.InertData(StateNode node)Creates a new feature for the given node.LoadingIndicatorConfigurationMap(StateNode node)Creates a new map for the given node.ModelList(StateNode node)Creates an instance of this node feature.NodeFeature(StateNode node)Creates a new feature for the given node.NodeList(StateNode node)Creates a new list for the given node.NodeMap(StateNode node)Creates a new map feature for the given node.NodeValue(StateNode node)Creates a new feature for the given node.PollConfigurationMap(StateNode node)Creates a new map for the given node.PolymerEventListenerMap(StateNode node)Creates a new map feature for the given node.PolymerServerEventHandlers(StateNode node)Deprecated.Creates a new meta information list for the given state node.PushConfigurationMap(StateNode node)Creates a new map for the given node.PushConfigurationParametersMap(StateNode node)Creates a new map for the given node.ReconnectDialogConfigurationMap(StateNode node)Creates a new map for the given node.ReturnChannelMap(StateNode node)Creates a new return channel map for the given state node.SerializableNodeList(StateNode node)Creates a new list for the given node.ServerSideFeature(StateNode node)Creates a new feature for the given node.ShadowRootData(StateNode node)Creates a new element data map for the given node.ShadowRootHost(StateNode node)Creates a new instance of the feature for the givennode.StateNodeNodeList(StateNode node)Creates a new list for the given node.TextNodeMap(StateNode node)Creates a new text node map for the given node.VirtualChildrenList(StateNode node)Creates a new element virtual children list for the given node. -
Uses of StateNode in com.vaadin.flow.server
Methods in com.vaadin.flow.server that return StateNode Modifier and Type Method Description StateNodeStreamReceiver. getNode()Get the node that this stream receiver is linked to.Constructors in com.vaadin.flow.server with parameters of type StateNode Constructor Description StreamReceiver(StateNode node, String resourceName, StreamVariable streamVariable)CreatesStreamReceiverinstance forstreamVariableas a data receiver. -
Uses of StateNode in com.vaadin.flow.server.communication
Methods in com.vaadin.flow.server.communication with parameters of type StateNode Modifier and Type Method Description protected voidStreamReceiverHandler. doHandleMultipartFileUpload(VaadinSession session, VaadinRequest request, VaadinResponse response, StreamReceiver streamReceiver, StateNode owner)Streams content from a multipart request to given StreamVariable.protected voidStreamReceiverHandler. doHandleXhrFilePost(VaadinSession session, VaadinRequest request, VaadinResponse response, StreamReceiver streamReceiver, StateNode owner, long contentLength)Used to stream plain file post (aka XHR2.post(File))protected booleanStreamReceiverHandler. handleFileUploadValidationAndData(VaadinSession session, InputStream inputStream, StreamReceiver streamReceiver, String filename, String mimeType, long contentLength, StateNode node)Validate that stream target is in a valid state for receiving data and send stream to receiver.protected Optional<Runnable>ReturnChannelHandler. handleNode(StateNode node, elemental.json.JsonObject invocationJson) -
Uses of StateNode in com.vaadin.flow.server.communication.rpc
Methods in com.vaadin.flow.server.communication.rpc with parameters of type StateNode Modifier and Type Method Description protected abstract Optional<Runnable>AbstractRpcInvocationHandler. handleNode(StateNode node, elemental.json.JsonObject invocationJson)Handle the RPC datainvocationJsonusing targetnodeas a context.protected Optional<Runnable>AttachExistingElementRpcHandler. handleNode(StateNode node, elemental.json.JsonObject invocationJson)protected Optional<Runnable>AttachTemplateChildRpcHandler. handleNode(StateNode node, elemental.json.JsonObject invocationJson)Optional<Runnable>EventRpcHandler. handleNode(StateNode node, elemental.json.JsonObject invocationJson)protected Optional<Runnable>MapSyncRpcHandler. handleNode(StateNode node, elemental.json.JsonObject invocationJson)Optional<Runnable>PublishedServerEventHandlerRpcHandler. handleNode(StateNode node, elemental.json.JsonObject invocationJson) -
Uses of StateNode in com.vaadin.flow.templatemodel
Methods in com.vaadin.flow.templatemodel that return StateNode Modifier and Type Method Description StateNodeTemplateModelProxyHandler.ModelProxy. $stateNode()Gets the state node that this instance is backed by.StateNodeBasicComplexModelType. applicationToModel(Object applicationValue, PropertyFilter filter)Deprecated.StateNodeBeanModelType. applicationToModel(Object applicationValue, PropertyFilter filter)Deprecated.StateNodeComplexModelType. applicationToModel(Object applicationValue, PropertyFilter filter)Deprecated.StateNodeListModelType. applicationToModel(Object applicationValue, PropertyFilter filter)Deprecated.static StateNodeTemplateModelProxyHandler. getStateNodeForProxy(Object proxy)Deprecated.Gets the state node that a proxy is bound to.Methods in com.vaadin.flow.templatemodel with parameters of type StateNode Modifier and Type Method Description voidTemplateModelProxyHandler.ModelProxy. $stateNode(StateNode node)Sets the state node that this instance is backed by.voidAbstractBasicModelType. createInitialValue(StateNode node, String property)Deprecated.voidBeanModelType. createInitialValue(StateNode node, String property)Deprecated.voidConvertedModelType. createInitialValue(StateNode node, String property)Deprecated.voidListModelType. createInitialValue(StateNode node, String property)Deprecated.voidModelType. createInitialValue(StateNode node, String property)Deprecated.Create initial value for the givenpropertyand set it for thenode.voidBeanModelType. createInitialValues(StateNode node)Deprecated.Creates initial values for the givennodeusing info from this model type.static <T> TTemplateModelProxyHandler. createModelProxy(StateNode stateNode, BeanModelType<T> modelType)Deprecated.Creates a proxy object for the givenmodelTypetype for the given state node.Constructors in com.vaadin.flow.templatemodel with parameters of type StateNode Constructor Description TemplateModelListProxy(StateNode stateNode, ComplexModelType<T> itemType)Deprecated.Creates a new proxy for the given node and item type.
-