475476477478479480481482483484
*/ protected void postEngineAllocatingResources(long oldState, long newState) { SpeechEventUtilities.postSpeechEvent( this, new EngineEvent( this, EngineEvent.ENGINE_ALLOCATING_RESOURCES, oldState, newState)); }
519520521522523524525526527528
* @see #dispatchSpeechEvent */ protected void postEngineDeallocated(long oldState, long newState) { SpeechEventUtilities.postSpeechEvent( this, new EngineEvent( this, EngineEvent.ENGINE_DEALLOCATED, oldState, newState)); }
564565566567568569570571572573
*/ protected void postEngineDeallocatingResources(long oldState, long newState) { SpeechEventUtilities.postSpeechEvent( this, new EngineEvent( this, EngineEvent.ENGINE_DEALLOCATING_RESOURCES, oldState, newState)); }
608609610611612613614615616617
* @see #dispatchSpeechEvent */ protected void postEnginePaused(long oldState, long newState) { SpeechEventUtilities.postSpeechEvent( this, new EngineEvent( this, EngineEvent.ENGINE_PAUSED, oldState, newState)); }
651652653654655656657658659660
* @see #dispatchSpeechEvent */ protected void postEngineResumed(long oldState, long newState) { SpeechEventUtilities.postSpeechEvent( this, new EngineEvent( this, EngineEvent.ENGINE_RESUMED, oldState, newState)); }