N
- The narrowed type of the nodepublic abstract class Node<N extends Node<N>> extends Object implements Serializable
Contains methods for updating and querying hierarchical structure.
Modifier | Constructor and Description |
---|---|
protected |
Node(StateNode node,
ElementStateProvider stateProvider)
Private constructor for initializing with an existing node and state
provider.
|
Modifier and Type | Method and Description |
---|---|
N |
accept(NodeVisitor visitor)
Applies the
visitor for the node. |
N |
appendChild(Element... children)
Adds the given children as the last children of this element.
|
N |
appendVirtualChild(Element... children)
Appends the given children as the virtual children of the element.
|
protected void |
ensureChildHasParent(Element child,
boolean internalCheck)
Ensures that the
child has the correct parent. |
boolean |
equals(Object obj) |
Element |
getChild(int index)
Returns the child element at the given position.
|
int |
getChildCount()
Gets the number of child elements.
|
Stream<Element> |
getChildren()
Gets all the children of this element.
|
StateNode |
getNode()
Gets the node this element is connected to.
|
Node |
getParentNode()
Gets the parent node.
|
protected abstract N |
getSelf()
Gets the narrow typed reference to this object.
|
ElementStateProvider |
getStateProvider()
Gets the state provider for this element.
|
int |
hashCode() |
int |
indexOfChild(Element child)
Returns the index of the specified
child in the children list, or
-1 if this list does not contain the child . |
N |
insertChild(int index,
Element... children)
Inserts the given child element(s) at the given position.
|
boolean |
isVirtualChild()
Gets whether this element is a virtual child of its parent.
|
N |
removeAllChildren()
Removes all child elements, including elements only present at the
client-side.
|
N |
removeChild(Element... children)
Removes the given child element(s).
|
N |
removeChild(int index)
Removes the child at the given index.
|
N |
removeVirtualChild(Element... children)
Removes the given children that have been attached as the virtual
children of this element.
|
N |
setChild(int index,
Element child)
Replaces the child at the given position with the given child element.
|
protected Node(StateNode node, ElementStateProvider stateProvider)
node
- the state node, not nullstateProvider
- the state provider, not nullpublic StateNode getNode()
This method is meant for internal use only.
public ElementStateProvider getStateProvider()
This method is meant for internal use only.
public int getChildCount()
public Element getChild(int index)
index
- the index of the child element to returnpublic Stream<Element> getChildren()
public N appendChild(Element... children)
children
- the element(s) to addpublic N appendVirtualChild(Element... children)
The virtual child is not really a child of the DOM element. The
client-side counterpart is created in the memory but it's not attached to
the DOM tree. The resulting element is referenced via the server side
Element
in JS function call as usual.
children
- the element(s) to addpublic N removeVirtualChild(Element... children)
The virtual child is not really a child of the DOM element. The
client-side counterpart is created in the memory but it's not attached to
the DOM tree. The resulting element is referenced via the server side
Element
in JS function call as usual. *
children
- the element(s) to removepublic boolean isVirtualChild()
true
if the element has a parent and the element is
a virtual child of it, false
otherwise.public N insertChild(int index, Element... children)
index
- the position at which to insert the new childchildren
- the child element(s) to insertpublic int indexOfChild(Element child)
child
in the children list, or
-1 if this list does not contain the child
.child
- the child elementchild
or -1 if it's not a childpublic N setChild(int index, Element child)
index
- the position of the child element to replacechild
- the child element to insertpublic N removeChild(Element... children)
children
- the child element(s) to removepublic N removeChild(int index)
index
- the index of the child to removepublic N removeAllChildren()
public Node getParentNode()
protected abstract N getSelf()
public N accept(NodeVisitor visitor)
visitor
for the node.visitor
- the visitor to apply to the nodeprotected void ensureChildHasParent(Element child, boolean internalCheck)
child
has the correct parent.
Default implementation doesn't do anything. Subclasses may override the method to implement their own behavior.
child
- the element to check for its parentinternalCheck
- whether to use assertions or throw an exception on failureCopyright © 2025. All rights reserved.