Rename ParkingChoices to ParkingChoice

This commit is contained in:
bspeice
2013-10-28 14:22:21 -04:00
parent 6955ef0b09
commit 6a37e14a47
5 changed files with 12 additions and 12 deletions

View File

@ -2,7 +2,7 @@ package com.uncc.gameday.parking;
public class ParkingLot {
private ParkingChoices location;
private ParkingChoice location;
private int filled_pct;
public int getFilledPct() {
@ -11,10 +11,10 @@ public class ParkingLot {
public void setFilledPct(int filled_pct) {
this.filled_pct = filled_pct;
}
public ParkingChoices getLocation() {
public ParkingChoice getLocation() {
return location;
}
public void setLocation(ParkingChoices location) {
public void setLocation(ParkingChoice location) {
this.location = location;
}