Back to project page wiki-contacts-android.
The source code is released under:
Apache License
If you think the Android project wiki-contacts-android 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.kahkong.wikicontacts.modal; //from ww w. j av a2 s . c o m import android.graphics.Bitmap; /** * * @author Poh Kah Kong * */ public class ContactAndImage extends Contact { protected Bitmap image = null; public ContactAndImage() { } public ContactAndImage(Contact contact) { id = contact.id; name = contact.name; countryCode = contact.countryCode; number = contact.number; spam = contact.spam; description = contact.description; tags = contact.tags; email = contact.email; address= contact.address; website = contact.website; imageUrl = contact.imageUrl; } public Bitmap getImage() { return image; } public void setImage(Bitmap image) { this.image = image; } }