Java SWT CheckedListBox

utapyngo picture utapyngo · Jun 19, 2011 · Viewed 9k times · Source

I could not find CheckedListBox in Java SWT. Please, point me to a way of extending List to support checkboxes.

Answer

Phaedrus picture Phaedrus · Apr 28, 2012

Just add SWT.CHECK to your TableViewer:

new TableViewer(container, SWT.CHECK | SWT.BORDER | SWT.V_SCROLL | SWT.SINGLE);

Creates a table that looks like this