/android/import-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/import-contacts

« back to all changes in this revision

Viewing changes to src/am/ed/importcontacts/Backend.java

  • Committer: Tim Marston
  • Date: 2013-07-19 15:55:07 UTC
  • Revision ID: tim@ed.am-20130719155507-qb78vx8m4s1ngyut
added suopport for birthdays

Show diffs side-by-side

added added

removed removed

1
1
/*
2
2
 * Backend.java
3
3
 *
4
 
 * Copyright (C) 2012 Tim Marston <tim@ed.am>
 
4
 * Copyright (C) 2012 to 2013 Tim Marston <tim@ed.am>
5
5
 *
6
6
 * This file is part of the Import Contacts program (hereafter referred
7
7
 * to as "this program").  For more information, see
107
107
        public void addContactNote( Long id, String note )
108
108
                throws ContactCreationException;
109
109
 
 
110
        /**
 
111
         * Add a birthday to an existing contact on the device.
 
112
         *
 
113
         * @param id the existing contact's id
 
114
         * @param birthday the birthday
 
115
         * @throws ContactCreationException
 
116
         */
 
117
        public void addContactBirthday( Long id, String birthday )
 
118
                throws ContactCreationException;
110
119
}