/**@class android.os.Broadcaster
@extends java.lang.Object

@hide */
var Broadcaster = {

/**Sign up for notifications about something.

  When this broadcaster pushes a message with senderWhat in the what field,
  target will be sent a copy of that message with targetWhat in the what field.
*/
request : function(  ) {},

/**Unregister for notifications for this senderWhat/target/targetWhat tuple.
*/
cancelRequest : function(  ) {},

/**For debugging purposes, print the registrations to System.out
*/
dumpRegistrations : function(  ) {},

/**Send out msg.  Anyone who has registered via the request() method will be
 sent the message.
*/
broadcast : function(  ) {},


};