diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-26 19:44:51 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-26 19:44:51 +0000 |
| commit | 8fd9c3e2980eb5720033584ac3cd2d156b5c9d63 (patch) | |
| tree | 1c7d183495319ac020134e71129d91d535bee417 /sources/events/internal/ProtocolScheduleEvent.java | |
| parent | 99ae411186cb049bfd55887b2c521bbf0e8bc2be (diff) | |
new onClientSchedule and onServerSchedule abstract methods
Diffstat (limited to 'sources/events/internal/ProtocolScheduleEvent.java')
| -rw-r--r-- | sources/events/internal/ProtocolScheduleEvent.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sources/events/internal/ProtocolScheduleEvent.java b/sources/events/internal/ProtocolScheduleEvent.java index c5b7562..24eb6fd 100644 --- a/sources/events/internal/ProtocolScheduleEvent.java +++ b/sources/events/internal/ProtocolScheduleEvent.java @@ -66,5 +66,9 @@ public class ProtocolScheduleEvent extends VSAbstractEvent { * @see events.VSAbstractEvent#onStart() */ public void onStart() { + if (isClientSchedule) + protocol.onClientScheduleStart(); + else + protocol.onServerScheduleStart(); } } |
