update doc. 87/91387/3
authorHermet Park <hermet@hermet.pe.kr>
Fri, 7 Oct 2016 08:02:08 +0000 (17:02 +0900)
committerHermet Park <hermet@hermet.pe.kr>
Fri, 7 Oct 2016 08:05:35 +0000 (17:05 +0900)
add api parameter in/out syntax.

Change-Id: I407cad6307aeb599331b1278d070aff7cebcd783

16 files changed:
src/include/efl/UiBaseKeyListener.h
src/include/efl/UiBaseOverlay.h
src/include/efl/UiBaseView.h
src/include/efl/UiBaseViewmgr.h
src/include/efl/mobile/UiApp.h
src/include/efl/mobile/UiKeyListener.h
src/include/efl/mobile/UiMenu.h
src/include/efl/mobile/UiPopup.h
src/include/efl/mobile/UiStandardView.h
src/include/efl/mobile/UiView.h
src/include/efl/mobile/UiViewmgr.h
src/include/interface/UiIfaceApp.h
src/include/interface/UiIfaceOverlay.h
src/include/interface/UiIfaceRotatable.h
src/include/interface/UiIfaceView.h
src/include/interface/UiIfaceViewmgr.h

index 097b91827df60d56ce4591dd1da86041329d00de..8978df8968ecc2984e4d9e1a30f105e8e9756909 100644 (file)
@@ -74,6 +74,9 @@ protected:
        /**
         *  @brief Check the menu key event occurs or not.
         *
+        *  @param[in] view event view.
+        *  @param[in] ev event information.
+        *
         *  @note This is checking H/W key is menu or not.
         */
        virtual void extendEventProc(UiBaseView *view, Evas_Event_Key_Down *ev) {}
index 125e98526935ac3860aecb19a35cd6705ab39dfb..0cc2ceb68d202b55d54e66ce67ef022936a6bfe0 100644 (file)
@@ -38,7 +38,7 @@ protected:
        /**
         *  @brief This is a constructor for initializing overlay.
         *
-        *  @param view The instance of UiBaseView.
+        *  @param[in] view The instance of UiBaseView.
         */
        explicit UiBaseOverlay(UiBaseView *view);
 
index e1317e5f84cebea31eb8cdd632497b5cd67ba782..90f4d13255f05ebb53b6a4180dab0672d4ab4fb4 100644 (file)
@@ -34,7 +34,7 @@ public:
        /**
         *  @brief This is a constructor for initializing this view resources.
         *
-        *  @param name view name.
+        *  @param[in] name view name.
         */
        explicit UiBaseView(const char *name = nullptr);
 
