/android/export-contacts

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

« back to all changes in this revision

Viewing changes to src/am/ed/exportcontacts/Exporter.java

  • Committer: Tim Marston
  • Date: 2013-07-19 15:59:00 UTC
  • Revision ID: tim@ed.am-20130719155900-3g89jcjfdndwctyb
added support for birthdays

Show diffs side-by-side

added added

removed removed

1
1
/*
2
2
 * Exporter.java
3
3
 *
4
 
 * Copyright (C) 2011 Tim Marston <tim@ed.am>
 
4
 * Copyright (C) 2011 to 2013 Tim Marston <tim@ed.am>
5
5
 *
6
6
 * This file is part of the Export Contacts program (hereafter referred
7
7
 * to as "this program").  For more information, see
151
151
                protected ArrayList< EmailDetail > _emails = null;
152
152
                protected ArrayList< AddressDetail > _addresses = null;
153
153
                protected ArrayList< String > _notes = null;
 
154
                protected String _birthday = null;
154
155
 
155
156
                public void setName( String name )
156
157
                {
226
227
                        return _notes;
227
228
                }
228
229
 
 
230
                public void setBirthday( String birthday )
 
231
                {
 
232
                        _birthday = birthday;
 
233
                }
 
234
 
 
235
                public String getBirthday()
 
236
                {
 
237
                        return _birthday;
 
238
                }
 
239
 
229
240
                public String getPrimaryIdentifier()
230
241
                {
231
242
                        if( _name != null )