com.droplets.api.event
Interface DialogCloseListener


public interface DialogCloseListener

Implement this interface if you want to be notified of message box or error dialog closes. Pass an object that implements this to Application.messageBox() or Application.showErrorDialog(), you will get called back when the dialog is closed.


Method Summary
 void handleClose(boolean supported)
          This will be called when the dialog associated with the object is closed.
 

Method Detail

handleClose

public void handleClose(boolean supported)
This will be called when the dialog associated with the object is closed. If the param 'supported' is false, then this means that the client does not support this feature and the dialog may not be closed yet. If it is true then the dialog is closed on the client. If supported, this function will be called if the Application is stopped without the dialog being closed.
Parameters:
supported - true if the feature is supported by the client


Copyright © Droplets, 2001. All Rights Reserved.