public static boolean showConfirmMessage(Shell shell, String title,String message) {
MessageBox dialog = new MessageBox(shell,
SWT.YES | SWT.NO | SWT.ICON_WARNING);
dialog.setText(title);
dialog.setMessage(message);
int result = dialog.open();
return result==SWT.YES;
}
public static void showWarningMessage(Shell shell,String title,String message) {
MessageBox dialog = new MessageBox(shell,