Update doc 46/213446/1
authorHwankyu Jhun <h.jhun@samsung.com>
Thu, 5 Sep 2019 09:36:57 +0000 (18:36 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Thu, 5 Sep 2019 09:37:18 +0000 (18:37 +0900)
Change-Id: I9e15b115e567749d8ccaa57136d6a911260c3461
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
doc/appfw_component_manager_doc.h

index e05fb0a..a309e4a 100755 (executable)
  *   \#include <component_manager.h>
  *
  * @section CAPI_COMPONENT_MANAGER_MODULE_OVERVIEW Overview
- * The @ref CAPI_COMPONENT_MANAGER_MODULE API provides information about components. There are several different sorts of queries.
- * Two iterator functions step through a list of components. One is used in running components(component_manager_foreach_component_context()), and
- * the other is used in available ("installed") but not necessarily running components(component_manager_foreach_component_info()).
- * Each will call a callback function, passing the package name of each component found.
- * A query function will respond whether the component represented by a particular application name is running.
- * Other query functions return static information about a component, such as a name, a type, an icon path.
- * The API provides functions to manage components also. By using them, it is possible to resume(component_manager_resume_component()) components.
+ * The @ref CAPI_COMPONENT_MANAGER_MODULE API provides functions to retrieve components information and to manager components.
+ * There are two iterator functions that retrieve components. One is component_manager_foreach_component_context(), which gets the information of running components, the other is component_manager_foreach_component_info(), which gets the information of installed components.
+ * The registered callback function is called as much as components exist in the list. An application can get the component's properties such as a name, a type, an icon path in the callback function.
+ * Resuming components or terminating background components are also supported to handle components.
  */
 
 /**