-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
8u5
-
If it matters: Java8u5/Windows SevenSP1/Eclipse_Luna.
children Property does not always include all direct descendents.
At least SplitPane "children" are in items Property.
This makes almost impossible to uniformly walk the widget tree.
In particular the following snippet will NOT work if SplitPanes are involved (I'm not sure about other kind of containers).
static class Visitor {
public void visit(Node node){
...
}
}
protected void walkWidgets(Node n, Visitor cb) {
if (n instanceof Parent) {
Parent p = (Parent) n;
for (Node c : p.getChildrenUnmodifiable()) {
walkWidgets(c, cb);
}
}
cb.visit(n);
}
At least SplitPane "children" are in items Property.
This makes almost impossible to uniformly walk the widget tree.
In particular the following snippet will NOT work if SplitPanes are involved (I'm not sure about other kind of containers).
static class Visitor {
public void visit(Node node){
...
}
}
protected void walkWidgets(Node n, Visitor cb) {
if (n instanceof Parent) {
Parent p = (Parent) n;
for (Node c : p.getChildrenUnmodifiable()) {
walkWidgets(c, cb);
}
}
cb.visit(n);
}
- duplicates
-
JDK-8091882 There should be an interface for parents that have a public getChildren() method
-
- Open
-