/**@class android.speech.RecognitionService
@extends android.app.Service

 This class provides a base class for recognition service implementations. This class should be
 extended only in case you wish to implement a new speech recognizer. Please note that the
 implementation of this service is stateless.
*/
var RecognitionService = {

/** The {@link Intent} that must be declared as handled by the service.
*/
SERVICE_INTERFACE : "android.speech.RecognitionService",
/** Name under which a RecognitionService component publishes information about itself.
 This meta-data should reference an XML resource containing a
 <code>&lt;{@link android.R.styleable#RecognitionService recognition-service}&gt;</code> tag.
*/
SERVICE_META_DATA : "android.speech",
/**
*/
onBind : function(  ) {},

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


};