int response = 0;
response = XDialog.alert("Message", "OK");
statusPanel.addText("" + response);
response = XDialog.info("Message", "OK", "Cancel");
statusPanel.addText("" + response);
response = XDialog.warning("Message", "OK", "Cancel", "Other");
statusPanel.addText("" + response);
response = XDialog.error("Message", "OK", "Cancel", "Other", "Wow!");