SkiTrackInfo.java :  » UnTagged » skidata-android-norwegian » com » vegaaa » skidata » model » Android Open Source

Android Open Source » UnTagged » skidata android norwegian 
skidata android norwegian » com » vegaaa » skidata » model » SkiTrackInfo.java
package com.vegaaa.skidata.model;

import java.util.Date;

/**
 * 
 * @author WindowsUser
 * @since 06.01.2011
 */

public class SkiTrackInfo {
  private String DepthInPath;
  private String DepthInTrack;
  private SnowType_e SnowType;
  private String LastSnowFall;
  private String LastPowderAlarm;
  private TrackInfoType_e trackInfoType;
  
  
  public String getDepthInPath() {
    return DepthInPath;
  }
  
  public void setDepthInPath(String depthInPath) {
    DepthInPath = depthInPath;
  }
  
  public String getDepthInTrack() {
    return DepthInTrack;
  }
  
  public void setDepthInTrack(String depthInTrack) {
    DepthInTrack = depthInTrack;
  }
  
  public SnowType_e getSnowType() {
    return SnowType;
  }
  
  public void setSnowType(SnowType_e snowType) {
    SnowType = snowType;
  }
  
  public String getLastSnowFall() {
    return LastSnowFall;
  }
  
  public void setLastSnowFall(String lastSnowFall) {
    LastSnowFall = lastSnowFall;
  }
  
  public String getLastPowderAlarm() {
    return LastPowderAlarm;
  }
  
  public void setLastPowderAlarm(String lastPowderAlarm) {
    LastPowderAlarm = lastPowderAlarm;
  }
  
  public TrackInfoType_e getTrackInfoType() {
    return trackInfoType;
  }
  
  public void setTrackInfoType(TrackInfoType_e trackInfoType) {
    this.trackInfoType = trackInfoType;
  }
  
  @Override
  public String toString() {
    return "";
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.