Apply string localization for web
[platform/framework/native/appfw.git] / inc / FLclTimeRule.h
index f51c020..8002ff3 100644 (file)
@@ -1,5 +1,4 @@
 //
-// Open Service Platform
 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
 //
 // Licensed under the Apache License, Version 2.0 (the License);
@@ -32,7 +31,7 @@ namespace Tizen { namespace Locales
 
 /**
  * @class              TimeRule
- * @brief              This class is for setting and getting the time rule.
+ * @brief              This class provides methods for setting and getting the time rule.
  *
  * @since              2.0
  *
@@ -154,7 +153,7 @@ public:
         * @param[in]           day                                     The day
         * @param[in]           hour                            The hour
         * @param[in]           minute                          The minute
-        * @param[in]           timeMode                        The time mode - TIME_MODE_UTC, TIME_MODE_STANDARD, or TIME_MODE_WALL
+        * @param[in]           timeMode                        The time mode - @c TIME_MODE_UTC, @c TIME_MODE_STANDARD, or @c TIME_MODE_WALL
         */
        TimeRule(Month month, int day, int hour = 0, int minute = 0, Tizen::System::TimeMode timeMode = Tizen::System::TIME_MODE_WALL);
 
@@ -169,7 +168,7 @@ public:
         * @param[in]           dayOfWeek                       The day of the week
         * @param[in]           hour                            The hour
         * @param[in]           minute                          The minute
-        * @param[in]           timeMode                        The time mode - TIME_MODE_UTC, TIME_MODE_STANDARD, or TIME_MODE_WALL
+        * @param[in]           timeMode                        The time mode - @c TIME_MODE_UTC, @c TIME_MODE_STANDARD, or @c TIME_MODE_WALL
         */
        TimeRule(Month month, Week week, DayOfWeek dayOfWeek,
                int hour = 0, int minute = 0, Tizen::System::TimeMode timeMode = Tizen::System::TIME_MODE_WALL);
@@ -189,7 +188,7 @@ public:
         *                                        @b on @b or @b before @c day
         * @param[in]           hour                            The hour
         * @param[in]           minute                          The minute
-        * @param[in]           timeMode                        The time mode - TIME_MODE_UTC, TIME_MODE_STANDARD, or TIME_MODE_WALL
+        * @param[in]           timeMode                        The time mode - @c TIME_MODE_UTC, @c TIME_MODE_STANDARD, or @c TIME_MODE_WALL
         */
        TimeRule(Month month, int day, DayOfWeek dayOfWeek,
                bool onOrAfterDay, int hour = 0, int minute = 0, Tizen::System::TimeMode timeMode = Tizen::System::TIME_MODE_WALL);
@@ -275,8 +274,8 @@ public:
         * @since                       2.0
         *
         * @return                      @c true if the value of the specified instance is equal to that of the current instance, @n
-        *                                        else @c false
-        * @param[in]           obj The object to compare with the current instance
+        *                                      else @c false
+        * @param[in]           obj             The object to compare with the current instance
         */
        virtual bool Equals(const Tizen::Base::Object& obj) const;
 
@@ -298,13 +297,13 @@ private:
         * @param[in]           day                                             The day
         * @param[in]           week                                    The week
         * @param[in]           dayOfWeek                               The day of week
-        * @param[in]           beforeAfter                             If @c after is ON_OR_AFTER_DAY, this rule selects the first @c dayOfWeek
+        * @param[in]           beforeAfter                             If @c after is @c ON_OR_AFTER_DAY, this rule selects the first @c dayOfWeek
         *                                                                                      @b on @b or @b after @c day.
-        *                                                                                      If @c after is ON_OR_BEFORE_DAY, this rule selects the last @c dayOfWeek
+        *                                                                                      If @c after is @c ON_OR_BEFORE_DAY, this rule selects the last @c dayOfWeek
         *                                                                                      @b on @b or @b before @c day.
         * @param[in]           hour                                    The hour
         * @param[in]           minute                                  The minute
-        * @param[in]           timeMode                                The time mode - TIME_MODE_UTC, TIME_MODE_STANDARD, TIME_MODE_WALL
+        * @param[in]           timeMode                                The time mode - @c TIME_MODE_UTC, @c TIME_MODE_STANDARD, @c TIME_MODE_WALL
         */
        void SetValue(Month month, int day, Week week,
                DayOfWeek dayOfWeek, bool onOrAfterDay, int hour,