Back to project page android_app.
The source code is released under:
Apache License
If you think the Android project android_app 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 models; /* ww w. j a va2s . co m*/ public class ContactListObject { String phone; String address; public ContactListObject(String phoneNumber, String addressTDan){ this.phone = phoneNumber; this.address = addressTDan; } public String getPhone(){ return phone; } public String getAddress(){ return address; } }