diff options
author | Philip Withnall <philip@tecnocode.co.uk> | 2017-01-24 23:14:28 +0000 |
---|---|---|
committer | Philip Withnall <philip@tecnocode.co.uk> | 2017-01-24 23:14:28 +0000 |
commit | bf0da775d998d06fac1fd108250e6f7c55dd7c4e (patch) | |
tree | 5860fdcf06566b6f97f04fbdff711df57f49ebe7 /gdata/gd | |
parent | 42a0b64716ac12da97f2de8582c4ee88c8fad1a9 (diff) | |
download | libgdata-bf0da775d998d06fac1fd108250e6f7c55dd7c4e.tar.gz |
docs: Replace ‘**/’ gtk-doc comment endings with ‘*/’
‘*/’ is more standard, so this is basically a housekeeping improvement
in coding style.
Diffstat (limited to 'gdata/gd')
-rw-r--r-- | gdata/gd/gdata-gd-email-address.c | 34 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-email-address.h | 10 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-im-address.c | 34 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-im-address.h | 28 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-name.c | 40 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-name.h | 4 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-organization.c | 58 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-organization.h | 8 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-phone-number.c | 34 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-phone-number.h | 44 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-postal-address.c | 104 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-postal-address.h | 22 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-reminder.c | 26 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-reminder.h | 10 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-when.c | 32 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-when.h | 22 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-where.c | 22 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-where.h | 10 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-who.c | 22 | ||||
-rw-r--r-- | gdata/gd/gdata-gd-who.h | 12 |
20 files changed, 288 insertions, 288 deletions
diff --git a/gdata/gd/gdata-gd-email-address.c b/gdata/gd/gdata-gd-email-address.c index 2950e664..63ae95bb 100644 --- a/gdata/gd/gdata-gd-email-address.c +++ b/gdata/gd/gdata-gd-email-address.c @@ -27,7 +27,7 @@ * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdEmail">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ #include <glib.h> #include <libxml/parser.h> @@ -91,7 +91,7 @@ gdata_gd_email_address_class_init (GDataGDEmailAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdEmail">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_ADDRESS, g_param_spec_string ("address", "Address", "The e-mail address itself.", @@ -107,7 +107,7 @@ gdata_gd_email_address_class_init (GDataGDEmailAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdEmail">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_RELATION_TYPE, g_param_spec_string ("relation-type", "Relation type", "A programmatic value that identifies the type of e-mail address.", @@ -123,7 +123,7 @@ gdata_gd_email_address_class_init (GDataGDEmailAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdEmail">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_LABEL, g_param_spec_string ("label", "Label", "A simple string value used to name this e-mail address.", @@ -139,7 +139,7 @@ gdata_gd_email_address_class_init (GDataGDEmailAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdEmail">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_IS_PRIMARY, g_param_spec_boolean ("is-primary", "Primary?", "Indicates which e-mail address out of a group is primary.", @@ -155,7 +155,7 @@ gdata_gd_email_address_class_init (GDataGDEmailAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdEmail">GData specification</ulink>. * * Since: 0.6.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_DISPLAY_NAME, g_param_spec_string ("display-name", "Display name", "A display name of the entity the e-mail address belongs to.", @@ -322,7 +322,7 @@ get_namespaces (GDataParsable *parsable, GHashTable *namespaces) * Return value: a new #GDataGDEmailAddress, or %NULL; unref with g_object_unref() * * Since: 0.2.0 - **/ + */ GDataGDEmailAddress * gdata_gd_email_address_new (const gchar *address, const gchar *relation_type, const gchar *label, gboolean is_primary) { @@ -341,7 +341,7 @@ gdata_gd_email_address_new (const gchar *address, const gchar *relation_type, co * Return value: the e-mail address itself, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_email_address_get_address (GDataGDEmailAddress *self) { @@ -357,7 +357,7 @@ gdata_gd_email_address_get_address (GDataGDEmailAddress *self) * Sets the #GDataGDEmailAddress:address property to @address. * * Since: 0.4.0 - **/ + */ void gdata_gd_email_address_set_address (GDataGDEmailAddress *self, const gchar *address) { @@ -378,7 +378,7 @@ gdata_gd_email_address_set_address (GDataGDEmailAddress *self, const gchar *addr * Return value: the e-mail address' relation type, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_email_address_get_relation_type (GDataGDEmailAddress *self) { @@ -396,7 +396,7 @@ gdata_gd_email_address_get_relation_type (GDataGDEmailAddress *self) * Set @relation_type to %NULL to unset the property in the e-mail address. * * Since: 0.4.0 - **/ + */ void gdata_gd_email_address_set_relation_type (GDataGDEmailAddress *self, const gchar *relation_type) { @@ -417,7 +417,7 @@ gdata_gd_email_address_set_relation_type (GDataGDEmailAddress *self, const gchar * Return value: the e-mail address' label, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_email_address_get_label (GDataGDEmailAddress *self) { @@ -435,7 +435,7 @@ gdata_gd_email_address_get_label (GDataGDEmailAddress *self) * Set @label to %NULL to unset the property in the e-mail address. * * Since: 0.4.0 - **/ + */ void gdata_gd_email_address_set_label (GDataGDEmailAddress *self, const gchar *label) { @@ -455,7 +455,7 @@ gdata_gd_email_address_set_label (GDataGDEmailAddress *self, const gchar *label) * Return value: %TRUE if this is the primary e-mail address, %FALSE otherwise * * Since: 0.4.0 - **/ + */ gboolean gdata_gd_email_address_is_primary (GDataGDEmailAddress *self) { @@ -471,7 +471,7 @@ gdata_gd_email_address_is_primary (GDataGDEmailAddress *self) * Sets the #GDataGDEmailAddress:is-primary property to @is_primary. * * Since: 0.4.0 - **/ + */ void gdata_gd_email_address_set_is_primary (GDataGDEmailAddress *self, gboolean is_primary) { @@ -490,7 +490,7 @@ gdata_gd_email_address_set_is_primary (GDataGDEmailAddress *self, gboolean is_pr * Return value: a display name for the e-mail address, or %NULL * * Since: 0.6.0 - **/ + */ const gchar * gdata_gd_email_address_get_display_name (GDataGDEmailAddress *self) { @@ -508,7 +508,7 @@ gdata_gd_email_address_get_display_name (GDataGDEmailAddress *self) * Set @display_name to %NULL to unset the property in the e-mail address. * * Since: 0.6.0 - **/ + */ void gdata_gd_email_address_set_display_name (GDataGDEmailAddress *self, const gchar *display_name) { diff --git a/gdata/gd/gdata-gd-email-address.h b/gdata/gd/gdata-gd-email-address.h index 701a0319..588f9a93 100644 --- a/gdata/gd/gdata-gd-email-address.h +++ b/gdata/gd/gdata-gd-email-address.h @@ -33,7 +33,7 @@ G_BEGIN_DECLS * The relation type URI for a home e-mail address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_EMAIL_ADDRESS_HOME "http://schemas.google.com/g/2005#home" /** @@ -42,7 +42,7 @@ G_BEGIN_DECLS * The relation type URI for a miscellaneous e-mail address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_EMAIL_ADDRESS_OTHER "http://schemas.google.com/g/2005#other" /** @@ -51,7 +51,7 @@ G_BEGIN_DECLS * The relation type URI for a work e-mail address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_EMAIL_ADDRESS_WORK "http://schemas.google.com/g/2005#work" #define GDATA_TYPE_GD_EMAIL_ADDRESS (gdata_gd_email_address_get_type ()) @@ -69,7 +69,7 @@ typedef struct _GDataGDEmailAddressPrivate GDataGDEmailAddressPrivate; * All the fields in the #GDataGDEmailAddress structure are private and should never be accessed directly. * * Since: 0.2.0 - **/ + */ typedef struct { GDataParsable parent; GDataGDEmailAddressPrivate *priv; @@ -81,7 +81,7 @@ typedef struct { * All the fields in the #GDataGDEmailAddressClass structure are private and should never be accessed directly. * * Since: 0.4.0 - **/ + */ typedef struct { /*< private >*/ GDataParsableClass parent; diff --git a/gdata/gd/gdata-gd-im-address.c b/gdata/gd/gdata-gd-im-address.c index eae29e7c..5b446801 100644 --- a/gdata/gd/gdata-gd-im-address.c +++ b/gdata/gd/gdata-gd-im-address.c @@ -27,7 +27,7 @@ * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdIm">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ #include <glib.h> #include <libxml/parser.h> @@ -91,7 +91,7 @@ gdata_gd_im_address_class_init (GDataGDIMAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdIm">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_ADDRESS, g_param_spec_string ("address", "Address", "The IM address itself.", @@ -107,7 +107,7 @@ gdata_gd_im_address_class_init (GDataGDIMAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdIm">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_PROTOCOL, g_param_spec_string ("protocol", "Protocol", "Identifies the IM network.", @@ -123,7 +123,7 @@ gdata_gd_im_address_class_init (GDataGDIMAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdIm">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_RELATION_TYPE, g_param_spec_string ("relation-type", "Relation type", "A programmatic value that identifies the type of IM address.", @@ -139,7 +139,7 @@ gdata_gd_im_address_class_init (GDataGDIMAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdIm">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_LABEL, g_param_spec_string ("label", "Label", "A simple string value used to name this IM address.", @@ -155,7 +155,7 @@ gdata_gd_im_address_class_init (GDataGDIMAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdIm">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_IS_PRIMARY, g_param_spec_boolean ("is-primary", "Primary?", "Indicates which IM address out of a group is primary.", @@ -328,7 +328,7 @@ get_namespaces (GDataParsable *parsable, GHashTable *namespaces) * Return value: a new #GDataGDIMAddress, or %NULL; unref with g_object_unref() * * Since: 0.2.0 - **/ + */ GDataGDIMAddress * gdata_gd_im_address_new (const gchar *address, const gchar *protocol, const gchar *relation_type, const gchar *label, gboolean is_primary) { @@ -348,7 +348,7 @@ gdata_gd_im_address_new (const gchar *address, const gchar *protocol, const gcha * Return value: the IM address itself, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_im_address_get_address (GDataGDIMAddress *self) { @@ -364,7 +364,7 @@ gdata_gd_im_address_get_address (GDataGDIMAddress *self) * Sets the #GDataGDIMAddress:address property to @address. * * Since: 0.4.0 - **/ + */ void gdata_gd_im_address_set_address (GDataGDIMAddress *self, const gchar *address) { @@ -385,7 +385,7 @@ gdata_gd_im_address_set_address (GDataGDIMAddress *self, const gchar *address) * Return value: the IM address' protocol, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_im_address_get_protocol (GDataGDIMAddress *self) { @@ -401,7 +401,7 @@ gdata_gd_im_address_get_protocol (GDataGDIMAddress *self) * Sets the #GDataGDIMAddress:protocol property to @protocol. * * Since: 0.4.0 - **/ + */ void gdata_gd_im_address_set_protocol (GDataGDIMAddress *self, const gchar *protocol) { @@ -422,7 +422,7 @@ gdata_gd_im_address_set_protocol (GDataGDIMAddress *self, const gchar *protocol) * Return value: the IM address' relation type, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_im_address_get_relation_type (GDataGDIMAddress *self) { @@ -440,7 +440,7 @@ gdata_gd_im_address_get_relation_type (GDataGDIMAddress *self) * Set @relation_type to %NULL to unset the property in the IM address. * * Since: 0.4.0 - **/ + */ void gdata_gd_im_address_set_relation_type (GDataGDIMAddress *self, const gchar *relation_type) { @@ -461,7 +461,7 @@ gdata_gd_im_address_set_relation_type (GDataGDIMAddress *self, const gchar *rela * Return value: the IM address' label, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_im_address_get_label (GDataGDIMAddress *self) { @@ -479,7 +479,7 @@ gdata_gd_im_address_get_label (GDataGDIMAddress *self) * Set @label to %NULL to unset the property in the IM address. * * Since: 0.4.0 - **/ + */ void gdata_gd_im_address_set_label (GDataGDIMAddress *self, const gchar *label) { @@ -499,7 +499,7 @@ gdata_gd_im_address_set_label (GDataGDIMAddress *self, const gchar *label) * Return value: %TRUE if this is the primary IM address, %FALSE otherwise * * Since: 0.4.0 - **/ + */ gboolean gdata_gd_im_address_is_primary (GDataGDIMAddress *self) { @@ -515,7 +515,7 @@ gdata_gd_im_address_is_primary (GDataGDIMAddress *self) * Sets the #GDataGDIMAddress:is-primary property to @is_primary. * * Since: 0.4.0 - **/ + */ void gdata_gd_im_address_set_is_primary (GDataGDIMAddress *self, gboolean is_primary) { diff --git a/gdata/gd/gdata-gd-im-address.h b/gdata/gd/gdata-gd-im-address.h index 9e2d82cd..9e717c1f 100644 --- a/gdata/gd/gdata-gd-im-address.h +++ b/gdata/gd/gdata-gd-im-address.h @@ -33,7 +33,7 @@ G_BEGIN_DECLS * The relation type URI for a home IM address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_IM_ADDRESS_HOME "http://schemas.google.com/g/2005#home" /** @@ -42,7 +42,7 @@ G_BEGIN_DECLS * The relation type URI for a Microsoft NetMeeting IM address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_IM_ADDRESS_NETMEETING "http://schemas.google.com/g/2005#netmeeting" /** @@ -51,7 +51,7 @@ G_BEGIN_DECLS * The relation type URI for a miscellaneous IM address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_IM_ADDRESS_OTHER "http://schemas.google.com/g/2005#other" /** @@ -60,7 +60,7 @@ G_BEGIN_DECLS * The relation type URI for a work IM address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_IM_ADDRESS_WORK "http://schemas.google.com/g/2005#work" /** @@ -69,7 +69,7 @@ G_BEGIN_DECLS * The protocol type URI for an AIM IM address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_IM_PROTOCOL_AIM "http://schemas.google.com/g/2005#AIM" /** @@ -78,7 +78,7 @@ G_BEGIN_DECLS * The protocol type URI for an Windows Live Messenger IM address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_IM_PROTOCOL_LIVE_MESSENGER "http://schemas.google.com/g/2005#MSN" /** @@ -87,7 +87,7 @@ G_BEGIN_DECLS * The protocol type URI for a Yahoo! Messenger IM address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_IM_PROTOCOL_YAHOO_MESSENGER "http://schemas.google.com/g/2005#YAHOO" /** @@ -96,7 +96,7 @@ G_BEGIN_DECLS * The protocol type URI for a Skype IM address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_IM_PROTOCOL_SKYPE "http://schemas.google.com/g/2005#SKYPE" /** @@ -105,7 +105,7 @@ G_BEGIN_DECLS * The protocol type URI for a QQ IM address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_IM_PROTOCOL_QQ "http://schemas.google.com/g/2005#QQ" /** @@ -114,7 +114,7 @@ G_BEGIN_DECLS * The protocol type URI for a Google Talk IM address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_IM_PROTOCOL_GOOGLE_TALK "http://schemas.google.com/g/2005#GOOGLE_TALK" /** @@ -123,7 +123,7 @@ G_BEGIN_DECLS * The protocol type URI for an ICQ IM address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_IM_PROTOCOL_ICQ "http://schemas.google.com/g/2005#ICQ" /** @@ -132,7 +132,7 @@ G_BEGIN_DECLS * The protocol type URI for a Jabber IM address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_IM_PROTOCOL_JABBER "http://schemas.google.com/g/2005#JABBER" #define GDATA_TYPE_GD_IM_ADDRESS (gdata_gd_im_address_get_type ()) @@ -150,7 +150,7 @@ typedef struct _GDataGDIMAddressPrivate GDataGDIMAddressPrivate; * All the fields in the #GDataGDIMAddress structure are private and should never be accessed directly. * * Since: 0.2.0 - **/ + */ typedef struct { GDataParsable parent; GDataGDIMAddressPrivate *priv; @@ -162,7 +162,7 @@ typedef struct { * All the fields in the #GDataGDIMAddressClass structure are private and should never be accessed directly. * * Since: 0.4.0 - **/ + */ typedef struct { /*< private >*/ GDataParsableClass parent; diff --git a/gdata/gd/gdata-gd-name.c b/gdata/gd/gdata-gd-name.c index 32d1dd57..4c1fde67 100644 --- a/gdata/gd/gdata-gd-name.c +++ b/gdata/gd/gdata-gd-name.c @@ -37,7 +37,7 @@ * </variablelist> * * Since: 0.5.0 - **/ + */ #include <glib.h> #include <libxml/parser.h> @@ -103,7 +103,7 @@ gdata_gd_name_class_init (GDataGDNameClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdName">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_GIVEN_NAME, g_param_spec_string ("given-name", "Given name", "The person's given name.", @@ -119,7 +119,7 @@ gdata_gd_name_class_init (GDataGDNameClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdName">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_ADDITIONAL_NAME, g_param_spec_string ("additional-name", "Additional name", "An additional name for the person (e.g. a middle name).", @@ -135,7 +135,7 @@ gdata_gd_name_class_init (GDataGDNameClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdName">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_FAMILY_NAME, g_param_spec_string ("family-name", "Family name", "The person's family name.", @@ -151,7 +151,7 @@ gdata_gd_name_class_init (GDataGDNameClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdName">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_PREFIX, g_param_spec_string ("prefix", "Prefix", "An honorific prefix.", @@ -167,7 +167,7 @@ gdata_gd_name_class_init (GDataGDNameClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdName">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_SUFFIX, g_param_spec_string ("suffix", "Suffix", "An honorific suffix.", @@ -184,7 +184,7 @@ gdata_gd_name_class_init (GDataGDNameClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdName">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_FULL_NAME, g_param_spec_string ("full-name", "Full name", "An unstructured representation of the person's full name.", @@ -352,7 +352,7 @@ get_namespaces (GDataParsable *parsable, GHashTable *namespaces) * Return value: a new #GDataGDName, or %NULL; unref with g_object_unref() * * Since: 0.5.0 - **/ + */ GDataGDName * gdata_gd_name_new (const gchar *given_name, const gchar *family_name) { @@ -370,7 +370,7 @@ gdata_gd_name_new (const gchar *given_name, const gchar *family_name) * Return value: the person's given name, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_name_get_given_name (GDataGDName *self) { @@ -386,7 +386,7 @@ gdata_gd_name_get_given_name (GDataGDName *self) * Sets the #GDataGDName:given-name property to @given_name. * * Since: 0.5.0 - **/ + */ void gdata_gd_name_set_given_name (GDataGDName *self, const gchar *given_name) { @@ -407,7 +407,7 @@ gdata_gd_name_set_given_name (GDataGDName *self, const gchar *given_name) * Return value: the person's additional name, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_name_get_additional_name (GDataGDName *self) { @@ -423,7 +423,7 @@ gdata_gd_name_get_additional_name (GDataGDName *self) * Sets the #GDataGDName:additional-name property to @additional_name. * * Since: 0.5.0 - **/ + */ void gdata_gd_name_set_additional_name (GDataGDName *self, const gchar *additional_name) { @@ -444,7 +444,7 @@ gdata_gd_name_set_additional_name (GDataGDName *self, const gchar *additional_na * Return value: the person's family name, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_name_get_family_name (GDataGDName *self) { @@ -460,7 +460,7 @@ gdata_gd_name_get_family_name (GDataGDName *self) * Sets the #GDataGDName:family-name property to @family_name. * * Since: 0.5.0 - **/ + */ void gdata_gd_name_set_family_name (GDataGDName *self, const gchar *family_name) { @@ -481,7 +481,7 @@ gdata_gd_name_set_family_name (GDataGDName *self, const gchar *family_name) * Return value: the person's name prefix, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_name_get_prefix (GDataGDName *self) { @@ -497,7 +497,7 @@ gdata_gd_name_get_prefix (GDataGDName *self) * Sets the #GDataGDName:prefix property to @prefix. * * Since: 0.5.0 - **/ + */ void gdata_gd_name_set_prefix (GDataGDName *self, const gchar *prefix) { @@ -518,7 +518,7 @@ gdata_gd_name_set_prefix (GDataGDName *self, const gchar *prefix) * Return value: the person's name suffix, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_name_get_suffix (GDataGDName *self) { @@ -534,7 +534,7 @@ gdata_gd_name_get_suffix (GDataGDName *self) * Sets the #GDataGDName:suffix property to @suffix. * * Since: 0.5.0 - **/ + */ void gdata_gd_name_set_suffix (GDataGDName *self, const gchar *suffix) { @@ -555,7 +555,7 @@ gdata_gd_name_set_suffix (GDataGDName *self, const gchar *suffix) * Return value: the person's full name, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_name_get_full_name (GDataGDName *self) { @@ -571,7 +571,7 @@ gdata_gd_name_get_full_name (GDataGDName *self) * Sets the #GDataGDName:full-name property to @full_name. * * Since: 0.5.0 - **/ + */ void gdata_gd_name_set_full_name (GDataGDName *self, const gchar *full_name) { diff --git a/gdata/gd/gdata-gd-name.h b/gdata/gd/gdata-gd-name.h index 2507ca3a..2044564e 100644 --- a/gdata/gd/gdata-gd-name.h +++ b/gdata/gd/gdata-gd-name.h @@ -42,7 +42,7 @@ typedef struct _GDataGDNamePrivate GDataGDNamePrivate; * All the fields in the #GDataGDName structure are private and should never be accessed directly. * * Since: 0.5.0 - **/ + */ typedef struct { GDataParsable parent; GDataGDNamePrivate *priv; @@ -54,7 +54,7 @@ typedef struct { * All the fields in the #GDataGDNameClass structure are private and should never be accessed directly. * * Since: 0.5.0 - **/ + */ typedef struct { /*< private >*/ GDataParsableClass parent; diff --git a/gdata/gd/gdata-gd-organization.c b/gdata/gd/gdata-gd-organization.c index f4e6f811..c5d6a23a 100644 --- a/gdata/gd/gdata-gd-organization.c +++ b/gdata/gd/gdata-gd-organization.c @@ -27,7 +27,7 @@ * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdOrganization">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ #include <glib.h> #include <libxml/parser.h> @@ -107,7 +107,7 @@ gdata_gd_organization_class_init (GDataGDOrganizationClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdOrganization">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_NAME, g_param_spec_string ("name", "Name", "The name of the organization.", @@ -123,7 +123,7 @@ gdata_gd_organization_class_init (GDataGDOrganizationClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdOrganization">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_TITLE, g_param_spec_string ("title", "Title", "The title of a person within the organization.", @@ -139,7 +139,7 @@ gdata_gd_organization_class_init (GDataGDOrganizationClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdOrganization">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_RELATION_TYPE, g_param_spec_string ("relation-type", "Relation type", "A programmatic value that identifies the type of organization.", @@ -156,7 +156,7 @@ gdata_gd_organization_class_init (GDataGDOrganizationClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdOrganization">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_LABEL, g_param_spec_string ("label", "Label", "A simple string value used to name this organization.", @@ -172,7 +172,7 @@ gdata_gd_organization_class_init (GDataGDOrganizationClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdOrganization">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_IS_PRIMARY, g_param_spec_boolean ("is-primary", "Primary?", "Indicates which organization out of a group is primary.", @@ -188,7 +188,7 @@ gdata_gd_organization_class_init (GDataGDOrganizationClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdOrganization">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_DEPARTMENT, g_param_spec_string ("department", "Department", "Specifies a department within the organization.", @@ -204,7 +204,7 @@ gdata_gd_organization_class_init (GDataGDOrganizationClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdOrganization">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_JOB_DESCRIPTION, g_param_spec_string ("job-description", "Job description", "Description of a job within the organization.", @@ -220,7 +220,7 @@ gdata_gd_organization_class_init (GDataGDOrganizationClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdOrganization">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_SYMBOL, g_param_spec_string ("symbol", "Symbol", "Symbol of the organization.", @@ -236,7 +236,7 @@ gdata_gd_organization_class_init (GDataGDOrganizationClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdOrganization">GData specification</ulink>. * * Since: 0.6.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_LOCATION, g_param_spec_object ("location", "Location", "A place associated with the organization, e.g. office location.", @@ -474,7 +474,7 @@ get_namespaces (GDataParsable *parsable, GHashTable *namespaces) * Return value: a new #GDataGDOrganization, or %NULL; unref with g_object_unref() * * Since: 0.2.0 - **/ + */ GDataGDOrganization * gdata_gd_organization_new (const gchar *name, const gchar *title, const gchar *relation_type, const gchar *label, gboolean is_primary) { @@ -492,7 +492,7 @@ gdata_gd_organization_new (const gchar *name, const gchar *title, const gchar *r * Return value: the organization's name, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_organization_get_name (GDataGDOrganization *self) { @@ -510,7 +510,7 @@ gdata_gd_organization_get_name (GDataGDOrganization *self) * Set @name to %NULL to unset the property in the organization. * * Since: 0.4.0 - **/ + */ void gdata_gd_organization_set_name (GDataGDOrganization *self, const gchar *name) { @@ -530,7 +530,7 @@ gdata_gd_organization_set_name (GDataGDOrganization *self, const gchar *name) * Return value: the organization's title, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_organization_get_title (GDataGDOrganization *self) { @@ -548,7 +548,7 @@ gdata_gd_organization_get_title (GDataGDOrganization *self) * Set @title to %NULL to unset the property in the organization. * * Since: 0.4.0 - **/ + */ void gdata_gd_organization_set_title (GDataGDOrganization *self, const gchar *title) { @@ -568,7 +568,7 @@ gdata_gd_organization_set_title (GDataGDOrganization *self, const gchar *title) * Return value: the organization's relation type, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_organization_get_relation_type (GDataGDOrganization *self) { @@ -586,7 +586,7 @@ gdata_gd_organization_get_relation_type (GDataGDOrganization *self) * Set @relation_type to %NULL to unset the property in the organization. * * Since: 0.4.0 - **/ + */ void gdata_gd_organization_set_relation_type (GDataGDOrganization *self, const gchar *relation_type) { @@ -607,7 +607,7 @@ gdata_gd_organization_set_relation_type (GDataGDOrganization *self, const gchar * Return value: the organization's label, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_organization_get_label (GDataGDOrganization *self) { @@ -625,7 +625,7 @@ gdata_gd_organization_get_label (GDataGDOrganization *self) * Set @label to %NULL to unset the property in the organization. * * Since: 0.4.0 - **/ + */ void gdata_gd_organization_set_label (GDataGDOrganization *self, const gchar *label) { @@ -645,7 +645,7 @@ gdata_gd_organization_set_label (GDataGDOrganization *self, const gchar *label) * Return value: %TRUE if this is the primary organization, %FALSE otherwise * * Since: 0.4.0 - **/ + */ gboolean gdata_gd_organization_is_primary (GDataGDOrganization *self) { @@ -661,7 +661,7 @@ gdata_gd_organization_is_primary (GDataGDOrganization *self) * Sets the #GDataGDOrganization:is-primary property to @is_primary. * * Since: 0.4.0 - **/ + */ void gdata_gd_organization_set_is_primary (GDataGDOrganization *self, gboolean is_primary) { @@ -680,7 +680,7 @@ gdata_gd_organization_set_is_primary (GDataGDOrganization *self, gboolean is_pri * Return value: the department in which the person works in this organization, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_organization_get_department (GDataGDOrganization *self) { @@ -698,7 +698,7 @@ gdata_gd_organization_get_department (GDataGDOrganization *self) * Set @department to %NULL to unset the property in the organization. * * Since: 0.5.0 - **/ + */ void gdata_gd_organization_set_department (GDataGDOrganization *self, const gchar *department) { @@ -718,7 +718,7 @@ gdata_gd_organization_set_department (GDataGDOrganization *self, const gchar *de * Return value: the job description of the person in the organization, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_organization_get_job_description (GDataGDOrganization *self) { @@ -736,7 +736,7 @@ gdata_gd_organization_get_job_description (GDataGDOrganization *self) * Set @job_description to %NULL to unset the property in the organization. * * Since: 0.5.0 - **/ + */ void gdata_gd_organization_set_job_description (GDataGDOrganization *self, const gchar *job_description) { @@ -756,7 +756,7 @@ gdata_gd_organization_set_job_description (GDataGDOrganization *self, const gcha * Return value: the organization's stock symbol, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_organization_get_symbol (GDataGDOrganization *self) { @@ -774,7 +774,7 @@ gdata_gd_organization_get_symbol (GDataGDOrganization *self) * Set @symbol to %NULL to unset the property in the organization. * * Since: 0.5.0 - **/ + */ void gdata_gd_organization_set_symbol (GDataGDOrganization *self, const gchar *symbol) { @@ -794,7 +794,7 @@ gdata_gd_organization_set_symbol (GDataGDOrganization *self, const gchar *symbol * Return value: (transfer none): the organization's location, or %NULL * * Since: 0.6.0 - **/ + */ GDataGDWhere * gdata_gd_organization_get_location (GDataGDOrganization *self) { @@ -812,7 +812,7 @@ gdata_gd_organization_get_location (GDataGDOrganization *self) * Set @location to %NULL to unset the property in the organization. * * Since: 0.6.0 - **/ + */ void gdata_gd_organization_set_location (GDataGDOrganization *self, GDataGDWhere *location) { diff --git a/gdata/gd/gdata-gd-organization.h b/gdata/gd/gdata-gd-organization.h index 74e6c8c9..331d31ac 100644 --- a/gdata/gd/gdata-gd-organization.h +++ b/gdata/gd/gdata-gd-organization.h @@ -34,7 +34,7 @@ G_BEGIN_DECLS * The relation type URI for a work organization. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_ORGANIZATION_WORK "http://schemas.google.com/g/2005#work" /** @@ -43,7 +43,7 @@ G_BEGIN_DECLS * The relation type URI for a miscellaneous organization. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_ORGANIZATION_OTHER "http://schemas.google.com/g/2005#other" #define GDATA_TYPE_GD_ORGANIZATION (gdata_gd_organization_get_type ()) @@ -61,7 +61,7 @@ typedef struct _GDataGDOrganizationPrivate GDataGDOrganizationPrivate; * All the fields in the #GDataGDOrganization structure are private and should never be accessed directly. * * Since: 0.2.0 - **/ + */ typedef struct { GDataParsable parent; GDataGDOrganizationPrivate *priv; @@ -73,7 +73,7 @@ typedef struct { * All the fields in the #GDataGDOrganizationClass structure are private and should never be accessed directly. * * Since: 0.4.0 - **/ + */ typedef struct { /*< private >*/ GDataParsableClass parent; diff --git a/gdata/gd/gdata-gd-phone-number.c b/gdata/gd/gdata-gd-phone-number.c index 280798e6..06c0be98 100644 --- a/gdata/gd/gdata-gd-phone-number.c +++ b/gdata/gd/gdata-gd-phone-number.c @@ -27,7 +27,7 @@ * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdPhoneNumber">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ #include <glib.h> #include <libxml/parser.h> @@ -96,7 +96,7 @@ gdata_gd_phone_number_class_init (GDataGDPhoneNumberClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdPhoneNumber">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_NUMBER, g_param_spec_string ("number", "Number", "Human-readable phone number; may be in any telephone number format.", @@ -112,7 +112,7 @@ gdata_gd_phone_number_class_init (GDataGDPhoneNumberClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdPhoneNumber">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_URI, g_param_spec_string ("uri", "URI", "An optional \"tel URI\" used to represent the number in a formal way.", @@ -128,7 +128,7 @@ gdata_gd_phone_number_class_init (GDataGDPhoneNumberClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdPhoneNumber">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_RELATION_TYPE, g_param_spec_string ("relation-type", "Relation type", "A programmatic value that identifies the type of phone number.", @@ -144,7 +144,7 @@ gdata_gd_phone_number_class_init (GDataGDPhoneNumberClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdPhoneNumber">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_LABEL, g_param_spec_string ("label", "Label", "A simple string value used to name this phone number.", @@ -160,7 +160,7 @@ gdata_gd_phone_number_class_init (GDataGDPhoneNumberClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdPhoneNumber">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_IS_PRIMARY, g_param_spec_boolean ("is-primary", "Primary?", "Indicates which phone number out of a group is primary.", @@ -362,7 +362,7 @@ get_namespaces (GDataParsable *parsable, GHashTable *namespaces) * Return value: a new #GDataGDPhoneNumber, or %NULL; unref with g_object_unref() * * Since: 0.2.0 - **/ + */ GDataGDPhoneNumber * gdata_gd_phone_number_new (const gchar *number, const gchar *relation_type, const gchar *label, const gchar *uri, gboolean is_primary) { @@ -381,7 +381,7 @@ gdata_gd_phone_number_new (const gchar *number, const gchar *relation_type, cons * Return value: the phone number itself * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_phone_number_get_number (GDataGDPhoneNumber *self) { @@ -397,7 +397,7 @@ gdata_gd_phone_number_get_number (GDataGDPhoneNumber *self) * Sets the #GDataGDPhoneNumber:number property to @number. * * Since: 0.4.0 - **/ + */ void gdata_gd_phone_number_set_number (GDataGDPhoneNumber *self, const gchar *number) { @@ -420,7 +420,7 @@ gdata_gd_phone_number_set_number (GDataGDPhoneNumber *self, const gchar *number) * Return value: the phone number's URI, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_phone_number_get_uri (GDataGDPhoneNumber *self) { @@ -438,7 +438,7 @@ gdata_gd_phone_number_get_uri (GDataGDPhoneNumber *self) * Set @uri to %NULL to unset the property in the phone number. * * Since: 0.4.0 - **/ + */ void gdata_gd_phone_number_set_uri (GDataGDPhoneNumber *self, const gchar *uri) { @@ -458,7 +458,7 @@ gdata_gd_phone_number_set_uri (GDataGDPhoneNumber *self, const gchar *uri) * Return value: the phone number's relation type, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_phone_number_get_relation_type (GDataGDPhoneNumber *self) { @@ -476,7 +476,7 @@ gdata_gd_phone_number_get_relation_type (GDataGDPhoneNumber *self) * Set @relation_type to %NULL to unset the property in the phone number. * * Since: 0.4.0 - **/ + */ void gdata_gd_phone_number_set_relation_type (GDataGDPhoneNumber *self, const gchar *relation_type) { @@ -497,7 +497,7 @@ gdata_gd_phone_number_set_relation_type (GDataGDPhoneNumber *self, const gchar * * Return value: the phone number's label, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_phone_number_get_label (GDataGDPhoneNumber *self) { @@ -515,7 +515,7 @@ gdata_gd_phone_number_get_label (GDataGDPhoneNumber *self) * Set @label to %NULL to unset the property in the phone number. * * Since: 0.4.0 - **/ + */ void gdata_gd_phone_number_set_label (GDataGDPhoneNumber *self, const gchar *label) { @@ -535,7 +535,7 @@ gdata_gd_phone_number_set_label (GDataGDPhoneNumber *self, const gchar *label) * Return value: %TRUE if this is the primary phone number, %FALSE otherwise * * Since: 0.4.0 - **/ + */ gboolean gdata_gd_phone_number_is_primary (GDataGDPhoneNumber *self) { @@ -551,7 +551,7 @@ gdata_gd_phone_number_is_primary (GDataGDPhoneNumber *self) * Sets the #GDataGDPhoneNumber:is-primary property to @is_primary. * * Since: 0.4.0 - **/ + */ void gdata_gd_phone_number_set_is_primary (GDataGDPhoneNumber *self, gboolean is_primary) { diff --git a/gdata/gd/gdata-gd-phone-number.h b/gdata/gd/gdata-gd-phone-number.h index dab6a484..4a2995f5 100644 --- a/gdata/gd/gdata-gd-phone-number.h +++ b/gdata/gd/gdata-gd-phone-number.h @@ -33,7 +33,7 @@ G_BEGIN_DECLS * The relation type URI for the phone number of an assistant. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_ASSISTANT "http://schemas.google.com/g/2005#assistant" /** @@ -42,7 +42,7 @@ G_BEGIN_DECLS * The relation type URI for the phone number of a callback service. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_CALLBACK "http://schemas.google.com/g/2005#callback" /** @@ -51,7 +51,7 @@ G_BEGIN_DECLS * The relation type URI for the phone number of a car phone. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_CAR "http://schemas.google.com/g/2005#car" /** @@ -60,7 +60,7 @@ G_BEGIN_DECLS * The relation type URI for the main phone number of a company. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_COMPANY_MAIN "http://schemas.google.com/g/2005#company_main" /** @@ -69,7 +69,7 @@ G_BEGIN_DECLS * The relation type URI for the phone number of a fax machine. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_FAX "http://schemas.google.com/g/2005#fax" /** @@ -78,7 +78,7 @@ G_BEGIN_DECLS * The relation type URI for a home phone number. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_HOME "http://schemas.google.com/g/2005#home" /** @@ -87,7 +87,7 @@ G_BEGIN_DECLS * The relation type URI for the phone number of a home fax machine. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_HOME_FAX "http://schemas.google.com/g/2005#home_fax" /** @@ -96,7 +96,7 @@ G_BEGIN_DECLS * The relation type URI for the phone number of an ISDN phone. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_ISDN "http://schemas.google.com/g/2005#isdn" /** @@ -105,7 +105,7 @@ G_BEGIN_DECLS * The relation type URI for the main phone number of a person. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_MAIN "http://schemas.google.com/g/2005#main" /** @@ -114,7 +114,7 @@ G_BEGIN_DECLS * The relation type URI for the phone number of a mobile phone. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_MOBILE "http://schemas.google.com/g/2005#mobile" /** @@ -123,7 +123,7 @@ G_BEGIN_DECLS * The relation type URI for a miscellaneous phone number. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_OTHER "http://schemas.google.com/g/2005#other" /** @@ -132,7 +132,7 @@ G_BEGIN_DECLS * The relation type URI for a miscellaneous fax machine's phone number. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_OTHER_FAX "http://schemas.google.com/g/2005#other_fax" /** @@ -141,7 +141,7 @@ G_BEGIN_DECLS * The relation type URI for the phone number of a pager. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_PAGER "http://schemas.google.com/g/2005#pager" /** @@ -150,7 +150,7 @@ G_BEGIN_DECLS * The relation type URI for the phone number of a radio phone. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_RADIO "http://schemas.google.com/g/2005#radio" /** @@ -159,7 +159,7 @@ G_BEGIN_DECLS * The relation type URI for the phone number of a telex machine. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_TELEX "http://schemas.google.com/g/2005#telex" /** @@ -168,7 +168,7 @@ G_BEGIN_DECLS * The relation type URI for the phone number of a TTY TTD. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_TTY_TDD "http://schemas.google.com/g/2005#tty_tdd" /** @@ -177,7 +177,7 @@ G_BEGIN_DECLS * The relation type URI for the phone number of a work place. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_WORK "http://schemas.google.com/g/2005#work" /** @@ -186,7 +186,7 @@ G_BEGIN_DECLS * The relation type URI for the phone number of a work fax machine. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_WORK_FAX "http://schemas.google.com/g/2005#work_fax" /** @@ -195,7 +195,7 @@ G_BEGIN_DECLS * The relation type URI for the phone number of a work mobile phone. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_WORK_MOBILE "http://schemas.google.com/g/2005#work_mobile" /** @@ -204,7 +204,7 @@ G_BEGIN_DECLS * The relation type URI for the phone number of a work pager. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_PHONE_NUMBER_WORK_PAGER "http://schemas.google.com/g/2005#work_pager" #define GDATA_TYPE_GD_PHONE_NUMBER (gdata_gd_phone_number_get_type ()) @@ -222,7 +222,7 @@ typedef struct _GDataGDPhoneNumberPrivate GDataGDPhoneNumberPrivate; * All the fields in the #GDataGDPhoneNumber structure are private and should never be accessed directly. * * Since: 0.2.0 - **/ + */ typedef struct { GDataParsable parent; GDataGDPhoneNumberPrivate *priv; @@ -234,7 +234,7 @@ typedef struct { * All the fields in the #GDataGDPhoneNumberClass structure are private and should never be accessed directly. * * Since: 0.4.0 - **/ + */ typedef struct { /*< private >*/ GDataParsableClass parent; diff --git a/gdata/gd/gdata-gd-postal-address.c b/gdata/gd/gdata-gd-postal-address.c index 6067409a..7adc68d7 100644 --- a/gdata/gd/gdata-gd-postal-address.c +++ b/gdata/gd/gdata-gd-postal-address.c @@ -28,7 +28,7 @@ * Note that it does not represent a simple "postalAddress" element, as "structuredPostalAddress" is now used wherever possible in the GData API. * * Since: 0.4.0 - **/ + */ #include <glib.h> #include <libxml/parser.h> @@ -121,7 +121,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_FORMATTED_ADDRESS, g_param_spec_string ("address", "Address", "The postal address itself.", @@ -138,7 +138,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_RELATION_TYPE, g_param_spec_string ("relation-type", "Relation type", "A programmatic value that identifies the type of postal address.", @@ -154,7 +154,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_LABEL, g_param_spec_string ("label", "Label", "A simple string value used to name this postal address.", @@ -170,7 +170,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_IS_PRIMARY, g_param_spec_boolean ("is-primary", "Primary?", "Indicates which postal address out of a group is primary.", @@ -186,7 +186,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_MAIL_CLASS, g_param_spec_string ("mail-class", "Mail class", "Classes of mail accepted at this address.", @@ -202,7 +202,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_USAGE, g_param_spec_string ("usage", "Usage", "The context in which this addess can be used.", @@ -218,7 +218,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_AGENT, g_param_spec_string ("agent", "Agent", "The agent who actually receives the mail.", @@ -234,7 +234,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_HOUSE_NAME, g_param_spec_string ("house-name", "House name", "Used in places where houses or buildings have names (and not numbers).", @@ -250,7 +250,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_STREET, g_param_spec_string ("street", "Street", "Can be street, avenue, road, etc.", @@ -266,7 +266,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_PO_BOX, g_param_spec_string ("po-box", "PO box", "Covers actual P.O. boxes, drawers, locked bags, etc.", @@ -283,7 +283,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_NEIGHBORHOOD, g_param_spec_string ("neighborhood", "Neighborhood", "This is used to disambiguate a street address.", @@ -299,7 +299,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_CITY, g_param_spec_string ("city", "City", "Can be city, village, town, borough, etc.", @@ -316,7 +316,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_SUBREGION, g_param_spec_string ("subregion", "Subregion", "Handles administrative districts such as U.S. or U.K. counties.", @@ -332,7 +332,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_REGION, g_param_spec_string ("region", "Region", "A state, province, county, Land, departement, etc.", @@ -348,7 +348,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_POSTCODE, g_param_spec_string ("postcode", "Postcode", "Postal code.", @@ -365,7 +365,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdStructuredPostalAddress">GData specification</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_COUNTRY, g_param_spec_string ("country", "Country", "The name of the country.", @@ -383,7 +383,7 @@ gdata_gd_postal_address_class_init (GDataGDPostalAddressClass *klass) * or <ulink type="http" url="http://www.iso.org/iso/iso-3166-1_decoding_table">ISO 3166-1 alpha-2</ulink>. * * Since: 0.5.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_COUNTRY_CODE, g_param_spec_string ("country-code", "Country code", "The ISO 3166-1 alpha-2 country code for the country.", @@ -688,7 +688,7 @@ get_namespaces (GDataParsable *parsable, GHashTable *namespaces) * Return value: a new #GDataGDPostalAddress, or %NULL; unref with g_object_unref() * * Since: 0.2.0 - **/ + */ GDataGDPostalAddress * gdata_gd_postal_address_new (const gchar *relation_type, const gchar *label, gboolean is_primary) { @@ -705,7 +705,7 @@ gdata_gd_postal_address_new (const gchar *relation_type, const gchar *label, gbo * Return value: the postal address itself, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_postal_address_get_address (GDataGDPostalAddress *self) { @@ -721,7 +721,7 @@ gdata_gd_postal_address_get_address (GDataGDPostalAddress *self) * Sets the #GDataGDPostalAddress:address property to @address. * * Since: 0.4.0 - **/ + */ void gdata_gd_postal_address_set_address (GDataGDPostalAddress *self, const gchar *address) { @@ -743,7 +743,7 @@ gdata_gd_postal_address_set_address (GDataGDPostalAddress *self, const gchar *ad * Return value: the postal address' relation type, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_postal_address_get_relation_type (GDataGDPostalAddress *self) { @@ -761,7 +761,7 @@ gdata_gd_postal_address_get_relation_type (GDataGDPostalAddress *self) * Set @relation_type to %NULL to unset the property in the postal address. * * Since: 0.4.0 - **/ + */ void gdata_gd_postal_address_set_relation_type (GDataGDPostalAddress *self, const gchar *relation_type) { @@ -782,7 +782,7 @@ gdata_gd_postal_address_set_relation_type (GDataGDPostalAddress *self, const gch * Return value: the postal address' label, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_postal_address_get_label (GDataGDPostalAddress *self) { @@ -800,7 +800,7 @@ gdata_gd_postal_address_get_label (GDataGDPostalAddress *self) * Set @label to %NULL to unset the property in the postal address. * * Since: 0.4.0 - **/ + */ void gdata_gd_postal_address_set_label (GDataGDPostalAddress *self, const gchar *label) { @@ -820,7 +820,7 @@ gdata_gd_postal_address_set_label (GDataGDPostalAddress *self, const gchar *labe * Return value: %TRUE if this is the primary postal address, %FALSE otherwise * * Since: 0.4.0 - **/ + */ gboolean gdata_gd_postal_address_is_primary (GDataGDPostalAddress *self) { @@ -836,7 +836,7 @@ gdata_gd_postal_address_is_primary (GDataGDPostalAddress *self) * Sets the #GDataGDPostalAddress:is-primary property to @is_primary. * * Since: 0.4.0 - **/ + */ void gdata_gd_postal_address_set_is_primary (GDataGDPostalAddress *self, gboolean is_primary) { @@ -855,7 +855,7 @@ gdata_gd_postal_address_set_is_primary (GDataGDPostalAddress *self, gboolean is_ * Return value: the postal address' mail class, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_postal_address_get_mail_class (GDataGDPostalAddress *self) { @@ -873,7 +873,7 @@ gdata_gd_postal_address_get_mail_class (GDataGDPostalAddress *self) * Set @mail_class to %NULL to unset the property in the postal address. * * Since: 0.5.0 - **/ + */ void gdata_gd_postal_address_set_mail_class (GDataGDPostalAddress *self, const gchar *mail_class) { @@ -894,7 +894,7 @@ gdata_gd_postal_address_set_mail_class (GDataGDPostalAddress *self, const gchar * Return value: the postal address' usage, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_postal_address_get_usage (GDataGDPostalAddress *self) { @@ -912,7 +912,7 @@ gdata_gd_postal_address_get_usage (GDataGDPostalAddress *self) * Set @usage to %NULL to unset the property in the postal address. * * Since: 0.5.0 - **/ + */ void gdata_gd_postal_address_set_usage (GDataGDPostalAddress *self, const gchar *usage) { @@ -933,7 +933,7 @@ gdata_gd_postal_address_set_usage (GDataGDPostalAddress *self, const gchar *usag * Return value: the postal address' agent, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_postal_address_get_agent (GDataGDPostalAddress *self) { @@ -951,7 +951,7 @@ gdata_gd_postal_address_get_agent (GDataGDPostalAddress *self) * Set @agent to %NULL to unset the property in the postal address. * * Since: 0.5.0 - **/ + */ void gdata_gd_postal_address_set_agent (GDataGDPostalAddress *self, const gchar *agent) { @@ -972,7 +972,7 @@ gdata_gd_postal_address_set_agent (GDataGDPostalAddress *self, const gchar *agen * Return value: the postal address' house name, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_postal_address_get_house_name (GDataGDPostalAddress *self) { @@ -990,7 +990,7 @@ gdata_gd_postal_address_get_house_name (GDataGDPostalAddress *self) * Set @house_name to %NULL to unset the property in the postal address. * * Since: 0.5.0 - **/ + */ void gdata_gd_postal_address_set_house_name (GDataGDPostalAddress *self, const gchar *house_name) { @@ -1011,7 +1011,7 @@ gdata_gd_postal_address_set_house_name (GDataGDPostalAddress *self, const gchar * Return value: the postal address' street, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_postal_address_get_street (GDataGDPostalAddress *self) { @@ -1029,7 +1029,7 @@ gdata_gd_postal_address_get_street (GDataGDPostalAddress *self) * Set @street to %NULL to unset the property in the postal address. * * Since: 0.5.0 - **/ + */ void gdata_gd_postal_address_set_street (GDataGDPostalAddress *self, const gchar *street) { @@ -1050,7 +1050,7 @@ gdata_gd_postal_address_set_street (GDataGDPostalAddress *self, const gchar *str * Return value: the postal address' P.O. box, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_postal_address_get_po_box (GDataGDPostalAddress *self) { @@ -1068,7 +1068,7 @@ gdata_gd_postal_address_get_po_box (GDataGDPostalAddress *self) * Set @po_box to %NULL to unset the property in the postal address. * * Since: 0.5.0 - **/ + */ void gdata_gd_postal_address_set_po_box (GDataGDPostalAddress *self, const gchar *po_box) { @@ -1089,7 +1089,7 @@ gdata_gd_postal_address_set_po_box (GDataGDPostalAddress *self, const gchar *po_ * Return value: the postal address' neighborhood, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_postal_address_get_neighborhood (GDataGDPostalAddress *self) { @@ -1107,7 +1107,7 @@ gdata_gd_postal_address_get_neighborhood (GDataGDPostalAddress *self) * Set @neighborhood to %NULL to unset the property in the postal address. * * Since: 0.5.0 - **/ + */ void gdata_gd_postal_address_set_neighborhood (GDataGDPostalAddress *self, const gchar *neighborhood) { @@ -1128,7 +1128,7 @@ gdata_gd_postal_address_set_neighborhood (GDataGDPostalAddress *self, const gcha * Return value: the postal address' city, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_postal_address_get_city (GDataGDPostalAddress *self) { @@ -1146,7 +1146,7 @@ gdata_gd_postal_address_get_city (GDataGDPostalAddress *self) * Set @city to %NULL to unset the property in the postal address. * * Since: 0.5.0 - **/ + */ void gdata_gd_postal_address_set_city (GDataGDPostalAddress *self, const gchar *city) { @@ -1167,7 +1167,7 @@ gdata_gd_postal_address_set_city (GDataGDPostalAddress *self, const gchar *city) * Return value: the postal address' subregion, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_postal_address_get_subregion (GDataGDPostalAddress *self) { @@ -1185,7 +1185,7 @@ gdata_gd_postal_address_get_subregion (GDataGDPostalAddress *self) * Set @subregion to %NULL to unset the property in the postal address. * * Since: 0.5.0 - **/ + */ void gdata_gd_postal_address_set_subregion (GDataGDPostalAddress *self, const gchar *subregion) { @@ -1206,7 +1206,7 @@ gdata_gd_postal_address_set_subregion (GDataGDPostalAddress *self, const gchar * * Return value: the postal address' region, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_postal_address_get_region (GDataGDPostalAddress *self) { @@ -1224,7 +1224,7 @@ gdata_gd_postal_address_get_region (GDataGDPostalAddress *self) * Set @region to %NULL to unset the property in the postal address. * * Since: 0.5.0 - **/ + */ void gdata_gd_postal_address_set_region (GDataGDPostalAddress *self, const gchar *region) { @@ -1245,7 +1245,7 @@ gdata_gd_postal_address_set_region (GDataGDPostalAddress *self, const gchar *reg * Return value: the postal address' postcode, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_postal_address_get_postcode (GDataGDPostalAddress *self) { @@ -1263,7 +1263,7 @@ gdata_gd_postal_address_get_postcode (GDataGDPostalAddress *self) * Set @postcode to %NULL to unset the property in the postal address. * * Since: 0.5.0 - **/ + */ void gdata_gd_postal_address_set_postcode (GDataGDPostalAddress *self, const gchar *postcode) { @@ -1284,7 +1284,7 @@ gdata_gd_postal_address_set_postcode (GDataGDPostalAddress *self, const gchar *p * Return value: the postal address' country, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_postal_address_get_country (GDataGDPostalAddress *self) { @@ -1301,7 +1301,7 @@ gdata_gd_postal_address_get_country (GDataGDPostalAddress *self) * Return value: the postal address' ISO 3166-1 alpha-2 country code, or %NULL * * Since: 0.5.0 - **/ + */ const gchar * gdata_gd_postal_address_get_country_code (GDataGDPostalAddress *self) { @@ -1321,7 +1321,7 @@ gdata_gd_postal_address_get_country_code (GDataGDPostalAddress *self) * also be provided. * * Since: 0.5.0 - **/ + */ void gdata_gd_postal_address_set_country (GDataGDPostalAddress *self, const gchar *country, const gchar *country_code) { diff --git a/gdata/gd/gdata-gd-postal-address.h b/gdata/gd/gdata-gd-postal-address.h index c4208193..c544c419 100644 --- a/gdata/gd/gdata-gd-postal-address.h +++ b/gdata/gd/gdata-gd-postal-address.h @@ -33,7 +33,7 @@ G_BEGIN_DECLS * The relation type URI for the postal address of a workplace. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_POSTAL_ADDRESS_WORK "http://schemas.google.com/g/2005#work" /** @@ -42,7 +42,7 @@ G_BEGIN_DECLS * The relation type URI for the postal address of a home. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_POSTAL_ADDRESS_HOME "http://schemas.google.com/g/2005#home" /** @@ -51,7 +51,7 @@ G_BEGIN_DECLS * The relation type URI for a miscellaneous postal address. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_POSTAL_ADDRESS_OTHER "http://schemas.google.com/g/2005#other" /** @@ -60,7 +60,7 @@ G_BEGIN_DECLS * Parcels and letters can be sent to the address. Value for #GDataGDPostalAddress:mail-class. * * Since: 0.5.0 - **/ + */ #define GDATA_GD_MAIL_CLASS_BOTH "http://schemas.google.com/g/2005#both" /** @@ -69,7 +69,7 @@ G_BEGIN_DECLS * Only letters can be sent to the address. Value for #GDataGDPostalAddress:mail-class. * * Since: 0.5.0 - **/ + */ #define GDATA_GD_MAIL_CLASS_LETTERS "http://schemas.google.com/g/2005#letters" /** @@ -78,7 +78,7 @@ G_BEGIN_DECLS * Only parcels can be sent to the address. Value for #GDataGDPostalAddress:mail-class. * * Since: 0.5.0 - **/ + */ #define GDATA_GD_MAIL_CLASS_PARCELS "http://schemas.google.com/g/2005#parcels" /** @@ -87,7 +87,7 @@ G_BEGIN_DECLS * Address is purely locational and cannot be used for mail. Value for #GDataGDPostalAddress:mail-class. * * Since: 0.5.0 - **/ + */ #define GDATA_GD_MAIL_CLASS_NEITHER "http://schemas.google.com/g/2005#neither" /** @@ -96,7 +96,7 @@ G_BEGIN_DECLS * The address is for general usage. Value for #GDataGDPostalAddress:usage. * * Since: 0.5.0 - **/ + */ #define GDATA_GD_ADDRESS_USAGE_GENERAL "http://schemas.google.com/g/2005#general" /** @@ -105,7 +105,7 @@ G_BEGIN_DECLS * The address is for local usage. Value for #GDataGDPostalAddress:usage. * * Since: 0.5.0 - **/ + */ #define GDATA_GD_ADDRESS_USAGE_LOCAL "http://schemas.google.com/g/2005#local" #define GDATA_TYPE_GD_POSTAL_ADDRESS (gdata_gd_postal_address_get_type ()) @@ -123,7 +123,7 @@ typedef struct _GDataGDPostalAddressPrivate GDataGDPostalAddressPrivate; * All the fields in the #GDataGDPostalAddress structure are private and should never be accessed directly. * * Since: 0.2.0 - **/ + */ typedef struct { GDataParsable parent; GDataGDPostalAddressPrivate *priv; @@ -135,7 +135,7 @@ typedef struct { * All the fields in the #GDataGDPostalAddressClass structure are private and should never be accessed directly. * * Since: 0.4.0 - **/ + */ typedef struct { /*< private >*/ GDataParsableClass parent; diff --git a/gdata/gd/gdata-gd-reminder.c b/gdata/gd/gdata-gd-reminder.c index 92763037..6c1e25d3 100644 --- a/gdata/gd/gdata-gd-reminder.c +++ b/gdata/gd/gdata-gd-reminder.c @@ -27,7 +27,7 @@ * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdReminder">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ #include <glib.h> #include <libxml/parser.h> @@ -89,7 +89,7 @@ gdata_gd_reminder_class_init (GDataGDReminderClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdReminder">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_METHOD, g_param_spec_string ("method", "Method", "The notification method the reminder should use.", @@ -105,7 +105,7 @@ gdata_gd_reminder_class_init (GDataGDReminderClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdReminder">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_ABSOLUTE_TIME, g_param_spec_int64 ("absolute-time", "Absolute time", "Absolute time at which the reminder should be issued.", @@ -121,7 +121,7 @@ gdata_gd_reminder_class_init (GDataGDReminderClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdReminder">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_IS_ABSOLUTE_TIME, g_param_spec_boolean ("is-absolute-time", "Absolute time?", "Whether the reminder is specified as an absolute or relative time.", @@ -137,7 +137,7 @@ gdata_gd_reminder_class_init (GDataGDReminderClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdReminder">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_RELATIVE_TIME, g_param_spec_int ("relative-time", "Relative time", "Time at which the reminder should be issued, in minutes.", @@ -324,7 +324,7 @@ get_namespaces (GDataParsable *parsable, GHashTable *namespaces) * Return value: a new #GDataGDReminder, or %NULL; unref with g_object_unref() * * Since: 0.2.0 - **/ + */ GDataGDReminder * gdata_gd_reminder_new (const gchar *method, gint64 absolute_time, gint relative_time) { @@ -343,7 +343,7 @@ gdata_gd_reminder_new (const gchar *method, gint64 absolute_time, gint relative_ * Return value: the method, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_reminder_get_method (GDataGDReminder *self) { @@ -361,7 +361,7 @@ gdata_gd_reminder_get_method (GDataGDReminder *self) * Set @method to %NULL to unset the property. * * Since: 0.4.0 - **/ + */ void gdata_gd_reminder_set_method (GDataGDReminder *self, const gchar *method) { @@ -381,7 +381,7 @@ gdata_gd_reminder_set_method (GDataGDReminder *self, const gchar *method) * Return value: the UNIX timestamp of the absolute time for the reminder, or <code class="literal">-1</code> * * Since: 0.4.0 - **/ + */ gint64 gdata_gd_reminder_get_absolute_time (GDataGDReminder *self) { @@ -399,7 +399,7 @@ gdata_gd_reminder_get_absolute_time (GDataGDReminder *self) * Set @absolute_time to <code class="literal">-1</code> to unset the property. * * Since: 0.4.0 - **/ + */ void gdata_gd_reminder_set_absolute_time (GDataGDReminder *self, gint64 absolute_time) { @@ -420,7 +420,7 @@ gdata_gd_reminder_set_absolute_time (GDataGDReminder *self, gint64 absolute_time * Return value: %TRUE if the reminder is absolute, %FALSE otherwise * * Since: 0.4.0 - **/ + */ gboolean gdata_gd_reminder_is_absolute_time (GDataGDReminder *self) { @@ -437,7 +437,7 @@ gdata_gd_reminder_is_absolute_time (GDataGDReminder *self) * Return value: the relative time, or <code class="literal">-1</code> * * Since: 0.4.0 - **/ + */ gint gdata_gd_reminder_get_relative_time (GDataGDReminder *self) { @@ -455,7 +455,7 @@ gdata_gd_reminder_get_relative_time (GDataGDReminder *self) * Set @relative_time to <code class="literal">-1</code> to unset the property. * * Since: 0.4.0 - **/ + */ void gdata_gd_reminder_set_relative_time (GDataGDReminder *self, gint relative_time) { diff --git a/gdata/gd/gdata-gd-reminder.h b/gdata/gd/gdata-gd-reminder.h index 96e36c27..9f7373d8 100644 --- a/gdata/gd/gdata-gd-reminder.h +++ b/gdata/gd/gdata-gd-reminder.h @@ -33,7 +33,7 @@ G_BEGIN_DECLS * The #GDataGDReminder:method for an alert to appear in the user's browser. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_REMINDER_ALERT "alert" /** @@ -42,7 +42,7 @@ G_BEGIN_DECLS * The #GDataGDReminder:method for an alert to be sent to the user by e-mail. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_REMINDER_EMAIL "email" /** @@ -51,7 +51,7 @@ G_BEGIN_DECLS * The #GDataGDReminder:method for an alert to be sent to the user by SMS. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_REMINDER_SMS "sms" #define GDATA_TYPE_GD_REMINDER (gdata_gd_reminder_get_type ()) @@ -69,7 +69,7 @@ typedef struct _GDataGDReminderPrivate GDataGDReminderPrivate; * All the fields in the #GDataGDReminder structure are private and should never be accessed directly. * * Since: 0.2.0 - **/ + */ typedef struct { GDataParsable parent; GDataGDReminderPrivate *priv; @@ -81,7 +81,7 @@ typedef struct { * All the fields in the #GDataGDReminderClass structure are private and should never be accessed directly. * * Since: 0.4.0 - **/ + */ typedef struct { /*< private >*/ GDataParsableClass parent; diff --git a/gdata/gd/gdata-gd-when.c b/gdata/gd/gdata-gd-when.c index 52de500d..5b45aaae 100644 --- a/gdata/gd/gdata-gd-when.c +++ b/gdata/gd/gdata-gd-when.c @@ -27,7 +27,7 @@ * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdWhen">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ #include <glib.h> #include <libxml/parser.h> @@ -101,7 +101,7 @@ gdata_gd_when_class_init (GDataGDWhenClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdWhen">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_START_TIME, g_param_spec_int64 ("start-time", "Start time", "The name of the when.", @@ -117,7 +117,7 @@ gdata_gd_when_class_init (GDataGDWhenClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdWhen">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_END_TIME, g_param_spec_int64 ("end-time", "End time", "The title of a person within the when.", @@ -133,7 +133,7 @@ gdata_gd_when_class_init (GDataGDWhenClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdWhen">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_IS_DATE, g_param_spec_boolean ("is-date", "Date?", "A programmatic value that identifies the type of when.", @@ -150,7 +150,7 @@ gdata_gd_when_class_init (GDataGDWhenClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdWhen">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_VALUE_STRING, g_param_spec_string ("value-string", "Value string", "A simple string value used to name this when.", @@ -397,7 +397,7 @@ get_namespaces (GDataParsable *parsable, GHashTable *namespaces) * Return value: a new #GDataGDWhen, or %NULL; unref with g_object_unref() * * Since: 0.2.0 - **/ + */ GDataGDWhen * gdata_gd_when_new (gint64 start_time, gint64 end_time, gboolean is_date) { @@ -416,7 +416,7 @@ gdata_gd_when_new (gint64 start_time, gint64 end_time, gboolean is_date) * Return value: the UNIX timestamp for the start time of the event * * Since: 0.4.0 - **/ + */ gint64 gdata_gd_when_get_start_time (GDataGDWhen *self) { @@ -432,7 +432,7 @@ gdata_gd_when_get_start_time (GDataGDWhen *self) * Sets the #GDataGDWhen:start-time property to @start_time. * * Since: 0.4.0 - **/ + */ void gdata_gd_when_set_start_time (GDataGDWhen *self, gint64 start_time) { @@ -455,7 +455,7 @@ gdata_gd_when_set_start_time (GDataGDWhen *self, gint64 start_time) * <code class="literal">-1</code> * * Since: 0.4.0 - **/ + */ gint64 gdata_gd_when_get_end_time (GDataGDWhen *self) { @@ -473,7 +473,7 @@ gdata_gd_when_get_end_time (GDataGDWhen *self) * Set @end_time to <code class="literal">-1</code> to unset the property. * * Since: 0.4.0 - **/ + */ void gdata_gd_when_set_end_time (GDataGDWhen *self, gint64 end_time) { @@ -493,7 +493,7 @@ gdata_gd_when_set_end_time (GDataGDWhen *self, gint64 end_time) * Return value: %TRUE if #GDataGDWhen:start-time and #GDataGDWhen:end-time are dates rather than times, %FALSE otherwise * * Since: 0.4.0 - **/ + */ gboolean gdata_gd_when_is_date (GDataGDWhen *self) { @@ -509,7 +509,7 @@ gdata_gd_when_is_date (GDataGDWhen *self) * Sets the #GDataGDWhen:is-date property to @is_date. * * Since: 0.4.0 - **/ + */ void gdata_gd_when_set_is_date (GDataGDWhen *self, gboolean is_date) { @@ -528,7 +528,7 @@ gdata_gd_when_set_is_date (GDataGDWhen *self, gboolean is_date) * Return value: the value string, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_when_get_value_string (GDataGDWhen *self) { @@ -546,7 +546,7 @@ gdata_gd_when_get_value_string (GDataGDWhen *self) * Set @value_string to %NULL to unset the property. * * Since: 0.4.0 - **/ + */ void gdata_gd_when_set_value_string (GDataGDWhen *self, const gchar *value_string) { @@ -566,7 +566,7 @@ gdata_gd_when_set_value_string (GDataGDWhen *self, const gchar *value_string) * Return value: (element-type GData.GDReminder) (transfer none): a #GList of #GDataGDReminder<!-- -->s, or %NULL * * Since: 0.4.0 - **/ + */ GList * gdata_gd_when_get_reminders (GDataGDWhen *self) { @@ -584,7 +584,7 @@ gdata_gd_when_get_reminders (GDataGDWhen *self) * Duplicate reminders will not be added to the list. * * Since: 0.7.0 - **/ + */ void gdata_gd_when_add_reminder (GDataGDWhen *self, GDataGDReminder *reminder) { diff --git a/gdata/gd/gdata-gd-when.h b/gdata/gd/gdata-gd-when.h index 0e670afc..6bf9f051 100644 --- a/gdata/gd/gdata-gd-when.h +++ b/gdata/gd/gdata-gd-when.h @@ -34,7 +34,7 @@ G_BEGIN_DECLS * The event has been canceled. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_EVENT_STATUS_CANCELED "http://schemas.google.com/g/2005#event.canceled" /** @@ -43,7 +43,7 @@ G_BEGIN_DECLS * The event has been planned and confirmed. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_EVENT_STATUS_CONFIRMED "http://schemas.google.com/g/2005#event.confirmed" /** @@ -52,7 +52,7 @@ G_BEGIN_DECLS * The event has been planned, but only tentatively scheduled. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_EVENT_STATUS_TENTATIVE "http://schemas.google.com/g/2005#event.tentative" /** @@ -61,7 +61,7 @@ G_BEGIN_DECLS * The event is visible to only certain people. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_EVENT_VISIBILITY_CONFIDENTIAL "http://schemas.google.com/g/2005#event.confidential" /** @@ -70,7 +70,7 @@ G_BEGIN_DECLS * The event's visibility is inherited from the preferences of its owner. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_EVENT_VISIBILITY_DEFAULT "http://schemas.google.com/g/2005#event.default" /** @@ -79,7 +79,7 @@ G_BEGIN_DECLS * The event is visible to very few people. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_EVENT_VISIBILITY_PRIVATE "http://schemas.google.com/g/2005#event.private" /** @@ -88,7 +88,7 @@ G_BEGIN_DECLS * The event is visible to most people. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_EVENT_VISIBILITY_PUBLIC "http://schemas.google.com/g/2005#event.public" /** @@ -97,7 +97,7 @@ G_BEGIN_DECLS * The event consumes time in calendars; its time will be marked as busy in a free/busy search. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_EVENT_TRANSPARENCY_OPAQUE "http://schemas.google.com/g/2005#event.opaque" /** @@ -106,7 +106,7 @@ G_BEGIN_DECLS * The event does not consume time in calendars; its time will be not marked as busy in a free/busy search. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_EVENT_TRANSPARENCY_TRANSPARENT "http://schemas.google.com/g/2005#event.transparent" #define GDATA_TYPE_GD_WHEN (gdata_gd_when_get_type ()) @@ -124,7 +124,7 @@ typedef struct _GDataGDWhenPrivate GDataGDWhenPrivate; * All the fields in the #GDataGDWhen structure are private and should never be accessed directly. * * Since: 0.2.0 - **/ + */ typedef struct { GDataParsable parent; GDataGDWhenPrivate *priv; @@ -136,7 +136,7 @@ typedef struct { * All the fields in the #GDataGDWhenClass structure are private and should never be accessed directly. * * Since: 0.4.0 - **/ + */ typedef struct { /*< private >*/ GDataParsableClass parent; diff --git a/gdata/gd/gdata-gd-where.c b/gdata/gd/gdata-gd-where.c index 202ac429..ea299c02 100644 --- a/gdata/gd/gdata-gd-where.c +++ b/gdata/gd/gdata-gd-where.c @@ -27,7 +27,7 @@ * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdWhere">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ #include <glib.h> #include <libxml/parser.h> @@ -92,7 +92,7 @@ gdata_gd_where_class_init (GDataGDWhereClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdWhere">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_RELATION_TYPE, g_param_spec_string ("relation-type", "Relation type", "Specifies the relationship between the container and the containee.", @@ -108,7 +108,7 @@ gdata_gd_where_class_init (GDataGDWhereClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdWhere">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_VALUE_STRING, g_param_spec_string ("value-string", "Value string", "A simple string representation of this location.", @@ -124,7 +124,7 @@ gdata_gd_where_class_init (GDataGDWhereClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdWhere">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_LABEL, g_param_spec_string ("label", "Label", "Specifies a user-readable label to distinguish this location from others.", @@ -283,7 +283,7 @@ get_namespaces (GDataParsable *parsable, GHashTable *namespaces) * Return value: a new #GDataGDWhere; unref with g_object_unref() * * Since: 0.2.0 - **/ + */ GDataGDWhere * gdata_gd_where_new (const gchar *relation_type, const gchar *value_string, const gchar *label) { @@ -300,7 +300,7 @@ gdata_gd_where_new (const gchar *relation_type, const gchar *value_string, const * Return value: the relation type, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_where_get_relation_type (GDataGDWhere *self) { @@ -318,7 +318,7 @@ gdata_gd_where_get_relation_type (GDataGDWhere *self) * Set @relation_type to %NULL to unset the property. * * Since: 0.4.0 - **/ + */ void gdata_gd_where_set_relation_type (GDataGDWhere *self, const gchar *relation_type) { @@ -339,7 +339,7 @@ gdata_gd_where_set_relation_type (GDataGDWhere *self, const gchar *relation_type * Return value: the value string, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_where_get_value_string (GDataGDWhere *self) { @@ -357,7 +357,7 @@ gdata_gd_where_get_value_string (GDataGDWhere *self) * Set @value_string to %NULL to unset the property. * * Since: 0.4.0 - **/ + */ void gdata_gd_where_set_value_string (GDataGDWhere *self, const gchar *value_string) { @@ -377,7 +377,7 @@ gdata_gd_where_set_value_string (GDataGDWhere *self, const gchar *value_string) * Return value: the label, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_where_get_label (GDataGDWhere *self) { @@ -395,7 +395,7 @@ gdata_gd_where_get_label (GDataGDWhere *self) * Set @label to %NULL to unset the property. * * Since: 0.4.0 - **/ + */ void gdata_gd_where_set_label (GDataGDWhere *self, const gchar *label) { diff --git a/gdata/gd/gdata-gd-where.h b/gdata/gd/gdata-gd-where.h index fa1e744e..a44cac41 100644 --- a/gdata/gd/gdata-gd-where.h +++ b/gdata/gd/gdata-gd-where.h @@ -33,7 +33,7 @@ G_BEGIN_DECLS * The relation type URI for an event location. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_WHERE_EVENT "http://schemas.google.com/g/2005#event" /** @@ -42,7 +42,7 @@ G_BEGIN_DECLS * The relation type URI for an alternate event location, such as a video conference site. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_WHERE_EVENT_ALTERNATE "http://schemas.google.com/g/2005#event.alternate" /** @@ -51,7 +51,7 @@ G_BEGIN_DECLS * The relation type URI for an event's parking lot. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_WHERE_EVENT_PARKING "http://schemas.google.com/g/2005#event.parking" #define GDATA_TYPE_GD_WHERE (gdata_gd_where_get_type ()) @@ -69,7 +69,7 @@ typedef struct _GDataGDWherePrivate GDataGDWherePrivate; * All the fields in the #GDataGDWhere structure are private and should never be accessed directly. * * Since: 0.2.0 - **/ + */ typedef struct { GDataParsable parent; GDataGDWherePrivate *priv; @@ -81,7 +81,7 @@ typedef struct { * All the fields in the #GDataGDWhereClass structure are private and should never be accessed directly. * * Since: 0.4.0 - **/ + */ typedef struct { /*< private >*/ GDataParsableClass parent; diff --git a/gdata/gd/gdata-gd-who.c b/gdata/gd/gdata-gd-who.c index 4f45a17b..f637ee9a 100644 --- a/gdata/gd/gdata-gd-who.c +++ b/gdata/gd/gdata-gd-who.c @@ -27,7 +27,7 @@ * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdWho">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ #include <glib.h> #include <libxml/parser.h> @@ -92,7 +92,7 @@ gdata_gd_who_class_init (GDataGDWhoClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdWho">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_RELATION_TYPE, g_param_spec_string ("relation-type", "Relation type", "Specifies the relationship between the container and the containee.", @@ -108,7 +108,7 @@ gdata_gd_who_class_init (GDataGDWhoClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdWho">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_VALUE_STRING, g_param_spec_string ("value-string", "Value string", "A simple string representation of this person.", @@ -124,7 +124,7 @@ gdata_gd_who_class_init (GDataGDWhoClass *klass) * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdWho">GData specification</ulink>. * * Since: 0.4.0 - **/ + */ g_object_class_install_property (gobject_class, PROP_EMAIL_ADDRESS, g_param_spec_string ("email-address", "E-mail address", "The e-mail address of the person represented by the #GDataGDWho.", @@ -288,7 +288,7 @@ get_namespaces (GDataParsable *parsable, GHashTable *namespaces) * Return value: a new #GDataGDWho; unref with g_object_unref() * * Since: 0.2.0 - **/ + */ GDataGDWho * gdata_gd_who_new (const gchar *relation_type, const gchar *value_string, const gchar *email_address) { @@ -306,7 +306,7 @@ gdata_gd_who_new (const gchar *relation_type, const gchar *value_string, const g * Return value: the relation type, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_who_get_relation_type (GDataGDWho *self) { @@ -324,7 +324,7 @@ gdata_gd_who_get_relation_type (GDataGDWho *self) * Set @relation_type to %NULL to unset the property. * * Since: 0.4.0 - **/ + */ void gdata_gd_who_set_relation_type (GDataGDWho *self, const gchar *relation_type) { @@ -345,7 +345,7 @@ gdata_gd_who_set_relation_type (GDataGDWho *self, const gchar *relation_type) * Return value: the value string, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_who_get_value_string (GDataGDWho *self) { @@ -363,7 +363,7 @@ gdata_gd_who_get_value_string (GDataGDWho *self) * Set @value_string to %NULL to unset the property. * * Since: 0.4.0 - **/ + */ void gdata_gd_who_set_value_string (GDataGDWho *self, const gchar *value_string) { @@ -383,7 +383,7 @@ gdata_gd_who_set_value_string (GDataGDWho *self, const gchar *value_string) * Return value: the e-mail address, or %NULL * * Since: 0.4.0 - **/ + */ const gchar * gdata_gd_who_get_email_address (GDataGDWho *self) { @@ -401,7 +401,7 @@ gdata_gd_who_get_email_address (GDataGDWho *self) * Set @email_address to %NULL to unset the property. * * Since: 0.4.0 - **/ + */ void gdata_gd_who_set_email_address (GDataGDWho *self, const gchar *email_address) { diff --git a/gdata/gd/gdata-gd-who.h b/gdata/gd/gdata-gd-who.h index c5fe2780..00a5cc6f 100644 --- a/gdata/gd/gdata-gd-who.h +++ b/gdata/gd/gdata-gd-who.h @@ -33,7 +33,7 @@ G_BEGIN_DECLS * The relation type URI for a general meeting or event attendee. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_WHO_EVENT_ATTENDEE "http://schemas.google.com/g/2005#event.attendee" /** @@ -42,7 +42,7 @@ G_BEGIN_DECLS * The relation type URI for an event organizer (not necessarily an attendee). * * Since: 0.7.0 - **/ + */ #define GDATA_GD_WHO_EVENT_ORGANIZER "http://schemas.google.com/g/2005#event.organizer" /** @@ -51,7 +51,7 @@ G_BEGIN_DECLS * The relation type URI for an event performer, which is similar to %GDATA_GD_WHO_EVENT_SPEAKER, but with more emphasis on art rather than speaking. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_WHO_EVENT_PERFORMER "http://schemas.google.com/g/2005#event.performer" /** @@ -60,7 +60,7 @@ G_BEGIN_DECLS * The relation type URI for a speaker at an event. * * Since: 0.7.0 - **/ + */ #define GDATA_GD_WHO_EVENT_SPEAKER "http://schemas.google.com/g/2005#event.speaker" /* TODO: Message kind relation types (http://code.google.com/apis/gdata/docs/2.0/elements.html#gdWho) */ @@ -80,7 +80,7 @@ typedef struct _GDataGDWhoPrivate GDataGDWhoPrivate; * All the fields in the #GDataGDWho structure are private and should never be accessed directly. * * Since: 0.2.0 - **/ + */ typedef struct { GDataParsable parent; GDataGDWhoPrivate *priv; @@ -92,7 +92,7 @@ typedef struct { * All the fields in the #GDataGDWhoClass structure are private and should never be accessed directly. * * Since: 0.4.0 - **/ + */ typedef struct { /*< private >*/ GDataParsableClass parent; |