答案 0 :(得分:0)
没有
方法protected ObservableList<Node> getChildren()
是班级Parent
的一部分。 Pane
例如扩展public void simpleMethod(HttpServletRequest request) {
Object myAttribute = request.getSession.getAttribute("globalVarable");
// got the session variable in myAttribute
}
,其扩展Region
(然后扩展Parent
(可以添加到Node
返回的ObservableList
)) 。因此,只有getChildren(...)
的子类可以有子项(如果实现类使Parent
公开)。
另一方面,Canvas
会直接扩展getChildren(...)
,因此没有Node
方法。
免责声明:请注意,您通常不能认为某个类不能执行X,因为它不会延伸Y.上面的推理依赖于您的假设正在与一个设计良好的图书馆合作。