Returns a boolean of whether or not there are children. @webref xml:method @brief Checks whether or not an element has any children
()
| 386 | * @brief Checks whether or not an element has any children |
| 387 | */ |
| 388 | public boolean hasChildren() { |
| 389 | checkChildren(); |
| 390 | return children.length > 0; |
| 391 | } |
| 392 | |
| 393 | |
| 394 | /** |
nothing calls this directly
no test coverage detected