Recent.java :  » Contact » sjtucontact » cn » edu » sjtu » software » sjtucontacts » model » Android Open Source

Android Open Source » Contact » sjtucontact 
sjtucontact » cn » edu » sjtu » software » sjtucontacts » model » Recent.java
package cn.edu.sjtu.software.sjtucontacts.model;

import java.io.Serializable;

public class Recent implements Serializable {

  private int contactId;
  private String contactName;
  private int time;
  private String phoneNumber;
  private int type;
  
  public Recent()
  {
    super();
  }
  
  public Recent(int contactId, String contactName, int time, String phoneNumber, int type )
  {
    super();
    this.contactId = contactId;
    this.contactName = contactName;
    this.time = time;
    this.phoneNumber = phoneNumber;
    this.type = type;
  }
  
  public int getContactId()
  {
    return contactId;
  }
  
  public void setContactId(int contactId)
  {
    this.contactId = contactId;
  }
  
  public String getContactName()
  {
    return contactName;
  }
  
  public void setContactName(String contactName)
  {
    this.contactName = contactName;
  }
  
  public int getTime()
  {
    return time;
  }
  
  public void setTime(int time)
  {
    this.time = time;
  }
  
  public String getPhoneNumber()
  {
    return phoneNumber;
  }
  
  public void setPhoneNumber(String phoneNumber)
  {
    this.phoneNumber = phoneNumber;
  }
  
  public int getType()
  {
    return type;
  }
  
  public void setType(int type)
  {
    this.type = type;
  }
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.