Skip to content

Commit

Permalink
Merge "EventArgs constructors are updated as internal. Fixed document…
Browse files Browse the repository at this point in the history
…ation issue." into devel
  • Loading branch information
JoonghyunCho authored and Gerrit Code Review committed Jul 5, 2016
2 parents 8e3f6e5 + 927c142 commit 04668bc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/Tizen.System/Device/DeviceEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -14,6 +15,7 @@ public class BatteryPercentChangedEventArgs : EventArgs

public class BatteryLevelChangedEventArgs : EventArgs
{
internal BatteryLevelChangedEventArgs(){}
/// <summary>
/// Level indicates the Current battery level status which is of type BatteryLevelStatus.
/// </summary>
Expand All @@ -22,6 +24,7 @@ public class BatteryLevelChangedEventArgs : EventArgs

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>
Expand All @@ -31,6 +34,7 @@ public class BatteryChargingStateChangedEventArgs : EventArgs
// 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>
Expand All @@ -40,6 +44,7 @@ public class DisplayStateChangedEventArgs : EventArgs
// Led
public class LedBrightnessChangedEventArgs : EventArgs
{
internal LedBrightnessChangedEventArgs() {}
/// <summary>
/// Brightness indicates the current brightness level of the display as an integer.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Tizen.System/Device/Display.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static int NumberOfDisplays
}
}
/// <summary>
/// Get all the avaialble vibrators.
/// Get all the avaialble Displays.
/// </summary>
public static IReadOnlyList<Display> Displays
{
Expand Down

0 comments on commit 04668bc

Please sign in to comment.