/**@class android.app.TimePickerDialog
 implements android.content.DialogInterface.OnClickListener

 implements android.widget.TimePicker.OnTimeChangedListener

@extends android.app.AlertDialog

 A dialog that prompts the user for the time of day using a
 {@link TimePicker}.

 <p>
 See the <a href="{@docRoot}guide/topics/ui/controls/pickers.html">Pickers</a>
 guide.
*/
var TimePickerDialog = {

/**
@return {Object {android.widget.TimePicker}} the time picker displayed in the dialog
@hide For testing only.
*/
getTimePicker : function(  ) {},

/**
*/
onTimeChanged : function(  ) {},

/**
*/
show : function(  ) {},

/**
*/
onClick : function(  ) {},

/**Sets the current time.
@param {Number} hourOfDay The current hour within the day.
@param {Number} minuteOfHour The current minute within the hour.
*/
updateTime : function(  ) {},

/**
*/
onSaveInstanceState : function(  ) {},

/**
*/
onRestoreInstanceState : function(  ) {},


};