Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenrik Rentz-Reichert2014-02-17 18:14:24 +0000
committerHenrik Rentz-Reichert2014-02-17 18:14:24 +0000
commit0d13381cbc883d19b1d3460f25296b07147aa81f (patch)
treeebe826243c4cfb2b44a9e8d78d5dd2aad7fcdb74 /plugins/org.eclipse.etrice.generator.java/src
parentd56676a60d2c972cc8d61f0ad2cd11b005a7e0f0 (diff)
downloadorg.eclipse.etrice-0d13381cbc883d19b1d3460f25296b07147aa81f.tar.gz
org.eclipse.etrice-0d13381cbc883d19b1d3460f25296b07147aa81f.tar.xz
org.eclipse.etrice-0d13381cbc883d19b1d3460f25296b07147aa81f.zip
minor changes
Diffstat (limited to 'plugins/org.eclipse.etrice.generator.java/src')
-rw-r--r--plugins/org.eclipse.etrice.generator.java/src/org/eclipse/etrice/generator/java/gen/NodeGen.xtend4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.etrice.generator.java/src/org/eclipse/etrice/generator/java/gen/NodeGen.xtend b/plugins/org.eclipse.etrice.generator.java/src/org/eclipse/etrice/generator/java/gen/NodeGen.xtend
index c8408c8e9..50deb5209 100644
--- a/plugins/org.eclipse.etrice.generator.java/src/org/eclipse/etrice/generator/java/gen/NodeGen.xtend
+++ b/plugins/org.eclipse.etrice.generator.java/src/org/eclipse/etrice/generator/java/gen/NodeGen.xtend
@@ -156,9 +156,9 @@ class NodeGen {
IMessageService msgService;
«FOR thread: threads»
«IF thread.execmode==ExecMode::POLLED || thread.execmode==ExecMode::MIXED»
- msgService = new MessageService(this, MessageService.ExecMode.«thread.execmode.name», «thread.time», 0, «thread.threadId», "MessageService_«thread.name»" /*, thread_prio */);
+ msgService = new MessageService(this, MessageService.ExecMode.«thread.execmode.getName», «thread.time», 0, «thread.threadId», "MessageService_«thread.name»" /*, thread_prio */);
«ELSE»
- msgService = new MessageService(this, MessageService.ExecMode.«thread.execmode.name», 0, «thread.threadId», "MessageService_«thread.name»" /*, thread_prio */);
+ msgService = new MessageService(this, MessageService.ExecMode.«thread.execmode.getName», 0, «thread.threadId», "MessageService_«thread.name»" /*, thread_prio */);
«ENDIF»
RTServices.getInstance().getMsgSvcCtrl().addMsgSvc(msgService);
«ENDFOR»

Back to the top