224 lines
9.8 KiB
Java
224 lines
9.8 KiB
Java
/*
|
|
* generated by Xtext 2.23.0
|
|
*/
|
|
package fr.n7.simplepdl.txt;
|
|
|
|
import com.google.inject.Binder;
|
|
import com.google.inject.Provider;
|
|
import com.google.inject.name.Names;
|
|
import fr.n7.simplepdl.txt.formatting2.PDLFormatter;
|
|
import fr.n7.simplepdl.txt.generator.PDLGenerator;
|
|
import fr.n7.simplepdl.txt.parser.antlr.PDLAntlrTokenFileProvider;
|
|
import fr.n7.simplepdl.txt.parser.antlr.PDLParser;
|
|
import fr.n7.simplepdl.txt.parser.antlr.internal.InternalPDLLexer;
|
|
import fr.n7.simplepdl.txt.scoping.PDLScopeProvider;
|
|
import fr.n7.simplepdl.txt.serializer.PDLSemanticSequencer;
|
|
import fr.n7.simplepdl.txt.serializer.PDLSyntacticSequencer;
|
|
import fr.n7.simplepdl.txt.services.PDLGrammarAccess;
|
|
import fr.n7.simplepdl.txt.validation.PDLConfigurableIssueCodesProvider;
|
|
import fr.n7.simplepdl.txt.validation.PDLValidator;
|
|
import java.util.Properties;
|
|
import org.eclipse.xtext.Constants;
|
|
import org.eclipse.xtext.IGrammarAccess;
|
|
import org.eclipse.xtext.common.services.Ecore2XtextTerminalConverters;
|
|
import org.eclipse.xtext.conversion.IValueConverterService;
|
|
import org.eclipse.xtext.formatting2.FormatterPreferenceValuesProvider;
|
|
import org.eclipse.xtext.formatting2.FormatterPreferences;
|
|
import org.eclipse.xtext.formatting2.IFormatter2;
|
|
import org.eclipse.xtext.generator.IGenerator2;
|
|
import org.eclipse.xtext.naming.DefaultDeclarativeQualifiedNameProvider;
|
|
import org.eclipse.xtext.naming.IQualifiedNameProvider;
|
|
import org.eclipse.xtext.parser.IParser;
|
|
import org.eclipse.xtext.parser.ITokenToStringConverter;
|
|
import org.eclipse.xtext.parser.antlr.AntlrTokenDefProvider;
|
|
import org.eclipse.xtext.parser.antlr.AntlrTokenToStringConverter;
|
|
import org.eclipse.xtext.parser.antlr.IAntlrTokenFileProvider;
|
|
import org.eclipse.xtext.parser.antlr.ITokenDefProvider;
|
|
import org.eclipse.xtext.parser.antlr.Lexer;
|
|
import org.eclipse.xtext.parser.antlr.LexerBindings;
|
|
import org.eclipse.xtext.parser.antlr.LexerProvider;
|
|
import org.eclipse.xtext.preferences.IPreferenceValuesProvider;
|
|
import org.eclipse.xtext.resource.IContainer;
|
|
import org.eclipse.xtext.resource.IResourceDescriptions;
|
|
import org.eclipse.xtext.resource.containers.IAllContainersState;
|
|
import org.eclipse.xtext.resource.containers.ResourceSetBasedAllContainersStateProvider;
|
|
import org.eclipse.xtext.resource.containers.StateBasedContainerManager;
|
|
import org.eclipse.xtext.resource.impl.ResourceDescriptionsProvider;
|
|
import org.eclipse.xtext.resource.impl.ResourceSetBasedResourceDescriptions;
|
|
import org.eclipse.xtext.scoping.IGlobalScopeProvider;
|
|
import org.eclipse.xtext.scoping.IScopeProvider;
|
|
import org.eclipse.xtext.scoping.IgnoreCaseLinking;
|
|
import org.eclipse.xtext.scoping.impl.AbstractDeclarativeScopeProvider;
|
|
import org.eclipse.xtext.scoping.impl.DefaultGlobalScopeProvider;
|
|
import org.eclipse.xtext.scoping.impl.ImportedNamespaceAwareLocalScopeProvider;
|
|
import org.eclipse.xtext.serializer.ISerializer;
|
|
import org.eclipse.xtext.serializer.impl.Serializer;
|
|
import org.eclipse.xtext.serializer.sequencer.ISemanticSequencer;
|
|
import org.eclipse.xtext.serializer.sequencer.ISyntacticSequencer;
|
|
import org.eclipse.xtext.service.DefaultRuntimeModule;
|
|
import org.eclipse.xtext.service.SingletonBinding;
|
|
import org.eclipse.xtext.validation.ConfigurableIssueCodesProvider;
|
|
|
|
/**
|
|
* Manual modifications go to {@link PDLRuntimeModule}.
|
|
*/
|
|
@SuppressWarnings("all")
|
|
public abstract class AbstractPDLRuntimeModule extends DefaultRuntimeModule {
|
|
|
|
protected Properties properties = null;
|
|
|
|
@Override
|
|
public void configure(Binder binder) {
|
|
properties = tryBindProperties(binder, "fr/n7/simplepdl/txt/PDL.properties");
|
|
super.configure(binder);
|
|
}
|
|
|
|
public void configureLanguageName(Binder binder) {
|
|
binder.bind(String.class).annotatedWith(Names.named(Constants.LANGUAGE_NAME)).toInstance("fr.n7.simplepdl.txt.PDL");
|
|
}
|
|
|
|
public void configureFileExtensions(Binder binder) {
|
|
if (properties == null || properties.getProperty(Constants.FILE_EXTENSIONS) == null)
|
|
binder.bind(String.class).annotatedWith(Names.named(Constants.FILE_EXTENSIONS)).toInstance("pdl");
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.grammarAccess.GrammarAccessFragment2
|
|
public ClassLoader bindClassLoaderToInstance() {
|
|
return getClass().getClassLoader();
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.grammarAccess.GrammarAccessFragment2
|
|
public Class<? extends IGrammarAccess> bindIGrammarAccess() {
|
|
return PDLGrammarAccess.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.serializer.SerializerFragment2
|
|
public Class<? extends ISemanticSequencer> bindISemanticSequencer() {
|
|
return PDLSemanticSequencer.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.serializer.SerializerFragment2
|
|
public Class<? extends ISyntacticSequencer> bindISyntacticSequencer() {
|
|
return PDLSyntacticSequencer.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.serializer.SerializerFragment2
|
|
public Class<? extends ISerializer> bindISerializer() {
|
|
return Serializer.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.parser.antlr.XtextAntlrGeneratorFragment2
|
|
public Class<? extends IParser> bindIParser() {
|
|
return PDLParser.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.parser.antlr.XtextAntlrGeneratorFragment2
|
|
public Class<? extends ITokenToStringConverter> bindITokenToStringConverter() {
|
|
return AntlrTokenToStringConverter.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.parser.antlr.XtextAntlrGeneratorFragment2
|
|
public Class<? extends IAntlrTokenFileProvider> bindIAntlrTokenFileProvider() {
|
|
return PDLAntlrTokenFileProvider.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.parser.antlr.XtextAntlrGeneratorFragment2
|
|
public Class<? extends Lexer> bindLexer() {
|
|
return InternalPDLLexer.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.parser.antlr.XtextAntlrGeneratorFragment2
|
|
public Class<? extends ITokenDefProvider> bindITokenDefProvider() {
|
|
return AntlrTokenDefProvider.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.parser.antlr.XtextAntlrGeneratorFragment2
|
|
public Provider<? extends InternalPDLLexer> provideInternalPDLLexer() {
|
|
return LexerProvider.create(InternalPDLLexer.class);
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.parser.antlr.XtextAntlrGeneratorFragment2
|
|
public void configureRuntimeLexer(Binder binder) {
|
|
binder.bind(Lexer.class)
|
|
.annotatedWith(Names.named(LexerBindings.RUNTIME))
|
|
.to(InternalPDLLexer.class);
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.validation.ValidatorFragment2
|
|
@SingletonBinding(eager=true)
|
|
public Class<? extends PDLValidator> bindPDLValidator() {
|
|
return PDLValidator.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.validation.ValidatorFragment2
|
|
public Class<? extends ConfigurableIssueCodesProvider> bindConfigurableIssueCodesProvider() {
|
|
return PDLConfigurableIssueCodesProvider.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.scoping.ImportNamespacesScopingFragment2
|
|
public Class<? extends IScopeProvider> bindIScopeProvider() {
|
|
return PDLScopeProvider.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.scoping.ImportNamespacesScopingFragment2
|
|
public void configureIScopeProviderDelegate(Binder binder) {
|
|
binder.bind(IScopeProvider.class).annotatedWith(Names.named(AbstractDeclarativeScopeProvider.NAMED_DELEGATE)).to(ImportedNamespaceAwareLocalScopeProvider.class);
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.scoping.ImportNamespacesScopingFragment2
|
|
public Class<? extends IGlobalScopeProvider> bindIGlobalScopeProvider() {
|
|
return DefaultGlobalScopeProvider.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.scoping.ImportNamespacesScopingFragment2
|
|
public void configureIgnoreCaseLinking(Binder binder) {
|
|
binder.bindConstant().annotatedWith(IgnoreCaseLinking.class).to(false);
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.exporting.QualifiedNamesFragment2
|
|
public Class<? extends IQualifiedNameProvider> bindIQualifiedNameProvider() {
|
|
return DefaultDeclarativeQualifiedNameProvider.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.builder.BuilderIntegrationFragment2
|
|
public Class<? extends IContainer.Manager> bindIContainer$Manager() {
|
|
return StateBasedContainerManager.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.builder.BuilderIntegrationFragment2
|
|
public Class<? extends IAllContainersState.Provider> bindIAllContainersState$Provider() {
|
|
return ResourceSetBasedAllContainersStateProvider.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.builder.BuilderIntegrationFragment2
|
|
public void configureIResourceDescriptions(Binder binder) {
|
|
binder.bind(IResourceDescriptions.class).to(ResourceSetBasedResourceDescriptions.class);
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.builder.BuilderIntegrationFragment2
|
|
public void configureIResourceDescriptionsPersisted(Binder binder) {
|
|
binder.bind(IResourceDescriptions.class).annotatedWith(Names.named(ResourceDescriptionsProvider.PERSISTED_DESCRIPTIONS)).to(ResourceSetBasedResourceDescriptions.class);
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.generator.GeneratorFragment2
|
|
public Class<? extends IGenerator2> bindIGenerator2() {
|
|
return PDLGenerator.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.formatting.Formatter2Fragment2
|
|
public Class<? extends IFormatter2> bindIFormatter2() {
|
|
return PDLFormatter.class;
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.formatting.Formatter2Fragment2
|
|
public void configureFormatterPreferences(Binder binder) {
|
|
binder.bind(IPreferenceValuesProvider.class).annotatedWith(FormatterPreferences.class).to(FormatterPreferenceValuesProvider.class);
|
|
}
|
|
|
|
// contributed by org.eclipse.xtext.xtext.generator.ecore2xtext.Ecore2XtextValueConverterServiceFragment2
|
|
public Class<? extends IValueConverterService> bindIValueConverterService() {
|
|
return Ecore2XtextTerminalConverters.class;
|
|
}
|
|
|
|
}
|