[SWT]MessageBox

	public static int showMessageBox(Shell shell, int style, String title, String message) {
		MessageBox box = new MessageBox(shell, style);
		box.setText(title);
		box.setMessage(message);
		return box.open();
	}