/**@class android.service.dreams.Sandman
@extends java.lang.Object

 Internal helper for launching dreams to ensure consistency between the
 <code>UiModeManagerService</code> system service and the <code>Somnambulator</code> activity.

 @hide
*/
var Sandman = {

/**Returns true if the specified dock app intent should be started.
 False if we should dream instead, if appropriate.
*/
shouldStartDockApp : function(  ) {},

/**Starts a dream manually.
*/
startDreamByUserRequest : function(  ) {},

/**Starts a dream when docked if the system has been configured to do so,
 otherwise does nothing.
*/
startDreamWhenDockedIfAppropriate : function(  ) {},


};