Revision 104,
409 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[104] | 1 | package schedframe.scheduling.events; |
---|
| 2 | |
---|
| 3 | import schedframe.scheduling.Reservation; |
---|
| 4 | import test.rewolucja.reservation.ReservationNew; |
---|
| 5 | |
---|
| 6 | public 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.