@@ -44,7 +44,7 @@ public:
        /**
         *  @brief This is for replacing or setting a content of the view.
         *
-        *  @param content a new content. It allows @c nullptr for canceling the previous content.
+        *  @param[in] content a new content. It allows @c nullptr for canceling the previous content.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -70,7 +70,10 @@ public:
        /**
         *  @brief Set the indicator mode.
         *
+        *  @param[in] indicator indicator mode.
+        *
         *  @return @c 0 on success, otherwise a negative error value.
+        *
         *  @retval #TIZEN_ERROR_NONE Successful
         *  @retval #TIZEN_ERROR_INVALID_PARAMETER @a indicator is not valid.
         *  @retval #TIZEN_ERROR_NOT_PERMITTED Current view manager system is not set up.
@@ -83,8 +86,8 @@ public:
         *  @note Set an array of rotation values.
         *        For instance, {0, 90, 180, 270}. These rotation values depends on the system support.
         *
-        *  @param rotations The array of rotation values.
-        *  @param count The number of arrays of rotations.
+        *  @param[in] rotations The array of rotation values.
+        *  @param[in] count The number of arrays of rotations.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -116,7 +119,7 @@ protected:
         *
         *  @note It makes view content event freeze during effect showing.
         *
-        *  @param block @c true, when blocking is enabled, otherwise @c false.
+        *  @param[in] block @c true, when blocking is enabled, otherwise @c false.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -129,7 +132,7 @@ protected:
         *
         *  @note This state will be called when view rotation changed.
         *
-        *  @param degree The current degree of view.
+        *  @param[in] degree The current degree of view.
         *
         *  @see onPortrait()
         *  @see onLandscpae()
index f48bda90cd70e1477bb47b2855659a89e8c3d9a3..b9dcc8ef500e7b24605b088ef7c6bd5221371bdc 100644 (file)
@@ -75,7 +75,7 @@ public:
         *        view transition effect. If you want push view instantly without any transition, you could use insert_view_before() or insert_view_after().
         *        If you want to pop the current view, the please use pop_view().
         *
-        *  @param view A view to insert in the viewmgr view list.
+        *  @param[in] view A view to insert in the viewmgr view list.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_INVALID_PARAMETER @a view is not valid.
@@ -109,8 +109,8 @@ public:
        /**
         *  @brief Insert a view in this viewmgr view list. Specifically, insert a given @a view right before of the given view, @before.
         *
-        *  @param view A view to insert in the viewmgr view list.
-        *  @param before A view that will be just inserted after @a view. If you pass @c nullptr, @a view will be inserted at the front of the view list.
+        *  @param[in] view A view to insert in the viewmgr view list.
+        *  @param[in] before A view that will be just inserted after @a view. If you pass @c nullptr, @a view will be inserted at the front of the view list.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -122,8 +122,8 @@ public:
        /**
         *  @brief Insert a view in this viewmgr view list. Specifically, insert a given @a view right after of the given view, @after.
         *
-        *  @param view A view to insert in the viewmgr view list.
-        *  @param after A view that will be just inserted before the @a view. If you pass @c nullptr, @a view will be inserted at the end of the view list.
+        *  @param[in] view A view to insert in the viewmgr view list.
+        *  @param[in] after A view that will be just inserted before the @a view. If you pass @c nullptr, @a view will be inserted at the end of the view list.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -150,7 +150,7 @@ public:
        /**
         *  @brief Return a view which is matched with the index @a idx.
         *
-        *  @param idx A index of the view which you are looking for.
+        *  @param[in] idx A index of the view which you are looking for.
         *
         *  @return The view which index is matched with @a idx.
         *          If there were no views with index @a idx, @c nullptr will be returned.
@@ -168,7 +168,7 @@ public:
         *
         *  @note Every view have their names as their own identifiers.
         *
-        *  @param name The name of the view which you are looking for.
+        *  @param[in] name The name of the view which you are looking for.
         *
         *  @return The view which name is matched with @a name.
         *          If there were no views name matched, @c nullptr will be returned.
@@ -190,22 +190,22 @@ protected:
        /**
         *  @brief Set indicator of the view.
         *
-        *  @param indicator The mode to set, one of #UiViewIndicator.
+        *  @param[in] indicator The mode to set, one of #UiViewIndicator.
         */
        void setIndicator(UiViewIndicator indicator);
 
        /**
         *  @brief This is a constructor for initializing viewmgr.
         *
-        *  @param pkg The name of package.
-        *  @param key_listener The instance of UiBaseKeyListener.
+        *  @param[in] pkg The name of package.
+        *  @param[in] key_listener The instance of UiBaseKeyListener.
         */
        UiBaseViewmgr(const char *pkg, UiBaseKeyListener *keyListener);
 
        /**
         *  @brief This is a constructor for initializing viewmgr.
         *
-        *  @param pkg The name of package.
+        *  @param[in] pkg The name of package.
         */
        explicit UiBaseViewmgr(const char *pkg);
 
index 0901ff85b742479c932e5b93c394324d52c7c4d9..dfffd92b22f77b5a95dec9670cc6c60d8613c6c4 100644 (file)
@@ -39,8 +39,8 @@ public:
        /**
         *  @brief This is a constructor for initializing UiApp.
         *
-        *  @param pkg The name of package.
-        *  @param loale_dir The path of locale directory.
+        *  @param[in] pkg The name of package.
+        *  @param[in] loale_dir The path of locale directory.
         */
        UiApp(const char *pkg, const char *locale_dir);
 
index e1e046e13d84d4174c5f6778b1862489d9500f1f..c57bb27a6aa072accbd47a7e136c086187ba5163 100644 (file)
@@ -35,7 +35,7 @@ public:
        /**
         *  @brief This is a constructor for initializing this UiKeyListener.
         *
-        *  @param The instance of UiViewmgr.
+        *  @param[in] The instance of UiViewmgr.
         */
        explicit UiKeyListener(UiViewmgr *viewmgr);
 
@@ -54,6 +54,9 @@ public:
        /**
         *  @brief Check the menu key event occurs or not.
         *
+        *  @param[in] view event view.
+        *  @param[in] ev event information.
+        *
         *  @note This is checking H/W key is menu or not.
         */
        virtual void extendEventProc(UiBaseView *view, Evas_Event_Key_Down *ev) override;
