Label and Content Providers for JFace TreeViewer
The JFace library offers some widgets, called viewers, that can represent a data model. What are they for? Let's suppose you want to show a table, a tree or a combo in order to visualize a list of objects or a hierarchical structure. You could certainly make use of basic widgets like Table, Tree or Combo, but they are usually not a good choice. Imagine you while filling a table, row by row, starting from a list of Orders and your focus is doing some action with the Order that the user selected. With a Table widget you have to [...]