Back to project page HastingsMobileAndroid.
The source code is released under:
Apache License
If you think the Android project HastingsMobileAndroid 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 edu.hastings.hastingscollege.adapter; // www . j a va 2 s . c o m public class ContactsDataModel { private String contactName; private String contactPhoneNumber; public ContactsDataModel(String contactName, String contactPhoneNumber) { this.contactName = contactName; this.contactPhoneNumber = contactPhoneNumber; } public String getContactName() { return contactName; } public void setContactName(String contactName) { this.contactName = contactName; } public String getContactPhoneNumber() { return contactPhoneNumber; } public void setContactPhoneNumber(String contactPhoneNumber) { this.contactPhoneNumber = contactPhoneNumber; } }