Android Open Source - Android-SDK-Manager Filter Item






From Project

Back to project page Android-SDK-Manager.

License

The source code is released under:

Apache License

If you think the Android project Android-SDK-Manager 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.pk.androidsdk.model;
//from  w ww.j av a2s  . c om
public class FilterItem
{
  /** PROPERTIES **/
  private Integer Type;
  private String Title;
  private Boolean Value;
  
  /** CONSTRUCTORS **/
  public FilterItem()
  {
    this.Type = null;
    this.Title = null;
    this.Value = null;
  }
  
  public FilterItem(int Type, String Title)
  {
    this.Type = Type;
    this.Title = Title;
    this.Value = false;
  }
  
  public FilterItem(int Type, String Title, boolean Value)
  {
    this.Type = Type;
    this.Title = Title;
    this.Value = Value;
  }
  
  /** SETTERS **/
  public void setType(int Type)
  {
    this.Type = Type;
  }
  
  public void setTitle(String Title)
  {
    this.Title = Title;
  }
  
  public void setValue(boolean Value)
  {
    this.Value = Value;
  }
  
  /** GETTERS **/
  public Integer getType()
  {
    return Type;
  }
  
  public String getTitle()
  {
    return Title;
  }
  
  public Boolean getValue()
  {
    return Value;
  }
}




Java Source Code List

com.pk.androidsdk.activity.ActivityDisplay.java
com.pk.androidsdk.activity.ActivityMain.java
com.pk.androidsdk.activity.ActivitySettings.java
com.pk.androidsdk.adapter.DrawerAdapter.java
com.pk.androidsdk.fragment.FragmentDisplay.java
com.pk.androidsdk.fragment.FragmentFetch.java
com.pk.androidsdk.model.FilterItem.java
com.pk.androidsdk.model.SDKArchive.java
com.pk.androidsdk.model.SDKPackage.java