Represents a pattern based DOM tree with a removable root. This structure
may be seen as a tree node list with none or only one tree node.
The starting point is a root DOM tree node, this node
is saved as the pattern (really a deep clone). This pattern is used
to recreate the root node (the root may be removed).
The initial root tree node may be initially removed
or kept as is when this tree is created and attached to the underlying DOM.
Returns the tree node containing the specified node.
Parameters: node - the node to search for. the tree node containing the specified node. Null if not contained by this tree.
Returns the tree node at the specified row position seeing the tree as a list (root node is 0).
Parameters: row - the row position. the tree node at the specified position or null if the tree is empty or row is out of bounds.
public void setUsePatternMarkupToRender(boolean value)(Code)
Sets whether the original (saved as pattern) markup is used to render.
Parameters: value - true to enable the use of original markup to render. See Also:ElementTree.isUsePatternMarkupToRender()