Package org.eclipse.rap.rwt.widgets
Interface DialogCallback
public interface DialogCallback
This callback interface is used to inform application code that a dialog was closed.
- Since:
- 2.0
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionvoiddialogClosed(int returnCode) This method is called after a dialog was closed.
- 
Method Details- 
dialogClosedvoid dialogClosed(int returnCode) This method is called after a dialog was closed. The meaning of thereturnCodeis defined by the respectiveDialogimplementation but usually indicates how the dialog was left. For example, pressing the 'OK' button would lead to thereturnCodeSWT.OK.- Parameters:
- returnCode-- SWT.CANCELif the dialog was closed with the shells' close button, a dialog-specific return code otherwise.
- See Also:
 
 
-