Returns the first of the element's children that matches the name parameter. The name or path is a series of elements and sub-elements, separated by slashes. @webref xml:method @webBrief Returns the child element with the specified index value or path
(int index)
| 458 | * @webBrief Returns the child element with the specified index value or path |
| 459 | */ |
| 460 | public XML getChild(int index) { |
| 461 | checkChildren(); |
| 462 | return children[index]; |
| 463 | } |
| 464 | |
| 465 | |
| 466 | /** |
no test coverage detected