blob: dffd403e54a0731825aae1a422a8fb858e9168be [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - 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:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
*/
package org.eclipse.osbp.xtext.gridsource;
import org.eclipse.xtext.conversion.IValueConverterService;
import org.eclipse.xtext.generator.IOutputConfigurationProvider;
import org.eclipse.osbp.xtext.gridsource.converter.ValueConverterService;
import org.eclipse.osbp.xtext.gridsource.generator.OutputConfigurationProvider;
/**
* Use this class to register components to be used at runtime / without the
* Equinox extension registry.
*/
public class GridSourceRuntimeModule extends
org.eclipse.osbp.xtext.gridsource.AbstractGridSourceRuntimeModule {
public Class<? extends IOutputConfigurationProvider> bindIOutputConfigurationProvider() {
return OutputConfigurationProvider.class;
}
@Override
public Class<? extends IValueConverterService> bindIValueConverterService() {
return ValueConverterService.class;
}
}