X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.Sensor%2FTizen.Sensor%2FPlugins%2FWalkingActivityDetector.cs;h=d2b7906dd26621ac96bb293c644322e076c511db;hb=bf0dc32c2ce4f0169fae2157907a81cb253c5a71;hp=391f3ae2a865ef64a3f6e062b388023a554549b0;hpb=9b9d1a19964d4d0431d5efbdf4ba2aba60879980;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.Sensor/Tizen.Sensor/Plugins/WalkingActivityDetector.cs b/src/Tizen.Sensor/Tizen.Sensor/Plugins/WalkingActivityDetector.cs old mode 100644 new mode 100755 index 391f3ae..d2b7906 --- a/src/Tizen.Sensor/Tizen.Sensor/Plugins/WalkingActivityDetector.cs +++ b/src/Tizen.Sensor/Tizen.Sensor/Plugins/WalkingActivityDetector.cs @@ -19,20 +19,24 @@ using System; namespace Tizen.Sensor { /// - /// WalkingActivityDetector Class. Used for registering callbacks for walking activity detector and getting the walking state + /// The WalkingActivityDetector class is used for registering callbacks for the walking activity detector and getting the walking state. /// public sealed class WalkingActivityDetector : ActivityDetector { private static string ActivityDetectorKey = "http://tizen.org/feature/sensor.activity_recognition"; /// - /// Gets the state of walking activity detector + /// Gets the state of the walking activity detector. /// + /// 3 + /// The walking state. public DetectorState Walking { get; private set; } = DetectorState.Unknown; /// - /// Returns true or false based on whether walking activity detector is supported by device. + /// Returns true or false based on whether the walking activity detector is supported by the device. /// + /// 3 + /// true if supported; otherwise false. public static bool IsSupported { get @@ -43,8 +47,10 @@ namespace Tizen.Sensor } /// - /// Returns the number of walking activity detector available on the device. + /// Returns the number of walking activity detectors available on the device. /// + /// 3 + /// The count of walking activity detectors. public static int Count { get @@ -55,11 +61,13 @@ namespace Tizen.Sensor } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// - /// Thrown when an invalid argument is used - /// Thrown when the sensor is not supported - /// Thrown when the operation is invalid for the current state + /// 3 + /// http://tizen.org/feature/sensor.activity_recognition + /// Thrown when an invalid argument is used. + /// Thrown when the sensor is not supported. + /// Thrown when the operation is invalid for the current state. /// /// Index. Default value for this is 0. Index refers to a particular walking activity detector in case of multiple sensors. /// @@ -85,8 +93,9 @@ namespace Tizen.Sensor } /// - /// Event Handler for storing the callback functions for event corresponding to change in walking activity gesture detector data. + /// An event handler for storing the callback functions for the event corresponding to the change in the walking activity gesture detector data. /// + /// 3 public event EventHandler DataUpdated; internal static Interop.SensorListener.SensorEventCallback _callback;