Uses of Class
com.vaadin.signals.NodeSignal
Packages that use NodeSignal
-
Uses of NodeSignal in com.vaadin.signals
Methods in com.vaadin.signals that return NodeSignalModifier and TypeMethodDescriptionprotected NodeSignalAbstractSignal.asNode()Converts this signal into a node signal.ListSignal.asNode()MapSignal.asNode()ValueSignal.asNode()NodeSignal.asReadonly()Wraps this signal to not accept changes.Gets a node signal for the given name.NodeSignal.NodeSignalState.parent()Gets the parent node of this signal.NodeSignal.withValidator(Predicate<SignalCommand> validator) Wraps this signal with a validator.Methods in com.vaadin.signals that return types with arguments of type NodeSignalModifier and TypeMethodDescriptionNodeSignal.insertChild(ListSignal.ListPosition at) Inserts a new node with no value as a list node at the given list position.NodeSignal.insertChildWithValue(Object value, ListSignal.ListPosition at) Inserts a new node with the given value as a list node at the given list position.NodeSignal.NodeSignalState.listChildren()Gets a list with the children accessed by order.NodeSignal.NodeSignalState.mapChildren()Gets a map of the children accessed by key.NodeSignal.putChildIfAbsent(String key) Creates a new node with no value if a map node with the given key doesn't already exist.Methods in com.vaadin.signals with parameters of type NodeSignalModifier and TypeMethodDescriptionNodeSignal.removeChild(NodeSignal child) Removes the given child from this node.Constructors in com.vaadin.signals with parameters of type NodeSignalModifierConstructorDescriptionNodeSignalState(tools.jackson.databind.JsonNode value, NodeSignal parent, List<NodeSignal> listChildren, Map<String, NodeSignal> mapChildren) Creates a new state snapshot based on the given JSON value, list children and map children.Constructor parameters in com.vaadin.signals with type arguments of type NodeSignalModifierConstructorDescriptionNodeSignalState(tools.jackson.databind.JsonNode value, NodeSignal parent, List<NodeSignal> listChildren, Map<String, NodeSignal> mapChildren) Creates a new state snapshot based on the given JSON value, list children and map children.NodeSignalState(tools.jackson.databind.JsonNode value, NodeSignal parent, List<NodeSignal> listChildren, Map<String, NodeSignal> mapChildren) Creates a new state snapshot based on the given JSON value, list children and map children. -
Uses of NodeSignal in com.vaadin.signals.impl
Methods in com.vaadin.signals.impl that return NodeSignal