-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStops.java
More file actions
67 lines (46 loc) · 833 Bytes
/
Stops.java
File metadata and controls
67 lines (46 loc) · 833 Bytes
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
64
65
66
67
package Individual_Project;
import java.util.ArrayList;
/**
* The class Stops
*/
public class Stops {
private String ICAO_value;
static ArrayList<Stops> cities4 = new ArrayList<Stops>();
/**
*
* It is a constructor.
*
* @param ICAO_value the ICA o_value
*/
public Stops(String ICAO_value) {
this.ICAO_value = ICAO_value;
}
/**
*
* Gets the ICA o_value
*
* @return the ICA o_value
*/
public String getICAO_value() {
return ICAO_value;
}
/**
*
* Sets the ICA o_value
*
* @param ICAO_value the ICA o_value
*/
public void setICAO_value(String ICAO_value) {
this.ICAO_value = ICAO_value;
}
@Override
/**
*
* To string
*
* @return String
*/
public String toString() {
return ICAO_value;
}
}