好吧,让我试一试,虽然我仍然不知道我是否真的理解这个问题。我认为您想通过以不同方式获取不同Parent 子类的子节点(即不一定只是通过调用Parent.getChildrenUnmodifiable())来获取场景图的子集。因此,如果它是一个简单的Pane,您只需调用getChildren(),但如果它是一个TabPane,您将获取每个Tab 并获取每个选项卡的内容,从中形成一个集合。 (对于其他“容器类型控件”也是如此,例如SplitPane 等)如果它是一个“简单”控件,您不会认为它有任何子节点(即使在幕后,@例如,987654331@ 包含Text)。
所以我认为您可以通过构建一个类型安全的异构容器来做到这一点(参见 Josh Bloch 的 Effective Java),该容器将特定节点类型 N 映射到 Function<N, List<Node>>。该函数将定义如何检索该类型的子节点。
这可能看起来像
public class ChildRetrievalMapping {
public static final ChildRetrievalMapping DEFAULT_INSTANCE = new ChildRetrievalMapping() ;
static {
// note the order of insertion is important: start with the more specific type
DEFAULT_INSTANCE.put(TabPane.class, tabPane ->
tabPane.getTabs().stream().map(Tab::getContent).collect(Collectors.toList()));
DEFAULT_INSTANCE.put(SplitPane.class, SplitPane::getItems);
// others...
// default behavior for "simple" controls, just return empty list:
DEFAULT_INSTANCE.put(Control.class, c -> Collections.emptyList());
// default behavior for non-control parents, return getChildrenUnmodifiable:
DEFAULT_INSTANCE.put(Parent.class, Parent::getChildrenUnmodifiable);
// and for plain old node, just return empty list:
DEFAULT_INSTANCE.put(Node.class, n -> Collections.emptyList());
}
private final Map<Class<?>, Function<? ,List<Node>>> map = new LinkedHashMap<>();
public <N extends Node> void put(Class<N> nodeType, Function<N, List<Node>> childRetrieval) {
map.put(nodeType, childRetrieval);
}
@SuppressWarnings("unchecked")
public <N extends Node> Function<N, List<Node>> getChildRetrieval(Class<N> nodeType) {
return (Function<N, List<Node>>) map.get(nodeType);
}
@SuppressWarnings("unchecked")
public List<Node> firstMatchingList(Node n) {
for (Class<?> type : map.keySet()) {
if (type.isInstance(n)) {
return getChildRetrieval((Class<Node>) type).apply(n);
}
}
return Collections.emptyList();
}
}
现在您只需调用childRetrievalMapping.findFirstMatchingList(node);,它就会在映射中与节点匹配的第一种类型定义的意义上获取子列表。所以,使用DEFAULT_INSTANCE,如果你传递一个TabPane,它会得到所有的内容节点;如果你给它一个SplitPane,它会得到物品;如果你传递给它另一种类型的控件,它会返回一个空列表,等等。
这是一个使用它的例子。这只是构建了一个场景图,然后当你按下按钮时,它会遍历它,只得到上面类中策略定义的“简单”节点。 (然后它选择Labeled 的所有实例并将getText() 的结果传递给系统控制台。)注意它如何(故意)避免标签本身的实现,这是一个天真的@987654323 @ 不会这样做。
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.stream.Collectors;
import javafx.application.Application;
import javafx.geometry.Pos;
import javafx.scene.Node;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.ComboBox;
import javafx.scene.control.Control;
import javafx.scene.control.Label;
import javafx.scene.control.Labeled;
import javafx.scene.control.SplitPane;
import javafx.scene.control.Tab;
import javafx.scene.control.TabPane;
import javafx.scene.control.TextField;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.StackPane;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class PerformActionOnNodeTypes extends Application {
@Override
public void start(Stage primaryStage) {
VBox root = new VBox(5,
new Label("Label 1"),
new HBox(5, new Label("Label 2"), new Button("Button 1")),
new HBox(5, new TextField("Some text"), new ComboBox<String>()),
new TabPane(new Tab("Tab 1", new VBox(new Label("Label in tab 1"))),
new Tab("Tab 2", new StackPane(new Button("Button in tab 2")))));
Button button = new Button("Show labeled's texts");
button.setOnAction(e -> {
List<Node> allSimpleNodes = new ArrayList<>();
findAllSimpleNodes(allSimpleNodes, root);
doAction(allSimpleNodes, Labeled.class, (Labeled l) -> System.out.println(l.getText()));
});
root.setAlignment(Pos.CENTER);
BorderPane.setAlignment(button, Pos.CENTER);
Scene scene = new Scene(new BorderPane(root, null, null, button, null), 600, 600);
primaryStage.setScene(scene);
primaryStage.show();
}
private void findAllSimpleNodes(List<Node> allSimpleNodes, Node n) {
List<Node> children = ChildRetrievalMapping.DEFAULT_INSTANCE.firstMatchingList(n);
allSimpleNodes.addAll(children);
for (Node child : children) {
findAllSimpleNodes(allSimpleNodes, child);
}
}
private <T> void doAction(Collection<Node> nodes, Class<T> type, Consumer<T> action) {
nodes.stream()
.filter(type::isInstance)
.map(type::cast)
.forEach(action);
}
public static class ChildRetrievalMapping {
public static final ChildRetrievalMapping DEFAULT_INSTANCE = new ChildRetrievalMapping() ;
static {
// note the order of insertion is important: start with the more specific type
DEFAULT_INSTANCE.put(TabPane.class, tabPane ->
tabPane.getTabs().stream().map(Tab::getContent).collect(Collectors.toList()));
DEFAULT_INSTANCE.put(SplitPane.class, SplitPane::getItems);
// others...
// default behavior for "simple" controls, just return empty list:
DEFAULT_INSTANCE.put(Control.class, c -> Collections.emptyList());
// default behavior for non-control parents, return getChildrenUnmodifiable:
DEFAULT_INSTANCE.put(Parent.class, Parent::getChildrenUnmodifiable);
// and for plain old node, just return empty list:
DEFAULT_INSTANCE.put(Node.class, n -> Collections.emptyList());
}
private final Map<Class<?>, Function<? ,List<Node>>> map = new LinkedHashMap<>();
public <N extends Node> void put(Class<N> nodeType, Function<N, List<Node>> childRetrieval) {
map.put(nodeType, childRetrieval);
}
@SuppressWarnings("unchecked")
public <N extends Node> Function<N, List<Node>> getChildRetrieval(Class<N> nodeType) {
return (Function<N, List<Node>>) map.get(nodeType);
}
@SuppressWarnings("unchecked")
public List<Node> firstMatchingList(Node n) {
for (Class<?> type : map.keySet()) {
if (type.isInstance(n)) {
return getChildRetrieval((Class<Node>) type).apply(n);
}
}
return Collections.emptyList();
}
}
public static void main(String[] args) {
launch(args);
}
}
我不确定这是否是您想要做的,如果是这样,可能会有更优雅的方法来处理它。但我认为为特定类型声明这样的策略比对类型进行大开关要好得多,并且它留下了将其配置为具有您想要的特定规则的选项。