Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.etrice.integration.tests/src-gen/org/eclipse/etrice/integration/PingPongThreadTestReplPort/MrPingActor.java')
-rw-r--r--tests/org.eclipse.etrice.integration.tests/src-gen/org/eclipse/etrice/integration/PingPongThreadTestReplPort/MrPingActor.java15
1 files changed, 14 insertions, 1 deletions
diff --git a/tests/org.eclipse.etrice.integration.tests/src-gen/org/eclipse/etrice/integration/PingPongThreadTestReplPort/MrPingActor.java b/tests/org.eclipse.etrice.integration.tests/src-gen/org/eclipse/etrice/integration/PingPongThreadTestReplPort/MrPingActor.java
index 3ba356f8b..b513abfb3 100644
--- a/tests/org.eclipse.etrice.integration.tests/src-gen/org/eclipse/etrice/integration/PingPongThreadTestReplPort/MrPingActor.java
+++ b/tests/org.eclipse.etrice.integration.tests/src-gen/org/eclipse/etrice/integration/PingPongThreadTestReplPort/MrPingActor.java
@@ -55,7 +55,20 @@ public class MrPingActor extends ActorClassBase {
// own service implementations
}
-
+ //--------------------- attributes getter and setter
+ //--------------------- attribute setters and getters
+ public void setCount (int count) {
+ this.count = count;
+ }
+ public int getCount () {
+ return this.count;
+ }
+ public void setPongCount (int pongCount) {
+ this.pongCount = pongCount;
+ }
+ public int getPongCount () {
+ return this.pongCount;
+ }
//--------------------- lifecycle functions
public void init(){

Back to the top