source: gssim/trunk/src/schedframe/scheduling/events/ReservationActiveEvent.java @ 5

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