Uses of Class
com.vaadin.signals.shared.AbstractSignal
Packages that use AbstractSignal
-
Uses of AbstractSignal in com.vaadin.signals.impl
Subclasses of AbstractSignal in com.vaadin.signals.implModifier and TypeClassDescriptionclassA signal with a value that is computed based on the value of other signals. -
Uses of AbstractSignal in com.vaadin.signals.shared
Classes in com.vaadin.signals.shared with type parameters of type AbstractSignalModifier and TypeInterfaceDescriptionprotected static interfaceAbstractSignal.ChildSignalFactory<I extends AbstractSignal<?>>Creates a child signal instance from a node ID.Subclasses of AbstractSignal in com.vaadin.signals.sharedModifier and TypeClassDescriptionclassA signal containing a list of values.classA signal containing a map of values with string keys.classA signal representing a node in a tree structure.classA signal containing a numeric value.classA signal containing a value.Methods in com.vaadin.signals.shared with type parameters of type AbstractSignalModifier and TypeMethodDescriptionprotected <I extends AbstractSignal<?>>
InsertOperation<I> AbstractSignal.submitInsert(SignalCommand command, AbstractSignal.ChildSignalFactory<I> childFactory) Submits a command for this signal and creates and insert operation that is updated once the command result is confirmed.Methods in com.vaadin.signals.shared with parameters of type AbstractSignalModifier and TypeMethodDescriptionSharedNodeSignal.adoptAs(AbstractSignal<?> signal, String key) Adopts the given node as a map child with the given key.SharedNodeSignal.adoptAt(AbstractSignal<?> node, SharedListSignal.ListPosition at) Adopts the given node as a list child at the given location.SharedListSignal.ListPosition.after(AbstractSignal<?> after) Gets the insertion position immediately after the given signal.SharedListSignal.ListPosition.before(AbstractSignal<?> before) Gets the insertion position immediately before the given signal.SharedListSignal.ListPosition.between(AbstractSignal<?> after, AbstractSignal<?> before) Gets the insertion position between the given signals, assuming those signals are currently adjacent.static booleanSignalUtils.isValid(AbstractSignal<?> signal, SignalCommand command) Checks whether the given command is considered valid by the validator instance of the provided signal.SharedListSignal.moveTo(AbstractSignal<T> child, SharedListSignal.ListPosition to) Moves the given child signal to the given position in this list.protected SignalOperation<Void> AbstractSignal.remove(AbstractSignal<?> child) Helper to submit a remove command.static SignalTreeSignalUtils.treeOf(AbstractSignal<?> signal) Returns the underlyingSignalTreeinstance of the given signal.SharedListSignal.verifyChild(AbstractSignal<?> child) Checks that the given signal is a child in this list.SharedMapSignal.verifyKey(String key, AbstractSignal<?> expectedChild) Checks that the given child is mapped to the given key in this map.SharedListSignal.verifyPosition(AbstractSignal<?> child, SharedListSignal.ListPosition expectedPosition) Checks that the given child is at the given position in this list.