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

 Controls and utilities for low-level {@code init} services.

 @hide
*/
var SystemService = {

/**Request that the init daemon start a named service.
*/
start : function(  ) {},

/**Request that the init daemon stop a named service.
*/
stop : function(  ) {},

/**Request that the init daemon restart a named service.
*/
restart : function(  ) {},

/**Return current state of given service.
*/
getState : function(  ) {},

/**Check if given service is {@link android.os.SystemService.State#STOPPED}.
*/
isStopped : function(  ) {},

/**Check if given service is {@link android.os.SystemService.State#RUNNING}.
*/
isRunning : function(  ) {},

/**Wait until given service has entered specific state.
*/
waitForState : function(  ) {},

/**Wait until any of given services enters {@link android.os.SystemService.State#STOPPED}.
*/
waitForAnyStopped : function(  ) {},


};