/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: edam
  • Date: 2012-12-20 16:49:39 UTC
  • Revision ID: tim@ed.am-20121220164939-j9mg98v0uofws7kw
added support for notes; rewrote backends so that all normalising of data is now done within the contacts cache; made the vCard unescape routine slightly more acceptant of non-standard escaped characters

Show diffs side-by-side

added added

removed removed

89
89
         */
90
90
        public void addContactOrganisation( Long id, String organisation,
91
91
                ContactData.ExtraDetail data ) throws ContactCreationException;
 
92
 
 
93
        /**
 
94
         * Add a note to an existing contact on the device.
 
95
         * @param id the existing contact's id
 
96
         * @param note the note
 
97
         * @throws ContactCreationException
 
98
         */
 
99
        public void addContactNote( Long id, String note )
 
100
                throws ContactCreationException;
 
101
 
92
102
}