index 1039e2c5ad7acd68a7a9ee7390133eeb31266f5f..c2b3e61804b526001a27c849a6259e8f5348cf7f 100644 (file)
@@ -65,7 +65,7 @@ public:
        /**
         *  @brief This is for replacing or setting a content of the menu.
         *
-        *  @param ctxpopup ctxpopup object. It allows @c nullptr for canceling the previous content.
+        *  @param[in] ctxpopup ctxpopup object. It allows @c nullptr for canceling the previous content.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -109,7 +109,7 @@ protected:
        /**
         *  @brief This is a constructor for initializing this menu.
         *
-        *  @param The instance of UiView.
+        *  @param[in] The instance of UiView.
         */
        explicit UiMenu(UiView *view);
 
index 3d7ef4f18c969de0311d16052c9168c7f8ee846f..2f51dcb37d5e43822666523dc0b206c169687f3d 100644 (file)
@@ -41,7 +41,7 @@ public:
        /**
         *  @brief This is a constructor for initializing this popup.
         *
-        *  @param The instance of UiView.
+        *  @param[in] The instance of UiView.
         */
        explicit UiPopup(UiView *view);
 
@@ -77,7 +77,7 @@ public:
        /**
         *  @brief This is for replacing or setting a content of the popup.
         *
-        *  @param popup popup object. It allows @c nullptr for canceling the previous content.
+        *  @param[in] popup popup object. It allows @c nullptr for canceling the previous content.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
index a49e1ea5b89a3df0e568f7ea8b565eed2e81196b..b51c4a8e0412ba9d2f06640f7ed66606e48aae7c 100644 (file)
@@ -39,7 +39,7 @@ public:
        /**
         *  @brief A constructor for an UiStandardView.
         *
-        *  @param name view name.
+        *  @param[in] name view name.
         */
        explicit UiStandardView(const char *name = nullptr);
 
@@ -49,8 +49,8 @@ public:
        /**
         *  @brief Replace or set a content of the view.
         *
-        *  @param content a new content. It allows @c nullptr for canceling the previous content.
-        *  @param title  title_label The label in the title area. The name of the title label part is "elm.text.title"
+        *  @param[in] content a new content. It allows @c nullptr for canceling the previous content.
+        *  @param[in] title  title_label The label in the title area. The name of the title label part is "elm.text.title"
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -61,7 +61,7 @@ public:
        /**
         *  @brief Set a title badge text.
         *
-        *  @param text The label in the title badge area.
+        *  @param[in] text The label in the title badge area.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -72,7 +72,7 @@ public:
        /**
         *  @brief Set a subtitle text.
         *
-        *  @param text The label in the subtitle area.
+        *  @param[in] text The label in the subtitle area.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -83,7 +83,7 @@ public:
        /**
         *  @brief Set a title_left_btn.
         *
-        *  @param title_left_btn The button in the left part of title area.
+        *  @param[in] title_left_btn The button in the left part of title area.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -94,7 +94,7 @@ public:
        /**
         *  @brief Set a title_right_btn.
         *
-        *  @param title_right_btn The button in the right part of title area.
+        *  @param[in] title_right_btn The button in the right part of title area.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -105,7 +105,7 @@ public:
        /**
         *  @brief Set a title text.
         *
-        *  @param text The label in the title area.
+        *  @param[in] text The label in the title area.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -116,7 +116,7 @@ public:
        /**
         *  @brief Set a toolbar below title.
         *
-        *  @param toolbar Toolbar object.
+        *  @param[in] toolbar Toolbar object.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -127,8 +127,8 @@ public:
        /**
         *  @brief Control the title visible state.
         *
-        *  @param visible title state set as visible if the given param is @c true, otherwise title area set as invisible.
-        *  @param anim title area will be shown with animation if the given param is @c true, otherwise title area will be shown without animation.
+        *  @param[in] visible title state set as visible if the given param is @c true, otherwise title area set as invisible.
+        *  @param[in] anim title area will be shown with animation if the given param is @c true, otherwise title area will be shown without animation.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -213,7 +213,10 @@ protected:
         *  @note This interface is designed for toggling touch event on view transition.
         *        UiIfaceViewmgr will call this interface for notifying event blocking toggling on transition time.
         *
+        *  @param[in] block block status.
+        *
         *  @return @c 0 on success, otherwise a negative error value.
+        *
         *  @retval #TIZEN_ERROR_NONE Successful
         *  @retval #TIZEN_ERROR_NOT_SUPPORTED The system doesn't support event blocking feature.
         */
