Fix description of component_state_e 89/213389/1
authorHwankyu Jhun <h.jhun@samsung.com>
Thu, 5 Sep 2019 00:50:54 +0000 (09:50 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Thu, 5 Sep 2019 00:51:38 +0000 (09:51 +0900)
Change-Id: I93c8fde92dba8579338b46f25557b33211fe637e
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
include/component_context.h

index 145599e..7f65631 100644 (file)
@@ -46,12 +46,12 @@ typedef void *component_context_h;
  * @since_tizen 5.5
  */
 typedef enum {
-       COMPONENT_STATE_INITIALIZED,    /**< The initialized state. This is the state when the component is constructed but the create callback is not called yet */
-       COMPONENT_STATE_CREATED,        /**< The created state. This state is reached after the create callback is called.  */
-       COMPONENT_STATE_STARTED,        /**< The started state. This state is reached after the start callback is called. */
-       COMPONENT_STATE_RESUMED,        /**< The resumed state. This state is reached after the resume callback is called. */
-       COMPONENT_STATE_PAUSED,         /**< The paused state. This state is reached after the pause callback is called. */
-       COMPONENT_STATE_DESTROYED,      /**< The destroyed state. This state is reached right before the destroy callback call. */
+       COMPONENT_STATE_INITIALIZED,    /**< The initialized state. The state that the component is constructed but the callback for creating a component is not called yet. */
+       COMPONENT_STATE_CREATED,        /**< The created state. This state that the creating callback is called.  */
+       COMPONENT_STATE_STARTED,        /**< The started state. This state that the starting callback is called. */
+       COMPONENT_STATE_RESUMED,        /**< The resumed state. This state that the resuming callback is called. */
+       COMPONENT_STATE_PAUSED,         /**< The paused state. This state that the pausing callback is called. */
+       COMPONENT_STATE_DESTROYED,      /**< The destroyed state. This state that right before the destroying callback is called. */
 } component_state_e;
 
 /**