public class StateNode extends Object implements Serializable
StateTree
,
Serialized FormConstructor and Description |
---|
StateNode(Class<? extends NodeFeature>... featureTypes)
Creates a state node with the given feature types.
|
StateNode(List<Class<? extends NodeFeature>> reportableFeatureTypes,
Class<? extends NodeFeature>... nonReportableFeatureTypes)
Creates a state node with the given feature types and required features
that are always sent to the client side.
|
StateNode(StateNode node)
Create a new instance using the same features as provided
node
declares. |
Modifier and Type | Method and Description |
---|---|
Registration |
addAttachListener(Command attachListener)
Adds a command as an attach listener.
|
StateTree.ExecutionRegistration |
addBeforeClientResponseEntry(StateTree.BeforeClientResponseEntry entry)
Adds an entry to be executed before the next client response for this
node.
|
Registration |
addDetachListener(Command detachListener)
Adds a command as a detach listener.
|
void |
clearChanges()
Clears all changes recorded for this node.
|
void |
collectChanges(Consumer<NodeChange> collector)
Collects all changes made to this node since the last time
collectChanges(Consumer) has been called. |
List<StateTree.BeforeClientResponseEntry> |
dumpBeforeClientResponseEntries()
Gets the current list of pending execution entries for this node and
clears the current list.
|
<T extends Serializable> |
getChangeTracker(NodeFeature feature,
Supplier<T> factory)
Gets or creates a change tracker object for the provided feature.
|
<T extends NodeFeature> |
getFeature(Class<T> featureType)
Gets the feature of the given type.
|
int |
getId()
Gets the id of this node.
|
NodeOwner |
getOwner()
Gets the node owner that this node currently belongs to.
|
StateNode |
getParent()
Gets the parent node that this node belongs to.
|
boolean |
hasBeforeClientResponseEntries()
Checks whether there are pending executions for this node.
|
boolean |
hasFeature(Class<? extends NodeFeature> featureType)
Checks whether this node contains a feature.
|
boolean |
isAttached()
Checks whether this node is attached to a state tree.
|
boolean |
isEnabled()
Returns enabled state respecting ascendants state.
|
boolean |
isEnabledSelf()
Returns the enabled state only for this node.
|
boolean |
isInactive()
Checks whether the node is active.
|
boolean |
isReportedFeature(Class<? extends NodeFeature> featureType)
Returns whether the
featureType should be reported to the client
even if it doesn't contain any data. |
boolean |
isVisible()
Checks (recursively towards the parent node) whether the node is
effectively visible.
|
void |
markAsDirty()
Marks this node as dirty.
|
protected void |
onAttach()
Called when this node has been attached to a state tree.
|
void |
runWhenAttached(SerializableConsumer<UI> command)
Runs the command when the node is attached to a UI.
|
void |
setEnabled(boolean enabled)
Enables/disables the node.
|
void |
setParent(StateNode parent)
Sets the parent node that this node belongs to.
|
protected void |
setTree(StateTree tree)
Sets the state tree that this node belongs to.
|
void |
updateActiveState()
Update "active"/"inactive" state of the node.
|
void |
visitNodeTree(Consumer<StateNode> visitor)
Applies the
visitor to this node and all its descendants. |
@SafeVarargs public StateNode(Class<? extends NodeFeature>... featureTypes)
featureTypes
- a collection of feature classes that the node should supportpublic StateNode(StateNode node)
node
declares.node
- the node whose features set will be copied@SafeVarargs public StateNode(List<Class<? extends NodeFeature>> reportableFeatureTypes, Class<? extends NodeFeature>... nonReportableFeatureTypes)
reportableFeatureTypes
- the list of the features that are required on the client side
(populated even if they are empty)nonReportableFeatureTypes
- a collection of feature classes that the node should supportpublic NodeOwner getOwner()
public StateNode getParent()
null
if the node is not
attached to a parent node, or if this node is the root of a state
tree.public void setParent(StateNode parent)
null
.parent
- the new parent of this node; or null
if this node
is not attached to another nodeprotected void onAttach()
protected void setTree(StateTree tree)
tree
- the state treepublic <T extends NodeFeature> T getFeature(Class<T> featureType)
IllegalStateException
if this node does not contain the desired
feature. Use hasFeature(Class)
to check whether a node contains
a specific feature.T
- the desired feature typefeatureType
- the desired feature type, not null
null
public boolean hasFeature(Class<? extends NodeFeature> featureType)
featureType
- the feature type to check fortrue
if this node contains the feature; otherwise
false
public int getId()
StateTree.getNodeById(int)
public void markAsDirty()
StateTree.collectDirtyNodes()
public boolean isAttached()
true
if this node is attached; false
if
this node is not attachedpublic void collectChanges(Consumer<NodeChange> collector)
collectChanges(Consumer)
has been called. If the node is
recently attached, then the reported changes will be relative to a newly
created node.collector
- a consumer accepting node changespublic void clearChanges()
public void visitNodeTree(Consumer<StateNode> visitor)
visitor
to this node and all its descendants.
The visitor is first applied to this node (root) and then to children.
visitor
- visitor to applypublic Registration addAttachListener(Command attachListener)
attachListener
- the attach listener to addpublic Registration addDetachListener(Command detachListener)
detachListener
- the detach listener to addpublic <T extends Serializable> T getChangeTracker(NodeFeature feature, Supplier<T> factory)
T
- the change tracker typefeature
- the feature for which to get a change trackerfactory
- a factory method used to create a new tracker if there isn't
already onepublic void runWhenAttached(SerializableConsumer<UI> command)
If the node is already attached when this method is called, the method is run immediately.
command
- the command to run immediately or when the node is attachedpublic boolean isReportedFeature(Class<? extends NodeFeature> featureType)
featureType
should be reported to the client
even if it doesn't contain any data.featureType
- feature type which needs to be populated on the clientpublic void updateActiveState()
The node is considered as inactive if there is at least one feature whose
NodeFeature.allowsChanges()
method returns false or it has
inactive ascendant.
Inactive nodes should restrict their RPC communication with client: only
features that returns false
via their method
allowsChanges()
and reported features send their changes
while the node is inactive (the latter features are necessary on the
client side to be able to find a strategy which has to be selected to
handle the node).
Implementation Note: this is done as a separate method instead of calculating the state on the fly (checking all features) because each node needs to check this status on its own AND on its parents (maybe all parents up to the root).
NodeFeature.allowsChanges()
public boolean isInactive()
Inactive node should not participate in any RPC communication.
true
if the node is inactivepublic boolean isVisible()
Non-visible node should not participate in any RPC communication.
true
if the node is effectively visiblepublic boolean hasBeforeClientResponseEntries()
true
if there are pending executions, otherwise
false
StateTree.beforeClientResponse(StateNode,
com.vaadin.flow.function.SerializableConsumer)
public List<StateTree.BeforeClientResponseEntry> dumpBeforeClientResponseEntries()
StateTree.beforeClientResponse(StateNode,
com.vaadin.flow.function.SerializableConsumer)
public StateTree.ExecutionRegistration addBeforeClientResponseEntry(StateTree.BeforeClientResponseEntry entry)
StateTree.beforeClientResponse(StateNode, com.vaadin.flow.function.SerializableConsumer)
to ensure proper ordering.entry
- the entry to add, not null
public void setEnabled(boolean enabled)
enabled
- a new enabled statepublic boolean isEnabled()
The node may be explicitly disabled via its setEnabled(boolean)
method (with false
argument value). Also it may be implicitly
disabled if its ascendant is explicitly disabled. The method returns the
state which may be either explicit or implicit.
The method isEnabledSelf()
returns only explicit enabled state
of the node.
isEnabledSelf()
public boolean isEnabledSelf()
The node may be implicitly or explicitly disabled (see
isEnabled()
method). This method doesn't respect ascendants
enabled state. It returns the own state for the node only.
isEnabled()
Copyright © 2023. All rights reserved.