(
Integer id,
String make,
String model,
String color,
Integer year,
Double price)
| 10 | private final Double price; |
| 11 | |
| 12 | public Car( |
| 13 | Integer id, |
| 14 | String make, |
| 15 | String model, |
| 16 | String color, |
| 17 | Integer year, |
| 18 | Double price) { |
| 19 | this.id = id; |
| 20 | this.make = make; |
| 21 | this.model = model; |
| 22 | this.color = color; |
| 23 | this.year = year; |
| 24 | this.price = price; |
| 25 | } |
| 26 | |
| 27 | public Integer getId() { |
| 28 | return id; |
nothing calls this directly
no outgoing calls
no test coverage detected