public class ContactInfo
{
/**
* Property
*/
protected String EMail;
protected String PhonePre;
protected String Phone;
protected String MobilePre;
protected String Mobile;
protected String FaxPre;
protected String Fax;
/**
* Constructor
*/
public ContactInfo(String mail, String phonePre, String phone, String mobilePre, String mobile, String faxPre, String fax)
{
super();
EMail = mail;
PhonePre = phonePre;
Phone = phone;
MobilePre = mobilePre;
Mobile = mobile;
FaxPre = faxPre;
Fax = fax;
}
public ContactInfo()
{
}
/**
* Getter/Setter
*/
public String getEMail()
{
return EMail;
}
public void setEMail(String mail)
{
EMail = mail;
}
public String getPhonePre()
{
return PhonePre;
}
public void setPhonePre(String phonePre)
{
PhonePre = phonePre;
}
public String getPhone()
{
return Phone;
}
public void setPhone(String phone)
{
Phone = phone;
}
public String getMobilePre()
{
return MobilePre;
}
public void setMobilePre(String mobilePre)
{
MobilePre = mobilePre;
}
public String getMobile()
{
return Mobile;
}
public void setMobile(String mobile)
{
Mobile = mobile;
}
public String getFaxPre()
{
return FaxPre;
}
public void setFaxPre(String faxPre)
{
FaxPre = faxPre;
}
public String getFax()
{
return Fax;
}
public void setFax(String fax)
{
Fax = fax;
}
}