summaryrefslogtreecommitdiff
path: root/sources/events/VSRegisteredEvents.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/events/VSRegisteredEvents.java')
-rw-r--r--sources/events/VSRegisteredEvents.java8
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);
}