Init Tizen 2.2.1
[framework/osp/uix.git] / inc / FUixSensorMotion.h
index 0ed2a9d..ebd4b5d 100644 (file)
@@ -37,16 +37,13 @@ class _MotionImpl;
 
 /**
  * @class      Motion
- * @brief      This class is used to probe the state or to receive an event about the conceptual states of the device's movement.
+ * @brief      This class is used to probe the state or receive an event about the conceptual states of the device's movement.
  *
  * @since      2.0
  *
- * @remarks     @b Header @b %file: @b \#include @b <FUix.h> @n
- *              @b Library : @b osp-uix
- *
  * The %Motion class allows an application to know about the movement of the device. The information is given in 2 ways:
  * the application probes the state or the application registers a listener and receives an event when a movement is observed.
- * @n
+ * 
  * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/uix/device_motions.htm">Device Motions</a>.
  *
  * The following example demonstrates how to use the %Motion class to register a motion event listener and receive motion events.
@@ -63,7 +60,7 @@ class _MotionImpl;
  *   void OnSnapDetected(Tizen::Uix::Sensor::MotionSnapType snapType);
  *
  * private:
- *   Tizen::Uix::Motion* pMotion;
+ *   Tizen::Uix::Sensor::Motion* pMotion;
  * };
  *
  * result MotionExample::Initialize(void)
@@ -133,8 +130,8 @@ public:
 
        /**
         * Sets the motion event type. @n
-        * If the %SetEnabled() method is not called, then by default all the motion event types will be captured by the listener.
-        * If the motion events are not be captured, this method can be called with @c type set to @c MOTION_TYPE_NONE.
+        * If the %SetEnabled() method is not called, then by default all the motion event types are captured by the listener.
+        * If the motion events are not to be captured, this method can be called with @c type set to @c MOTION_TYPE_NONE.
         *
         * @since       2.0
         *
@@ -142,14 +139,14 @@ public:
         *                                  Multiple motion types of type Tizen::Uix::Sensor::MotionType can be combined using the logical OR operator.
         * @exception   E_SUCCESS           The method is successful.
         * @exception   E_INVALID_STATE     This instance has not been constructed as yet.
-        * @exception   E_INVALID_ARG       A specified input parameter is invalid.
+        * @exception   E_INVALID_ARG       The specified input parameter is invalid.
         * @remarks     The specific error code can be accessed using the GetLastResult() method.
         */
        void SetEnabled(unsigned long type);
 
        /**
-        * Checks whether the specified @c MotionType is supported. @n
-        * @c MOTION_TYPE_NONE and @c MOTION_TYPE_ALL are invalid, and @c false will be returned for these types.
+        * Checks whether the specified @c type is supported. @n
+        * @c MOTION_TYPE_NONE and @c MOTION_TYPE_ALL are unsupported types, and @c false is returned for these types.
         *
         * @since       2.0
         *