EventArgs constructors are updated as internal.
authorPraveen Gattu <gattu.p@samsung.com>
Mon, 27 Jun 2016 11:07:13 +0000 (16:37 +0530)
committerPraveen Gattu <gattu.p@samsung.com>
Tue, 28 Jun 2016 07:50:27 +0000 (13:20 +0530)
Fixed documentation issue.

Change-Id: I99de0a7aa4475df1674d292cb490c223d72b0823
Signed-off-by: Praveen Gattu <gattu.p@samsung.com>
Tizen.System/Device/DeviceEventArgs.cs
Tizen.System/Device/Display.cs

index 0ea028f..389581e 100644 (file)
@@ -5,6 +5,7 @@ namespace Tizen.System
     // Battery
     public class BatteryPercentChangedEventArgs : EventArgs
     {
+        internal BatteryPercentChangedEventArgs(){}
         /// <summary>
         /// The current capacity of the battery.
         /// Capacity is an integer value from 0 to 100, that indicates remaining battery charge as a percentage of the maximum level.
@@ -14,6 +15,7 @@ namespace Tizen.System
 
     public class BatteryLevelChangedEventArgs : EventArgs
     {
+        internal BatteryLevelChangedEventArgs(){}
         /// <summary>
         /// Level indicates the Current battery level status which is of type BatteryLevelStatus.
         /// </summary>
@@ -22,6 +24,7 @@ namespace Tizen.System
 
     public class BatteryChargingStateChangedEventArgs : EventArgs
     {
+        internal BatteryChargingStateChangedEventArgs() {}
         /// <summary>
         /// The charging state of the battery. Charging is of type boolean which indicates true/false based on currrent charging status.
         /// </summary>
@@ -31,6 +34,7 @@ namespace Tizen.System
     // Display
     public class DisplayStateChangedEventArgs : EventArgs
     {
+        internal DisplayStateChangedEventArgs() {}
         /// <summary>
         /// State indicates the current display state of the device which is an enum of type DisplayState.
         /// </summary>
@@ -40,6 +44,7 @@ namespace Tizen.System
     // Led
     public class LedBrightnessChangedEventArgs : EventArgs
     {
+        internal LedBrightnessChangedEventArgs() {}
         /// <summary>
         /// Brightness indicates the current brightness level of the display as an integer.
         /// </summary>
index 321f278..1325d55 100644 (file)
@@ -52,7 +52,7 @@ namespace Tizen.System
             }
         }
         /// <summary>
-        /// Get all the avaialble vibrators.
+        /// Get all the avaialble Displays.
         /// </summary>
         public static IReadOnlyList<Display> Displays
         {