mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-15 05:55:06 -05:00
3a9589714b
Conflicts: src/com/fsck/k9/helper/ContactsSdk3_4.java src/com/fsck/k9/helper/ContactsSdk5.java
25 lines
685 B
Java
Executable File
25 lines
685 B
Java
Executable File
package com.fsck.k9.helper;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.ArrayList;
|
|
|
|
public class ContactItem implements Serializable {
|
|
private static final long serialVersionUID = 4893328130147843375L;
|
|
|
|
private String displayName = null;
|
|
private ArrayList<String> emailAddresses = null;
|
|
|
|
public String getDisplayName() {
|
|
return displayName;
|
|
}
|
|
public void setDisplayName(String displayName) {
|
|
this.displayName = displayName;
|
|
}
|
|
public ArrayList<String> getEmailAddresses() {
|
|
return emailAddresses;
|
|
}
|
|
public void setEmailAddresses(ArrayList<String> emailAddresses) {
|
|
this.emailAddresses = emailAddresses;
|
|
}
|
|
}
|