Schedule.java :  » Schedule » tusepta » edu » temple » cis » mysepta » myclass » Android Open Source

Android Open Source » Schedule » tusepta 
tusepta » edu » temple » cis » mysepta » myclass » Schedule.java
package edu.temple.cis.mysepta.myclass;

public class Schedule {
  private long scheduleID;
  private long stopID;
  private double time;
  public Schedule(long scheduleID, long stopID, double time) {
    super();
    this.scheduleID = scheduleID;
    this.stopID = stopID;
    this.time = time;
  }
  public long getScheduleID() {
    return scheduleID;
  }
  public void setScheduleID(long scheduleID) {
    this.scheduleID = scheduleID;
  }
  public long getStopID() {
    return stopID;
  }
  public void setStopID(long stopID) {
    this.stopID = stopID;
  }
  public double getTime() {
    return time;
  }
  public void setTime(double time) {
    this.time = time;
  }
  @Override
  public String toString() {
    return time + "";
  }

}
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.