Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/modelbase/RTSystemProtocol.java')
-rw-r--r--runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/modelbase/RTSystemProtocol.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/modelbase/RTSystemProtocol.java b/runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/modelbase/RTSystemProtocol.java
index 574e4e022..e54ef6e27 100644
--- a/runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/modelbase/RTSystemProtocol.java
+++ b/runtime/org.eclipse.etrice.runtime.java/src/org/eclipse/etrice/runtime/java/modelbase/RTSystemProtocol.java
@@ -26,7 +26,7 @@ public class RTSystemProtocol {
public static class RTSystemPort extends RTSystemServicesProtocolPort {
- public RTSystemPort(IInterfaceItemOwner actor, int localId) {
+ public RTSystemPort(IEventReceiver actor, int localId) {
super(actor, RT_SYSTEM_PORT_NAME, localId);
// since we have no mapping for the system ports we connect them directly here
@@ -44,7 +44,7 @@ public class RTSystemProtocol {
public static class RTSystemConjPort extends RTSystemServicesProtocolConjReplPort {
- public RTSystemConjPort(IInterfaceItemOwner actor, int localId) {
+ public RTSystemConjPort(IEventReceiver actor, int localId) {
super(actor, RT_SYSTEM_PORT_NAME, localId);
}

Back to the top