Title: [90841] trunk/Source/WebCore
Revision
90841
Author
x...@webkit.org
Date
2011-07-12 12:41:24 -0700 (Tue, 12 Jul 2011)

Log Message

2011-07-12  Arno Renevier  <a...@renevier.net>

        [GTK] DOM bindings do not have gir annotations
        https://bugs.webkit.org/show_bug.cgi?id=45395

        Reviewed by Xan Lopez.

        * bindings/scripts/CodeGeneratorGObject.pm: generate introspection annotations.
        * bindings/scripts/test/GObject/WebKitDOMTestCallback.h: update for new output.
        * bindings/scripts/test/GObject/WebKitDOMTestObj.h: ditto.
        * bindings/scripts/test/GObject/WebKitDOMTestSerializedScriptValueInterface.h: ditto.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (90840 => 90841)


--- trunk/Source/WebCore/ChangeLog	2011-07-12 19:20:56 UTC (rev 90840)
+++ trunk/Source/WebCore/ChangeLog	2011-07-12 19:41:24 UTC (rev 90841)
@@ -1,3 +1,15 @@
+2011-07-12  Arno Renevier  <a...@renevier.net>
+
+        [GTK] DOM bindings do not have gir annotations
+        https://bugs.webkit.org/show_bug.cgi?id=45395
+
+        Reviewed by Xan Lopez.
+
+        * bindings/scripts/CodeGeneratorGObject.pm: generate introspection annotations.
+        * bindings/scripts/test/GObject/WebKitDOMTestCallback.h: update for new output.
+        * bindings/scripts/test/GObject/WebKitDOMTestObj.h: ditto.
+        * bindings/scripts/test/GObject/WebKitDOMTestSerializedScriptValueInterface.h: ditto.
+
 2011-07-12  Chris Rogers  <crog...@google.com>
 
         webkitAudioContext does not do proper sanity checking on its arguments.

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm (90840 => 90841)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm	2011-07-12 19:20:56 UTC (rev 90840)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm	2011-07-12 19:41:24 UTC (rev 90841)
@@ -784,6 +784,30 @@
         $functionSig .= ", GError **error";
     }
 
+    # Insert introspection annotations
+    push(@hBody, "/**\n");
+    push(@hBody, " * ${functionName}:\n");
+    push(@hBody, " * \@self: A #${className}\n");
+
+    foreach my $param (@{$function->parameters}) {
+        my $paramType = GetGlibTypeName($param->type);
+        # $paramType can have a trailing * in some cases
+        $paramType =~ s/\*$//;
+        my $paramName = decamelize($param->name);
+        push(@hBody, " * \@${paramName}: A #${paramType}\n");
+    }
+    if(@{$function->raisesExceptions}) {
+        push(@hBody, " * \@error: #GError\n");
+    }
+    push(@hBody, " *\n");
+    if (IsGDOMClassType($function->signature->type)) {
+        push(@hBody, " * Returns: (transfer none):\n");
+    } else {
+        push(@hBody, " * Returns:\n");
+    }
+    push(@hBody, " *\n");
+    push(@hBody, "**/\n");
+
     push(@hBody, "WEBKIT_API $returnType\n$functionName($functionSig);\n");
     push(@hBody, "\n");
 

Modified: trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestCallback.h (90840 => 90841)


--- trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestCallback.h	2011-07-12 19:20:56 UTC (rev 90840)
+++ trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestCallback.h	2011-07-12 19:41:24 UTC (rev 90841)
@@ -46,18 +46,58 @@
 WEBKIT_API GType
 webkit_dom_test_callback_get_type (void);
 
