How to create a table with group hierarchy in an Eclipse plugin
I would like to create a table view in my Eclipse plug-in that has grouped / tree-l开发者_如何学运维ike hierarchy... just like the table you see in Eclipse for the "Expressions" view where there is a + or a triangle that you can click to expand the table entries.
What class do I need to use to generate this table and are there any good examples online?
It's basically called a Tree-Table.
Here is a short example for SWT implementation that creates something like that.
Hope that helps.
精彩评论