Add feature descriptions 23/146123/1
authorsooyeon.kim <sooyeon.kim@samsung.com>
Fri, 25 Aug 2017 05:17:53 +0000 (14:17 +0900)
committersooyeon.kim <sooyeon.kim@samsung.com>
Fri, 25 Aug 2017 05:17:53 +0000 (14:17 +0900)
Change-Id: Ifcd25fcf0dc45ebe2a3cd66c1d06dbe53005df9a
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
Tizen.Uix.SttEngine/Tizen.Uix.SttEngine/SttEngine.cs

index 219c3c260394c0872dd6bf95205072b50da645d3..4f8db42c88357d4b15c45ec43df8658acd219b6f 100755 (executable)
@@ -479,6 +479,10 @@ namespace Tizen.Uix.SttEngine
         /// <summary>
         /// Public Constructor
         /// </summary>
+        /// <feature>
+        /// http://tizen.org/feature/speech.recognition
+        /// http://tizen.org/feature/microphone
+        /// </feature>
         public Engine()
         {
             _engine = this;
@@ -491,6 +495,10 @@ namespace Tizen.Uix.SttEngine
         /// <privilege>
         /// http://tizen.org/privilege/recorder
         /// </privilege>
+        /// <feature>
+        /// http://tizen.org/feature/speech.recognition
+        /// http://tizen.org/feature/microphone
+        /// </feature>
         /// <remarks>
         /// ServiceAppMain should be used for working the engine after this function.
         /// </remarks>
@@ -534,6 +542,10 @@ namespace Tizen.Uix.SttEngine
         /// <summary>
         /// Sends the recognition result to the engine service user.
         /// </summary>
+        /// <feature>
+        /// http://tizen.org/feature/speech.recognition
+        /// http://tizen.org/feature/microphone
+        /// </feature>
         /// <remarks>
         /// This API is used in SetRecordingData() and Stop(), when Stt engine sends the recognition result to the engine service user.
         /// This function is called in the following situations; 1) after Stop() is called, 2) the end point of speech is detected from recording, or 3) partial result is occurred.
@@ -610,6 +622,10 @@ namespace Tizen.Uix.SttEngine
         /// <summary>
         /// Sends the error to the engine service user.
         /// </summary>
+        /// <feature>
+        /// http://tizen.org/feature/speech.recognition
+        /// http://tizen.org/feature/microphone
+        /// </feature>
         /// <param name="error">The Error Reason</param>
         /// <param name="msg">The error message</param>
         /// <exception cref="ArgumentException">Thrown in case of Invalid Parameter</exception>
@@ -633,6 +649,10 @@ namespace Tizen.Uix.SttEngine
         /// <summary>
         /// Sends the speech status to the engine service user when Stt engine notifies the change of the speech status.
         /// </summary>
+        /// <feature>
+        /// http://tizen.org/feature/speech.recognition
+        /// http://tizen.org/feature/microphone
+        /// </feature>
         /// <remarks>
         /// This API is invoked when Stt engine wants to notify the change of the speech status anytime. NOTE that this API can be invoked for recognizing the speech.
         /// </remarks>
@@ -661,6 +681,10 @@ namespace Tizen.Uix.SttEngine
         /// <privilege>
         /// http://tizen.org/privilege/recorder
         /// </privilege>
+        /// <feature>
+        /// http://tizen.org/feature/speech.recognition
+        /// http://tizen.org/feature/microphone
+        /// </feature>
         /// <param name="callback">
         /// Called when Stt engine receives the private data from the engine service user.
         /// This callback function is called when the engine service user sends the private data to Stt engine.
@@ -701,6 +725,10 @@ namespace Tizen.Uix.SttEngine
         /// <privilege>
         /// http://tizen.org/privilege/recorder
         /// </privilege>
+        /// <feature>
+        /// http://tizen.org/feature/speech.recognition
+        /// http://tizen.org/feature/microphone
+        /// </feature>
         /// <param name="callback">callback function
         /// Called when Stt engine provides the engine service user with the private data.
         /// This callback function is called when the engine service user gets the private data from Stt engine.
@@ -798,4 +826,4 @@ namespace Tizen.Uix.SttEngine
             return _engine.Deinitialize();
         };
     }
-}
\ No newline at end of file
+}