Bug 553700 - Add Builder for JFace TableViewer
Summary: Add Builder for JFace TableViewer
Status: NEW
Alias: None
Product: Platform
Classification: Eclipse Project
Component: UI (show other bugs)
Version: 4.14   Edit
Hardware: PC Linux
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Platform-UI-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on: 544502
Blocks:
  Show dependency tree
 
Reported: 2019-12-03 09:10 EST by Lars Vogel CLA
Modified: 2019-12-03 09:11 EST (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Lars Vogel CLA 2019-12-03 09:10:47 EST
We should allow simpler TableViewer setup via builder, similar to what Marcus did in Bug 544502 for SWT Tables.

Something like this:

TableViewerBuilder.newTable(style).columns(2).textLabelFor(numberOfColumn, e-> return e.getIt).contentProvider(converter).input(myInput).create(parent);