Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.generator.contractmonitor/src/org/eclipse/etrice/generator/contractmonitor/setup/GeneratorSettings.xtend')
-rw-r--r--plugins/org.eclipse.etrice.generator.contractmonitor/src/org/eclipse/etrice/generator/contractmonitor/setup/GeneratorSettings.xtend28
1 files changed, 28 insertions, 0 deletions
diff --git a/plugins/org.eclipse.etrice.generator.contractmonitor/src/org/eclipse/etrice/generator/contractmonitor/setup/GeneratorSettings.xtend b/plugins/org.eclipse.etrice.generator.contractmonitor/src/org/eclipse/etrice/generator/contractmonitor/setup/GeneratorSettings.xtend
new file mode 100644
index 000000000..27c3272e0
--- /dev/null
+++ b/plugins/org.eclipse.etrice.generator.contractmonitor/src/org/eclipse/etrice/generator/contractmonitor/setup/GeneratorSettings.xtend
@@ -0,0 +1,28 @@
+/*******************************************************************************
+ * Copyright (c) 2013 protos software gmbh (http://www.protos.de).
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License 2.0
+ * which accompanies this distribution, and is available at
+ * https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *
+ * CONTRIBUTORS:
+ * Christian Hilden (initial contribution)
+ *
+ *******************************************************************************/
+
+package org.eclipse.etrice.generator.contractmonitor.setup
+
+import org.eclipse.xtend.lib.annotations.Accessors
+
+@Accessors
+class GeneratorSettings {
+
+ // TODO set at runtime
+ boolean forwardInvalidMessages = true
+
+ String toConjugatedPortName = "toConjugated"
+ String toUnconjugatedPortName = "toUnconjugated"
+
+}

Back to the top