~ubuntu-branches/ubuntu/quantal/folks/quantal

« back to all changes in this revision

Viewing changes to folks/birthday-details.vala

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-09-12 09:48:10 UTC
  • mfrom: (1.6.2)
  • Revision ID: package-import@ubuntu.com-20120912094810-6zlx8889hcovxj7p
Tags: 0.7.4.1-0ubuntu1
* New upstream bugfix release
* debian/control:
  - Bump build-depends on libglib2.0-dev, valac-0.18, libvala-0.18-dev
* debian/libfolks-eds25.symbols:
* debian/libfolks25.symbols:
  - Updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
using GLib;
24
24
 
25
25
/**
26
 
 * This interface contains the birth date of a {@link Persona} and
27
 
 * {@link Individual}
 
26
 * Birthday details for a contact.
 
27
 *
 
28
 * This allows representation of the birth date and associated calendar event ID
 
29
 * of a contact.
28
30
 *
29
31
 * @since 0.4.0
30
32
 */
34
36
   * The birthday of the {@link Persona} and {@link Individual}. This
35
37
   * is assumed to be in UTC.
36
38
   *
37
 
   * If this is `null`, the contact's birthday isn't known.
 
39
   * If this is ``null``, the contact's birthday isn't known.
38
40
   *
39
41
   * @since 0.4.0
40
42
   */
48
50
   * notification and will only return once the birthday has been written to the
49
51
   * relevant backing store (or the operation's failed).
50
52
   *
51
 
   * @param birthday the new birthday (or `null` to unset the birthday)
 
53
   * @param birthday the new birthday (or ``null`` to unset the birthday)
52
54
   * @throws PropertyError if setting the birthday failed
53
55
   * @since 0.6.2
54
56
   */
63
65
  /**
64
66
   * The event ID of the birthday event from the source calendar.
65
67
   *
66
 
   * If this is `null`, the birthday event is unknown.
 
68
   * If this is ``null``, the birthday event is unknown. The semantics of the
 
69
   * event ID are left unspecified by folks.
67
70
   *
68
71
   * @since 0.4.0
69
72
   */
77
80
   * error notification and will only return once the event has been written to
78
81
   * the relevant backing store (or the operation's failed).
79
82
   *
80
 
   * @param event_id the new birthday event ID (or `null` to unset the event ID)
 
83
   * @param event_id the new birthday event ID (or ``null`` to unset the event
 
84
   * ID)
81
85
   * @throws PropertyError if setting the birthday event ID failed
82
86
   * @since 0.6.2
83
87
   */