diff --git a/src/Tizen.System.Feedback/Feedback/Feedback.cs b/src/Tizen.System.Feedback/Feedback/Feedback.cs index 6365ea0c83b..eb3fda07130 100755 --- a/src/Tizen.System.Feedback/Feedback/Feedback.cs +++ b/src/Tizen.System.Feedback/Feedback/Feedback.cs @@ -413,6 +413,7 @@ public Feedback() /// bool res = feedback.IsSupportedPattern(FeedbackType.Vibration, "Tap"); /// /// + /// public bool IsSupportedPattern(FeedbackType type, String pattern) { bool supported = false; @@ -446,7 +447,7 @@ public bool IsSupportedPattern(FeedbackType type, String pattern) } /// - /// Plays a specific feedback pattern. + /// Plays specific type of reactions that are pre-defined feedback pattern. /// /// /// To play Vibration type, app should have http://tizen.org/privilege/haptic privilege. @@ -469,6 +470,8 @@ public bool IsSupportedPattern(FeedbackType type, String pattern) /// feedback.Play(FeedbackType.All, "Tap"); /// /// + /// + /// public void Play(FeedbackType type, String pattern) { int number; @@ -503,7 +506,7 @@ public void Play(FeedbackType type, String pattern) } /// - /// Stops to play the feedback. + /// Stops various types of reactions from the feedback module. /// /// /// To stop vibration, the application should have http://tizen.org/privilege/haptic privilege. @@ -524,6 +527,7 @@ public void Play(FeedbackType type, String pattern) /// Feedback1.Stop(); /// /// + /// public void Stop() { Interop.Feedback.FeedbackError res = (Interop.Feedback.FeedbackError)Interop.Feedback.Stop(); @@ -549,7 +553,7 @@ public void Stop() } /// - /// Gets the count of theme can be used according to feedback type. + /// Gets the number of themes supported as described in the configuration. /// /// /// Now this internal API works for FeedbackType.Sound only, FeedbackType.Vibration is not supported. @@ -568,6 +572,7 @@ public void Stop() /// uint coundOfTheme = feedback.GetCountOfThemeInternal(FeedbackType.Sound); /// /// + /// [EditorBrowsable(EditorBrowsableState.Never)] public uint GetCountOfThemeInternal(FeedbackType type) { @@ -596,7 +601,7 @@ public uint GetCountOfThemeInternal(FeedbackType type) } /// - /// Gets the id of theme selected. + /// Gets the current ID of the theme selected from available themes described in the conf file. /// /// /// Now this internal API works for FeedbackType.Sound only, FeedbackType.Vibration is not supported. @@ -614,6 +619,7 @@ public uint GetCountOfThemeInternal(FeedbackType type) /// uint idOfTheme = feedback.GetThemeIdInternal(FeedbackType.Sound); /// /// + /// [EditorBrowsable(EditorBrowsableState.Never)] public uint GetThemeIdInternal(FeedbackType type) { @@ -640,7 +646,7 @@ public uint GetThemeIdInternal(FeedbackType type) } /// - /// Sets the id of theme according to feedback type. + /// Sets the current ID of the theme from available themes described in the conf file. /// /// /// Now this internal API works for FeedbackType.Sound only, FeedbackType.Vibration is not supported. @@ -661,6 +667,7 @@ public uint GetThemeIdInternal(FeedbackType type) /// feedback.SetThemeIdInternal(FeedbackType.Sound, idOfTheme); /// /// + /// [EditorBrowsable(EditorBrowsableState.Never)] public void SetThemeIdInternal(FeedbackType type, uint idOfTheme) { @@ -687,7 +694,7 @@ public void SetThemeIdInternal(FeedbackType type, uint idOfTheme) } /// - /// Stops the current feedback playing by feedback type + /// Stops reactions of various types according to the feedback type. /// /// /// To stop vibration, the application should have http://tizen.org/privilege/haptic privilege. @@ -706,6 +713,7 @@ public void SetThemeIdInternal(FeedbackType type, uint idOfTheme) /// feedback.StopTypeInternal(FeedbackType.Vibration); /// /// + /// [EditorBrowsable(EditorBrowsableState.Never)] public void StopTypeInternal(FeedbackType type) { @@ -734,11 +742,12 @@ public void StopTypeInternal(FeedbackType type) } /// - /// Gets the id array of theme supported. + /// Gets the array of theme ids supported described in the conf file. /// /// /// Now this internal API works for FeedbackType.Sound only, FeedbackType.Vibration is not supported. /// The theme id is positive value as defined in the conf file. + /// Gets all theme ids as defined in the conf file. /// /// 10 /// The feedback type. @@ -752,6 +761,7 @@ public void StopTypeInternal(FeedbackType type) /// uint[] getThemeIds = feedback.GetThemeIdsInternal(FeedbackType.Sound); /// /// + /// [EditorBrowsable(EditorBrowsableState.Never)] public uint[] GetThemeIdsInternal(FeedbackType type) {