1 package info.magnolia.module.admininterface; 2 3 import info.magnolia.cms.gui.dialog.Dialog; 4 5 6 /** 7 * This save handler needs the dialog to proceed a proper save. The save handler may get the values from the dialog or 8 * may get additional informations hold by the dialog. 9 */ 10 public interface DialogAwareSaveHandler extends SaveHandler { 11 12 public Dialog getDialog(); 13 14 public void setDialog(Dialog dialog); 15 } 16