/**@class android.content.DialogInterface.OnKeyListener
 Interface definition for a callback to be invoked when a key event is
 dispatched to this dialog. The callback will be invoked before the key
 event is given to the dialog.
*/
var OnKeyListener = {

/**Called when a key is dispatched to a dialog. This allows listeners to
 get a chance to respond before the dialog.
@param {Object {DialogInterface}} dialog the dialog the key has been dispatched to
@param {Number} keyCode the code for the physical key that was pressed
@param {Object {KeyEvent}} event the KeyEvent object containing full information about
              the event
@return {Boolean} {@code true} if the listener has consumed the event,
         {@code false} otherwise
*/
onKey : function(  ) {},


};