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/protocols/implementations/InternalTimeSyncProtocol.java | |
| parent | 99ae411186cb049bfd55887b2c521bbf0e8bc2be (diff) | |
new onClientSchedule and onServerSchedule abstract methods
Diffstat (limited to 'sources/protocols/implementations/InternalTimeSyncProtocol.java')
| -rw-r--r-- | sources/protocols/implementations/InternalTimeSyncProtocol.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sources/protocols/implementations/InternalTimeSyncProtocol.java b/sources/protocols/implementations/InternalTimeSyncProtocol.java index 5676d58..5b18740 100644 --- a/sources/protocols/implementations/InternalTimeSyncProtocol.java +++ b/sources/protocols/implementations/InternalTimeSyncProtocol.java @@ -78,6 +78,12 @@ public class InternalTimeSyncProtocol extends VSAbstractProtocol { } /* (non-Javadoc) + * @see protocols.VSAbstractProtocol#onClientSchedule() + */ + protected void onClientSchedule() { + } + + /* (non-Javadoc) * @see protocols.VSAbstractProtocol#onServerReset() */ protected void onServerReset() { @@ -99,6 +105,12 @@ public class InternalTimeSyncProtocol extends VSAbstractProtocol { } /* (non-Javadoc) + * @see protocols.VSAbstractProtocol#onServerSchedule() + */ + protected void onServerSchedule() { + } + + /* (non-Javadoc) * @see protocols.VSAbstractProtocol#toString() */ public String toString() { |
