()
| 23 | |
| 24 | /* Remove car from spot, and notify spot that it's gone */ |
| 25 | public void clearSpots() { |
| 26 | for (int i = 0; i < parkingSpots.size(); i++) { |
| 27 | parkingSpots.get(i).removeVehicle(); |
| 28 | } |
| 29 | parkingSpots.clear(); |
| 30 | } |
| 31 | |
| 32 | public abstract boolean canFitInSpot(ParkingSpot spot); |
| 33 | public abstract void print(); |
no test coverage detected