Android Open Source - WhoIsThis I M






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  w  w w  .ja v  a2 s. com
public class IM {
   private String name;
   private String type;
   private String type_label;
   private String protocol;
   private String protocol_label;
   public String getName() {
     return name;
   }
   public void setName(String name) {
     this.name = name;
   }
   public String getType() {
     return type;
   }
   public void setType(String type) {
     this.type = type;
   }
  public String getTypeLabel() {
    return type_label;
  }  
  public void setTypeLabel(String type_label) {
    this.type_label = type_label;
  }
   public String getProtocol() {
     return protocol;
   }
   public void setProtocol(String protocol) {
     this.protocol = protocol;
   }
  public String getProtocolLabel() {
    return protocol_label;
  }  
  public void setProtocolLabel(String protocol_label) {
    this.protocol_label = protocol_label;
  }
   
   public IM(String name, String type, String protocol) {
     this.name = name;
     this.type = type;
     this.protocol = protocol;
   }
 }




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