Add IPC sync result for SerialPort::Write()
[platform/framework/native/appfw.git] / inc / FSysISettingEventListener.h
index 968bbf0..280494c 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);
@@ -33,7 +32,7 @@ namespace Tizen { namespace System
 
 /**
  * @interface  ISettingEventListener
- * @brief      This interface is the listener of the setting event.
+ * @brief              This interface is the listener of the setting event.
  *
  * @since 2.0
  *
@@ -45,18 +44,21 @@ class _OSP_EXPORT_ ISettingEventListener
 {
 public:
        /**
-        * This is the destructor for this class. This polymorphic destructor should be overridden if required. This way, the destructors of the derived classes are called when the destructor of this interface is called.
+        * This is the destructor for this class. @n
+        * This polymorphic destructor should be overridden if required. @n This way, 
+        * the destructors of the derived classes are called when the destructor of this interface is called.
         *
-        * @since 2.0
+        * @since       2.0
         */
        virtual ~ISettingEventListener(void) {}
        /**
-        * Called when a certain setting value has been changed.
+        * Called when a setting value has been changed.
         *
         * @since       2.0
         *
-        * @param[in]   key     The key name of the changed setting information
-        * @remarks Invokes one of the overloaded getter methods of Tizen::System::SettingInfo to get the changed value corresponding to the given key.
+        * @param[in]   key             The key name of the changed setting information
+        * @remarks     Invokes one of the overloaded getter methods of Tizen::System::SettingInfo to get the changed value 
+        *                              corresponding to the given key.
         */
        virtual void OnSettingChanged(Tizen::Base::String& key) = 0;