X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFUixSensorMotion.h;h=ebd4b5dda619802c9c060bbf6cd488debdf8eb1e;hb=a79a1ee9991700712292b36fb3db9efce2e84781;hp=0ed2a9d9ca8324806cda810978e694213d18af4a;hpb=c8e036edc5d7a9fa0843e7c8dd4db7e9550db842;p=framework%2Fosp%2Fuix.git diff --git a/inc/FUixSensorMotion.h b/inc/FUixSensorMotion.h index 0ed2a9d..ebd4b5d 100644 --- a/inc/FUixSensorMotion.h +++ b/inc/FUixSensorMotion.h @@ -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 @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 Device Motions. * * 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 *