Public Member Functions | |
virtual UAPI_EXPORT | ~ParametersListener () |
virtual void | onParametersSetError (const char **keys, const char **values, ARRAY_LIMIT count, ReturnCode::Type returnCode)=0 |
virtual void | onParametersGetError (const char **keys, ARRAY_LIMIT count, ReturnCode::Type returnCode)=0 |
virtual void | onParametersSet (const char **keys, const char **values, ARRAY_LIMIT count)=0 |
virtual void | onParametersGet (const char **keys, const char **values, ARRAY_LIMIT count)=0 |
virtual UAPI_EXPORT android.speech.recognition.ParametersListener.~ParametersListener | ( | ) | [virtual] |
Destructor
virtual void android.speech.recognition.ParametersListener.onParametersSetError | ( | const char ** | keys, | |
const char ** | values, | |||
ARRAY_LIMIT | count, | |||
ReturnCode::Type | returnCode | |||
) | [pure virtual] |
Invoked if setting parameters has failed.
keys | the parameter keys that could not be set | |
values | the parameter values associated with the keys | |
count | the number of parameters | |
returnCode | the return code |
virtual void android.speech.recognition.ParametersListener.onParametersGetError | ( | const char ** | keys, | |
ARRAY_LIMIT | count, | |||
ReturnCode::Type | returnCode | |||
) | [pure virtual] |
Invoked if retrieving parameters has failed.
keys | the parameter keys that could not be set | |
count | the number of parameters | |
returnCode | the return code |
virtual void android.speech.recognition.ParametersListener.onParametersSet | ( | const char ** | keys, | |
const char ** | values, | |||
ARRAY_LIMIT | count | |||
) | [pure virtual] |
This method is called when the parameters specified in setParameters have successfully been set. This method is guaranteed to be invoked after onParametersSetError, even if count==0.
keys | the list of parameter keys that were set | |
values | the list of parameter values that were set | |
count | the number of parameters |
virtual void android.speech.recognition.ParametersListener.onParametersGet | ( | const char ** | keys, | |
const char ** | values, | |||
ARRAY_LIMIT | count | |||
) | [pure virtual] |
This method is called when the parameters specified in getParameters have successfully been retrieved. This method is guaranteed to be invoked after onParametersGetError, even if count==0.
keys | the list of parameter keys that were retrieved | |
values | the list of parameter values that retrieved | |
count | the number of parameters |