diff options
| author | Paul Buetow <paul@buetow.org> | 2008-08-04 20:44:54 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-08-04 20:44:54 +0000 |
| commit | 8ae434c63e6382a8cb850551d947285f5fcb3c25 (patch) | |
| tree | 751b0b24cd86768d57e9338cf0718485f68a095e /sources/events/VSRegisteredEvents.java | |
| parent | bb4eb6634485d05e9e8cff6497c60ef696a28eeb (diff) | |
restructured stuff
Diffstat (limited to 'sources/events/VSRegisteredEvents.java')
| -rw-r--r-- | sources/events/VSRegisteredEvents.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sources/events/VSRegisteredEvents.java b/sources/events/VSRegisteredEvents.java index 5f188d9..15c4023 100644 --- a/sources/events/VSRegisteredEvents.java +++ b/sources/events/VSRegisteredEvents.java @@ -89,8 +89,8 @@ public final class VSRegisteredEvents { "Basic Multicast", "Basic Multicast"); registerEvent("protocols.implementations.VSBerkelyTimeProtocol", "Berkeley Algorithmus zur internen Sync.", "Berkeley"); - registerEvent("protocols.implementations.VSBroadcastSturmProtocol", - "Broadcaststurm", null); + registerEvent("protocols.implementations.VSBroadcastProtocol", + "Broadcast", null); registerEvent("protocols.implementations.VSDummyProtocol", "Beispiel/Dummy", null); registerEvent("protocols.implementations.VSExternalTimeSyncProtocol", @@ -322,7 +322,7 @@ public final class VSRegisteredEvents { * @return An instance of the event classname, if exists. Else null. */ public static VSAbstractEvent createEventInstanceByClassname( - String eventClassname, VSProcess process) { + String eventClassname, VSInternalProcess process) { Object protocolObj = new VSClassLoader().newInstance(eventClassname); if (protocolObj instanceof VSAbstractEvent) { @@ -343,7 +343,7 @@ public final class VSRegisteredEvents { * @return An instance of the event, if exists. Else null. */ public static VSAbstractEvent createEventInstanceByName(String eventName, - VSProcess process) { + VSInternalProcess process) { return createEventInstanceByClassname( eventClassnamesByNames.get(eventName), process); } |
