< prev index next >

apps/toys/Hello/src/main/java/hello/dialog/wizard/Wizard.java

Print this page

        

*** 344,354 **** // we've added the setting to the settings map and we should stop drilling deeper return true; } else { // go into children of this node (if possible) and see if we can get // a value from them (recursively) ! List<Node> children = ImplUtils.getChildren(n, false); // we're doing a depth-first search, where we stop drilling down // once we hit a successful read boolean childSuccess = false; for (Node child : children) { --- 344,354 ---- // we've added the setting to the settings map and we should stop drilling deeper return true; } else { // go into children of this node (if possible) and see if we can get // a value from them (recursively) ! List<Node> children = ImplUtils.getChildren(n); // we're doing a depth-first search, where we stop drilling down // once we hit a successful read boolean childSuccess = false; for (Node child : children) {
< prev index next >