A selection dialog which shows the path variables defined in the
workspace.
The getResult method returns the name(s) of the
selected path variable(s).
This class may be instantiated; it is not intended to be subclassed.
Example:
PathVariableSelectionDialog dialog =
new PathVariableSelectionDialog(getShell(), IResource.FOLDER);
dialog.open();
String[] result = (String[]) dialog.getResult();
since: 3.1 |