/* * Copyright 2011 Austin Wagner * * This file is part of Mobile Shuttle Tracker. * * Mobile Shuttle Tracker is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Mobile Shuttle Tracker is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Mobile Shuttle Tracker. If not, see <http://www.gnu.org/licenses/>. * */ package com.abstractedsheep.shuttletracker.json; public class EtaJson { private String stop_id; private String name; private int shuttle_id; private int eta; private int route; public String getStop_id() { return stop_id; } public void setStop_id(String stop_id) { this.stop_id = stop_id; } public int getShuttle_id() { return shuttle_id; } public void setShuttle_id(int shuttle_id) { this.shuttle_id = shuttle_id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getRoute() { return route; } public void setRoute(int route) { this.route = route; } public int getEta() { return eta; } public void setEta(int eta) { this.eta = eta; } }