From f5f774c784803e2263949c886f270cb9370d62cd Mon Sep 17 00:00:00 2001 From: "kibak.yoon" Date: Thu, 6 Oct 2016 18:16:13 +0900 Subject: [PATCH] csapi-sensor: add descriptions for activity/gesture sensor class - missing class descriptions in the doxygen document Change-Id: I896de74be45a1a3162cfcf0707dc3becf4d353c0 Signed-off-by: kibak.yoon --- .../Tizen.System.Sensor/Plugins/FaceDownGestureDetector.cs | 3 +++ .../Tizen.System.Sensor/Plugins/InVehicleActivityDetector.cs | 3 +++ .../Tizen.System.Sensor/Plugins/PickUpGestureDetector.cs | 3 +++ .../Tizen.System.Sensor/Plugins/RunningActivityDetector.cs | 3 +++ .../Tizen.System.Sensor/Plugins/StationaryActivityDetector.cs | 3 +++ .../Tizen.System.Sensor/Plugins/WalkingActivityDetector.cs | 3 +++ .../Tizen.System.Sensor/Plugins/WristUpGestureDetector.cs | 3 +++ 7 files changed, 21 insertions(+) diff --git a/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/FaceDownGestureDetector.cs b/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/FaceDownGestureDetector.cs index e3cc4a2..88ed660 100644 --- a/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/FaceDownGestureDetector.cs +++ b/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/FaceDownGestureDetector.cs @@ -10,6 +10,9 @@ using System; namespace Tizen.System.Sensor { + /// + /// FaceDownGestureDetector Class. Used for registering callbacks for face down gesture detector and getting the face down state + /// public class FaceDownGestureDetector : Sensor { /// diff --git a/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/InVehicleActivityDetector.cs b/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/InVehicleActivityDetector.cs index d3792cb..0f1f63e 100644 --- a/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/InVehicleActivityDetector.cs +++ b/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/InVehicleActivityDetector.cs @@ -10,6 +10,9 @@ using System; namespace Tizen.System.Sensor { + /// + /// InVehicleActivityDetector Class. Used for registering callbacks for in vehicle activity detector and getting the in vehicle state + /// public class InVehicleActivityDetector : ActivityDetector { /// diff --git a/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/PickUpGestureDetector.cs b/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/PickUpGestureDetector.cs index 90a3288..48ba166 100644 --- a/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/PickUpGestureDetector.cs +++ b/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/PickUpGestureDetector.cs @@ -10,6 +10,9 @@ using System; namespace Tizen.System.Sensor { + /// + /// PickUpGestureDetector Class. Used for registering callbacks for pick up activity detector and getting the pick up state + /// public class PickUpGestureDetector : Sensor { /// diff --git a/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/RunningActivityDetector.cs b/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/RunningActivityDetector.cs index 4c1f063..25b5e17 100644 --- a/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/RunningActivityDetector.cs +++ b/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/RunningActivityDetector.cs @@ -10,6 +10,9 @@ using System; namespace Tizen.System.Sensor { + /// + /// RunningActivityDetector Class. Used for registering callbacks for running activity detector and getting the running state + /// public class RunningActivityDetector : ActivityDetector { /// diff --git a/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/StationaryActivityDetector.cs b/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/StationaryActivityDetector.cs index 090cc32..cfa41be 100644 --- a/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/StationaryActivityDetector.cs +++ b/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/StationaryActivityDetector.cs @@ -10,6 +10,9 @@ using System; namespace Tizen.System.Sensor { + /// + /// StationaryActivityDetector Class. Used for registering callbacks for stationary activity detector and getting the stationary state + /// public class StationaryActivityDetector : ActivityDetector { /// diff --git a/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/WalkingActivityDetector.cs b/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/WalkingActivityDetector.cs index 0d829b5..0560ec8 100644 --- a/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/WalkingActivityDetector.cs +++ b/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/WalkingActivityDetector.cs @@ -10,6 +10,9 @@ using System; namespace Tizen.System.Sensor { + /// + /// WalkingActivityDetector Class. Used for registering callbacks for walking activity detector and getting the walking state + /// public class WalkingActivityDetector : ActivityDetector { /// diff --git a/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/WristUpGestureDetector.cs b/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/WristUpGestureDetector.cs index 9c79955..2df1a8d 100644 --- a/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/WristUpGestureDetector.cs +++ b/Tizen.System.Sensor/Tizen.System.Sensor/Plugins/WristUpGestureDetector.cs @@ -10,6 +10,9 @@ using System; namespace Tizen.System.Sensor { + /// + /// WristUpGestureDetector Class. Used for registering callbacks for wrist up gesture detector and getting the wrist up state + /// public class WristUpGestureDetector : Sensor { /// -- 2.34.1