+/**
+ * webkit_dom_test_callback_callback_with_no_param:
+ * @self: A #WebKitDOMTestCallback
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gboolean
 webkit_dom_test_callback_callback_with_no_param(WebKitDOMTestCallback* self);
 
+/**
+ * webkit_dom_test_callback_callback_with_class1param:
+ * @self: A #WebKitDOMTestCallback
+ * @class1param: A #WebKitDOMClass1
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gboolean
 webkit_dom_test_callback_callback_with_class1param(WebKitDOMTestCallback* self, WebKitDOMClass1* class1param);
 
+/**
+ * webkit_dom_test_callback_callback_with_class2param:
+ * @self: A #WebKitDOMTestCallback
+ * @class2param: A #WebKitDOMClass2
+ * @str_arg: A #gchar
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gboolean
 webkit_dom_test_callback_callback_with_class2param(WebKitDOMTestCallback* self, WebKitDOMClass2* class2param, const gchar* str_arg);
 
+/**
+ * webkit_dom_test_callback_callback_with_non_bool_return_type:
+ * @self: A #WebKitDOMTestCallback
+ * @class3param: A #WebKitDOMClass3
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API glong
 webkit_dom_test_callback_callback_with_non_bool_return_type(WebKitDOMTestCallback* self, WebKitDOMClass3* class3param);
 
+/**
+ * webkit_dom_test_callback_callback_with_string_list:
+ * @self: A #WebKitDOMTestCallback
+ * @list_param: A #WebKitDOMDOMStringList
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gboolean
 webkit_dom_test_callback_callback_with_string_list(WebKitDOMTestCallback* self, WebKitDOMDOMStringList* list_param);
 

Modified: trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestObj.h (90840 => 90841)


--- trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestObj.h	2011-07-12 19:20:56 UTC (rev 90840)
+++ trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestObj.h	2011-07-12 19:41:24 UTC (rev 90841)
@@ -46,270 +46,961 @@
 WEBKIT_API GType
 webkit_dom_test_obj_get_type (void);
 
+/**
+ * webkit_dom_test_obj_void_method:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_void_method(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_void_method_with_args:
+ * @self: A #WebKitDOMTestObj
+ * @int_arg: A #glong
+ * @str_arg: A #gchar
+ * @obj_arg: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_void_method_with_args(WebKitDOMTestObj* self, glong int_arg, const gchar* str_arg, WebKitDOMTestObj* obj_arg);
 
+/**
+ * webkit_dom_test_obj_int_method:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API glong
 webkit_dom_test_obj_int_method(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_int_method_with_args:
+ * @self: A #WebKitDOMTestObj
+ * @int_arg: A #glong
+ * @str_arg: A #gchar
+ * @obj_arg: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API glong
 webkit_dom_test_obj_int_method_with_args(WebKitDOMTestObj* self, glong int_arg, const gchar* str_arg, WebKitDOMTestObj* obj_arg);
 
+/**
+ * webkit_dom_test_obj_obj_method:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns: (transfer none):
+ *
+**/
 WEBKIT_API WebKitDOMTestObj*
 webkit_dom_test_obj_obj_method(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_obj_method_with_args:
+ * @self: A #WebKitDOMTestObj
+ * @int_arg: A #glong
+ * @str_arg: A #gchar
+ * @obj_arg: A #WebKitDOMTestObj
+ *
+ * Returns: (transfer none):
+ *
+**/
 WEBKIT_API WebKitDOMTestObj*
 webkit_dom_test_obj_obj_method_with_args(WebKitDOMTestObj* self, glong int_arg, const gchar* str_arg, WebKitDOMTestObj* obj_arg);
 
+/**
+ * webkit_dom_test_obj_method_that_requires_all_args:
+ * @self: A #WebKitDOMTestObj
+ * @str_arg: A #gchar
+ * @obj_arg: A #WebKitDOMTestObj
+ *
+ * Returns: (transfer none):
+ *
+**/
 WEBKIT_API WebKitDOMTestObj*
 webkit_dom_test_obj_method_that_requires_all_args(WebKitDOMTestObj* self, const gchar* str_arg, WebKitDOMTestObj* obj_arg);
 
+/**
+ * webkit_dom_test_obj_method_that_requires_all_args_and_throws:
+ * @self: A #WebKitDOMTestObj
+ * @str_arg: A #gchar
+ * @obj_arg: A #WebKitDOMTestObj
+ * @error: #GError
+ *
+ * Returns: (transfer none):
+ *
+**/
 WEBKIT_API WebKitDOMTestObj*
 webkit_dom_test_obj_method_that_requires_all_args_and_throws(WebKitDOMTestObj* self, const gchar* str_arg, WebKitDOMTestObj* obj_arg, GError **error);
 
+/**
+ * webkit_dom_test_obj_serialized_value:
+ * @self: A #WebKitDOMTestObj
+ * @serialized_arg: A #WebKitDOMSerializedScriptValue
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_serialized_value(WebKitDOMTestObj* self, WebKitDOMSerializedScriptValue* serialized_arg);
 
+/**
+ * webkit_dom_test_obj_idb_key:
+ * @self: A #WebKitDOMTestObj
+ * @key: A #WebKitDOMIDBKey
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_idb_key(WebKitDOMTestObj* self, WebKitDOMIDBKey* key);
 
+/**
+ * webkit_dom_test_obj_options_object:
+ * @self: A #WebKitDOMTestObj
+ * @oo: A #WebKitDOMOptionsObject
+ * @ooo: A #WebKitDOMOptionsObject
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_options_object(WebKitDOMTestObj* self, WebKitDOMOptionsObject* oo, WebKitDOMOptionsObject* ooo);
 
+/**
+ * webkit_dom_test_obj_method_with_exception:
+ * @self: A #WebKitDOMTestObj
+ * @error: #GError
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_method_with_exception(WebKitDOMTestObj* self, GError **error);
 
+/**
+ * webkit_dom_test_obj_with_dynamic_frame:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_with_dynamic_frame(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_with_dynamic_frame_and_arg:
+ * @self: A #WebKitDOMTestObj
+ * @int_arg: A #glong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_with_dynamic_frame_and_arg(WebKitDOMTestObj* self, glong int_arg);
 
+/**
+ * webkit_dom_test_obj_with_dynamic_frame_and_optional_arg:
+ * @self: A #WebKitDOMTestObj
+ * @int_arg: A #glong
+ * @optional_arg: A #glong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_with_dynamic_frame_and_optional_arg(WebKitDOMTestObj* self, glong int_arg, glong optional_arg);
 
+/**
+ * webkit_dom_test_obj_with_dynamic_frame_and_user_gesture:
+ * @self: A #WebKitDOMTestObj
+ * @int_arg: A #glong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_with_dynamic_frame_and_user_gesture(WebKitDOMTestObj* self, glong int_arg, gboolean isUserGesture);
 
+/**
+ * webkit_dom_test_obj_with_dynamic_frame_and_user_gesture_asad:
+ * @self: A #WebKitDOMTestObj
+ * @int_arg: A #glong
+ * @optional_arg: A #glong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_with_dynamic_frame_and_user_gesture_asad(WebKitDOMTestObj* self, glong int_arg, glong optional_arg, gboolean isUserGesture);
 
+/**
+ * webkit_dom_test_obj_with_script_state_void:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_with_script_state_void(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_with_script_state_obj:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns: (transfer none):
+ *
+**/
 WEBKIT_API WebKitDOMTestObj*
 webkit_dom_test_obj_with_script_state_obj(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_with_script_state_void_exception:
+ * @self: A #WebKitDOMTestObj
+ * @error: #GError
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_with_script_state_void_exception(WebKitDOMTestObj* self, GError **error);
 
+/**
+ * webkit_dom_test_obj_with_script_state_obj_exception:
+ * @self: A #WebKitDOMTestObj
+ * @error: #GError
+ *
+ * Returns: (transfer none):
+ *
+**/
 WEBKIT_API WebKitDOMTestObj*
 webkit_dom_test_obj_with_script_state_obj_exception(WebKitDOMTestObj* self, GError **error);
 
+/**
+ * webkit_dom_test_obj_with_script_execution_context:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_with_script_execution_context(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_method_with_optional_arg:
+ * @self: A #WebKitDOMTestObj
+ * @opt: A #glong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_method_with_optional_arg(WebKitDOMTestObj* self, glong opt);
 
+/**
+ * webkit_dom_test_obj_method_with_non_optional_arg_and_optional_arg:
+ * @self: A #WebKitDOMTestObj
+ * @non_opt: A #glong
+ * @opt: A #glong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_method_with_non_optional_arg_and_optional_arg(WebKitDOMTestObj* self, glong non_opt, glong opt);
 
+/**
+ * webkit_dom_test_obj_method_with_non_optional_arg_and_two_optional_args:
+ * @self: A #WebKitDOMTestObj
+ * @non_opt: A #glong
+ * @opt1: A #glong
+ * @opt2: A #glong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_method_with_non_optional_arg_and_two_optional_args(WebKitDOMTestObj* self, glong non_opt, glong opt1, glong opt2);
 
+/**
+ * webkit_dom_test_obj_class_method:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_class_method(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_class_method_with_optional:
+ * @self: A #WebKitDOMTestObj
+ * @arg: A #glong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API glong
 webkit_dom_test_obj_class_method_with_optional(WebKitDOMTestObj* self, glong arg);
 
+/**
+ * webkit_dom_test_obj_get_read_only_int_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API glong
 webkit_dom_test_obj_get_read_only_int_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_get_read_only_string_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gchar*
 webkit_dom_test_obj_get_read_only_string_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_get_read_only_test_obj_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns: (transfer none):
+ *
+**/
 WEBKIT_API WebKitDOMTestObj*
 webkit_dom_test_obj_get_read_only_test_obj_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_get_short_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gshort
 webkit_dom_test_obj_get_short_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_short_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gshort
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_short_attr(WebKitDOMTestObj* self, gshort value);
 
+/**
+ * webkit_dom_test_obj_get_unsigned_short_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gushort
 webkit_dom_test_obj_get_unsigned_short_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_unsigned_short_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gushort
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_unsigned_short_attr(WebKitDOMTestObj* self, gushort value);
 
+/**
+ * webkit_dom_test_obj_get_int_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API glong
 webkit_dom_test_obj_get_int_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_int_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #glong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_int_attr(WebKitDOMTestObj* self, glong value);
 
+/**
+ * webkit_dom_test_obj_get_long_long_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gint64
 webkit_dom_test_obj_get_long_long_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_long_long_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gint64
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_long_long_attr(WebKitDOMTestObj* self, gint64 value);
 
+/**
+ * webkit_dom_test_obj_get_unsigned_long_long_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API guint64
 webkit_dom_test_obj_get_unsigned_long_long_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_unsigned_long_long_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #guint64
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_unsigned_long_long_attr(WebKitDOMTestObj* self, guint64 value);
 
+/**
+ * webkit_dom_test_obj_get_string_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gchar*
 webkit_dom_test_obj_get_string_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_string_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gchar
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_string_attr(WebKitDOMTestObj* self, const gchar* value);
 
+/**
+ * webkit_dom_test_obj_get_test_obj_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns: (transfer none):
+ *
+**/
 WEBKIT_API WebKitDOMTestObj*
 webkit_dom_test_obj_get_test_obj_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_test_obj_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #WebKitDOMTestObj
+ *
+ * Returns: (transfer none):
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_test_obj_attr(WebKitDOMTestObj* self, WebKitDOMTestObj* value);
 
+/**
+ * webkit_dom_test_obj_get_xml_obj_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns: (transfer none):
+ *
+**/
 WEBKIT_API WebKitDOMTestObj*
 webkit_dom_test_obj_get_xml_obj_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_xml_obj_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #WebKitDOMTestObj
+ *
+ * Returns: (transfer none):
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_xml_obj_attr(WebKitDOMTestObj* self, WebKitDOMTestObj* value);
 
+/**
+ * webkit_dom_test_obj_get_create:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gboolean
 webkit_dom_test_obj_get_create(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_create:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gboolean
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_create(WebKitDOMTestObj* self, gboolean value);
 
+/**
+ * webkit_dom_test_obj_get_reflected_string_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gchar*
 webkit_dom_test_obj_get_reflected_string_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_reflected_string_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gchar
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_reflected_string_attr(WebKitDOMTestObj* self, const gchar* value);
 
+/**
+ * webkit_dom_test_obj_get_reflected_integral_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API glong
 webkit_dom_test_obj_get_reflected_integral_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_reflected_integral_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #glong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_reflected_integral_attr(WebKitDOMTestObj* self, glong value);
 
+/**
+ * webkit_dom_test_obj_get_reflected_unsigned_integral_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gulong
 webkit_dom_test_obj_get_reflected_unsigned_integral_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_reflected_unsigned_integral_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gulong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_reflected_unsigned_integral_attr(WebKitDOMTestObj* self, gulong value);
 
+/**
+ * webkit_dom_test_obj_get_reflected_boolean_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gboolean
 webkit_dom_test_obj_get_reflected_boolean_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_reflected_boolean_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gboolean
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_reflected_boolean_attr(WebKitDOMTestObj* self, gboolean value);
 
+/**
+ * webkit_dom_test_obj_get_reflected_url_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gchar*
 webkit_dom_test_obj_get_reflected_url_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_reflected_url_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gchar
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_reflected_url_attr(WebKitDOMTestObj* self, const gchar* value);
 
+/**
+ * webkit_dom_test_obj_get_reflected_non_empty_url_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gchar*
 webkit_dom_test_obj_get_reflected_non_empty_url_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_reflected_non_empty_url_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gchar
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_reflected_non_empty_url_attr(WebKitDOMTestObj* self, const gchar* value);
 
+/**
+ * webkit_dom_test_obj_get_reflected_string_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gchar*
 webkit_dom_test_obj_get_reflected_string_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_reflected_string_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gchar
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_reflected_string_attr(WebKitDOMTestObj* self, const gchar* value);
 
+/**
+ * webkit_dom_test_obj_get_reflected_custom_integral_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API glong
 webkit_dom_test_obj_get_reflected_custom_integral_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_reflected_custom_integral_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #glong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_reflected_custom_integral_attr(WebKitDOMTestObj* self, glong value);
 
+/**
+ * webkit_dom_test_obj_get_reflected_custom_boolean_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gboolean
 webkit_dom_test_obj_get_reflected_custom_boolean_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_reflected_custom_boolean_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gboolean
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_reflected_custom_boolean_attr(WebKitDOMTestObj* self, gboolean value);
 
+/**
+ * webkit_dom_test_obj_get_reflected_custom_url_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gchar*
 webkit_dom_test_obj_get_reflected_custom_url_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_reflected_custom_url_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gchar
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_reflected_custom_url_attr(WebKitDOMTestObj* self, const gchar* value);
 
+/**
+ * webkit_dom_test_obj_get_reflected_custom_non_empty_url_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gchar*
 webkit_dom_test_obj_get_reflected_custom_non_empty_url_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_reflected_custom_non_empty_url_attr:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gchar
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_reflected_custom_non_empty_url_attr(WebKitDOMTestObj* self, const gchar* value);
 
+/**
+ * webkit_dom_test_obj_get_attr_with_getter_exception:
+ * @self: A #WebKitDOMTestObj
+ * @error: #GError
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API glong
 webkit_dom_test_obj_get_attr_with_getter_exception(WebKitDOMTestObj* self, GError **error);
 
+/**
+ * webkit_dom_test_obj_set_attr_with_getter_exception:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #glong
+ * @error: #GError
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_attr_with_getter_exception(WebKitDOMTestObj* self, glong value, GError **error);
 
+/**
+ * webkit_dom_test_obj_get_attr_with_setter_exception:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API glong
 webkit_dom_test_obj_get_attr_with_setter_exception(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_attr_with_setter_exception:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #glong
+ * @error: #GError
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_attr_with_setter_exception(WebKitDOMTestObj* self, glong value, GError **error);
 
+/**
+ * webkit_dom_test_obj_get_string_attr_with_getter_exception:
+ * @self: A #WebKitDOMTestObj
+ * @error: #GError
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gchar*
 webkit_dom_test_obj_get_string_attr_with_getter_exception(WebKitDOMTestObj* self, GError **error);
 
+/**
+ * webkit_dom_test_obj_set_string_attr_with_getter_exception:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gchar
+ * @error: #GError
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_string_attr_with_getter_exception(WebKitDOMTestObj* self, const gchar* value, GError **error);
 
+/**
+ * webkit_dom_test_obj_get_string_attr_with_setter_exception:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gchar*
 webkit_dom_test_obj_get_string_attr_with_setter_exception(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_string_attr_with_setter_exception:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #gchar
+ * @error: #GError
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_string_attr_with_setter_exception(WebKitDOMTestObj* self, const gchar* value, GError **error);
 
+/**
+ * webkit_dom_test_obj_get_script_string_attr:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gchar*
 webkit_dom_test_obj_get_script_string_attr(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_get_conditional_attr1:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API glong
 webkit_dom_test_obj_get_conditional_attr1(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_conditional_attr1:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #glong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_conditional_attr1(WebKitDOMTestObj* self, glong value);
 
+/**
+ * webkit_dom_test_obj_get_conditional_attr2:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API glong
 webkit_dom_test_obj_get_conditional_attr2(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_conditional_attr2:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #glong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_conditional_attr2(WebKitDOMTestObj* self, glong value);
 
+/**
+ * webkit_dom_test_obj_get_conditional_attr3:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API glong
 webkit_dom_test_obj_get_conditional_attr3(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_conditional_attr3:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #glong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_conditional_attr3(WebKitDOMTestObj* self, glong value);
 
+/**
+ * webkit_dom_test_obj_get_description:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API glong
 webkit_dom_test_obj_get_description(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_get_id:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API glong
 webkit_dom_test_obj_get_id(WebKitDOMTestObj* self);
 
+/**
+ * webkit_dom_test_obj_set_id:
+ * @self: A #WebKitDOMTestObj
+ * @value: A #glong
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API void
 webkit_dom_test_obj_set_id(WebKitDOMTestObj* self, glong value);
 
+/**
+ * webkit_dom_test_obj_get_hash:
+ * @self: A #WebKitDOMTestObj
+ *
+ * Returns:
+ *
+**/
 WEBKIT_API gchar*
 webkit_dom_test_obj_get_hash(WebKitDOMTestObj* self);
 

Modified: trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestSerializedScriptValueInterface.h (90840 => 90841)


--- trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestSerializedScriptValueInterface.h	2011-07-12 19:20:56 UTC (rev 90840)
+++ trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestSerializedScriptValueInterface.h	2011-07-12 19:41:24 UTC (rev 90841)
@@ -46,6 +46,13 @@
 WEBKIT_API GType
 webkit_dom_test_serialized_script_value_interface_get_type (void);
 
+/**
+ * webkit_dom_test_serialized_script_value_interface_get_value:
+ * @self: A #WebKitDOMTestSerializedScriptValueInterface
+ *
+ * Returns: (transfer none):
+ *
+**/
 WEBKIT_API WebKitDOMSerializedScriptValue*
 webkit_dom_test_serialized_script_value_interface_get_value(WebKitDOMTestSerializedScriptValueInterface* self);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to