Android Open Source - WAIDProfiler Vehicle Instance






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

/**
 * /* ww w. j  a  v a  2 s .  com*/
 */
package it.unibo.cs.jonus.waidprof;

/**
 * @author jei
 * 
 */
public class VehicleInstance {

  private long timestamp;
  private String category;
  private MagnitudeFeatures accelFeatures;
  private MagnitudeFeatures gyroFeatures;

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

  /**
   * @return the timestamp
   */
  public long getTimestamp() {
    return timestamp;
  }

  /**
   * @param timestamp
   *            the timestamp to set
   */
  public void setTimestamp(long timestamp) {
    this.timestamp = timestamp;
  }

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

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

  /**
   * @return the accelFeatures
   */
  public MagnitudeFeatures getAccelFeatures() {
    return accelFeatures;
  }

  /**
   * @param accelFeatures
   *            the accelFeatures to set
   */
  public void setAccelFeatures(MagnitudeFeatures accelFeatures) {
    this.accelFeatures = accelFeatures;
  }

  /**
   * @return the gyroFeatures
   */
  public MagnitudeFeatures getGyroFeatures() {
    return gyroFeatures;
  }

  /**
   * @param gyroFeatures
   *            the gyroFeatures to set
   */
  public void setGyroFeatures(MagnitudeFeatures gyroFeatures) {
    this.gyroFeatures = gyroFeatures;
  }

}




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