|
@@ -3,17 +3,17 @@ package com.xplora.xplauncher.model;
|
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
|
|
public class ContactModel {
|
|
|
- private int contactIcon = 0;
|
|
|
+ private int headImage = 0;
|
|
|
private String contactName = "";
|
|
|
- private int callTime = 0;
|
|
|
private int callType = 0;
|
|
|
+ private int callTime = 0;
|
|
|
|
|
|
- public int getContactIcon() {
|
|
|
- return contactIcon;
|
|
|
+ public int getHeadImage() {
|
|
|
+ return headImage;
|
|
|
}
|
|
|
|
|
|
- public void setContactIcon(int drawable) {
|
|
|
- this.contactIcon = drawable;
|
|
|
+ public void setHeadImage(int headImage) {
|
|
|
+ this.headImage = headImage;
|
|
|
}
|
|
|
|
|
|
public String getContactName() {
|