-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCircuit.java
More file actions
58 lines (47 loc) · 1.26 KB
/
Circuit.java
File metadata and controls
58 lines (47 loc) · 1.26 KB
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
public class Circuit {
private String name;
private String location;
private double lengthKm;
private double lapRecord;
public Circuit(String name, String location, double lengthKm, double lapRecord) {
this.name = name;
this.location = location;
this.lengthKm = lengthKm;
this.lapRecord = lapRecord;
}
public Circuit() {
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getLocation() {
return location;
}
public void setLocation(String location) {
this.location = location;
}
public double getLengthKm() {
return lengthKm;
}
public void setLengthKm(double lengthKm) {
this.lengthKm = lengthKm;
}
public double getLapRecord() {
return lapRecord;
}
public void setLapRecord(double lapRecord) {
this.lapRecord = lapRecord;
}
@Override
public String toString() {
return "Circuit{" +
"name='" + name + '\'' +
", location='" + location + '\'' +
", lengthKm=" + lengthKm +
", lapRecord=" + lapRecord +
'}';
}
}