/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-21 21:05:13 UTC
  • Revision ID: tim@ed.am-20121221210513-scyf50006hqadgjw
updated NEWS

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
}