Finds the first node with a given name that satisfies the given acceptor. The serach algorithm works as follows: Nodes in the subtree are matched first, then it matches the nodes in the subtrees ofthe ancestor nodes by turn all the way to the root. If no matching node is found, the function returns null.

Location

Namespace
Fuse
Package
Fuse.Nodes 2.9.1

Parameters

name

Selector

acceptor

Predicate<Node> (Node)

Returns

Node