Back to project page BCC.
The source code is released under:
MIT License
If you think the Android project BCC 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.sdsu.bcc.database.data; /*from w ww. ja v a2 s .c o m*/ import java.io.Serializable; @SuppressWarnings("serial") public class CardInformation implements Serializable { private int transactionId = -1; private CategoryInformation category; private ContactInformation contact; private ImageInformation image; public int getTransactionId() { return transactionId; } public void setTransactionId(int transactionId) { this.transactionId = transactionId; } public ContactInformation getContact() { return contact; } public void setContact(ContactInformation contact) { this.contact = contact; } public CategoryInformation getCategory() { return category; } public void setCategory(CategoryInformation category) { this.category = category; } public ImageInformation getImage() { return image; } public void setImage(ImageInformation image) { this.image = image; } }