mirror of
				https://github.com/bspeice/UNCCGameDay
				synced 2025-11-03 18:00:43 -05:00 
			
		
		
		
	Change ParkingRating to use the POJO pattern
This commit is contained in:
		@ -1,6 +1,19 @@
 | 
			
		||||
package com.uncc.gameday.registration;
 | 
			
		||||
 | 
			
		||||
public class ParkingRating {
 | 
			
		||||
	ParkingChoices parking_lot;
 | 
			
		||||
	RatingChoices rating;
 | 
			
		||||
	private ParkingChoices parking_lot;
 | 
			
		||||
	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