Android Open Source - geo-koala-android-client Tag






From Project

Back to project page geo-koala-android-client.

License

The source code is released under:

GNU Lesser General Public License

If you think the Android project geo-koala-android-client 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 com.vanitysoft.reapefire.android;
/*from w  w w.j a va 2 s.c  om*/
import java.util.HashSet;
import java.util.Set;

public class Tag {
  String id;
  String name;
  Set<Account> accounts = new HashSet<Account>();

  public Set<Account> getAccounts() {
    return accounts;
  }

  public void setAccounts(Set<Account> accounts) {
    this.accounts = accounts;
  }

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public String getId() {
    return id;
  }

  public void setId(String id) {
    this.id = id;
  }

}




Java Source Code List

com.vanitysoft.reapefire.android.AbstractAsyncActivity.java
com.vanitysoft.reapefire.android.Account.java
com.vanitysoft.reapefire.android.Event.java
com.vanitysoft.reapefire.android.MainActivity.java
com.vanitysoft.reapefire.android.Message.java
com.vanitysoft.reapefire.android.PublisherServiceUtil.java
com.vanitysoft.reapefire.android.Tag.java
com.vanitysoft.reapefire.android.User.java