A standard resource selection dialog which solicits a list of resources from
the user. The getResult method returns the selected resources.
This class may be instantiated; it is not intended to be subclassed.
Example:
ResourceSelectionDialog dialog =
new ResourceSelectionDialog(getShell(), rootResource, msg);
dialog.setInitialSelections(selectedResources);
dialog.open();
return dialog.getResult();
|