source: xssim/src/schedframe/scheduling/events/ReservationActiveEvent.java @ 104

Revision 104, 409 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package schedframe.scheduling.events;
2
3import schedframe.scheduling.Reservation;
4import test.rewolucja.reservation.ReservationNew;
5
6public class ReservationActiveEvent extends SchedulingEvent {
7
8        protected ReservationNew r;
9       
10        public ReservationActiveEvent(ReservationNew r) {
11                super(SchedulingEventType.RESERVATION_ACTIVE);
12                this.r = r;
13        }
14       
15        public ReservationNew getReservation(){
16                return this.r;
17        }
18
19}
Note: See TracBrowser for help on using the repository browser.