Android Open Source - WhoIsThis Email






From Project

Back to project page WhoIsThis.

License

The source code is released under:

MIT License

If you think the Android project WhoIsThis listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package hu.Edudroid.WhoIsThis;
/*from  ww  w. j ava2  s  .  com*/
public class Email {
   private String address;
   private String type;
   private String type_label;
   
   public String getAddress() {
     return address;
   }
   public void setAddress(String address) {
     this.address = address;
   }
   public String getType() {
     return type;
   }
   public void setType(String t) {
     this.type = t;
   }   
  public String getTypeLabel() {
    return type_label;
  }  
  public void setTypeLabel(String type_label) {
    this.type_label = type_label;
  }   
   public Email(String a, String t) {
     this.address = a;
     this.type = t;
   }
 }




Java Source Code List

hu.Edudroid.WhoIsThis.Address.java
hu.Edudroid.WhoIsThis.CallHistoryItem.java
hu.Edudroid.WhoIsThis.CallHistory.java
hu.Edudroid.WhoIsThis.ContactAPI.java
hu.Edudroid.WhoIsThis.ContactDetails.java
hu.Edudroid.WhoIsThis.ContactList.java
hu.Edudroid.WhoIsThis.Contact.java
hu.Edudroid.WhoIsThis.Email.java
hu.Edudroid.WhoIsThis.FacebookFeed.java
hu.Edudroid.WhoIsThis.IM.java
hu.Edudroid.WhoIsThis.Main.java
hu.Edudroid.WhoIsThis.Organization.java
hu.Edudroid.WhoIsThis.Phone.java
hu.Edudroid.WhoIsThis.PieDetailsItem.java
hu.Edudroid.WhoIsThis.ShowStatistics.java
hu.Edudroid.WhoIsThis.View_PieChart.java