mirror of
				https://github.com/bspeice/UNCCGameDay
				synced 2025-11-04 02:10:35 -05:00 
			
		
		
		
	Change ParkingRating to use the POJO pattern
This commit is contained in:
		@ -1,6 +1,19 @@
 | 
				
			|||||||
package com.uncc.gameday.registration;
 | 
					package com.uncc.gameday.registration;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
public class ParkingRating {
 | 
					public class ParkingRating {
 | 
				
			||||||
	ParkingChoices parking_lot;
 | 
						private ParkingChoices parking_lot;
 | 
				
			||||||
	RatingChoices rating;
 | 
						private RatingChoices rating;
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						public ParkingChoices getParkingLot() {
 | 
				
			||||||
 | 
							return parking_lot;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						public void setParkingLot(ParkingChoices parking_lot) {
 | 
				
			||||||
 | 
							this.parking_lot = parking_lot;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						public RatingChoices getRating() {
 | 
				
			||||||
 | 
							return rating;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						public void setRating(RatingChoices rating) {
 | 
				
			||||||
 | 
							this.rating = rating;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user