currentUiExtension.loadOutput(aggOutput);
}
private void promptSaveRequired() {
XulMessageBox msgBox;
try {
msgBox = (XulMessageBox) document.createElement("messagebox");
msgBox.setTitle(Messages.getString("AggController.SaveOutputTitle"));
String message = Messages.getString("AggController.SaveOutputMessage") + "\n"
+ Messages.getString("AggController.SaveOutputMessageSaveChanges");
msgBox.setMessage(message);
msgBox.setButtons(new String[] { Messages.getString("save"), Messages.getString("do_not_save") });
int id = msgBox.open();
if (id == 0) {
apply();
} else {
reset();
}