Review ElmSharp.Wearable API cs files 59/163459/7 4.0.1-preview1-00048
authorEditor Lionbridge <TizenEditor.SEL@lionbridge.com>
Mon, 11 Dec 2017 08:58:57 +0000 (14:28 +0530)
committerWonYoung Choi <wy80.choi@samsung.com>
Thu, 21 Dec 2017 05:30:52 +0000 (05:30 +0000)
PS2: Additional Fixes

PS6: Feedback implementation

Change-Id: I173b046034756de86ba250b852aca7f7c32372b1

16 files changed:
src/ElmSharp.Wearable/ElmSharp.Wearable/CircleDatetimeSelector.cs
src/ElmSharp.Wearable/ElmSharp.Wearable/CircleGenList.cs
src/ElmSharp.Wearable/ElmSharp.Wearable/CircleProgressBar.cs
src/ElmSharp.Wearable/ElmSharp.Wearable/CircleScroller.cs
src/ElmSharp.Wearable/ElmSharp.Wearable/CircleSlider.cs
src/ElmSharp.Wearable/ElmSharp.Wearable/CircleSpinner.cs
src/ElmSharp.Wearable/ElmSharp.Wearable/CircleSurface.cs
src/ElmSharp.Wearable/ElmSharp.Wearable/ICircleWidget.cs
src/ElmSharp.Wearable/ElmSharp.Wearable/MoreOption.cs
src/ElmSharp.Wearable/ElmSharp.Wearable/MoreOptionItem.cs
src/ElmSharp.Wearable/ElmSharp.Wearable/MoreOptionItemEventArgs.cs
src/ElmSharp.Wearable/ElmSharp.Wearable/MoreOptionList.cs
src/ElmSharp.Wearable/ElmSharp.Wearable/RotaryEventManager.cs
src/ElmSharp.Wearable/ElmSharp.Wearable/RotarySelector.cs
src/ElmSharp.Wearable/ElmSharp.Wearable/RotarySelectorItem.cs
src/ElmSharp.Wearable/ElmSharp.Wearable/RotarySelectorItemEventArgs.cs

