package schedframe.scheduling.events; import schedframe.scheduling.Reservation; import test.rewolucja.reservation.ReservationNew; public class ReservationActiveEvent extends SchedulingEvent { protected ReservationNew r; public ReservationActiveEvent(ReservationNew r) { super(SchedulingEventType.RESERVATION_ACTIVE); this.r = r; } public ReservationNew getReservation(){ return this.r; } }