/**@class android.content.DialogInterface.OnDismissListener
 Interface used to allow the creator of a dialog to run some code when the
 dialog is dismissed.
*/
var OnDismissListener = {

/**This method will be invoked when the dialog is dismissed.
@param {Object {DialogInterface}} dialog The dialog that was dismissed will be passed into the
            method.
*/
onDismiss : function(  ) {},


};