ネットワーク デバイスを表示するツリーがあります。ツリーは、デバイスが場所およびデバイス タイプ別に表示されるようにフィルタリングされます。たとえば、ノード「オフィス」には子ノード「コンピュータ」と「プリンタ」があり、それぞれの下にデバイスがあります。
Location ノードを選択すると、その下にあるすべてのノードを選択し、それをツリーの selectionPaths[] に追加して、すべてが強調表示されるようにします。以下は私のコードですが、これを機能させる方法がわかりません。
private class DefaultDeviceTreeCellRenderer extends DefaultTreeCellRenderer {
private JLabel label;
DefaultDeviceTreeCellRenderer() {
super();
label = new JLabel();
}
@Override
public Component getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded,
boolean leaf, int row, boolean hasFocus) {
DefaultMutableTreeNode node = (DefaultMutableTreeNode) value;
Object o = node.getUserObject();
if (o instanceof DefaultDevice) {
DefaultDevice defaultDevice = (DefaultDevice) o;
label.setIcon(defaultDevice.getIcon());
label.setText(defaultDevice.toString());
} else {
System.out.println("Cell Class= " + o.getClass());
//Set all children of this Component as selected.
label.setIcon(null);
label.setText("" + value);
TreePath[] selectionPaths = tree.getSelectionPaths();
if (selectionPaths == null) {
System.out.println("Nothing Selected. ");
} else {
//keep current selection path
//if there are leaf nodes, add their selection paths.
int i = 0;
while (i < node.getChildCount()) {
//add node.getNextLeaf().getPath() to selection Paths
ArrayList<TreePath> arrayList = new ArrayList<>(Arrays.asList(selectionPaths));
arrayList.add(new TreePath(((DefaultMutableTreeNode)node.getChildAt(i)).getPath()));
TreePath[] toArray = arrayList.toArray(new TreePath[arrayList.size()]);
this.printSelectionPath(selectionPaths);
this.printSelectionPath(toArray);
// tree.setSelectionPaths(toArray);
i++;
}
}
// System.out.println("Selection Paths.size="+selectionPaths.length);
// ArrayList arrayList = new ArrayList(Arrays.asList(selectionPaths));
// System.out.println("ChildNode Path=" + node.getPath()[a]);
}
label.setOpaque(true);
if (selected) {
label.setBackground(this.backgroundSelectionColor);
label.setForeground(this.textSelectionColor);
} else {
label.setBackground(this.backgroundNonSelectionColor);
label.setForeground(this.textNonSelectionColor);
}
return label;
}
private void printSelectionPath(TreePath[] selectionPaths) {
System.out.println("\nTreePath:");
for (int i = 0; i < selectionPaths.length; i++) {
System.out.println("Selection Path= " + selectionPaths[i]);
//TreePath treePath = new TreePath(node.getPath());
// System.out.println("TreePath= " + treePath);
}
}