index a482515442de6c85dac2bf58c132455ba2a9209b..e5649a71d1fc332556e25b5f47e63847d06300c5 100644 (file)
@@ -39,7 +39,7 @@ public:
        /**
         *  @brief This is a constructor for initializing this view resources.
         *
-        *  @param name view name.
+        *  @param[in] name view name.
         *
         *  @warning if you don't set a view name, you could not look up the view with its name. @see ui_viewmgr_view_get_by_name()
         */
@@ -83,7 +83,7 @@ protected:
        /**
         *  @brief The H/W menu key event occurs on view.
         *
-        *  @param menu menu instance, This is made by key listener when menu key occured.
+        *  @param[in] menu menu instance, This is made by key listener when menu key occured.
         */
        virtual void onMenu(UiMenu *menu);
 
@@ -100,7 +100,7 @@ protected:
         *
         *  @note This state will be called when view rotation changed.
         *
-        *  @param degree Current view's degree.
+        *  @param[in] degree Current view's degree.
         *
         *  @see onPortrait()
         *  @see onLandscpae()
@@ -138,14 +138,14 @@ private:
        /**
         *  @brief Push given popup instance in the internal popup stack.
         *
-        *  @param popup UiPopup instance
+        *  @param[in] popup UiPopup instance
         */
        void _connectPopup(UiPopup *popup);
 
        /**
         *  @brief pop given popup instance in the internal popup stack.
         *
-        *  @param popup UiPopup instance
+        *  @param[in] popup UiPopup instance
         */
        void _disconnectPopup(UiPopup *popup);
 
index 7d6cea67dee1c33ba5257a34c8976ec0cfd2dc99..0d15ae48682f0ea6faefa06e36f23161bffdcd59 100644 (file)
@@ -39,7 +39,7 @@ protected:
        /**
         *  @brief This is a constructor for initializing viewmgr.
         *
-        *  @param pkg The name of package.
+        *  @param[in] pkg The name of package.
         */
        explicit UiViewmgr(const char *pkg);
 
index 8df2654160a2bc6368811907e166ab2689ec8aa9..1b8aa5c11806cffa1534f1075b9d6e06b21e74d4 100644 (file)
@@ -38,9 +38,9 @@ public:
        /**
         *  @brief This is a constructor for initializing UiIfaceApp.
         *
-        *  @param pkg The name of package.
-        *  @param loale_dir The path of locale directory.
-        *  @param viewmgr instance of ui_viewmgr.
+        *  @param[in] pkg The name of package.
+        *  @param[in] loale_dir The path of locale directory.
+        *  @param[in] viewmgr instance of ui_viewmgr.
         */
        UiIfaceApp(const char *pkg, const char *locale_dir, UiIfaceViewmgr *viewmgr);
 
@@ -70,6 +70,9 @@ public:
         *        APP_EVENT_DEVICE_ORIENTATION_CHANGED, APP_EVENT_LANGUAGE_CHANGED, APP_EVENT_REGION_FORMAT_CHANGED.
         *        Application can add those events using wrapping functions by viewmgr supported.
         *
+        *  @param[in] argc process argument count
+        *  @param[in] argv process argument list
+        *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
         *  @retval #TIZEN_ERROR_INVALID_PARAMETER Invalid parameter
@@ -109,42 +112,42 @@ protected:
        /**
         *  @brief Calling when gets a launch request event.
         *
-        *  @param app_control_h The instance of app_control_h.
+        *  @param[in] app_control_h The instance of app_control_h.
         */
        virtual void onControl(app_control_h app_control);
 
        /**
         *  @brief Calling when device low battery.
         *
-        *  @param app_event_info_h The instance of app_event_info_h.
+        *  @param[in] app_event_info_h The instance of app_event_info_h.
         */
        virtual void onLowBattery(app_event_info_h event_info);
 
        /**
         *  @brief Calling when device low memory.
         *
-        *  @param app_event_info_h The instance of app_event_info_h.
+        *  @param[in] app_event_info_h The instance of app_event_info_h.
         */
        virtual void onLowMemory(app_event_info_h event_info);
 
        /**
         *  @brief Calling when device region changed.
         *
-        *  @param app_event_info_h The instance of app_event_info_h.
+        *  @param[in] app_event_info_h The instance of app_event_info_h.
         */
        virtual void onRegionChanged(app_event_info_h event_info);
 
        /**
         *  @brief Calling when device orient changed.
         *
-        *  @param app_event_info_h The instance of app_event_info_h.
+        *  @param[in] app_event_info_h The instance of app_event_info_h.
         */
        virtual void onOrientChanged(app_event_info_h event_info);
 
        /**
         *  @brief Calling when language changed.
         *
-        *  @param app_event_info_h The instance of app_event_info_h.
+        *  @param[in] app_event_info_h The instance of app_event_info_h.
         */
        virtual void onLangChanged(app_event_info_h event_info);
 
