Android Open Source - WAIDProfiler Vehicle Item






From Project

Back to project page WAIDProfiler.

License

The source code is released under:

GNU General Public License

If you think the Android project WAIDProfiler 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

/**
 * /*  w  w w .j  ava2  s  .  c om*/
 */
package it.unibo.cs.jonus.waidprof;

import android.graphics.Bitmap;

/**
 * @author jei
 *
 */
public class VehicleItem {
  
  private String category;
  private Bitmap icon;

  /**
   * 
   */
  public VehicleItem() {
    // TODO Auto-generated constructor stub
  }

  /**
   * @return the category
   */
  public String getCategory() {
    return category;
  }

  /**
   * @param category the category to set
   */
  public void setCategory(String category) {
    this.category = category;
  }

  /**
   * @return the icon
   */
  public Bitmap getIcon() {
    return icon;
  }

  /**
   * @param icon the icon to set
   */
  public void setIcon(Bitmap icon) {
    this.icon = icon;
  }

}




Java Source Code List

it.unibo.cs.jonus.waidprof.ListenerFragment.java
it.unibo.cs.jonus.waidprof.ListenerServiceListener.java
it.unibo.cs.jonus.waidprof.ListenerService.java
it.unibo.cs.jonus.waidprof.MagnitudeFeatures.java
it.unibo.cs.jonus.waidprof.ProfilerActivity.java
it.unibo.cs.jonus.waidprof.ProfilesFragment.java
it.unibo.cs.jonus.waidprof.VehicleInstance.java
it.unibo.cs.jonus.waidprof.VehicleItem.java