Update doxygen
[framework/osp/web.git] / inc / FWebCtrlIJavaScriptBridge.h
index 2ac521f..1acd071 100755 (executable)
@@ -20,9 +20,6 @@
  * @brief              This is the header file for the %IJavaScriptBridge interface.
  *
  * This header file contains the declarations of the %IJavaScriptBridge interface.
- * @n
- * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/web/controls_namespace.htm">Web Controls Guide</a>.
- *
  */
 #ifndef _FWEB_CTRL_IJAVA_SCRIPT_BRIDGE_H_
 #define _FWEB_CTRL_IJAVA_SCRIPT_BRIDGE_H_
@@ -43,7 +40,10 @@ namespace Tizen { namespace Web { namespace Controls
  *
  * @since              2.0
  *
- * The %IJavaScriptBridge interface provides a communication channel between JavaScript and C++ object.
+ * The %IJavaScriptBridge interface provides a communication channel between JavaScript and native object.
+ *
+ * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/web/controls_namespace.htm">Web Controls Guide</a>.
+ *
  */
 class _OSP_EXPORT_ IJavaScriptBridge
 {
@@ -51,16 +51,16 @@ public:
        /**
        * 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.
        *
-       * @since                2.0
+       * @since                        2.0
        */
        virtual ~IJavaScriptBridge(void) {}
 
        /**
         * Called asynchronously on invocation request from JavaScript side through the requestToNative() method.
         *
-        * @since               2.0
+        * @since                       2.0
         *
-        * @param[in]   pArg            The parameters delivered by JavaScript
+        * @param[in] pArg      The parameters delivered by JavaScript
         */
        virtual void HandleJavaScriptRequestN(Tizen::Web::Json::IJsonValue* pArg) = 0;
 
@@ -69,7 +69,7 @@ public:
         *
         * @since               2.0
         *
-        * @return              The name of %IJavaScriptBridge
+        * @return      The name of %IJavaScriptBridge
         */
        virtual Tizen::Base::String GetName(void) = 0;