index 868db265501041effcf95b567e4b899c6b19df28..15636826aab13e05f5f597c5b56618d208aa9d59 100644 (file)
@@ -41,7 +41,7 @@ public:
         *  @note @a content is a logical object that represents a view in your framework. The actual type of the content could be translated to any certain types.
         *        For instance, the type could be Eo * in EFL and Layer * in Dali.
         *
-        *  @param content a new content. It allows @c nullptr for canceling the previous content.
+        *  @param[in] content a new content. It allows @c nullptr for canceling the previous content.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -113,7 +113,7 @@ protected:
        /**
         *  @brief This is a constructor for initializing overlay.
         *
-        *  @param view The instance of UiIfaceView.
+        *  @param[in] view The instance of UiIfaceView.
         */
        explicit UiIfaceOverlay(UiIfaceView *view);
 
index eefc5cb1c3d1f8da4041463d6f25c6471f2afc0c..5130a57315701e7ce20fdd61c0d9fb7df7ce97ef 100644 (file)
@@ -72,7 +72,7 @@ protected:
         *
         *  @note This state will be called when view rotation changed.
         *
-        *  @param degree Current view's degree.
+        *  @param[in] degree Current view's degree.
         *
         *  @see on_portrait()
         *  @see on_landscpae()
index 755c00f0ad5c3c82a9cf572eaf1c90faf0ac175c..d6d3e2614092921be7501827e48707a3a10e8b69 100644 (file)
@@ -43,7 +43,7 @@ public:
        /**
         *  @brief This is a constructor for initializing this view resources.
         *
-        *  @param name view name.
+        *  @param[in] name view name.
         *
         *  @warning if you don't set a view name, you could not look up the view with its name. @see ui_viewmgr_view_get_by_name()
         */
@@ -59,7 +59,7 @@ public:
         *        The actual behaviors with this transition style is up to your frameworks. Default value of the style is nullptr.
         *        and "none" represents none transition. If you don't like give any transition effects to this view, you can pass "none" as @a style.
         *
-        *  @param style a transition style name. A default value is "default"
+        *  @param[in] style a transition style name. A default value is "default"
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -73,7 +73,7 @@ public:
        /**
         *  @brief Set content removable.
         *
-        *  @param removable if @a removable is @c true, content of this view will be removed on unload state. @c false otherwise.
+        *  @param[in] removable if @a removable is @c true, content of this view will be removed on unload state. @c false otherwise.
         *
         *  @warning You should not remove a view content manually on unload status if removable content is set.
         */
@@ -82,7 +82,7 @@ public:
        /**
         *  @brief Set the indicator mode of the view.
         *
-        *  @param indicator The mode to set, one of #UiViewIndicator.
+        *  @param[in] indicator The mode to set, one of #UiViewIndicator.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -98,8 +98,8 @@ public:
         *  @note Set an array of rotation values.
         *        For instance, {0, 90, 180, 270}. These rotation values depends on the system support.
         *
-        *  @param rotations The array of rotation values.
-        *  @param count The number of arrays of rotations.
+        *  @param[in] rotations The array of rotation values.
+        *  @param[in] count The number of arrays of rotations.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -113,7 +113,7 @@ public:
        /**
         *  @brief Get the array of view's available rotations.
         *
-        *  @param count The number of arrays of rotations.
+        *  @param[out] count The number of arrays of rotations.
         *
         *  @return The array of rotation values.
         *
@@ -148,7 +148,7 @@ public:
         *  @note @a content is a logical object that represents a view in your framework. The actual type of the content could be translated to any certain types.
         *        For instance, the type could be Eo * in EFL and Layer * in Dali.
         *
-        *  @param content a new content. It allows @c nullptr for canceling the previous content.
+        *  @param[in] content a new content. It allows @c nullptr for canceling the previous content.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -198,7 +198,7 @@ protected:
         *  @note This interface is designed for toggling touch event on view transition.
         *        UiIfaceViewmgr will call this interface for notifying event blocking toggling on transition time.
         *
-        *  @param block @c true, when blocking is enabled, otherwise @c false.
+        *  @param[in] block @c true, when blocking is enabled, otherwise @c false.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -298,6 +298,8 @@ protected:
        /**
         *  @brief Region Changed Event
         *
+        *  @param[in] region region name
+        *
         *  @note This event function is responsible for refreshing the display into the new time zone.
         */
        virtual void onRegionChanged(const char *region);
