/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 14:48:44 UTC
  • Revision ID: tim@ed.am-20121221144844-licgvkppbjq4th4m
updated copyright dates and improved an error message

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
}