Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.generator/src/org/eclipse/etrice/generator/base/GlobalGeneratorSettings.xtend')
-rw-r--r--plugins/org.eclipse.etrice.generator/src/org/eclipse/etrice/generator/base/GlobalGeneratorSettings.xtend40
1 files changed, 0 insertions, 40 deletions
diff --git a/plugins/org.eclipse.etrice.generator/src/org/eclipse/etrice/generator/base/GlobalGeneratorSettings.xtend b/plugins/org.eclipse.etrice.generator/src/org/eclipse/etrice/generator/base/GlobalGeneratorSettings.xtend
deleted file mode 100644
index 5821bb7fd..000000000
--- a/plugins/org.eclipse.etrice.generator/src/org/eclipse/etrice/generator/base/GlobalGeneratorSettings.xtend
+++ /dev/null
@@ -1,40 +0,0 @@
-/*******************************************************************************
- * 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 v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * CONTRIBUTORS:
- * Henrik Rentz-Reichert (initial contribution)
- * Juergen Haug
- *
- *******************************************************************************/
-
-package org.eclipse.etrice.generator.base
-
-import java.util.List
-import org.eclipse.xtend.lib.annotations.Accessors
-
-@Accessors
-class GlobalGeneratorSettings {
-
- // all models from input
- val List<String> inputModelURIs = newArrayList
-
- // generation options
- boolean generateAsLibrary = false
- boolean generateMSCInstrumentation = false
- boolean generateDataInstrumentation = false
- boolean noTranslation = false
- String mainMethodName = "main"
-
- // extra generators
- String generatorModelPath = null
- boolean generateDocumentation = false
-
- // generator logging
- boolean generateWithVerboseOutput = false
- boolean debugMode = false
-
-} \ No newline at end of file

Back to the top