ArrayList<String> options = new ArrayList<String>();
options.add("OK");
options.add("Cancel");
Alert alert = new Alert(MessageType.QUESTION, "Shutdown?", options);
alert.open(display, new DialogCloseListener() {
public void dialogClosed(Dialog dialog) {
Alert alert = (Alert)dialog;
if (alert.getResult()) {
if (alert.getSelectedOption() == 0) {