99100101102103104105
for ( Node child : parent.getChildren() ) { if ( child.getName().equals( name ) ) { return child; } } throw new ChildNotFoundException( parent.getPath().withChild( name ) ); }
103104105106107108109
979899100101102103
68697071727374
69707172737475
for ( Node child : parent.getChildren() ) { if ( child.getName().equals( name ) ) { return child; } } throw new ChildNotFoundException( parent.getPath().createChild( name ) ); }