public void run(IAction action) {
MessageBox msgBox = new MessageBox(new Shell(), SWT.ICON_QUESTION | SWT.YES | SWT.NO);
msgBox.setText("Are you really sure?");
msgBox.setMessage("Are you really sure that you want to sort the labelfile: \n" + _file.getFullPath());
int response = msgBox.open();
if (response == SWT.YES) {
SortedProperties sortedProperties = new SortedProperties();
sortedProperties.putAll(_props);