Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Schuetz2011-11-18 16:31:48 +0000
committerThomas Schuetz2011-11-18 16:31:48 +0000
commit1f3255a8fd2c6199261fe128c199ca62c2c0b92b (patch)
tree8f0425ac4a2d3e2938b7ee9190a19aa87d2aaf35 /examples/org.eclipse.etrice.tutorials/src-gen/Blinky/BlinkyController.java
parent20f5f3911005bbce952f5bb00b7d1f4cbbd32328 (diff)
downloadorg.eclipse.etrice-1f3255a8fd2c6199261fe128c199ca62c2c0b92b.tar.gz
org.eclipse.etrice-1f3255a8fd2c6199261fe128c199ca62c2c0b92b.tar.xz
org.eclipse.etrice-1f3255a8fd2c6199261fe128c199ca62c2c0b92b.zip
[tutorials] regenerated tutorials
Diffstat (limited to 'examples/org.eclipse.etrice.tutorials/src-gen/Blinky/BlinkyController.java')
-rw-r--r--examples/org.eclipse.etrice.tutorials/src-gen/Blinky/BlinkyController.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/org.eclipse.etrice.tutorials/src-gen/Blinky/BlinkyController.java b/examples/org.eclipse.etrice.tutorials/src-gen/Blinky/BlinkyController.java
index 24d32080e..dffe3c354 100644
--- a/examples/org.eclipse.etrice.tutorials/src-gen/Blinky/BlinkyController.java
+++ b/examples/org.eclipse.etrice.tutorials/src-gen/Blinky/BlinkyController.java
@@ -226,15 +226,15 @@ public class BlinkyController extends ActorClassBase {
protected void action_TRANS_INITIAL_TO__on() {
timer.Start(5000);
ControlPort.start();
- }
+ }
protected void action_TRANS_on_TO_off_BY_timeoutTicktimer(InterfaceItemBase ifitem) {
ControlPort.stop();
timer.Start(5000);
- }
+ }
protected void action_TRANS_off_TO_on_BY_timeoutTicktimer(InterfaceItemBase ifitem) {
ControlPort.start();
timer.Start(5000);
- }
+ }
//******************************************
// END of generated code for FSM

Back to the top