Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.etrice.tutorials.java/src-gen/PingPong/SubSystem_PingPongRunner.java')
-rw-r--r--examples/org.eclipse.etrice.tutorials.java/src-gen/PingPong/SubSystem_PingPongRunner.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/examples/org.eclipse.etrice.tutorials.java/src-gen/PingPong/SubSystem_PingPongRunner.java b/examples/org.eclipse.etrice.tutorials.java/src-gen/PingPong/SubSystem_PingPongRunner.java
deleted file mode 100644
index ac86874f3..000000000
--- a/examples/org.eclipse.etrice.tutorials.java/src-gen/PingPong/SubSystem_PingPongRunner.java
+++ /dev/null
@@ -1,26 +0,0 @@
-/**
- * @author generated by eTrice
- *
- * this class contains the main function running component subsystem
- * it instantiates subsystem and starts and ends the lifecycle
- */
-
-package PingPong;
-
-import org.eclipse.etrice.runtime.java.modelbase.RTSystem;
-import org.eclipse.etrice.runtime.java.modelbase.SubSystemRunnerBase;
-
-class SubSystem_PingPongRunner extends SubSystemRunnerBase {
-
- /**
- * main function
- * creates the main component and starts and stops the lifecycle
- */
- public static void main(String[] args) {
- // instantiate the main component
- RTSystem sys = new RTSystem("System_PingPong");
- SubSystem_PingPong main_component = new SubSystem_PingPong(sys, "subsystem");
-
- run(main_component, args);
- }
-};

Back to the top