org.eclipse.xtext.common.services.DefaultTerminalConverters Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2008 itemis AG (http://www.itemis.eu) and others.
* 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
*******************************************************************************/
package org.eclipse.xtext.common.services;
import org.eclipse.xtext.conversion.IValueConverter;
import org.eclipse.xtext.conversion.ValueConverter;
import org.eclipse.xtext.conversion.impl.AbstractDeclarativeValueConverterService;
import org.eclipse.xtext.conversion.impl.AbstractIDValueConverter;
import org.eclipse.xtext.conversion.impl.INTValueConverter;
import org.eclipse.xtext.conversion.impl.STRINGValueConverter;
import com.google.inject.Inject;
import com.google.inject.Singleton;
/**
* Default converters for Strings, Integers and IDs.
*/
@Singleton
public class DefaultTerminalConverters extends AbstractDeclarativeValueConverterService {
@Inject
private AbstractIDValueConverter idValueConverter;
@ValueConverter(rule = "ID")
public IValueConverter ID() {
return idValueConverter;
}
@Inject
private INTValueConverter intValueConverter;
@ValueConverter(rule = "INT")
public IValueConverter INT() {
return intValueConverter;
}
@Inject
private STRINGValueConverter stringValueConverter;
@ValueConverter(rule = "STRING")
public IValueConverter STRING() {
return stringValueConverter;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy