vote up 1 vote down star

I create a JFace ListSelectionDialog as follows.

final ListSelectionDialog dialog = new ListSelectionDialog(
        PlatformUI.getWorkbench().getDisplay().getActiveShell(),
        List<SomeClass>,
        new ArrayContentProvider(), 
        new LabelProvider(), 
        ""); //$NON-NLS-1$

dialog.setTitle("Dialog Title"); //$NON-NLS-1$
dialog.setMessage("SomeMessage"); //$NON-NLS-1$
dialog.open();

and the dialog shows up fine.

However, I'd like all the checkboxes to be selected. How do I do that?

flag

69% accept rate

1 Answer

vote up 3 vote down check
List elementsToSelect = ...
dialog.setInitialElementSelections(elementsToSelect);
link|flag
Just figured it out myself too :P Thanks. – Nocturne Jun 25 at 18:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.