Back to project page Android-1.
The source code is released under:
MIT License
If you think the Android project Android-1 listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.georgi.mehadapter; // w w w .j a v a 2 s.c o m /** * Created by georgi on 11/19/14. */ public class Contact { private final String name; private final String number; private final long id; public Contact(String name, String number, long id) { this.name = name; this.number = number; this.id = id; } public String getName() { return name; } public String getNumber() { return number; } public long getId() { return id; } }