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