Home | History | Annotate | Download | only in com.example.android.directshare

Lines Matching defs:Contact

23 public class Contact {
28 public static final Contact[] CONTACTS = {
29 new Contact("Tereasa"),
30 new Contact("Chang"),
31 new Contact("Kory"),
32 new Contact("Clare"),
33 new Contact("Landon"),
34 new Contact("Kyle"),
35 new Contact("Deana"),
36 new Contact("Daria"),
37 new Contact("Melisa"),
38 new Contact("Sammie"),
42 * The contact ID.
47 * Representative invalid contact ID.
52 * The name of this contact.
57 * Instantiates a new {@link Contact}.
59 * @param name The name of the contact.
61 public Contact(String name) {
66 * Finds a {@link Contact} specified by a contact ID.
68 * @param id The contact ID. This needs to be a valid ID.
69 * @return A {@link Contact}
71 public static Contact byId(int id) {
76 * Gets the name of this contact.
78 * @return The name of this contact.
85 * Gets the icon of this contact.