Fix to adjust the position of the partial Frame
[platform/framework/native/uifw.git] / inc / FUiIDataBindingDataValidator.h
index 375d431..79593e1 100644 (file)
@@ -37,14 +37,14 @@ namespace Tizen { namespace Ui
 {
 
 /**
- * @interface     IDataBindingDataValidator
- * @brief           This interface defines methods for validating the value of transformed data that will be updated to the binding
- *                      target or source.
- *
- * @since 2.0
- *
- * The %IDataBindingDataValidator interface defines methods for validating the value of transformed data that will be updated to the binding.
- */
+* @interface     IDataBindingDataValidator
+* @brief            This interface defines methods for validating the value of transformed data that will be updated to the binding
+                      target or source.
+*
+* @since 2.0
+*
+* The %IDataBindingDataValidator interface defines methods for validating the value of transformed data that will be updated to the binding.
+*/
 class _OSP_EXPORT_ IDataBindingDataValidator
 {
 public:
@@ -56,25 +56,25 @@ public:
        virtual ~IDataBindingDataValidator(void) {};
 
        /**
-        * Validates the value of the transformed data that will be updated to the binding target.
-        *
-        * @since 2.0
-        * @return        @c true if the specified value is valid, @n
-        *                    else @c false
-        * @param[in]    bindingId            The binding Id to validate
-        * @param[in]    data     The data to validate
-        */
+       * Validates the value of the transformed data that will be updated to the binding target.
+       *
+       * @since 2.0
+       * @return        @c true if the specified value is valid, @n
+       *                    else @c false
+       * @param[in]    bindingId            The binding ID to validate
+       * @param[in]    data     The data to validate
+       */
        virtual bool ValidateDataToTarget(const Tizen::Base::String& bindingId, const Tizen::Base::Object& data) = 0;
 
        /**
-        * Validates the value of the transformed data that will be updated to the binding source.
-        *
-        * @since 2.0
-        * @return        @c true if the specified value is valid, @n
-        *                    else @c false
-        * @param[in]    bindingId            The binding Id to validate
-        * @param[in]    data     The data to validate
-        */
+       * Validates the value of the transformed data that will be updated to the binding source.
+       *
+       * @since 2.0
+       * @return        @c true if the specified value is valid, @n
+       *                    else @c false
+       * @param[in]    bindingId            The binding ID to validate
+       * @param[in]    data     The data to validate
+       */
        virtual bool ValidateDataToSource( const Tizen::Base::String& bindingId, const Tizen::Base::Object& data) = 0;
 
 protected: