blob: 7a1ef374191d2220c71fdfe791345f49adbeb8d6 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.dsl.entity.xtext.generator;
import java.util.Set;
import org.eclipse.osbp.xtext.oxtype.hooks.DelegatingOutputConfigurationProvider;
import org.eclipse.xtext.generator.OutputConfiguration;
public class OutputConfigurationProvider extends
DelegatingOutputConfigurationProvider {
/**
* @return a set of {@link OutputConfiguration} available for the generator
*/
public Set<OutputConfiguration> getOutputConfigurations() {
Set<OutputConfiguration> configs = super.getOutputConfigurations();
// OutputConfiguration servicesOutput = new OutputConfiguration("DTOs");
// servicesOutput.setDescription("derived DTOs");
// servicesOutput.setOutputDirectory("./dto-models");
// servicesOutput.setOverrideExistingResources(true);
// servicesOutput.setCreateOutputDirectory(true);
// servicesOutput.setKeepLocalHistory(true);
// // IMPORTANT - do not change!
// servicesOutput.setCanClearOutputDirectory(false);
// servicesOutput.setCleanUpDerivedResources(false);
// servicesOutput.setSetDerivedProperty(false);
// configs.add(servicesOutput);
OutputConfiguration binOutput = new OutputConfiguration(
"ModelBin");
binOutput.setDescription("ModelBin");
binOutput.setOutputDirectory("./modelsbin");
binOutput.setOverrideExistingResources(true);
binOutput.setCreateOutputDirectory(true);
binOutput.setCleanUpDerivedResources(true);
binOutput.setSetDerivedProperty(true);
binOutput.setKeepLocalHistory(true);
configs.add(binOutput);
return configs;
}
}