summaryrefslogtreecommitdiffstats
path: root/rba.tool.editor/src/rba/tool/editor/generator/json/JSONGeneratorOutputConfiguration.xtend
blob: fc6a73ce3e5d02c800ae76d3b341dd3671eb1b6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package rba.tool.editor.generator.json

import org.eclipse.xtext.generator.OutputConfiguration

class JSONGeneratorOutputConfiguration extends OutputConfiguration {

	new() {
		super("RBAMODEL_JSONGENERATOR_OUTPUT");
		setDescription("Output Folder");
		setOutputDirectory("./.RBATool/graphicalview/data");
		setOverrideExistingResources(true);
		setCreateOutputDirectory(true);
		setCleanUpDerivedResources(true);
		setSetDerivedProperty(true);
		setKeepLocalHistory(true);
	}

}