Add Doc for api reference
authorSukHyung, Kang <shine.kang@samsung.com>
Fri, 28 Jul 2017 07:39:38 +0000 (16:39 +0900)
committerSukHyung, Kang <shine.kang@samsung.com>
Fri, 28 Jul 2017 07:43:53 +0000 (16:43 +0900)
Change-Id: I453dafc1dbf2260e9def9df273102b1a45760c0c
Signed-off-by: SukHyung, Kang <shine.kang@samsung.com>
src/Tizen.Applications.Common/Tizen.Applications/AppControlReplyCallback.cs
src/Tizen.Applications.Common/Tizen.Applications/DeviceOrientationEventArgs.cs
src/Tizen.Applications.Common/Tizen.Applications/LocaleChangedEventArgs.cs
src/Tizen.Applications.Common/Tizen.Applications/LowBatteryEventArgs.cs
src/Tizen.Applications.Common/Tizen.Applications/LowMemoryEventArgs.cs
src/Tizen.Applications.Common/Tizen.Applications/RegionFormatChangedEventArgs.cs

index 501be67..1a9c6c9 100755 (executable)
 namespace Tizen.Applications
 {
     /// <summary>
-    /// 
+    /// Reply callback for the launch request
     /// </summary>
-    /// <param name="launchRequest"></param>
-    /// <param name="replyRequest"></param>
-    /// <param name="result"></param>
+    /// <param name="launchRequest">The AppControl of the launch request that has been sent</param>
+    /// <param name="replyRequest">The AppControl in which the results of the callee are contained</param>
+    /// <param name="result">The result of the launch request</param>
     public delegate void AppControlReplyCallback(AppControl launchRequest, AppControl replyRequest, AppControlReplyResult result);
 }
index e042e32..750e316 100755 (executable)
@@ -19,21 +19,21 @@ using System;
 namespace Tizen.Applications
 {
     /// <summary>
-    /// The class for event arguments of the DeviceOrientationChanged
+    /// The class for the argument of the DeviceOrientationChanged EventHandler
     /// </summary>
     public class DeviceOrientationEventArgs : EventArgs
     {
         /// <summary>
         ///  Initializes DeviceOrientationEventArgs class
         /// </summary>
-        /// <param name="orientation"></param>
+        /// <param name="orientation">The information of the DeviceOrientation</param>
         public DeviceOrientationEventArgs(DeviceOrientation orientation)
         {
             DeviceOrientation = orientation;
         }
 
         /// <summary>
-        /// The received DeviceOrientation
+        /// The property to get the intformation of the DeviceOrientation
         /// </summary>
         public DeviceOrientation DeviceOrientation { get; private set; }
     }
index 314495d..a1e99ba 100755 (executable)
@@ -19,22 +19,22 @@ using System;
 namespace Tizen.Applications
 {
     /// <summary>
-    /// 
+    /// The class for the argument of the LocaleChanged EventHandler
     /// </summary>
     public class LocaleChangedEventArgs : EventArgs
     {
 
         /// <summary>
-        /// 
+        /// Initializes LocaleChangedEventArgs class
         /// </summary>
-        /// <param name="locale"></param>
+        /// <param name="locale">The information of the Locale</param>
         public LocaleChangedEventArgs(string locale)
         {
             Locale = locale;
         }
 
         /// <summary>
-        /// 
+        /// The property to get the intformation of the Locale
         /// </summary>
         public string Locale { get; private set; }
 
index e3c45a1..bf0c49a 100755 (executable)
@@ -19,21 +19,21 @@ using System;
 namespace Tizen.Applications
 {
     /// <summary>
-    /// 
+    /// The class for the argument of the LowBattery EventHandler
     /// </summary>
     public class LowBatteryEventArgs : EventArgs
     {
         /// <summary>
-        /// 
+        /// Initializes LowBatteryEventArgs class
         /// </summary>
-        /// <param name="status"></param>
+        /// <param name="status">The information of the LowBatteryEventArgs</param>
         public LowBatteryEventArgs(LowBatteryStatus status)
         {
             LowBatteryStatus = status;
         }
 
         /// <summary>
-        /// 
+        /// The property to get the intformation of the LowBatteryStatus
         /// </summary>
         public LowBatteryStatus LowBatteryStatus { get; private set; }
     }
index 062a4b9..e42fedc 100755 (executable)
@@ -19,21 +19,21 @@ using System;
 namespace Tizen.Applications
 {
     /// <summary>
-    /// 
+    /// The class for the argument of the LowMemory EventHandler
     /// </summary>
     public class LowMemoryEventArgs : EventArgs
     {
         /// <summary>
-        /// 
+        /// Initializes LowMemoryEventArgs class
         /// </summary>
-        /// <param name="status"></param>
+        /// <param name="status">The information of the LowMemoryStatus</param>
         public LowMemoryEventArgs(LowMemoryStatus status)
         {
             LowMemoryStatus = status;
         }
 
         /// <summary>
-        /// 
+        /// The property to get the intformation of the LowMemoryStatus
         /// </summary>
         public LowMemoryStatus LowMemoryStatus { get; private set; }
     }
index 531a8dd..a481093 100755 (executable)
@@ -19,22 +19,22 @@ using System;
 namespace Tizen.Applications
 {
     /// <summary>
-    /// 
+    /// The class for the argument of the RegionFormatChanged EventHandler
     /// </summary>
     public class RegionFormatChangedEventArgs : EventArgs
     {
 
         /// <summary>
-        /// 
+        /// Initializes RegionFormatChangedEventArgs class
         /// </summary>
-        /// <param name="region"></param>
+        /// <param name="region">The information of the Region</param>
         public RegionFormatChangedEventArgs(string region)
         {
             Region = region;
         }
 
         /// <summary>
-        /// 
+        /// The property to get the intformation of the Region
         /// </summary>
         public string Region { get; private set; }
     }