Reputation: 30127
What is the difference between JFace
entities and SWT
controls they wrapping?
ComboViewer -> Combo/CCommbo
TableViewer -> Table
ListViewer -> List
and so on.
Upvotes: 0
Views: 453
Reputation: 3226
ComboViewer, TableViewer and ListViewer are part of the JFace Viewers. JFace Viewers simplify the mapping of a data model to a visual representation. If you have a data model then JFace Viewers are the easier API to work with.
Upvotes: 2