Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.etrice.tutorials.java/src-gen/PingPong/PingPongTop.java')
-rw-r--r--examples/org.eclipse.etrice.tutorials.java/src-gen/PingPong/PingPongTop.java70
1 files changed, 0 insertions, 70 deletions
diff --git a/examples/org.eclipse.etrice.tutorials.java/src-gen/PingPong/PingPongTop.java b/examples/org.eclipse.etrice.tutorials.java/src-gen/PingPong/PingPongTop.java
deleted file mode 100644
index cad7269bb..000000000
--- a/examples/org.eclipse.etrice.tutorials.java/src-gen/PingPong/PingPongTop.java
+++ /dev/null
@@ -1,70 +0,0 @@
-package PingPong;
-
-import org.eclipse.etrice.runtime.java.messaging.Address;
-import org.eclipse.etrice.runtime.java.messaging.IRTObject;
-import org.eclipse.etrice.runtime.java.messaging.IMessageReceiver;
-import org.eclipse.etrice.runtime.java.modelbase.ActorClassBase;
-import org.eclipse.etrice.runtime.java.modelbase.SubSystemClassBase;
-import org.eclipse.etrice.runtime.java.modelbase.InterfaceItemBase;
-import org.eclipse.etrice.runtime.java.debugging.DebuggingService;
-import static org.eclipse.etrice.runtime.java.etunit.EtUnit.*;
-
-import room.basic.service.timing.*;
-
-import room.basic.service.timing.PTimer.*;
-import PingPong.PingPongProtocol.*;
-
-
-
-public class PingPongTop extends ActorClassBase {
-
-
- //--------------------- ports
-
- //--------------------- saps
-
- //--------------------- services
-
- //--------------------- interface item IDs
-
- /*--------------------- attributes ---------------------*/
- /*--------------------- operations ---------------------*/
-
- //--------------------- construction
- public PingPongTop(IRTObject parent, String name) {
- super(parent, name);
- setClassName("PingPongTop");
-
- // initialize attributes
-
- // own ports
-
- // own saps
-
- // own service implementations
-
- // sub actors
- new MrPingActor(this, "MrPing");
- new MrPongActor1(this, "MrPong1");
-
- }
-
- //--------------------- attribute setters and getters
-
-
- //--------------------- port getters
-
- //--------------------- lifecycle functions
- public void stop(){
- stopUser();
- super.stop();
- }
-
-
- //--------------------- no state machine
- public void receiveEvent(InterfaceItemBase ifitem, int evt, Object data) {
- handleSystemEvent(ifitem, evt, data);
- }
-
- public void executeInitTransition() {}
-};

Back to the top