/**@class android.os.SomeService
@extends android.app.Service

Service in separate process available for calling over binder. */
var SomeService = {

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

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

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


};