mirror of
https://github.com/bspeice/UNCCGameDay
synced 2024-11-05 07:38:13 -05:00
Make the ParkingLot follow the POJO pattern
This commit is contained in:
parent
0ed2401663
commit
128ca8fad9
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user