Returns an Iterable that will recursively iterate over all of this node's descendants, including DomText elements, DomComment elements, etc. If you want to iterate only over HtmlElement descendants, please use #getHtmlElementDescendants(). @return an {@link It
()
| 1451 | * @return an {@link Iterable} that will recursively iterate over all of this node's descendants |
| 1452 | */ |
| 1453 | public final Iterable<DomNode> getDescendants() { |
| 1454 | return () -> new DescendantDomNodesIterator(); |
| 1455 | } |
| 1456 | |
| 1457 | /** |
| 1458 | * Returns an {@link Iterable} that will recursively iterate over all of this node's {@link HtmlElement} |
no outgoing calls
no test coverage detected