1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*
* Southampton University Map App
* Copyright (C) 2011 Christopher Baines
*
* This program 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 2
* of the License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package net.cbaines.suma;
import com.j256.ormlite.field.DatabaseField;
import com.j256.ormlite.table.DatabaseTable;
@DatabaseTable(tableName = "routestops")
public class RouteStop implements Comparable<RouteStop> {
public final static String STOP_ID_FIELD_NAME = "stop_id";
public final static String ROUTE_ID_FIELD_NAME = "route_id";
public final static String SEQUENCE_ID_FIELD_NAME = "sequence";
/**
* This id is generated by the database and set on the object when it is passed to the create method. An id is needed in case
* we need to update or delete this object in the future.
*/
@DatabaseField(generatedId = true)
int id;
@DatabaseField
int sequence;
// This is a foreign object which just stores the id from the User object in
// this table.
@DatabaseField(foreign = true, columnName = STOP_ID_FIELD_NAME, indexName = "routestops_routestop_idx")
BusStop busStop;
// This is a foreign object which just stores the id from the Post object in
// this table.
@DatabaseField(foreign = true, columnName = ROUTE_ID_FIELD_NAME, indexName = "routestops_routestop_idx")
BusRoute busRoute;
RouteStop() {
}
public RouteStop(BusStop stop, BusRoute route, int sequence) {
this.busStop = stop;
this.busRoute = route;
this.sequence = sequence;
}
public int compareTo(RouteStop routeStop) {
return this.sequence - routeStop.sequence;
}
}
|