index 0f5c017..30aae79 100644 (file)
@@ -21,8 +21,8 @@ using System.Diagnostics;
 namespace ElmSharp.Wearable
 {
     /// <summary>
-    /// The Circle DateTime Selector is a widget to display and handle datetime value by rotary event
-    /// Inherits <see cref="DateTimeSelector"/>
+    /// The Circle DateTime Selector is a widget to display and handle datetime value by the Rotary event.
+    /// Inherits <see cref="DateTimeSelector"/>.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public class CircleDateTimeSelector : DateTimeSelector, IRotaryActionWidget
@@ -31,9 +31,9 @@ namespace ElmSharp.Wearable
         CircleSurface _surface;
 
         /// <summary>
-        /// Creates and initializes a new instance of the Circle DateTime class
+        /// Creates and initializes a new instance of the Circle DateTime class.
         /// </summary>
-        /// <param name="parent">The parent of new Circle DateTime instance</param>
+        /// <param name="parent">The parent of the new Circle DateTime instance.</param>
         /// <param name="surface">The surface for drawing circle features for this widget.</param>
         /// <since_tizen> preview </since_tizen>
         public CircleDateTimeSelector(EvasObject parent, CircleSurface surface) : base()
@@ -46,7 +46,7 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates and initializes a new instance of the Circle DateTimeSelector class.
         /// </summary>
-        /// <param name="parent">The parent of new Circle CircleDateTimeSelector instance</param>
+        /// <param name="parent">The parent of the new Circle DateTimeSelector instance.</param>
         /// <since_tizen> preview </since_tizen>
         [Obsolete("It is not safe for guess circle surface from parent and create new surface by every new widget")]
         [EditorBrowsable(EditorBrowsableState.Never)]
@@ -56,19 +56,19 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Gets the handle for Circle Widget.
+        /// Gets the handle for the Circle widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public virtual IntPtr CircleHandle => _circleHandle;
 
         /// <summary>
-        /// Gets the handle for Circle Surface used in this widget
+        /// Gets the handle for the circle surface used in this widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public virtual CircleSurface CircleSurface => _surface;
 
         /// <summary>
-        /// Sets or gets disabled state of this widget.
+        /// Sets or gets the disabled state of this widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         [Obsolete("Use IsEnabled")]
@@ -96,7 +96,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the color of the marker
+        /// Sets or gets the color of the marker.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public Color MarkerColor
@@ -114,7 +114,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the line width of the marker
+        /// Sets or gets the line width of the marker.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public int MarkerLineWidth
@@ -130,7 +130,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the radius at which the center of the marker lies
+        /// Sets or gets the radius at which the center of the marker lies.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double MarkerRadius
@@ -148,8 +148,8 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates a widget handle.
         /// </summary>
-        /// <param name="parent">Parent EvasObject</param>
-        /// <returns>Handle IntPtr</returns>
+        /// <param name="parent">Parent EvasObject.</param>
+        /// <returns>Handle IntPtr.</returns>
         /// <since_tizen> preview </since_tizen>
         protected override IntPtr CreateHandle(EvasObject parent)
         {
index fd4d13a..0cac950 100644 (file)
@@ -21,8 +21,8 @@ using System.Diagnostics;
 namespace ElmSharp.Wearable
 {
     /// <summary>
-    /// The Circle GenList Selector is a widget to display and handle genlist items by rotary event
-    /// Inherits <see cref="GenList"/>
+    /// The Circle GenList Selector is a widget to display and handle the genlist items by the Rotary event.
+    /// Inherits <see cref="GenList"/>.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public class CircleGenList : GenList, IRotaryActionWidget
@@ -31,10 +31,10 @@ namespace ElmSharp.Wearable
         CircleSurface _surface;
 
         /// <summary>
-        /// Creates and initializes a new instance of the Circle GenList class
+        /// Creates and initializes a new instance of the Circle GenList class.
         /// </summary>
-        /// <param name="parent">The parent of new Circle GenList instance</param>
-        /// <param name="surface">The surface for drawing circle features for this widget.</param>
+        /// <param name="parent">The parent of the new Circle GenList instance.</param>
+        /// <param name="surface">The surface for drawing the circle features for this widget.</param>
         /// <since_tizen> preview </since_tizen>
         public CircleGenList(EvasObject parent, CircleSurface surface) : base()
         {
@@ -46,7 +46,7 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates and initializes a new instance of the Circle GenList class.
         /// </summary>
-        /// <param name="parent">The parent of new Circle CircleGenList instance</param>
+        /// <param name="parent">The parent of the new Circle CircleGenList instance.</param>
         /// <since_tizen> preview </since_tizen>
         [Obsolete("It is not safe for guess circle surface from parent and create new surface by every new widget")]
         [EditorBrowsable(EditorBrowsableState.Never)]
@@ -56,19 +56,19 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Gets the handle for Circle Widget.
+        /// Gets the handle for the Circle widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public virtual IntPtr CircleHandle => _circleHandle;
 
         /// <summary>
-        /// Gets the handle for Circle Surface used in this widget
+        /// Gets the handle for the circle surface used in this widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public virtual CircleSurface CircleSurface => _surface;
 
         /// <summary>
-        /// Sets or gets disabled state of this widget.
+        /// Sets or gets the disabled state of this widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         [Obsolete("Use IsEnabled")]
@@ -96,7 +96,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the color of the scroll background
+        /// Sets or gets the color of the scroll background.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public Color VerticalScrollBackgroundColor
@@ -114,7 +114,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the line width of the scroll background
+        /// Sets or gets the line width of the scroll background.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public int VerticalScrollBackgroundLineWidth
@@ -130,7 +130,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the redius of the scroll background
+        /// Sets or gets the radius of the scroll background.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double VerticalScrollBackgroundRadius
@@ -146,7 +146,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the color of the scroll bar
+        /// Sets or gets the color of the scrollbar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public Color VerticalScrollBarColor
@@ -164,7 +164,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the line width of the scroll bar
+        /// Sets or gets the line width of the scrollbar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public int VerticalScrollBarLineWidth
@@ -180,7 +180,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the redius of the scroll bar
+        /// Sets or gets the radius of the scrollbar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double VerticalScrollBarRadius
@@ -196,10 +196,10 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the policy if the scroll bar is visible
+        /// Sets or gets the policy if the scrollbar is visible.
         /// </summary>
         /// <remarks>
-        /// ScrollBarVisiblePolicy.Auto means the vertical scrollbar is made visible if it is needed, and otherwise kept hidden.
+        /// ScrollBarVisiblePolicy.Auto means the vertical scrollbar is made visible if it is needed, or otherwise kept hidden.
         /// ScrollBarVisiblePolicy.Visible turns it on all the time, and ScrollBarVisiblePolicy.Invisible always keeps it off.
         /// </remarks>
         /// <since_tizen> preview </since_tizen>
@@ -222,8 +222,8 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates a widget handle.
         /// </summary>
-        /// <param name="parent">Parent EvasObject</param>
-        /// <returns>Handle IntPtr</returns>
+        /// <param name="parent">Parent EvasObject.</param>
+        /// <returns>Handle IntPtr.</returns>
         /// <since_tizen> preview </since_tizen>
         protected override IntPtr CreateHandle(EvasObject parent)
         {
index ff97d0e..7d8f4aa 100644 (file)
@@ -22,7 +22,7 @@ namespace ElmSharp.Wearable
 {
 
     /// <summary>
-    /// The Circle ProgressBar is a widget for visually representing the progress status of a given job/task with the circular design.
+    /// The Circle ProgressBar is a widget for visually representing the progress status of a given job or task with the circular design.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public class CircleProgressBar : Widget, ICircleWidget
@@ -32,7 +32,7 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates and initializes a new instance of the Circle Progressbar class.
         /// </summary>
-        /// <param name="parent">The parent of new Circle Progressbar instance</param>
+        /// <param name="parent">The parent of the new Circle Progressbar instance.</param>
         /// <param name="surface">The surface for drawing circle features for this widget.</param>
         /// <since_tizen> preview </since_tizen>
         public CircleProgressBar(EvasObject parent, CircleSurface surface) : base()
@@ -45,7 +45,7 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates and initializes a new instance of the Circle Progressbar class.
         /// </summary>
-        /// <param name="parent">The parent of new Circle Progressbar instance</param>
+        /// <param name="parent">The parent of the new Circle Progressbar instance.</param>
         /// <since_tizen> preview </since_tizen>
         [Obsolete("It is not safe for guess circle surface from parent and create new surface by every new widget")]
         [EditorBrowsable(EditorBrowsableState.Never)]
@@ -54,19 +54,19 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Gets the handle for Circle Widget.
+        /// Gets the handle for the Circle widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public virtual IntPtr CircleHandle => Handle;
 
         /// <summary>
-        /// Gets the handle for Circle Surface used in this widget
+        /// Gets the handle for the circle surface used in this widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public virtual CircleSurface CircleSurface => _surface;
 
         /// <summary>
-        /// Sets or gets disabled state of this widget.
+        /// Sets or gets the disabled state of this widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         [Obsolete("Use IsEnabled")]
@@ -94,7 +94,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the value of ProgressBar.
+        /// Sets or gets the value of the ProgressBar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double Value
@@ -110,7 +110,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the maximum value of ProgressBar.
+        /// Sets or gets the maximum value of the ProgressBar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double Maximum
@@ -130,7 +130,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the minimum value of ProgressBar.
+        /// Sets or gets the minimum value of the ProgressBar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double Minimum
@@ -150,7 +150,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the angle value of ProgressBar.
+        /// Sets or gets the angle value of the ProgressBar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double BarAngle
@@ -166,7 +166,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the angle value of Background ProgressBar.
+        /// Sets or gets the angle value of the Background ProgressBar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double BackgroundAngle
@@ -182,7 +182,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the angle offset value of ProgressBar.
+        /// Sets or gets the angle offset value of the ProgressBar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double BarAngleOffset
@@ -198,7 +198,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the angle offset value of Background ProgressBar.
+        /// Sets or gets the angle offset value of the Background ProgressBar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double BackgroundAngleOffset
@@ -214,7 +214,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the maximum angle value of ProgressBar.
+        /// Sets or gets the maximum angle value of the ProgressBar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double BarAngleMaximum
@@ -234,7 +234,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the minimum angle value of ProgressBar.
+        /// Sets or gets the minimum angle value of the ProgressBar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double BarAngleMinimum
@@ -254,7 +254,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets color of ProgressBar.
+        /// Sets or gets the color of the ProgressBar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public Color BarColor
@@ -275,7 +275,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets color of Background ProgressBar.
+        /// Sets or gets the color of the Background ProgressBar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public override Color BackgroundColor
@@ -296,7 +296,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets line width of ProgressBar.
+        /// Sets or gets the line width of the ProgressBar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public int BarLineWidth
@@ -312,7 +312,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets line width of Background ProgressBar.
+        /// Sets or gets the line width of the Background ProgressBar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public int BackgroundLineWidth
@@ -328,7 +328,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets radius of ProgressBar.
+        /// Sets or gets the radius of the ProgressBar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double BarRadius
@@ -344,7 +344,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets radius of Background ProgressBar.
+        /// Sets or gets the radius of the Background ProgressBar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double BackgroundRadius
@@ -362,8 +362,8 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates a widget handle.
         /// </summary>
-        /// <param name="parent">Parent EvasObject</param>
-        /// <returns>Handle IntPtr</returns>
+        /// <param name="parent">Parent EvasObject.</param>
+        /// <returns>Handle IntPtr.</returns>
         /// <since_tizen> preview </since_tizen>
         protected override IntPtr CreateHandle(EvasObject parent)
         {
index 278d05f..fe1c44f 100644 (file)
@@ -21,7 +21,7 @@ using System.Diagnostics;
 namespace ElmSharp.Wearable
 {
     /// <summary>
-    /// Circle scroller provides scrollbar with circular movement and is scrolled by rotary event.
+    /// Circle scroller provides the scrollbar with a circular movement, and is scrolled by the Rotary event.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public class CircleScroller : Scroller, IRotaryActionWidget
@@ -45,7 +45,7 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates and initializes a new instance of the Circle Scroller class.
         /// </summary>
-        /// <param name="parent">The parent of new Circle CircleScroller instance</param>
+        /// <param name="parent">The parent of the new Circle CircleScroller instance.</param>
         /// <since_tizen> preview </since_tizen>
         [Obsolete("It is not safe for guess circle surface from parent and create new surface by every new widget")]
         [EditorBrowsable(EditorBrowsableState.Never)]
@@ -55,19 +55,19 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Gets the handle for Circle Widget.
+        /// Gets the handle for the Circle widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public virtual IntPtr CircleHandle => _circleHandle;
 
         /// <summary>
-        /// Gets the handle for Circle Surface used in this widget
+        /// Gets the handle for the circle surface used in this widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public virtual CircleSurface CircleSurface => _surface;
 
         /// <summary>
-        /// Sets or gets disabled state of this widget.
+        /// Sets or gets the disabled state of this widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         [Obsolete("Use IsEnabled")]
@@ -95,10 +95,10 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the value of HorizontalScrollBarVisiblePolicy
+        /// Sets or gets the value of HorizontalScrollBarVisiblePolicy.
         /// </summary>
         /// <remarks>
-        /// ScrollBarVisiblePolicy.Auto means the horizontal scrollbar is made visible if it is needed, and otherwise kept hidden.
+        /// ScrollBarVisiblePolicy.Auto means the horizontal scrollbar is made visible if it is needed, otherwise kept hidden.
         /// ScrollBarVisiblePolicy.Visible turns it on all the time, and ScrollBarVisiblePolicy.Invisible always keeps it off.
         /// </remarks>
         /// <since_tizen> preview </since_tizen>
@@ -118,10 +118,10 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the value of VerticalScrollBarVisiblePolicy
+        /// Sets or gets the value of VerticalScrollBarVisiblePolicy.
         /// </summary>
         /// <remarks>
-        /// ScrollBarVisiblePolicy.Auto means the vertical scrollbar is made visible if it is needed, and otherwise kept hidden.
+        /// ScrollBarVisiblePolicy.Auto means the vertical scrollbar is made visible if it is needed, otherwise kept hidden.
         /// ScrollBarVisiblePolicy.Visible turns it on all the time, and ScrollBarVisiblePolicy.Invisible always keeps it off.
         /// </remarks>
         /// <since_tizen> preview </since_tizen>
@@ -141,7 +141,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets color of the vertical scroll bar.
+        /// Sets or gets the color of the vertical scroll bar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public Color VerticalScrollBarColor
@@ -162,7 +162,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets color of the horizontal scroll bar.
+        /// Sets or gets the color of the horizontal scroll bar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public Color HorizontalScrollBarColor
@@ -183,7 +183,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets color of the vertical scroll background.
+        /// Sets or gets the color of the vertical scroll background.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public Color VerticalScrollBackgroundColor
@@ -204,7 +204,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets color of the horizontal scroll background.
+        /// Sets or gets the color of the horizontal scroll background.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public Color HorizontalScrollBackgroundColor
@@ -225,7 +225,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets line width of the vertical scroll bar.
+        /// Sets or gets the line width of the vertical scroll bar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public int VerticalScrollBarLineWidth
@@ -241,7 +241,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets line width of the horizontal scroll bar.
+        /// Sets or gets the line width of the horizontal scroll bar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public int HorizontalScrollBarLineWidth
@@ -257,7 +257,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets line width of the vertical scroll background.
+        /// Sets or gets the line width of the vertical scroll background.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public int VerticalScrollBackgroundLineWidth
@@ -273,7 +273,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets line width of the horizontal scroll background.
+        /// Sets or gets the line width of the horizontal scroll background.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public int HorizontalScrollBackgroundLineWidth
@@ -289,7 +289,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets radius of the vertical scroll bar.
+        /// Sets or gets the radius of the vertical scroll bar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double VerticalScrollBarRadius
@@ -305,7 +305,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets radius of the horizontal scroll bar.
+        /// Sets or gets the radius of the horizontal scroll bar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double HorizontalScrollBarRadius
@@ -321,7 +321,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets radius of the vertical scroll background.
+        /// Sets or gets the radius of the vertical scroll background.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double VerticalScrollBackgroundRadius
@@ -337,7 +337,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets radius of the horizontal scroll background.
+        /// Sets or gets the radius of the horizontal scroll background.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double HorizontalScrollBackgroundRadius
@@ -355,8 +355,8 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates a widget handle.
         /// </summary>
-        /// <param name="parent">Parent EvasObject</param>
-        /// <returns>Handle IntPtr</returns>
+        /// <param name="parent">Parent EvasObject.</param>
+        /// <returns>Handle IntPtr.</returns>
         /// <since_tizen> preview </since_tizen>
         protected override IntPtr CreateHandle(EvasObject parent)
         {
index f2e20d2..a568a35 100755 (executable)
@@ -21,7 +21,7 @@ using System.Diagnostics;
 namespace ElmSharp.Wearable
 {
     /// <summary>
-    /// Circle slider is circular designed widget to select a value in a range by rotary event.
+    /// Circle slider is a circular designed widget used to select a value in a range by the Rotary event.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public class CircleSlider : Widget, IRotaryActionWidget
@@ -33,7 +33,7 @@ namespace ElmSharp.Wearable
         /// Creates and initializes a new instance of the CircleSlider class.
         /// </summary>
         /// <param name="parent">The EvasObject to which the new CircleSlider will be attached as a child.</param>
-        /// <param name="surface">The surface for drawing circle features for this widget.</param>
+        /// <param name="surface">The surface for drawing the circle features for this widget.</param>
         /// <since_tizen> preview </since_tizen>
         public CircleSlider(EvasObject parent, CircleSurface surface) : base()
         {
@@ -45,7 +45,7 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates and initializes a new instance of the Circle Slider class.
         /// </summary>
-        /// <param name="parent">The parent of new Circle CircleSlider instance</param>
+        /// <param name="parent">The parent of the new Circle CircleSlider instance.</param>
         /// <since_tizen> preview </since_tizen>
         [Obsolete("It is not safe for guess circle surface from parent and create new surface by every new widget")]
         [EditorBrowsable(EditorBrowsableState.Never)]
@@ -61,13 +61,13 @@ namespace ElmSharp.Wearable
         public event EventHandler ValueChanged;
 
         /// <summary>
-        /// Gets the handle for Circle Widget.
+        /// Gets the handle for the Circle widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public virtual IntPtr CircleHandle => RealHandle;
 
         /// <summary>
-        /// Gets the handle for Circle Surface used in this widget
+        /// Gets the handle for the circle surface used in this widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public virtual CircleSurface CircleSurface => _surface;
@@ -76,7 +76,7 @@ namespace ElmSharp.Wearable
         /// Sets or gets the step by which the circle slider bar moves.
         /// </summary>
         /// <remarks>
-        /// This value is used when circle slider value is changed by an drag or rotary event
+        /// This value is used when the circle slider value is changed by a drag or the Rotary event.
         /// The value of the slider is increased/decreased by the step value.
         /// </remarks>
         /// <since_tizen> preview </since_tizen>
@@ -93,7 +93,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets disabled state of this widget.
+        /// Sets or gets the disabled state of this widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         [Obsolete("Use IsEnabled")]
@@ -121,7 +121,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets color of the circle slider bar.
+        /// Sets or gets the color of the circle slider bar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public Color BarColor
@@ -142,7 +142,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets color of the circle slider background.
+        /// Sets or gets the color of the circle slider background.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public override Color BackgroundColor
@@ -163,7 +163,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the line with of the circle slider bar.
+        /// Sets or gets the line width of the circle slider bar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public int BarLineWidth
@@ -179,7 +179,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the line with of the circle slider background.
+        /// Sets or gets the line width of the circle slider background.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public int BackgroundLineWidth
@@ -228,7 +228,7 @@ namespace ElmSharp.Wearable
 
         /// <summary>
         /// Sets or gets the angle offset for the slider bar.
-        /// offset value means start position of the slider bar.
+        /// Offset value means start position of the slider bar.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double BarAngleOffset
@@ -245,7 +245,7 @@ namespace ElmSharp.Wearable
 
         /// <summary>
         /// Sets or gets the angle offset for the circle slider background.
-        /// offset value means start position of the slider background.
+        /// Offset value means start position of the slider background.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double BackgroundAngleOffset
@@ -305,8 +305,8 @@ namespace ElmSharp.Wearable
         /// </summary>
         /// <remarks>
         /// This defines the allowed minimum values to be selected by the user.
-        /// If the actual value is less than min, it is updated to min.
-        /// Actual value can be obtained with Value.By default, min is equal to 0.0.
+        /// If the actual value is less than the minimum value, it is updated to the minimum value.
+        /// Actual value can be obtained with Value. By default, minimum value is equal to 0.0.
         /// </remarks>
         /// <since_tizen> preview </since_tizen>
         public double Minimum
@@ -330,8 +330,8 @@ namespace ElmSharp.Wearable
         /// </summary>
         /// <remarks>
         /// This defines the allowed maximum values to be selected by the user.
-        /// If the actual value is bigger then max, it is updated to max.
-        /// Actual value can be obtained with Value.By default, min is equal to 0.0, and max is equal to 1.0.
+        /// If the actual value is bigger than the maximum value, it is updated to the maximum value.
+        /// Actual value can be obtained with Value. By default, the minimum value is equal to 0.0, and the maximum value is equal to 1.0.
         /// Maximum must be greater than minimum, otherwise the behavior is undefined.
         /// </remarks>
         /// <since_tizen> preview </since_tizen>
@@ -355,7 +355,7 @@ namespace ElmSharp.Wearable
         /// Gets or sets the value displayed by the circle slider.
         /// </summary>
         /// <remarks>
-        /// The value must to be between Minimum and Maximum values.
+        /// The value must be between minimum and maximum.
         /// </remarks>
         /// <since_tizen> preview </since_tizen>
         public double Value
@@ -403,7 +403,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// The callback of Realized Event
+        /// The callback of the Realized event.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         protected override void OnRealized()
@@ -416,8 +416,8 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates a widget handle.
         /// </summary>
-        /// <param name="parent">Parent EvasObject</param>
-        /// <returns>Handle IntPtr</returns>
+        /// <param name="parent">Parent EvasObject.param>
+        /// <returns>Handle IntPtr.</returns>
         /// <since_tizen> preview </since_tizen>
         protected override IntPtr CreateHandle(EvasObject parent)
         {
index c0ca700..c3895a2 100644 (file)
@@ -22,7 +22,7 @@ namespace ElmSharp.Wearable
 {
 
     /// <summary>
-    /// The Circle Spinner is a widget to display and handle spinner value by rotary event
+    /// The Circle Spinner is a widget to display and handle the spinner value by the Rotary event.
     /// Inherits <see cref="Spinner"/>.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
@@ -35,7 +35,7 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates and initializes a new instance of the Circle Spinner class.
         /// </summary>
-        /// <param name="parent">The parent of new Circle Spinner instance</param>
+        /// <param name="parent">The parent of the new Circle Spinner instance.</param>
         /// <param name="surface">The surface for drawing circle features for this widget.</param>
         /// <since_tizen> preview </since_tizen>
         public CircleSpinner(EvasObject parent, CircleSurface surface) : base()
@@ -48,7 +48,7 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates and initializes a new instance of the Circle Spinner class.
         /// </summary>
-        /// <param name="parent">The parent of new Circle CircleSpinner instance</param>
+        /// <param name="parent">The parent of the new Circle Spinner instance.</param>
         /// <since_tizen> preview </since_tizen>
         [Obsolete("It is not safe for guess circle surface from parent and create new surface by every new widget")]
         [EditorBrowsable(EditorBrowsableState.Never)]
@@ -58,13 +58,13 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Gets the handle for Circle Widget.
+        /// Gets the handle for Circle widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public virtual IntPtr CircleHandle => _circleHandle;
 
         /// <summary>
-        /// Gets the handle for Circle Surface used in this widget
+        /// Gets the handle for the circle surface used in this widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public virtual CircleSurface CircleSurface => _surface;
@@ -87,7 +87,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets disabled state of this widget.
+        /// Sets or gets the disabled state of this widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         [Obsolete("Use IsEnabled")]
@@ -115,7 +115,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the line width of the marker
+        /// Sets or gets the line width of the marker.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public int MarkerLineWidth
@@ -131,7 +131,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the color of the marker
+        /// Sets or gets the color of the marker.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public Color MarkerColor
@@ -149,7 +149,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the radius at which the center of the marker lies
+        /// Sets or gets the radius at which the center of the marker lies.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public double MarkerRadius
@@ -167,8 +167,8 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates a widget handle.
         /// </summary>
-        /// <param name="parent">Parent EvasObject</param>
-        /// <returns>Handle IntPtr</returns>
+        /// <param name="parent">Parent EvasObject.</param>
+        /// <returns>Handle IntPtr.</returns>
         /// <since_tizen> preview </since_tizen>
         protected override IntPtr CreateHandle(EvasObject parent)
         {
index e00df89..e610108 100755 (executable)
@@ -5,7 +5,7 @@ using System.Text;
 namespace ElmSharp.Wearable
 {
     /// <summary>
-    /// The CircleSurface presents a surface for drawing circular feature of circle widgets
+    /// The CircleSurface presents a surface for drawing the circular feature of circle widgets.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public class CircleSurface
@@ -13,9 +13,9 @@ namespace ElmSharp.Wearable
         IntPtr _handle;
 
         /// <summary>
-        /// Creates and initializes a new instance of the CircleSurface class with surface on the Conformant widget.
+        /// Creates and initializes a new instance of the CircleSurface class with surface on the Conformant widget.
         /// </summary>
-        /// <param name="conformant">Conformant widget to create a surface.</param>
+        /// <param name="conformant">The Conformant widget to create a surface.</param>
         /// <since_tizen> preview </since_tizen>
         public CircleSurface(Conformant conformant)
         {
@@ -23,9 +23,9 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Creates and initializes a new instance of the CircleSurface class with surface on the Layout widget.
+        /// Creates and initializes a new instance of the CircleSurface class with surface on the Layout widget.
         /// </summary>
-        /// <param name="layout">Layout widget to create a surface.</param>
+        /// <param name="layout">The Layout widget to create a surface.</param>
         /// <since_tizen> preview </since_tizen>
         public CircleSurface(Layout layout)
         {
@@ -33,9 +33,9 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Creates and initializes a new instance of the CircleSurface class with surface on the Naviframe widget.
+        /// Creates and initializes a new instance of the CircleSurface class with surface on the Naviframe widget.
         /// </summary>
-        /// <param name="naviframe">Naviframe widget to create a surface.</param>
+        /// <param name="naviframe">The Naviframe widget to create a surface.</param>
         /// <since_tizen> preview </since_tizen>
         public CircleSurface(Naviframe naviframe)
         {
@@ -43,7 +43,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Creates and initializes a new instance of the CircleSurface class with no surface
+        /// Creates and initializes a new instance of the CircleSurface class with no surface.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public CircleSurface()
@@ -52,13 +52,13 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Gets the handle for CircleSurface
+        /// Gets the handle for CircleSurface.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public IntPtr Handle => _handle;
 
         /// <summary>
-        /// Delete the given CirclrSurface
+        /// Deletes the given CircleSurface.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public void Delete()
index 2f0a89c..8cf64dc 100644 (file)
@@ -5,26 +5,26 @@ using System.Text;
 namespace ElmSharp.Wearable
 {
     /// <summary>
-    /// The ICircleWidget is the interface for a widget to display and handle with circle surface
+    /// The ICircleWidget is the interface for a widget to display and handle with the CircleSurface.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public interface ICircleWidget
     {
         /// <summary>
-        /// Gets the handle for Circle Widget.
+        /// Gets the handle for the Circle widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         IntPtr CircleHandle { get; }
 
         /// <summary>
-        /// Gets the CircleSurface used in this widget
+        /// Gets the CircleSurface used in this widget.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         CircleSurface CircleSurface { get; }
     }
 
     /// <summary>
-    /// The IRotaryActionWidget is the interface for a widget has action by rotary event
+    /// The IRotaryActionWidget is the interface for a widget that has action by the Rotary event.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public interface IRotaryActionWidget : ICircleWidget
index af8163d..f49e526 100644 (file)
@@ -21,14 +21,14 @@ using System.Linq;
 namespace ElmSharp.Wearable
 {
     /// <summary>
-    /// The MoreOption is a widget composed of the toggle(cue button) and more option view, and MoreOption can change a visibility through the toggle.
+    /// The MoreOption is a widget composed of the toggle (cue button) and more option view that can change a visibility through the toggle.
     /// Inherits Layout
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public class MoreOption : Layout
     {
         /// <summary>
-        /// Sets or gets the list of more option item
+        /// Sets or gets the list of the more option item.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public IList<MoreOptionItem> Items { get; private set; }
@@ -44,12 +44,12 @@ namespace ElmSharp.Wearable
         /// <since_tizen> preview </since_tizen>
         public event EventHandler<MoreOptionItemEventArgs> Clicked;
         /// <summary>
-        /// Opened will be triggered when more option view is shown.
+        /// Opened will be triggered when the more option view is shown.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public event EventHandler Opened;
         /// <summary>
-        /// Closed will be triggered when more option view is hidden.
+        /// Closed will be triggered when the more option view is hidden.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public event EventHandler Closed;
@@ -60,9 +60,9 @@ namespace ElmSharp.Wearable
         SmartEvent _closedEvent;
 
         /// <summary>
-        /// Creates and initializes a new instance of MoreOption class.
+        /// Creates and initializes a new instance of the MoreOption class.
         /// </summary>
-        /// <param name="parent">The parent is a given container which will be attached by MoreOption as a child. It's <see cref="EvasObject"/> type.</param>
+        /// <param name="parent">The parent is a given container, which will be attached by the MoreOption as a child. It's <see cref="EvasObject"/> type.</param>
         /// <since_tizen> preview </since_tizen>
         public MoreOption(EvasObject parent) : base(parent)
         {
@@ -93,8 +93,8 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates a widget handle.
         /// </summary>
-        /// <param name="parent">Parent EvasObject</param>
-        /// <returns>Handle IntPtr</returns>
+        /// <param name="parent">Parent EvasObject.</param>
+        /// <returns>Handle IntPtr.</returns>
         /// <since_tizen> preview </since_tizen>
         protected override IntPtr CreateHandle(EvasObject parent)
         {
@@ -120,7 +120,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the visibility of more option view.
+        /// Sets or gets the visibility of the more option view.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public bool IsOpened
@@ -138,25 +138,25 @@ namespace ElmSharp.Wearable
     }
 
     /// <summary>
-    /// Enumeration for More Option Direction type.
+    /// Enumeration for the more option direction types.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public enum MoreOptionDirection
     {
         /// <summary>
-        /// Top direction
+        /// Top direction.
         /// </summary>
         Top,
         /// <summary>
-        /// Bottom direction
+        /// Bottom direction.
         /// </summary>
         Bottom,
         /// <summary>
-        /// Left direction
+        /// Left direction.
         /// </summary>
         Left,
         /// <summary>
-        /// Right direction
+        /// Right direction.
         /// </summary>
         Right
     }
index c6d68dd..44a43be 100755 (executable)
@@ -21,7 +21,7 @@ using System.Text;
 namespace ElmSharp.Wearable
 {
     /// <summary>
-    /// The MoreOptionItem is a item of MoreOption widget.
+    /// The MoreOptionItem is an item of the MoreOption widget.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public class MoreOptionItem
@@ -59,7 +59,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Creates and initializes a new instance of MoreOptionItem class.
+        /// Creates and initializes a new instance of the MoreOptionItem class.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public MoreOptionItem()
@@ -68,7 +68,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the main text of a more option object.
+        /// Sets or gets the main text of the more option object.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public string MainText
@@ -90,7 +90,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the sub text of a more option object.
+        /// Sets or gets the subtext of the more option object.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public string SubText
@@ -112,7 +112,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Sets or gets the icon image
+        /// Sets or gets the icon image.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public Image Icon
index 7bc7857..0f826e2 100644 (file)
@@ -19,14 +19,14 @@ using System;
 namespace ElmSharp.Wearable
 {
     /// <summary>
-    /// The MoreOptionItemEventArgs is a event args class for MoreOptionItem.
+    /// The MoreOptionItemEventArgs is an event arguments class for the MoreOptionItem.
     /// Inherits EventArgs
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public class MoreOptionItemEventArgs : EventArgs
     {
         /// <summary>
-        /// Sets or gets the more option item
+        /// Sets or gets the more option item.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public MoreOptionItem Item { get; set; }
index ecf1475..a4ab684 100644 (file)
@@ -28,20 +28,20 @@ namespace ElmSharp.Wearable
         List<MoreOptionItem> Items { get; set; }
 
         /// <summary>
-        /// Sets or gets the count of Items
+        /// Sets or gets the count of items.
         /// </summary>
         public int Count => Items.Count;
 
         /// <summary>
-        /// Sets or gets whether it is read only
+        /// Sets or gets whether it is read-only.
         /// </summary>
         public bool IsReadOnly => false;
 
         /// <summary>
-        /// Sets or gets the item with the index
+        /// Sets or gets the item with the index.
         /// </summary>
-        /// <param name="index">the position of item in items</param>
-        /// <returns></returns>
+        /// <param name="index">The position of item in items.</param>
+        /// <returns>MoreOptionItem object on the index.</returns>
         public MoreOptionItem this[int index]
         {
             get
@@ -56,9 +56,9 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Creates and initializes a new instance of MoreOptionList class.
+        /// Creates and initializes a new instance of the MoreOptionList class.
         /// </summary>
-        /// <param name="owner">the object of more option</param>
+        /// <param name="owner">The object of more option.</param>
         public MoreOptionList(MoreOption owner)
         {
             Owner = owner;
@@ -66,9 +66,9 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Append a new item to a more option.
+        /// Appends a new item to the more option.
         /// </summary>
-        /// <param name="item">The more option item</param>
+        /// <param name="item">The more option item.</param>
         public void Add(MoreOptionItem item)
         {
             item.Handle = Interop.Eext.eext_more_option_item_append(Owner);
@@ -76,9 +76,9 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// add a new item to a more option at the first.
+        /// Adds a new item to the more option at the first.
         /// </summary>
-        /// <param name="item">The more option item</param>
+        /// <param name="item">The more option item.</param>
         public void AddFirst(MoreOptionItem item)
         {
             item.Handle = Interop.Eext.eext_more_option_item_prepend(Owner);
@@ -86,29 +86,29 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// add a new item to a more option at the last.
+        /// Adds a new item to the more option at the last.
         /// </summary>
-        /// <param name="item">The more option item</param>
+        /// <param name="item">The more option item.</param>
         public void AddLast(MoreOptionItem item)
         {
             Add(item);
         }
 
         /// <summary>
-        /// Get the index of item
+        /// Get the index of an item.
         /// </summary>
-        /// <param name="item">The more option item</param>
-        /// <returns>the index of item</returns>
+        /// <param name="item">The more option item.</param>
+        /// <returns>The index of an item.</returns>
         public int IndexOf(MoreOptionItem item)
         {
             return Items.IndexOf(item);
         }
 
         /// <summary>
-        /// Insert a new item into the more option after more option item with the index.
+        /// Inserts a new item into the more option, after the more option item with the index.
         /// </summary>
-        /// <param name="index">the index of item which is insert after</param>
-        /// <param name="item">The more option item</param>
+        /// <param name="index">The index of an item, which is inserted after.</param>
+        /// <param name="item">The more option item.</param>
         public void Insert(int index, MoreOptionItem item)
         {
             if (Items.Count < index + 1 || index < 0)
@@ -120,7 +120,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Delete an item which is the given item index
+        /// Deletes an item, which is the given item index.
         /// </summary>
         /// <param name="index">the item index which will be deleted</param>
         public void RemoveAt(int index)
@@ -135,7 +135,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Remove all items from a given more option list object.
+        /// Removes all the items from a given more option list object.
         /// </summary>
         public void Clear()
         {
@@ -148,30 +148,30 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Check the item whether is contained
+        /// Checks the item whether it is contained.
         /// </summary>
-        /// <param name="item">The more option item</param>
-        /// <returns>If contain return true, otherwise false</returns>
+        /// <param name="item">The more option item.</param>
+        /// <returns>If contained return true, otherwise false.</returns>
         public bool Contains(MoreOptionItem item)
         {
             return Items.Contains(item);
         }
 
         /// <summary>
-        /// Copy Items
+        /// Copies the items.
         /// </summary>
-        /// <param name="array">the target array</param>
-        /// <param name="arrayIndex">which index the item will copy to</param>
+        /// <param name="array">The target array.</param>
+        /// <param name="arrayIndex">The index to which the item will be copied.</param>
         public void CopyTo(MoreOptionItem[] array, int arrayIndex)
         {
             Items.CopyTo(array, arrayIndex);
         }
 
         /// <summary>
-        /// Remove a item
+        /// Removes the item.
         /// </summary>
-        /// <param name="item">the item will be removed</param>
-        /// <returns>if remove success return true, otherwise false</returns>
+        /// <param name="item">The item will be removed.</param>
+        /// <returns>If removed is successful return true, otherwise false.</returns>
         public bool Remove(MoreOptionItem item)
         {
             if (Items.Contains(item))
@@ -184,7 +184,7 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Return an enumerator that iterates through IEnumerator
+        /// Returns an enumerator that iterates through IEnumerator.
         /// </summary>
         /// <returns></returns>
         public IEnumerator<MoreOptionItem> GetEnumerator()
index 7fc06ab..691a58a 100644 (file)
@@ -22,7 +22,7 @@ using System.Text;
 namespace ElmSharp.Wearable
 {
     /// <summary>
-    /// RotaryEventManager serve functions for global Rotary event like Galaxy Gear.
+    /// The RotaryEventManager serves functions for the global Rotary event like Galaxy Gear.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public static class RotaryEventManager
@@ -30,7 +30,7 @@ namespace ElmSharp.Wearable
         static Dictionary<RotaryEventHandler, Interop.Eext.Eext_Rotary_Handler_Cb> s_rotaryEventHandlers = new Dictionary<RotaryEventHandler, Interop.Eext.Eext_Rotary_Handler_Cb>();
 
         /// <summary>
-        /// Rotated will triggered when rotatable device like Galaxy Gear Bezel is rotated.
+        /// Rotated will be triggered when the rotatable device like the Galaxy Gear Bezel is rotated.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public static event RotaryEventHandler Rotated
@@ -67,7 +67,7 @@ namespace ElmSharp.Wearable
 
 
     /// <summary>
-    /// RotaryEventManager serve extension functions for Rotary event to EvasObject on device like Galaxy Gear.
+    /// The RotaryEventManager serves extension functions for the Rotary event to EvasObject on a device like Galaxy Gear.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public static class RotaryEventExtensions
@@ -76,10 +76,10 @@ namespace ElmSharp.Wearable
         static Dictionary<EvasObject, Interop.Eext.Eext_Rotary_Event_Cb> s_rotaryObjectEventMap = new Dictionary<EvasObject, Interop.Eext.Eext_Rotary_Event_Cb>();
 
         /// <summary>
-        /// Add a handler for Rotary event on specific EvasObject.
+        /// Adds a handler for the Rotary event on a specific EvasObject.
         /// </summary>
-        /// <param name="obj">Target EvasObject</param>
-        /// <param name="handler">Event handler for Rotary event</param>
+        /// <param name="obj">Target EvasObject.</param>
+        /// <param name="handler">Event handler for the Rotary event.</param>
         /// <since_tizen> preview </since_tizen>
         public static void AddRotaryEventHandler(this EvasObject obj, RotaryEventHandler handler)
         {
@@ -96,10 +96,10 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Remove a handler on specific EvasObject for Rotary event.
+        /// Removes a handler on a specific EvasObject for the Rotary event.
         /// </summary>
-        /// <param name="obj">Target EvasObject</param>
-        /// <param name="handler">Event handler for Rotary event</param>
+        /// <param name="obj">Target EvasObject.</param>
+        /// <param name="handler">Event handler for Rotary event.</param>
         /// <since_tizen> preview </since_tizen>
         public static void RemoveRotaryEventHandler(this EvasObject obj, RotaryEventHandler handler)
         {
@@ -115,9 +115,9 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Activate this circle widget can take Rotary event.
+        /// Activates this Circle widget that can take the Rotary event.
         /// </summary>
-        /// <param name="widget">Target circle widget</param>
+        /// <param name="widget">Target the Circle widget.</param>
         /// <since_tizen> preview </since_tizen>
         public static void Activate(this IRotaryActionWidget widget)
         {
@@ -125,9 +125,9 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Deactivate this circle widget is blocked from Rotary event.
+        /// Deactivates this circle widget that is blocked from the Rotary event.
         /// </summary>
-        /// <param name="widget">Target circle widget</param>
+        /// <param name="widget">Target the Circle widget.</param>
         /// <since_tizen> preview </since_tizen>
         public static void Deactivate(this IRotaryActionWidget widget)
         {
@@ -135,9 +135,9 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Activate this object can take Rotary event.
+        /// Activates this object that can take the Rotary event.
         /// </summary>
-        /// <param name="obj">Target object</param>
+        /// <param name="obj">Target object.</param>
         /// <since_tizen> preview </since_tizen>
         public static void Activate(this EvasObject obj)
         {
@@ -145,9 +145,9 @@ namespace ElmSharp.Wearable
         }
 
         /// <summary>
-        /// Deactivate this object is blocked from Rotary event.
+        /// Deactivates this object that is blocked from the Rotary event.
         /// </summary>
-        /// <param name="obj">Target object</param>
+        /// <param name="obj">Target object.</param>
         /// <since_tizen> preview </since_tizen>
         public static void Deactivate(this EvasObject obj)
         {
@@ -194,26 +194,26 @@ namespace ElmSharp.Wearable
     }
 
     /// <summary>
-    /// Handler for Rotary event
+    /// Handler for the Rotary event.
     /// </summary>
-    /// <param name="args">Rotary event information</param>
+    /// <param name="args">The Rotary event information.</param>
     /// <since_tizen> preview </since_tizen>
     public delegate void RotaryEventHandler(RotaryEventArgs args);
 
     /// <summary>
-    /// RotaryEventArgs serve information for triggered rotary event.
+    /// The RotaryEventArgs serves information for the triggered Rotary event.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public class RotaryEventArgs : EventArgs
     {
         /// <summary>
-        /// IsClockwise is true when Rotary device rotated clockwise direction or false on counter clockwise.
+        /// IsClockwise is true when the Rotary device rotated in the clockwise direction, or false on counter clockwise.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public bool IsClockwise { get; set; }
 
         /// <summary>
-        /// Timestamp of rotary event
+        /// Timestamp of the Rotary event.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public uint Timestamp { get; set; }
index 0e99f2f..4cd7b36 100644 (file)
@@ -22,8 +22,8 @@ using System.Text;
 namespace ElmSharp.Wearable
 {
     /// <summary>
-    /// The Rotary Selector is a widget to display a selector and multiple items surrounding the selector.
-    /// And an item can be selected by rotary event or user item click.
+    /// The RotarySelector is a widget to display a selector and multiple items surrounding the selector.
+    /// An item can be selected by the Rotary event or user item click.
     /// Inherits <see cref="Layout"/>.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
@@ -37,13 +37,13 @@ namespace ElmSharp.Wearable
         const string ItemClickedEventName = "item,clicked";
 
         /// <summary>
-        /// Selected will be triggered when selected an item.
+        /// Selected will be triggered when selecting an item.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public event EventHandler<RotarySelectorItemEventArgs> Selected;
 
         /// <summary>
-        /// Clicked will be triggered when selecting again the alredy selected item or selecting a selector.
+        /// Clicked will be triggered when selecting again the already selected item or selecting a selector.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public event EventHandler<RotarySelectorItemEventArgs> Clicked;
@@ -61,7 +61,7 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates and initializes a new instance of the Rotary Selector class.
         /// </summary>
-        /// <param name="parent">The parent of new Rotary Selector instance</param>
+        /// <param name="parent">The parent of the new Rotary Selector instance.</param>
         /// <since_tizen> preview </since_tizen>
         public RotarySelector(EvasObject parent) : base(parent)
         {
@@ -130,8 +130,8 @@ namespace ElmSharp.Wearable
         /// <summary>
         /// Creates a widget handle.
         /// </summary>
-        /// <param name="parent">Parent EvasObject</param>
-        /// <returns>Handle IntPtr</returns>
+        /// <param name="parent">Parent EvasObject.</param>
+        /// <returns>Handle IntPtr.</returns>
         /// <since_tizen> preview </since_tizen>
         protected override IntPtr CreateHandle(EvasObject parent)
         {
index 6d792f8..3b40325 100644 (file)
@@ -21,7 +21,7 @@ using System.Text;
 namespace ElmSharp.Wearable
 {
     /// <summary>
-    /// A instance to the Rotary Selector Item added. And an item can be selected by rotary event or user item click.
+    /// An instance to the Rotary Selector item is added. An item can be selected by the Rotary event or user item click.
     /// </summary>
     /// <since_tizen> preview </since_tizen>
     public class RotarySelectorItem
@@ -159,19 +159,19 @@ namespace ElmSharp.Wearable
         public string MainText { set => setPart(ref _mainText, MainTextPartName, value); get => _mainText; }
 
         /// <summary>
-        /// Sets or gets the sub text of a rotary selector item object.
+        /// Sets or gets the subtext of a rotary selector item object.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public string SubText { set => setPart(ref _subText, SubTextPartName, value); get => _subText; }
 
         /// <summary>
-        /// Sets or gets the sub text color of a rotary selector item object.
+        /// Sets or gets the subtext color of a rotary selector item object.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public Color MainTextColor { set => setPart(ref _mainTextColor, MainTextPartName, ItemState.Normal, value); get => _mainTextColor; }
 
         /// <summary>
-        /// Sets or gets the sub text color of a rotary selector item object.
+        /// Sets or gets the subtext color of a rotary selector item object.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public Color SubTextColor { set => setPart(ref _subTextColor, SubTextPartName, ItemState.Normal, value); get => _subTextColor; }
@@ -183,13 +183,13 @@ namespace ElmSharp.Wearable
         public Image NormalIconImage { set => setPart(ref _normalIconImage, IconPartName, ItemState.Normal, value); get => _normalIconImage; }
 
         /// <summary>
-        /// Sets or gets the press icon image of a rotary selector item object.
+        /// Sets or gets the pressed icon image of a rotary selector item object.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public Image PressedIconImage { set => setPart(ref _pressedIconImage, IconPartName, ItemState.Pressed, value); get => _pressedIconImage; }
 
         /// <summary>
-        /// Sets or gets the disable icon image of a rotary selector item object.
+        /// Sets or gets the disabled icon image of a rotary selector item object.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
         public Image DisabledIconImage { set => setPart(ref _disabledIconImage, IconPartName, ItemState.Disabled, value); get => _disabledIconImage; }
index 011dc20..a975cb0 100755 (executable)
@@ -21,7 +21,7 @@ using System.Text;
 namespace ElmSharp.Wearable
 {
     /// <summary>
-    /// <see cref="RotarySelector.Selected"/> and <see cref="RotarySelector.Clicked"/> events of RotarySelector contain RotarySelectorItemEventArgs as a parameter.
+    /// <see cref="RotarySelector.Selected"/> and <see cref="RotarySelector.Clicked"/> events of the RotarySelector contain the RotarySelectorItemEventArgs as a parameter.
     /// Inherits <see cref="EventArgs"/>.
     /// </summary>
     /// <since_tizen> preview </since_tizen>