/**@class android.app.PendingIntent.OnFinished
 Callback interface for discovering when a send operation has
 completed.  Primarily for use with a PendingIntent that is
 performing a broadcast, this provides the same information as
 calling {@link Context#sendOrderedBroadcast(Intent, String,
 android.content.BroadcastReceiver, Handler, int, String, Bundle)
 Context.sendBroadcast()} with a final BroadcastReceiver.
*/
var OnFinished = {

/**Called when a send operation as completed.
@param {Object {PendingIntent}} pendingIntent The PendingIntent this operation was sent through.
@param {Object {Intent}} intent The original Intent that was sent.
@param {Number} resultCode The final result code determined by the send.
@param {String} resultData The final data collected by a broadcast.
@param {Object {Bundle}} resultExtras The final extras collected by a broadcast.
*/
onSendFinished : function(  ) {},


};