diff --git a/src/com/uncc/gameday/registration/ParkingLot.java b/src/com/uncc/gameday/registration/ParkingLot.java index 7352a50..f64ae0d 100644 --- a/src/com/uncc/gameday/registration/ParkingLot.java +++ b/src/com/uncc/gameday/registration/ParkingLot.java @@ -2,7 +2,20 @@ package com.uncc.gameday.registration; public class ParkingLot { - ParkingChoices location; - int filled_pct; + 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; + } }