This strategy unconditionally replaces the "top-level" properties of a node with its direct update
but replaces the children of the node with the children of the its indirect update.
Loosely speaking, this strategy causes unselect to only pull back updates to an element's name, prefix,
scope, and attributes. Updates to children property of an element are simply ignored. Instead, the
node's children are either replaced by the result of lower level updates or are left unchanged if this is a non-conflicting node.
If a node has been multiplied via a flatMap operation or the like, then the strategy will be uniformly applied to
all of the resulting nodes. If it has been completely elided, then it will be elided in the result as well.
See also the RequireLocal strategy, which behaves similarly except
that it throws an error if it detects changes to an element's children property.
This strategy unconditionally replaces the "top-level" properties of a node with its direct update but replaces the children of the node with the children of the its indirect update.
Loosely speaking, this strategy causes
unselectto only pull back updates to an element'sname,prefix,scope, andattributes. Updates to children property of an element are simply ignored. Instead, the node's children are either replaced by the result of lower level updates or are left unchanged if this is a non-conflicting node.If a node has been multiplied via a
flatMapoperation or the like, then the strategy will be uniformly applied to all of the resulting nodes. If it has been completely elided, then it will be elided in the result as well.See also the
RequireLocalstrategy, which behaves similarly except that it throws an error if it detects changes to an element'schildrenproperty.[com.codecommit.antixml.Zipper