From: Praveen Gattu Date: Mon, 27 Jun 2016 11:07:13 +0000 (+0530) Subject: EventArgs constructors are updated as internal. X-Git-Tag: submit/tizen/20161214.063015~27^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c1f3a66237e439b71670336ad90d5037bcfd3ff3;p=platform%2Fcore%2Fcsapi%2Fsystem.git EventArgs constructors are updated as internal. Fixed documentation issue. Change-Id: I99de0a7aa4475df1674d292cb490c223d72b0823 Signed-off-by: Praveen Gattu --- diff --git a/Tizen.System/Device/DeviceEventArgs.cs b/Tizen.System/Device/DeviceEventArgs.cs index 0ea028f..389581e 100644 --- a/Tizen.System/Device/DeviceEventArgs.cs +++ b/Tizen.System/Device/DeviceEventArgs.cs @@ -5,6 +5,7 @@ namespace Tizen.System // Battery public class BatteryPercentChangedEventArgs : EventArgs { + internal BatteryPercentChangedEventArgs(){} /// /// 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(){} /// /// Level indicates the Current battery level status which is of type BatteryLevelStatus. /// @@ -22,6 +24,7 @@ namespace Tizen.System public class BatteryChargingStateChangedEventArgs : EventArgs { + internal BatteryChargingStateChangedEventArgs() {} /// /// The charging state of the battery. Charging is of type boolean which indicates true/false based on currrent charging status. /// @@ -31,6 +34,7 @@ namespace Tizen.System // Display public class DisplayStateChangedEventArgs : EventArgs { + internal DisplayStateChangedEventArgs() {} /// /// State indicates the current display state of the device which is an enum of type DisplayState. /// @@ -40,6 +44,7 @@ namespace Tizen.System // Led public class LedBrightnessChangedEventArgs : EventArgs { + internal LedBrightnessChangedEventArgs() {} /// /// Brightness indicates the current brightness level of the display as an integer. /// diff --git a/Tizen.System/Device/Display.cs b/Tizen.System/Device/Display.cs index 321f278..1325d55 100644 --- a/Tizen.System/Device/Display.cs +++ b/Tizen.System/Device/Display.cs @@ -52,7 +52,7 @@ namespace Tizen.System } } /// - /// Get all the avaialble vibrators. + /// Get all the avaialble Displays. /// public static IReadOnlyList Displays {