Init Tizen 2.2.1
[framework/osp/vision.git] / inc / FUixVisionQrCodeObject.h
index a0b4b96..f4b7702 100644 (file)
@@ -36,11 +36,11 @@ namespace Tizen { namespace Uix { namespace Vision
 
 /**
  * @class    QrCodeObject
- * @brief    This class represents a single QR code object recognized by %QrCodeRecognizer and provides the method to access information of the recognized QR code object.
+ * @brief    This class represents a single QR code object recognized by the %QrCodeRecognizer class and provides methods to access the information of a recognized QR code object.
  *
  * @since    2.1
  *
- * The %QrCodeObject class represents a single QR code object recognized by QrCodeRecognizer and provides the method to access information of the recognized QR code object.
+ * The %QrCodeObject class represents a single QR code object recognized by the QrCodeRecognizer class and provides methods to access the information of a recognized QR code object.
  */
 
 class _OSP_EXPORT_ QrCodeObject
@@ -50,72 +50,72 @@ class _OSP_EXPORT_ QrCodeObject
 public:
 
     /**
-     * Gets a unique identifier of the recognized QR code object in a scene.
+     * Gets the unique identifier of the recognized QR code object in the scene.
      *
      * @since        2.1
      *
-     * @return       A unique identifier of the recognized QR code object in a scene
+     * @return       The unique identifier of the recognized QR code object in the scene
      */
     int GetId(void) const;
 
     /**
-     * Gets a version of the recognized QR code object.
+     * Gets the version of the recognized QR code object.
      *
      * @since        2.1
      *
-     * @return       A version of the recognized QR code object
+     * @return       The version of the recognized QR code object
      */
     int GetVersion(void) const;
 
     /**
-     * Gets an error correction level of the recognized QR code object.
+     * Gets the error correction level of the recognized QR code object.
      *
      * @since        2.1
      *
-     * @return       An error correction level of the recognized QR code object
+     * @return       The error correction level of the recognized QR code object
      */
     Tizen::Uix::Vision::QrCodeErrorCorrectionLevel GetErrorCorrectionLevel(void) const;
 
     /**
-     * Gets a text of the QR code object.
+     * Gets the text of the QR code object.
      *
      * @since        2.1
      *
-     * @return       A text of the QR code object
+     * @return       The text of the QR code object
      */
     Tizen::Base::String GetText(void) const;
 
     /**
-     * Gets a transformation matrix 4x4 for 3D pose of the recognized QR code object.
+     * Gets the transformation matrix 4x4 for the 3D pose of the recognized QR code object.
      *
      * @since        2.1
      *
-     * @return       A pointer to transformation matrix 4x4 for object position
+     * @return       A pointer to the transformation matrix 4x4 that contains the object position
      */
     const Tizen::Graphics::FloatMatrix4* GetTransformMatrix(void) const;
 
     /**
-     * Gets a transformed quadrilateral of the recognized QR code object.
+     * Gets the transformed quadrilateral of the recognized QR code object.
      *
      * @since        2.1
      *
-     * @return       The array list of 4 points of the quadrilateral of the recognized QR code object
+     * @return       The array list that contains the 4 points of the quadrilateral of the recognized QR code object
      */
     const Tizen::Base::Collection::IListT<Tizen::Graphics::FloatPoint>* GetRectangle(void) const;
 
     /**
-     * Compares the calling instance with a specified instance.
+     * Compares the specified instance with the current instance.
      *
      * @since        2.1
      *
-     * @return       @c true if the specified instance of Tizen::Base::Object is equal to the calling %QrCodeObject instance, @n
+     * @return       @c true if the specified instance of Tizen::Base::Object is equal to the current %QrCodeObject instance, @n
      *               else @c false
      * @param[in]    obj                 The object to compare
      */
     virtual bool Equals(const Tizen::Base::Object& obj) const;
 
     /**
-     * Gets the hash value of a current instance.
+     * Gets the hash value of the current instance.
      *
      * @since     2.1
      *