Initial automated refactoring

This commit is contained in:
bspeice
2013-10-20 17:32:28 -04:00
parent 83a66e45a6
commit 2ebeba7288
7 changed files with 16 additions and 6 deletions

View File

@ -0,0 +1,21 @@
package com.uncc.gameday.parking;
public class ParkingLot {
private ParkingChoices location;
private int filled_pct;
public int getFilledPct() {
return filled_pct;
}
public void setFilledPct(int filled_pct) {
this.filled_pct = filled_pct;
}
public ParkingChoices getLocation() {
return location;
}
public void setLocation(ParkingChoices location) {
this.location = location;
}
}