Provides a collection of all the nodes in the tree using a depth-first preorder traversal. @return the list of (depth-first) ordered nodes
()
| 577 | * @return the list of (depth-first) ordered nodes |
| 578 | */ |
| 579 | public List depthFirst() { |
| 580 | return depthFirst(true); |
| 581 | } |
| 582 | |
| 583 | /** |
| 584 | * Provides a collection of all the nodes in the tree |
no test coverage detected