@@ -305,6 +307,8 @@ protected:
        /**
         *  @brief Language Changed Event
         *
+        *  @param[in] language language name
+        *
         *  @note This event function is responsible for refreshing the display into the new language.
         */
        virtual void onLanguageChanged(const char *language);
@@ -313,7 +317,7 @@ private:
        /**
         *  @brief Connect with given viewmgr.
         *
-        *  @param viewmgr The instance of viewmgr.
+        *  @param[in] viewmgr The instance of viewmgr.
         *
         *  @see _getViewmgr()
         */
index f33bcd0b1828a10c6bbdba86d4e2e73fff4ccdc9..bd410654533067868ee869d4a4b2df423c5d4161 100644 (file)
@@ -85,7 +85,7 @@ public:
         *  @brief Return a view index(page) number of the given view.
         *         You could use this function to query the given @a view list order.
         *
-        *  @param view A view to query the index.
+        *  @param[in] view A view to query the index.
         *
         *  @return An index of the given @a view on success, otherwise, -1.
         *
@@ -116,7 +116,7 @@ protected:
        /**
         *  @brief This function is designed for finishing process of push transition.
         *
-        *  @param view A view which is finished pushing.
+        *  @param[in] view A view which is finished pushing.
         *
         *  @warning This function must be called when push transition is finished.
         */
@@ -127,7 +127,7 @@ protected:
         *
         *  @note If a new view is pushed.
         *
-        *  @param view A view which is finished popping.
+        *  @param[in] view A view which is finished popping.
         *
         *  @warning This function must be called when push transition is finished.
         */
@@ -142,7 +142,7 @@ protected:
         *        or use the view transition style function.
         *        If you want to pop the current view, the please use pop_view().
         *
-        *  @param view A view to insert at the end of viewmgr view list.
+        *  @param[in] view A view to insert at the end of viewmgr view list.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_INVALID_PARAMETER @a view is not valid.
@@ -177,8 +177,8 @@ protected:
        /**
         *  @brief Insert a view in this viewmgr view list. Specifically, insert a given @a view right before of the given view, @before.
         *
-        *  @param view A view to insert in the viewmgr view list.
-        *  @param before A view that will be just inserted after @a view. If you pass @c nullptr, @a view will be inserted at the front of the view list.
+        *  @param[in] view A view to insert in the viewmgr view list.
+        *  @param[in] before A view that will be just inserted after @a view. If you pass @c nullptr, @a view will be inserted at the front of the view list.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -190,8 +190,8 @@ protected:
        /**
         *  @brief Insert a view in this viewmgr view list. Specifically, insert a given @a view right after of the given view, @after.
         *
-        *  @param view A view to insert in the viewmgr view list.
-        *  @param after A view that will be just inserted before the @a view. If you pass @c nullptr, @a view will be inserted at the end of the view list.
+        *  @param[in] view A view to insert in the viewmgr view list.
+        *  @param[in] after A view that will be just inserted before the @a view. If you pass @c nullptr, @a view will be inserted at the end of the view list.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -203,7 +203,7 @@ protected:
        /**
         *  @brief Remove the given view from this viewmgr view list.
         *
-        *  @param view A view to remove from the viewmgr view list.
+        *  @param[in] view A view to remove from the viewmgr view list.
         *
         *  @return @c 0 on success, otherwise a negative error value.
         *  @retval #TIZEN_ERROR_NONE Successful
@@ -218,7 +218,7 @@ protected:
        /**
         *  @brief Return a view which is matched with the index @a idx.
         *
-        *  @param idx A index of the view which you are looking for.
+        *  @param[in] idx A index of the view which you are looking for.
         *
         *  @return The view which index is matched with @a idx.
         *          If there were no views with index @a idx, @c nullptr will be returned.
@@ -236,7 +236,7 @@ protected:
         *
         *  @note Every view have their names as their own identifiers.
         *
-        *  @param name The name of the view which you are looking for.
+        *  @param[in] name The name of the view which you are looking for.
         *
         *  @return The view which name is matched with @a name.
         *          If there were no views name matched, @c nullptr will be returned.