How to filter out the TreeNodes(grandchildren level) from treeviewer using Viewfilter in SWT
How to filter out the Tree Nodes (grandchildren level) fro开发者_StackOverflow中文版m tree viewer using View filter in SWT.I want to filter out the grand children node from the treeviewer.
You just can filter your items in Container.
ArrayList<Nodes> nodeList;
Then add container to treeView;
The Logic would be filter children in ContentProvider for the tree view
精彩评论