我正在代码中创建一个像这样的 GWT 树组件:
// Create a tree with a few items in it.
TreeItem root = new TreeItem();
root.setText("root");
root.addTextItem("item0");
root.addTextItem("item1");
root.addTextItem("item2");
// Add a CheckBox to the tree
TreeItem item = new TreeItem(new CheckBox("item3"));
root.addItem(item);
Tree t = new Tree();
t.addItem(root);
// Add it to the root panel.
RootPanel.get().add(t);
但我不喜欢这里的 gui 和 value-code 的混合。来自 JSF,我习惯于拥有一个定义树的 xhtml 文件和一个为树提供值的支持类。
如何在 GWT 中实现相同的分离?