Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.etrice.tutorials/src-gen/PingPong/SubSystem_PingPong.java')
-rw-r--r--examples/org.eclipse.etrice.tutorials/src-gen/PingPong/SubSystem_PingPong.java20
1 files changed, 16 insertions, 4 deletions
diff --git a/examples/org.eclipse.etrice.tutorials/src-gen/PingPong/SubSystem_PingPong.java b/examples/org.eclipse.etrice.tutorials/src-gen/PingPong/SubSystem_PingPong.java
index b0af8667b..4f18feb9b 100644
--- a/examples/org.eclipse.etrice.tutorials/src-gen/PingPong/SubSystem_PingPong.java
+++ b/examples/org.eclipse.etrice.tutorials/src-gen/PingPong/SubSystem_PingPong.java
@@ -16,8 +16,8 @@ import room.basic.service.timing.*;
public class SubSystem_PingPong extends SubSystemClassBase{
- public SubSystem_PingPong(IRTObject parent, String name) {
- super(parent, name);
+ public SubSystem_PingPong(String name) {
+ super(name);
}
@Override
@@ -34,6 +34,7 @@ public class SubSystem_PingPong extends SubSystemClassBase{
@Override
public void instantiateActors(){
+
// all addresses
// Addresses for the Subsystem Systemport
Address addr_item_SystemPort_0 = new Address(0,0,111);
@@ -150,6 +151,17 @@ public class SubSystem_PingPong extends SubSystemClassBase{
addr_item__SubSystem_PingPong_application_MrPong1,
addr_item__SubSystem_PingPong_services
});
-
- }
+ }
+
+
+ @Override
+ public void init(){
+ super.init();
+ }
+
+ @Override
+ public void stop(){
+ super.stop();
+ }
+
};

Back to the top