composite.setLayout(new GridLayout(2, false));
Label standardLabel = new Label(composite, SWT.NONE);
standardLabel.setText(getCommonResource("standard.label")); //$NON-NLS-1$
fileSelector = new FileSelector(composite, SWT.NONE);
final String[] filterSelections = new String[]{
"*." + FileExtension.DEVICE_REPOSITORY //$NON-NLS-1$
};
fileSelector.getText().addListener(SWT.Modify, this);
fileSelector.setFilterSelections(filterSelections);