public Object execute(ExecutionEvent event) throws ExecutionException {
FileDialog fd = new FileDialog(new Shell(), SWT.OPEN);
fd.setText(Messages.LoadStateCommand_Open);
String[] filterExt = { "*.baron", "*.*" }; //$NON-NLS-1$ //$NON-NLS-2$
fd.setFilterExtensions(filterExt);
String selected = fd.open();
if (selected != null) {
Activator.getDefault().getServer().loadState(selected);
}
return null;
}