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