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

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


};