Skip to content
Snippets Groups Projects
Commit 4917ba28 authored by Bernhard Johannes Berger's avatar Bernhard Johannes Berger
Browse files

Added generator language.

parent fffb2490
No related branches found
No related tags found
No related merge requests found
Pipeline #222257 passed
Showing
with 30184 additions and 0 deletions
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src/"/>
<classpathentry kind="src" path="src-gen/"/>
<classpathentry kind="src" path="xtend-gen/"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>de.evoal.languages.model.generator.dsl.ide</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.xtext.ui.shared.xtextBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.xtext.ui.shared.xtextNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.pde.PluginNature</nature>
</natures>
</projectDescription>
Manifest-Version: 1.0
Automatic-Module-Name: de.evoal.languages.model.generator.dsl.ide
Bundle-ManifestVersion: 2
Bundle-Name: de.evoal.languages.model.generator.dsl.ide
Bundle-Vendor: EvoAl Project
Bundle-Version: 1.0.0.qualifier
Bundle-SymbolicName: de.evoal.languages.model.generator.dsl.ide; singleton:=true
Bundle-ActivationPolicy: lazy
Require-Bundle: de.evoal.languages.model.generator.dsl,
org.eclipse.xtext.ide,
org.eclipse.xtext.xbase.ide,
org.antlr.runtime;bundle-version="[3.2.0,3.2.1)",
de.evoal.languages.model.instance.dsl.ide;bundle-version="1.0.0"
Bundle-RequiredExecutionEnvironment: JavaSE-11
Export-Package: de.evoal.languages.model.generator.dsl.ide.contentassist.antlr.internal,
de.evoal.languages.model.generator.dsl.ide.contentassist.antlr
source.. = src/,\
src-gen/,\
xtend-gen/
bin.includes = .,\
META-INF/
bin.excludes = **/*.xtend
<?xml version="1.0" encoding="utf-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>de.evoal.languages</groupId>
<artifactId>de.evoal.languages.releng.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../de.evoal.languages.releng.parent</relativePath>
</parent>
<artifactId>de.evoal.languages.model.generator.dsl.ide</artifactId>
<packaging>eclipse-plugin</packaging>
</project>
de.evoal.languages.model.generator.dsl.ide.GeneratorDSLIdeSetup
/*
* generated by Xtext 2.25.0
*/
package de.evoal.languages.model.generator.dsl.ide;
import com.google.inject.Binder;
import com.google.inject.name.Names;
import de.evoal.languages.model.generator.dsl.ide.contentassist.antlr.GeneratorDSLParser;
import de.evoal.languages.model.generator.dsl.ide.contentassist.antlr.internal.InternalGeneratorDSLLexer;
import org.eclipse.xtext.ide.DefaultIdeModule;
import org.eclipse.xtext.ide.LexerIdeBindings;
import org.eclipse.xtext.ide.editor.contentassist.FQNPrefixMatcher;
import org.eclipse.xtext.ide.editor.contentassist.IPrefixMatcher;
import org.eclipse.xtext.ide.editor.contentassist.IProposalConflictHelper;
import org.eclipse.xtext.ide.editor.contentassist.antlr.AntlrProposalConflictHelper;
import org.eclipse.xtext.ide.editor.contentassist.antlr.IContentAssistParser;
import org.eclipse.xtext.ide.editor.contentassist.antlr.internal.Lexer;
import org.eclipse.xtext.ide.refactoring.IRenameStrategy2;
import org.eclipse.xtext.ide.server.rename.IRenameService2;
import org.eclipse.xtext.ide.server.rename.RenameService2;
/**
* Manual modifications go to {@link GeneratorDSLIdeModule}.
*/
@SuppressWarnings("all")
public abstract class AbstractGeneratorDSLIdeModule extends DefaultIdeModule {
// contributed by org.eclipse.xtext.xtext.generator.parser.antlr.XtextAntlrGeneratorFragment2
public void configureContentAssistLexer(Binder binder) {
binder.bind(Lexer.class)
.annotatedWith(Names.named(LexerIdeBindings.CONTENT_ASSIST))
.to(InternalGeneratorDSLLexer.class);
}
// contributed by org.eclipse.xtext.xtext.generator.parser.antlr.XtextAntlrGeneratorFragment2
public Class<? extends IContentAssistParser> bindIContentAssistParser() {
return GeneratorDSLParser.class;
}
// contributed by org.eclipse.xtext.xtext.generator.parser.antlr.XtextAntlrGeneratorFragment2
public Class<? extends IProposalConflictHelper> bindIProposalConflictHelper() {
return AntlrProposalConflictHelper.class;
}
// contributed by org.eclipse.xtext.xtext.generator.exporting.QualifiedNamesFragment2
public Class<? extends IPrefixMatcher> bindIPrefixMatcher() {
return FQNPrefixMatcher.class;
}
// contributed by org.eclipse.xtext.xtext.generator.ui.refactoring.RefactorElementNameFragment2
public Class<? extends IRenameService2> bindIRenameService2() {
return RenameService2.class;
}
// contributed by org.eclipse.xtext.xtext.generator.ui.refactoring.RefactorElementNameFragment2
public Class<? extends IRenameStrategy2> bindIRenameStrategy2() {
return IRenameStrategy2.DefaultImpl.class;
}
}
/*
* generated by Xtext 2.25.0
*/
package de.evoal.languages.model.generator.dsl.ide.contentassist.antlr;
import com.google.common.collect.ImmutableMap;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import de.evoal.languages.model.generator.dsl.ide.contentassist.antlr.internal.InternalGeneratorDSLParser;
import de.evoal.languages.model.generator.dsl.services.GeneratorDSLGrammarAccess;
import java.util.Map;
import org.eclipse.xtext.AbstractElement;
import org.eclipse.xtext.ide.editor.contentassist.antlr.AbstractContentAssistParser;
public class GeneratorDSLParser extends AbstractContentAssistParser {
@Singleton
public static final class NameMappings {
private final Map<AbstractElement, String> mappings;
@Inject
public NameMappings(GeneratorDSLGrammarAccess grammarAccess) {
ImmutableMap.Builder<AbstractElement, String> builder = ImmutableMap.builder();
init(builder, grammarAccess);
this.mappings = builder.build();
}
public String getRuleName(AbstractElement element) {
return mappings.get(element);
}
private static void init(ImmutableMap.Builder<AbstractElement, String> builder, GeneratorDSLGrammarAccess grammarAccess) {
builder.put(grammarAccess.getStatementRuleAccess().getAlternatives(), "rule__StatementRule__Alternatives");
builder.put(grammarAccess.getRangeRuleAccess().getAlternatives(), "rule__RangeRule__Alternatives");
builder.put(grammarAccess.getGeneratorReferenceRuleAccess().getAlternatives(), "rule__GeneratorReferenceRule__Alternatives");
builder.put(grammarAccess.getFunctionReferenceRuleAccess().getAlternatives(), "rule__FunctionReferenceRule__Alternatives");
builder.put(grammarAccess.getFunctionDefReferenceRuleAccess().getAlternatives(), "rule__FunctionDefReferenceRule__Alternatives");
builder.put(grammarAccess.getNameOrMiscRuleAccess().getAlternatives(), "rule__NameOrMiscRule__Alternatives");
builder.put(grammarAccess.getValueRuleAccess().getAlternatives(), "rule__ValueRule__Alternatives");
builder.put(grammarAccess.getLiteralOrReferenceRuleAccess().getAlternatives(), "rule__LiteralOrReferenceRule__Alternatives");
builder.put(grammarAccess.getLiteralRuleAccess().getAlternatives(), "rule__LiteralRule__Alternatives");
builder.put(grammarAccess.getNumberLiteralRuleAccess().getAlternatives(), "rule__NumberLiteralRule__Alternatives");
builder.put(grammarAccess.getBooleanLiteralRuleAccess().getAlternatives_1(), "rule__BooleanLiteralRule__Alternatives_1");
builder.put(grammarAccess.getStringOrIdAccess().getAlternatives(), "rule__StringOrId__Alternatives");
builder.put(grammarAccess.getComparisonOperatorRuleAccess().getAlternatives(), "rule__ComparisonOperatorRule__Alternatives");
builder.put(grammarAccess.getAddOrSubtractOperatorRuleAccess().getAlternatives(), "rule__AddOrSubtractOperatorRule__Alternatives");
builder.put(grammarAccess.getMultiplyDivideModuloOperatorRuleAccess().getAlternatives(), "rule__MultiplyDivideModuloOperatorRule__Alternatives");
builder.put(grammarAccess.getConfigurationRuleAccess().getGroup(), "rule__ConfigurationRule__Group__0");
builder.put(grammarAccess.getUseRuleAccess().getGroup(), "rule__UseRule__Group__0");
builder.put(grammarAccess.getParametrizedFunctionDefinitionRuleAccess().getGroup(), "rule__ParametrizedFunctionDefinitionRule__Group__0");
builder.put(grammarAccess.getGeneratorDefinitionRuleAccess().getGroup(), "rule__GeneratorDefinitionRule__Group__0");
builder.put(grammarAccess.getForStatementRuleAccess().getGroup(), "rule__ForStatementRule__Group__0");
builder.put(grammarAccess.getCounterRangeRuleAccess().getGroup(), "rule__CounterRangeRule__Group__0");
builder.put(grammarAccess.getFunctionsRuleAccess().getGroup(), "rule__FunctionsRule__Group__0");
builder.put(grammarAccess.getFunctionReferencesRuleAccess().getGroup(), "rule__FunctionReferencesRule__Group__0");
builder.put(grammarAccess.getFunctionReferencesRuleAccess().getGroup_2(), "rule__FunctionReferencesRule__Group_2__0");
builder.put(grammarAccess.getGeneratorsRuleAccess().getGroup(), "rule__GeneratorsRule__Group__0");
builder.put(grammarAccess.getGeneratorReferencesRuleAccess().getGroup(), "rule__GeneratorReferencesRule__Group__0");
builder.put(grammarAccess.getGeneratorReferencesRuleAccess().getGroup_2(), "rule__GeneratorReferencesRule__Group_2__0");
builder.put(grammarAccess.getApplyStatementRuleAccess().getGroup(), "rule__ApplyStatementRule__Group__0");
builder.put(grammarAccess.getGeneratorDefinitionReferenceRuleAccess().getGroup(), "rule__GeneratorDefinitionReferenceRule__Group__0");
builder.put(grammarAccess.getLoopVariableReferenceAccess().getGroup(), "rule__LoopVariableReference__Group__0");
builder.put(grammarAccess.getFunctionDefinitionReferenceRuleAccess().getGroup(), "rule__FunctionDefinitionReferenceRule__Group__0");
builder.put(grammarAccess.getParametrizedFunctionDefinitionReferenceRuleAccess().getGroup(), "rule__ParametrizedFunctionDefinitionReferenceRule__Group__0");
builder.put(grammarAccess.getInstanceRuleAccess().getGroup(), "rule__InstanceRule__Group__0");
builder.put(grammarAccess.getInstanceRuleAccess().getGroup_1(), "rule__InstanceRule__Group_1__0");
builder.put(grammarAccess.getAttributeRuleAccess().getGroup(), "rule__AttributeRule__Group__0");
builder.put(grammarAccess.getArrayRuleAccess().getGroup(), "rule__ArrayRule__Group__0");
builder.put(grammarAccess.getArrayRuleAccess().getGroup_2(), "rule__ArrayRule__Group_2__0");
builder.put(grammarAccess.getArrayRuleAccess().getGroup_2_1(), "rule__ArrayRule__Group_2_1__0");
builder.put(grammarAccess.getDataReferenceRuleAccess().getGroup(), "rule__DataReferenceRule__Group__0");
builder.put(grammarAccess.getOrExpressionRuleAccess().getGroup(), "rule__OrExpressionRule__Group__0");
builder.put(grammarAccess.getOrExpressionRuleAccess().getGroup_1(), "rule__OrExpressionRule__Group_1__0");
builder.put(grammarAccess.getXorExpressionRuleAccess().getGroup(), "rule__XorExpressionRule__Group__0");
builder.put(grammarAccess.getXorExpressionRuleAccess().getGroup_1(), "rule__XorExpressionRule__Group_1__0");
builder.put(grammarAccess.getAndExpressionRuleAccess().getGroup(), "rule__AndExpressionRule__Group__0");
builder.put(grammarAccess.getAndExpressionRuleAccess().getGroup_1(), "rule__AndExpressionRule__Group_1__0");
builder.put(grammarAccess.getNotExpressionRuleAccess().getGroup(), "rule__NotExpressionRule__Group__0");
builder.put(grammarAccess.getComparisonExpressionRuleAccess().getGroup(), "rule__ComparisonExpressionRule__Group__0");
builder.put(grammarAccess.getPartialComparisonExpressionRuleAccess().getGroup(), "rule__PartialComparisonExpressionRule__Group__0");
builder.put(grammarAccess.getAddOrSubtractExpressionRuleAccess().getGroup(), "rule__AddOrSubtractExpressionRule__Group__0");
builder.put(grammarAccess.getAddOrSubtractExpressionRuleAccess().getGroup_1(), "rule__AddOrSubtractExpressionRule__Group_1__0");
builder.put(grammarAccess.getMultiplyDivideModuloExpressionRuleAccess().getGroup(), "rule__MultiplyDivideModuloExpressionRule__Group__0");
builder.put(grammarAccess.getMultiplyDivideModuloExpressionRuleAccess().getGroup_1(), "rule__MultiplyDivideModuloExpressionRule__Group_1__0");
builder.put(grammarAccess.getPowerOfExpressionRuleAccess().getGroup(), "rule__PowerOfExpressionRule__Group__0");
builder.put(grammarAccess.getPowerOfExpressionRuleAccess().getGroup_1(), "rule__PowerOfExpressionRule__Group_1__0");
builder.put(grammarAccess.getUnaryAddOrSubtractExpressionRuleAccess().getGroup(), "rule__UnaryAddOrSubtractExpressionRule__Group__0");
builder.put(grammarAccess.getParanthesesRuleAccess().getGroup(), "rule__ParanthesesRule__Group__0");
builder.put(grammarAccess.getCallRuleAccess().getGroup(), "rule__CallRule__Group__0");
builder.put(grammarAccess.getCallRuleAccess().getGroup_2(), "rule__CallRule__Group_2__0");
builder.put(grammarAccess.getCallRuleAccess().getGroup_2_1(), "rule__CallRule__Group_2_1__0");
builder.put(grammarAccess.getFunctionNameRuleAccess().getGroup(), "rule__FunctionNameRule__Group__0");
builder.put(grammarAccess.getValueReferenceRuleAccess().getGroup(), "rule__ValueReferenceRule__Group__0");
builder.put(grammarAccess.getBooleanLiteralRuleAccess().getGroup(), "rule__BooleanLiteralRule__Group__0");
builder.put(grammarAccess.getDOUBLEAccess().getGroup(), "rule__DOUBLE__Group__0");
builder.put(grammarAccess.getConfigurationRuleAccess().getUsesAssignment_0(), "rule__ConfigurationRule__UsesAssignment_0");
builder.put(grammarAccess.getConfigurationRuleAccess().getGeneratorsAssignment_1(), "rule__ConfigurationRule__GeneratorsAssignment_1");
builder.put(grammarAccess.getConfigurationRuleAccess().getFunctionsAssignment_2(), "rule__ConfigurationRule__FunctionsAssignment_2");
builder.put(grammarAccess.getConfigurationRuleAccess().getStatementsAssignment_3(), "rule__ConfigurationRule__StatementsAssignment_3");
builder.put(grammarAccess.getUseRuleAccess().getImportURIAssignment_1(), "rule__UseRule__ImportURIAssignment_1");
builder.put(grammarAccess.getParametrizedFunctionDefinitionRuleAccess().getNameAssignment_1(), "rule__ParametrizedFunctionDefinitionRule__NameAssignment_1");
builder.put(grammarAccess.getParametrizedFunctionDefinitionRuleAccess().getDefinitionAssignment_3(), "rule__ParametrizedFunctionDefinitionRule__DefinitionAssignment_3");
builder.put(grammarAccess.getGeneratorDefinitionRuleAccess().getNameAssignment_1(), "rule__GeneratorDefinitionRule__NameAssignment_1");
builder.put(grammarAccess.getGeneratorDefinitionRuleAccess().getDefinitionAssignment_3(), "rule__GeneratorDefinitionRule__DefinitionAssignment_3");
builder.put(grammarAccess.getForStatementRuleAccess().getNameAssignment_1(), "rule__ForStatementRule__NameAssignment_1");
builder.put(grammarAccess.getForStatementRuleAccess().getRangeAssignment_3(), "rule__ForStatementRule__RangeAssignment_3");
builder.put(grammarAccess.getForStatementRuleAccess().getStatementsAssignment_5(), "rule__ForStatementRule__StatementsAssignment_5");
builder.put(grammarAccess.getCounterRangeRuleAccess().getStartAssignment_1(), "rule__CounterRangeRule__StartAssignment_1");
builder.put(grammarAccess.getCounterRangeRuleAccess().getEndAssignment_3(), "rule__CounterRangeRule__EndAssignment_3");
builder.put(grammarAccess.getFunctionsRuleAccess().getFunctionReferencesAssignment_2(), "rule__FunctionsRule__FunctionReferencesAssignment_2");
builder.put(grammarAccess.getFunctionReferencesRuleAccess().getFunctionsAssignment_1(), "rule__FunctionReferencesRule__FunctionsAssignment_1");
builder.put(grammarAccess.getFunctionReferencesRuleAccess().getFunctionsAssignment_2_1(), "rule__FunctionReferencesRule__FunctionsAssignment_2_1");
builder.put(grammarAccess.getGeneratorsRuleAccess().getGeneratorReferencesAssignment_2(), "rule__GeneratorsRule__GeneratorReferencesAssignment_2");
builder.put(grammarAccess.getGeneratorReferencesRuleAccess().getGeneratorsAssignment_1(), "rule__GeneratorReferencesRule__GeneratorsAssignment_1");
builder.put(grammarAccess.getGeneratorReferencesRuleAccess().getGeneratorsAssignment_2_1(), "rule__GeneratorReferencesRule__GeneratorsAssignment_2_1");
builder.put(grammarAccess.getApplyStatementRuleAccess().getFileAssignment_1(), "rule__ApplyStatementRule__FileAssignment_1");
builder.put(grammarAccess.getApplyStatementRuleAccess().getCountAssignment_3(), "rule__ApplyStatementRule__CountAssignment_3");
builder.put(grammarAccess.getApplyStatementRuleAccess().getFunctionAssignment_7(), "rule__ApplyStatementRule__FunctionAssignment_7");
builder.put(grammarAccess.getApplyStatementRuleAccess().getGeneratorAssignment_9(), "rule__ApplyStatementRule__GeneratorAssignment_9");
builder.put(grammarAccess.getGeneratorDefinitionReferenceRuleAccess().getDefinitionAssignment_1(), "rule__GeneratorDefinitionReferenceRule__DefinitionAssignment_1");
builder.put(grammarAccess.getLoopVariableReferenceAccess().getDefinitionAssignment_1(), "rule__LoopVariableReference__DefinitionAssignment_1");
builder.put(grammarAccess.getFunctionDefinitionReferenceRuleAccess().getDefinitionAssignment_2(), "rule__FunctionDefinitionReferenceRule__DefinitionAssignment_2");
builder.put(grammarAccess.getParametrizedFunctionDefinitionReferenceRuleAccess().getDefinitionAssignment_2(), "rule__ParametrizedFunctionDefinitionReferenceRule__DefinitionAssignment_2");
builder.put(grammarAccess.getInstanceRuleAccess().getNameAssignment_0(), "rule__InstanceRule__NameAssignment_0");
builder.put(grammarAccess.getInstanceRuleAccess().getAttributesAssignment_1_1(), "rule__InstanceRule__AttributesAssignment_1_1");
builder.put(grammarAccess.getAttributeRuleAccess().getNameAssignment_0(), "rule__AttributeRule__NameAssignment_0");
builder.put(grammarAccess.getAttributeRuleAccess().getValueAssignment_2(), "rule__AttributeRule__ValueAssignment_2");
builder.put(grammarAccess.getNameRuleAccess().getNameAssignment(), "rule__NameRule__NameAssignment");
builder.put(grammarAccess.getMiscRuleAccess().getNameAssignment(), "rule__MiscRule__NameAssignment");
builder.put(grammarAccess.getArrayRuleAccess().getValuesAssignment_2_0(), "rule__ArrayRule__ValuesAssignment_2_0");
builder.put(grammarAccess.getArrayRuleAccess().getValuesAssignment_2_1_1(), "rule__ArrayRule__ValuesAssignment_2_1_1");
builder.put(grammarAccess.getLiteralValueRuleAccess().getLiteralAssignment(), "rule__LiteralValueRule__LiteralAssignment");
builder.put(grammarAccess.getDataReferenceRuleAccess().getDefinitionAssignment_2(), "rule__DataReferenceRule__DefinitionAssignment_2");
builder.put(grammarAccess.getOrExpressionRuleAccess().getSubExpressionsAssignment_0(), "rule__OrExpressionRule__SubExpressionsAssignment_0");
builder.put(grammarAccess.getOrExpressionRuleAccess().getSubExpressionsAssignment_1_1(), "rule__OrExpressionRule__SubExpressionsAssignment_1_1");
builder.put(grammarAccess.getXorExpressionRuleAccess().getSubExpressionsAssignment_0(), "rule__XorExpressionRule__SubExpressionsAssignment_0");
builder.put(grammarAccess.getXorExpressionRuleAccess().getSubExpressionsAssignment_1_1(), "rule__XorExpressionRule__SubExpressionsAssignment_1_1");
builder.put(grammarAccess.getAndExpressionRuleAccess().getSubExpressionsAssignment_0(), "rule__AndExpressionRule__SubExpressionsAssignment_0");
builder.put(grammarAccess.getAndExpressionRuleAccess().getSubExpressionsAssignment_1_1(), "rule__AndExpressionRule__SubExpressionsAssignment_1_1");
builder.put(grammarAccess.getNotExpressionRuleAccess().getNegatedAssignment_0(), "rule__NotExpressionRule__NegatedAssignment_0");
builder.put(grammarAccess.getNotExpressionRuleAccess().getOperandAssignment_1(), "rule__NotExpressionRule__OperandAssignment_1");
builder.put(grammarAccess.getComparisonExpressionRuleAccess().getLeftOperandAssignment_0(), "rule__ComparisonExpressionRule__LeftOperandAssignment_0");
builder.put(grammarAccess.getComparisonExpressionRuleAccess().getComparisonAssignment_1(), "rule__ComparisonExpressionRule__ComparisonAssignment_1");
builder.put(grammarAccess.getPartialComparisonExpressionRuleAccess().getOperatorAssignment_0(), "rule__PartialComparisonExpressionRule__OperatorAssignment_0");
builder.put(grammarAccess.getPartialComparisonExpressionRuleAccess().getSubExpressionAssignment_1(), "rule__PartialComparisonExpressionRule__SubExpressionAssignment_1");
builder.put(grammarAccess.getAddOrSubtractExpressionRuleAccess().getLeftOperandAssignment_0(), "rule__AddOrSubtractExpressionRule__LeftOperandAssignment_0");
builder.put(grammarAccess.getAddOrSubtractExpressionRuleAccess().getOperatorsAssignment_1_0(), "rule__AddOrSubtractExpressionRule__OperatorsAssignment_1_0");
builder.put(grammarAccess.getAddOrSubtractExpressionRuleAccess().getOperandsAssignment_1_1(), "rule__AddOrSubtractExpressionRule__OperandsAssignment_1_1");
builder.put(grammarAccess.getMultiplyDivideModuloExpressionRuleAccess().getLeftOperandAssignment_0(), "rule__MultiplyDivideModuloExpressionRule__LeftOperandAssignment_0");
builder.put(grammarAccess.getMultiplyDivideModuloExpressionRuleAccess().getOperatorsAssignment_1_0(), "rule__MultiplyDivideModuloExpressionRule__OperatorsAssignment_1_0");
builder.put(grammarAccess.getMultiplyDivideModuloExpressionRuleAccess().getOperandsAssignment_1_1(), "rule__MultiplyDivideModuloExpressionRule__OperandsAssignment_1_1");
builder.put(grammarAccess.getPowerOfExpressionRuleAccess().getLeftOperandAssignment_0(), "rule__PowerOfExpressionRule__LeftOperandAssignment_0");
builder.put(grammarAccess.getPowerOfExpressionRuleAccess().getRightOperandAssignment_1_1(), "rule__PowerOfExpressionRule__RightOperandAssignment_1_1");
builder.put(grammarAccess.getUnaryAddOrSubtractExpressionRuleAccess().getOperatorsAssignment_0(), "rule__UnaryAddOrSubtractExpressionRule__OperatorsAssignment_0");
builder.put(grammarAccess.getUnaryAddOrSubtractExpressionRuleAccess().getSubExpressionAssignment_1(), "rule__UnaryAddOrSubtractExpressionRule__SubExpressionAssignment_1");
builder.put(grammarAccess.getParanthesesRuleAccess().getSubExpressionAssignment_1(), "rule__ParanthesesRule__SubExpressionAssignment_1");
builder.put(grammarAccess.getCallRuleAccess().getFunctionAssignment_0(), "rule__CallRule__FunctionAssignment_0");
builder.put(grammarAccess.getCallRuleAccess().getParametersAssignment_2_0(), "rule__CallRule__ParametersAssignment_2_0");
builder.put(grammarAccess.getCallRuleAccess().getParametersAssignment_2_1_1(), "rule__CallRule__ParametersAssignment_2_1_1");
builder.put(grammarAccess.getDoubleLiteralRuleAccess().getValueAssignment(), "rule__DoubleLiteralRule__ValueAssignment");
builder.put(grammarAccess.getIntegerLiteralRuleAccess().getValueAssignment(), "rule__IntegerLiteralRule__ValueAssignment");
builder.put(grammarAccess.getStringLiteralRuleAccess().getValueAssignment(), "rule__StringLiteralRule__ValueAssignment");
builder.put(grammarAccess.getBooleanLiteralRuleAccess().getValueAssignment_1_0(), "rule__BooleanLiteralRule__ValueAssignment_1_0");
}
}
@Inject
private NameMappings nameMappings;
@Inject
private GeneratorDSLGrammarAccess grammarAccess;
@Override
protected InternalGeneratorDSLParser createParser() {
InternalGeneratorDSLParser result = new InternalGeneratorDSLParser(null);
result.setGrammarAccess(grammarAccess);
return result;
}
@Override
protected String getRuleName(AbstractElement element) {
return nameMappings.getRuleName(element);
}
@Override
protected String[] getInitialHiddenTokens() {
return new String[] { "RULE_WS", "RULE_ML_COMMENT", "RULE_SL_COMMENT" };
}
public GeneratorDSLGrammarAccess getGrammarAccess() {
return this.grammarAccess;
}
public void setGrammarAccess(GeneratorDSLGrammarAccess grammarAccess) {
this.grammarAccess = grammarAccess;
}
public NameMappings getNameMappings() {
return nameMappings;
}
public void setNameMappings(NameMappings nameMappings) {
this.nameMappings = nameMappings;
}
}
/*
* generated by Xtext 2.25.0
*/
package de.evoal.languages.model.generator.dsl.ide.contentassist.antlr;
import java.util.Collection;
import java.util.Collections;
import org.eclipse.xtext.AbstractRule;
import org.eclipse.xtext.ide.editor.contentassist.antlr.FollowElement;
import org.eclipse.xtext.ide.editor.contentassist.antlr.internal.AbstractInternalContentAssistParser;
import org.eclipse.xtext.util.PolymorphicDispatcher;
public class PartialGeneratorDSLContentAssistParser extends GeneratorDSLParser {
private AbstractRule rule;
@Override
public void initializeFor(AbstractRule rule) {
this.rule = rule;
}
@Override
protected Collection<FollowElement> getFollowElements(AbstractInternalContentAssistParser parser) {
if (rule == null || rule.eIsProxy())
return Collections.emptyList();
String methodName = "entryRule" + rule.getName();
PolymorphicDispatcher<Collection<FollowElement>> dispatcher =
new PolymorphicDispatcher<Collection<FollowElement>>(methodName, 0, 0, Collections.singletonList(parser));
dispatcher.invoke();
return parser.getFollowElements();
}
}
'!'=59
'!='=16
'%'=23
'('=54
')'=55
'*'=21
'+'=19
','=37
'-'=20
'.'=58
'/'=22
':='=48
';'=25
'<'=17
'<='=18
'='=15
'>'=14
'>='=13
'AND'=52
'OR'=50
'XOR'=51
'['=33
']'=35
'^'=53
'applying'=43
'call'=56
'data'=49
'definition'=45
'end'=32
'false'=12
'for'=29
'from'=42
'function'=26
'functions'=36
'generator'=28
'generators'=38
'in'=30
'loop'=31
'on'=44
'samples'=41
'to'=34
'true'=60
'use'=24
'using'=27
'value'=57
'with'=40
'write'=39
'{'=46
'}'=47
RULE_ANY_OTHER=11
RULE_ID=5
RULE_INT=6
RULE_ML_COMMENT=8
RULE_QUOTED_ID=4
RULE_SL_COMMENT=9
RULE_STRING=7
RULE_WS=10
T__12=12
T__13=13
T__14=14
T__15=15
T__16=16
T__17=17
T__18=18
T__19=19
T__20=20
T__21=21
T__22=22
T__23=23
T__24=24
T__25=25
T__26=26
T__27=27
T__28=28
T__29=29
T__30=30
T__31=31
T__32=32
T__33=33
T__34=34
T__35=35
T__36=36
T__37=37
T__38=38
T__39=39
T__40=40
T__41=41
T__42=42
T__43=43
T__44=44
T__45=45
T__46=46
T__47=47
T__48=48
T__49=49
T__50=50
T__51=51
T__52=52
T__53=53
T__54=54
T__55=55
T__56=56
T__57=57
T__58=58
T__59=59
T__60=60
/*
* generated by Xtext 2.25.0
*/
package de.evoal.languages.model.generator.dsl.ide;
/**
* Use this class to register ide components.
*/
public class GeneratorDSLIdeModule extends AbstractGeneratorDSLIdeModule {
}
/*
* generated by Xtext 2.25.0
*/
package de.evoal.languages.model.generator.dsl.ide;
import com.google.inject.Guice;
import com.google.inject.Injector;
import de.evoal.languages.model.generator.dsl.GeneratorDSLRuntimeModule;
import de.evoal.languages.model.generator.dsl.GeneratorDSLStandaloneSetup;
import org.eclipse.xtext.util.Modules2;
/**
* Initialization support for running Xtext languages as language servers.
*/
public class GeneratorDSLIdeSetup extends GeneratorDSLStandaloneSetup {
@Override
public Injector createInjector() {
return Guice.createInjector(Modules2.mixin(new GeneratorDSLRuntimeModule(), new GeneratorDSLIdeModule()));
}
}
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src/"/>
<classpathentry kind="src" path="src-gen/"/>
<classpathentry kind="src" path="xtend-gen/"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>de.evoal.languages.model.generator.dsl.ui</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.xtext.ui.shared.xtextBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.xtext.ui.shared.xtextNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.pde.PluginNature</nature>
</natures>
</projectDescription>
Manifest-Version: 1.0
Automatic-Module-Name: de.evoal.languages.model.generator.dsl.ui
Bundle-ManifestVersion: 2
Bundle-Name: de.evoal.languages.model.generator.dsl.ui
Bundle-Vendor: EvoAl Project
Bundle-Version: 1.0.0.qualifier
Bundle-SymbolicName: de.evoal.languages.model.generator.dsl.ui; singleton:=true
Bundle-ActivationPolicy: lazy
Require-Bundle: de.evoal.languages.model.generator.dsl,
de.evoal.languages.model.generator.dsl.ide,
org.eclipse.xtext.ui,
org.eclipse.xtext.ui.shared,
org.eclipse.xtext.ui.codetemplates.ui,
org.eclipse.ui.editors;bundle-version="3.5.0",
org.eclipse.ui.ide;bundle-version="3.5.0",
org.eclipse.ui,
org.eclipse.compare,
org.eclipse.xtext.builder,
de.evoal.languages.model.instance.dsl.ui;bundle-version="1.0.0"
Import-Package: org.apache.log4j
Bundle-RequiredExecutionEnvironment: JavaSE-11
Export-Package: de.evoal.languages.model.generator.dsl.ui.internal,
de.evoal.languages.model.generator.dsl.ui.quickfix,
de.evoal.languages.model.generator.dsl.ui.contentassist
Bundle-Activator: de.evoal.languages.model.generator.dsl.ui.internal.DslActivator
source.. = src/,\
src-gen/,\
xtend-gen/
bin.includes = .,\
META-INF/,\
plugin.xml
bin.excludes = **/*.xtend
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension
point="org.eclipse.ui.editors">
<editor
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.editor.XtextEditor"
contributorClass="org.eclipse.ui.editors.text.TextEditorActionContributor"
default="true"
extensions="generator"
id="de.evoal.languages.model.generator.dsl.GeneratorDSL"
name="GeneratorDSL Editor">
</editor>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.editor.hyperlinking.OpenDeclarationHandler"
commandId="org.eclipse.xtext.ui.editor.hyperlinking.OpenDeclaration">
<activeWhen>
<reference
definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.Editor.opened">
</reference>
</activeWhen>
</handler>
<handler
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.editor.handler.ValidateActionHandler"
commandId="de.evoal.languages.model.generator.dsl.GeneratorDSL.validate">
<activeWhen>
<reference
definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.Editor.opened">
</reference>
</activeWhen>
</handler>
<!-- copy qualified name -->
<handler
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.editor.copyqualifiedname.EditorCopyQualifiedNameHandler"
commandId="org.eclipse.xtext.ui.editor.copyqualifiedname.EditorCopyQualifiedName">
<activeWhen>
<reference definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.Editor.opened" />
</activeWhen>
</handler>
<handler
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.editor.copyqualifiedname.OutlineCopyQualifiedNameHandler"
commandId="org.eclipse.xtext.ui.editor.copyqualifiedname.OutlineCopyQualifiedName">
<activeWhen>
<and>
<reference definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.XtextEditor.opened" />
<iterate>
<adapt type="org.eclipse.xtext.ui.editor.outline.IOutlineNode" />
</iterate>
</and>
</activeWhen>
</handler>
</extension>
<extension point="org.eclipse.core.expressions.definitions">
<definition id="de.evoal.languages.model.generator.dsl.GeneratorDSL.Editor.opened">
<and>
<reference definitionId="isActiveEditorAnInstanceOfXtextEditor"/>
<with variable="activeEditor">
<test property="org.eclipse.xtext.ui.editor.XtextEditor.languageName"
value="de.evoal.languages.model.generator.dsl.GeneratorDSL"
forcePluginActivation="true"/>
</with>
</and>
</definition>
<definition id="de.evoal.languages.model.generator.dsl.GeneratorDSL.XtextEditor.opened">
<and>
<reference definitionId="isXtextEditorActive"/>
<with variable="activeEditor">
<test property="org.eclipse.xtext.ui.editor.XtextEditor.languageName"
value="de.evoal.languages.model.generator.dsl.GeneratorDSL"
forcePluginActivation="true"/>
</with>
</and>
</definition>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.editor.preferences.LanguageRootPreferencePage"
id="de.evoal.languages.model.generator.dsl.GeneratorDSL"
name="GeneratorDSL">
<keywordReference id="de.evoal.languages.model.generator.dsl.ui.keyword_GeneratorDSL"/>
</page>
<page
category="de.evoal.languages.model.generator.dsl.GeneratorDSL"
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.editor.syntaxcoloring.SyntaxColoringPreferencePage"
id="de.evoal.languages.model.generator.dsl.GeneratorDSL.coloring"
name="Syntax Coloring">
<keywordReference id="de.evoal.languages.model.generator.dsl.ui.keyword_GeneratorDSL"/>
</page>
<page
category="de.evoal.languages.model.generator.dsl.GeneratorDSL"
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.editor.templates.XtextTemplatePreferencePage"
id="de.evoal.languages.model.generator.dsl.GeneratorDSL.templates"
name="Templates">
<keywordReference id="de.evoal.languages.model.generator.dsl.ui.keyword_GeneratorDSL"/>
</page>
</extension>
<extension
point="org.eclipse.ui.propertyPages">
<page
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.editor.preferences.LanguageRootPreferencePage"
id="de.evoal.languages.model.generator.dsl.GeneratorDSL"
name="GeneratorDSL">
<keywordReference id="de.evoal.languages.model.generator.dsl.ui.keyword_GeneratorDSL"/>
<enabledWhen>
<adapt type="org.eclipse.core.resources.IProject"/>
</enabledWhen>
<filter name="projectNature" value="org.eclipse.xtext.ui.shared.xtextNature"/>
</page>
</extension>
<extension
point="org.eclipse.ui.keywords">
<keyword
id="de.evoal.languages.model.generator.dsl.ui.keyword_GeneratorDSL"
label="GeneratorDSL"/>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
description="Trigger expensive validation"
id="de.evoal.languages.model.generator.dsl.GeneratorDSL.validate"
name="Validate">
</command>
<!-- copy qualified name -->
<command
id="org.eclipse.xtext.ui.editor.copyqualifiedname.EditorCopyQualifiedName"
categoryId="org.eclipse.ui.category.edit"
description="Copy the qualified name for the selected element"
name="Copy Qualified Name">
</command>
<command
id="org.eclipse.xtext.ui.editor.copyqualifiedname.OutlineCopyQualifiedName"
categoryId="org.eclipse.ui.category.edit"
description="Copy the qualified name for the selected element"
name="Copy Qualified Name">
</command>
</extension>
<extension point="org.eclipse.ui.menus">
<menuContribution
locationURI="popup:#TextEditorContext?after=group.edit">
<command
commandId="de.evoal.languages.model.generator.dsl.GeneratorDSL.validate"
style="push"
tooltip="Trigger expensive validation">
<visibleWhen checkEnabled="false">
<reference
definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.Editor.opened">
</reference>
</visibleWhen>
</command>
</menuContribution>
<!-- copy qualified name -->
<menuContribution locationURI="popup:#TextEditorContext?after=copy">
<command commandId="org.eclipse.xtext.ui.editor.copyqualifiedname.EditorCopyQualifiedName"
style="push" tooltip="Copy Qualified Name">
<visibleWhen checkEnabled="false">
<reference definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.Editor.opened" />
</visibleWhen>
</command>
</menuContribution>
<menuContribution locationURI="menu:edit?after=copy">
<command commandId="org.eclipse.xtext.ui.editor.copyqualifiedname.EditorCopyQualifiedName"
style="push" tooltip="Copy Qualified Name">
<visibleWhen checkEnabled="false">
<reference definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.Editor.opened" />
</visibleWhen>
</command>
</menuContribution>
<menuContribution locationURI="popup:org.eclipse.xtext.ui.outline?after=additions">
<command commandId="org.eclipse.xtext.ui.editor.copyqualifiedname.OutlineCopyQualifiedName"
style="push" tooltip="Copy Qualified Name">
<visibleWhen checkEnabled="false">
<and>
<reference definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.XtextEditor.opened" />
<iterate>
<adapt type="org.eclipse.xtext.ui.editor.outline.IOutlineNode" />
</iterate>
</and>
</visibleWhen>
</command>
</menuContribution>
</extension>
<extension point="org.eclipse.ui.menus">
<menuContribution locationURI="popup:#TextEditorContext?endof=group.find">
<command commandId="org.eclipse.xtext.ui.editor.FindReferences">
<visibleWhen checkEnabled="false">
<reference definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.Editor.opened">
</reference>
</visibleWhen>
</command>
</menuContribution>
</extension>
<extension point="org.eclipse.ui.handlers">
<handler
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.editor.findrefs.FindReferencesHandler"
commandId="org.eclipse.xtext.ui.editor.FindReferences">
<activeWhen>
<reference
definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.Editor.opened">
</reference>
</activeWhen>
</handler>
</extension>
<extension point="org.eclipse.core.contenttype.contentTypes">
<content-type
base-type="org.eclipse.core.runtime.text"
file-extensions="generator"
id="de.evoal.languages.model.generator.dsl.GeneratorDSL.contenttype"
name="GeneratorDSL File"
priority="normal">
</content-type>
</extension>
<!-- adding resource factories -->
<extension
point="org.eclipse.emf.ecore.extension_parser">
<parser
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.resource.IResourceFactory"
type="generator">
</parser>
</extension>
<extension point="org.eclipse.xtext.extension_resourceServiceProvider">
<resourceServiceProvider
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.resource.IResourceUIServiceProvider"
uriExtension="generator">
</resourceServiceProvider>
</extension>
<!-- marker definitions for de.evoal.languages.model.generator.dsl.GeneratorDSL -->
<extension
id="generatordsl.check.fast"
name="GeneratorDSL Problem"
point="org.eclipse.core.resources.markers">
<super type="org.eclipse.xtext.ui.check.fast"/>
<persistent value="true"/>
</extension>
<extension
id="generatordsl.check.normal"
name="GeneratorDSL Problem"
point="org.eclipse.core.resources.markers">
<super type="org.eclipse.xtext.ui.check.normal"/>
<persistent value="true"/>
</extension>
<extension
id="generatordsl.check.expensive"
name="GeneratorDSL Problem"
point="org.eclipse.core.resources.markers">
<super type="org.eclipse.xtext.ui.check.expensive"/>
<persistent value="true"/>
</extension>
<extension point="org.eclipse.ui.preferencePages">
<page
category="de.evoal.languages.model.generator.dsl.GeneratorDSL"
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.validation.ValidatorPreferencePage"
id="de.evoal.languages.model.generator.dsl.GeneratorDSL.validator.preferencePage"
name="Errors/Warnings">
<keywordReference id="de.evoal.languages.model.generator.dsl.ui.keyword_GeneratorDSL"/>
</page>
</extension>
<extension point="org.eclipse.xtext.builder.participant">
<participant
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.builder.IXtextBuilderParticipant"
fileExtensions="generator"/>
</extension>
<extension point="org.eclipse.ui.preferencePages">
<page
category="de.evoal.languages.model.generator.dsl.GeneratorDSL"
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.builder.preferences.BuilderPreferencePage"
id="de.evoal.languages.model.generator.dsl.GeneratorDSL.compiler.preferencePage"
name="Compiler">
<keywordReference id="de.evoal.languages.model.generator.dsl.ui.keyword_GeneratorDSL"/>
</page>
</extension>
<extension point="org.eclipse.ui.propertyPages">
<page
category="de.evoal.languages.model.generator.dsl.GeneratorDSL"
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.builder.preferences.BuilderPreferencePage"
id="de.evoal.languages.model.generator.dsl.GeneratorDSL.compiler.propertyPage"
name="Compiler">
<keywordReference id="de.evoal.languages.model.generator.dsl.ui.keyword_GeneratorDSL"/>
<enabledWhen>
<adapt type="org.eclipse.core.resources.IProject"/>
</enabledWhen>
<filter name="projectNature" value="org.eclipse.xtext.ui.shared.xtextNature"/>
</page>
</extension>
<extension point="org.eclipse.ui.menus">
<menuContribution locationURI="popup:#TextEditorContext?after=xtext.ui.openDeclaration">
<command
commandId="org.eclipse.xtext.ui.OpenGeneratedFileCommand"
id="de.evoal.languages.model.generator.dsl.GeneratorDSL.OpenGeneratedCode"
style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.Editor.opened" />
</visibleWhen>
</command>
</menuContribution>
</extension>
<extension point="org.eclipse.ui.handlers">
<handler
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.generator.trace.OpenGeneratedFileHandler"
commandId="org.eclipse.xtext.ui.OpenGeneratedFileCommand">
<activeWhen>
<reference definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.Editor.opened" />
</activeWhen>
</handler>
</extension>
<!-- Quick Outline -->
<extension
point="org.eclipse.ui.handlers">
<handler
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.editor.outline.quickoutline.ShowQuickOutlineActionHandler"
commandId="org.eclipse.xtext.ui.editor.outline.QuickOutline">
<activeWhen>
<reference
definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.Editor.opened">
</reference>
</activeWhen>
</handler>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
description="Open the quick outline."
id="org.eclipse.xtext.ui.editor.outline.QuickOutline"
name="Quick Outline">
</command>
</extension>
<extension point="org.eclipse.ui.menus">
<menuContribution
locationURI="popup:#TextEditorContext?after=group.open">
<command commandId="org.eclipse.xtext.ui.editor.outline.QuickOutline"
style="push"
tooltip="Open Quick Outline">
<visibleWhen checkEnabled="false">
<reference definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.Editor.opened"/>
</visibleWhen>
</command>
</menuContribution>
</extension>
<!-- quickfix marker resolution generator for de.evoal.languages.model.generator.dsl.GeneratorDSL -->
<extension
point="org.eclipse.ui.ide.markerResolution">
<markerResolutionGenerator
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.editor.quickfix.MarkerResolutionGenerator"
markerType="de.evoal.languages.model.generator.dsl.ui.generatordsl.check.fast">
<attribute
name="FIXABLE_KEY"
value="true">
</attribute>
</markerResolutionGenerator>
<markerResolutionGenerator
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.editor.quickfix.MarkerResolutionGenerator"
markerType="de.evoal.languages.model.generator.dsl.ui.generatordsl.check.normal">
<attribute
name="FIXABLE_KEY"
value="true">
</attribute>
</markerResolutionGenerator>
<markerResolutionGenerator
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.editor.quickfix.MarkerResolutionGenerator"
markerType="de.evoal.languages.model.generator.dsl.ui.generatordsl.check.expensive">
<attribute
name="FIXABLE_KEY"
value="true">
</attribute>
</markerResolutionGenerator>
</extension>
<!-- Rename Refactoring -->
<extension point="org.eclipse.ui.handlers">
<handler
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.refactoring.ui.DefaultRenameElementHandler"
commandId="org.eclipse.xtext.ui.refactoring.RenameElement">
<activeWhen>
<reference
definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.Editor.opened">
</reference>
</activeWhen>
</handler>
</extension>
<extension point="org.eclipse.ui.menus">
<menuContribution
locationURI="popup:#TextEditorContext?after=group.edit">
<command commandId="org.eclipse.xtext.ui.refactoring.RenameElement"
style="push">
<visibleWhen checkEnabled="false">
<reference
definitionId="de.evoal.languages.model.generator.dsl.GeneratorDSL.Editor.opened">
</reference>
</visibleWhen>
</command>
</menuContribution>
</extension>
<extension point="org.eclipse.ui.preferencePages">
<page
category="de.evoal.languages.model.generator.dsl.GeneratorDSL"
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.refactoring.ui.RefactoringPreferencePage"
id="de.evoal.languages.model.generator.dsl.GeneratorDSL.refactoring"
name="Refactoring">
<keywordReference id="de.evoal.languages.model.generator.dsl.ui.keyword_GeneratorDSL"/>
</page>
</extension>
<extension point="org.eclipse.compare.contentViewers">
<viewer id="de.evoal.languages.model.generator.dsl.GeneratorDSL.compare.contentViewers"
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.compare.InjectableViewerCreator"
extensions="generator">
</viewer>
<contentTypeBinding
contentTypeId="de.evoal.languages.model.generator.dsl.GeneratorDSL.contenttype"
contentViewerId="de.evoal.languages.model.generator.dsl.GeneratorDSL.compare.contentViewers" />
</extension>
<extension point="org.eclipse.compare.contentMergeViewers">
<viewer id="de.evoal.languages.model.generator.dsl.GeneratorDSL.compare.contentMergeViewers"
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.compare.InjectableViewerCreator"
extensions="generator" label="GeneratorDSL Compare">
</viewer>
<contentTypeBinding
contentTypeId="de.evoal.languages.model.generator.dsl.GeneratorDSL.contenttype"
contentMergeViewerId="de.evoal.languages.model.generator.dsl.GeneratorDSL.compare.contentMergeViewers" />
</extension>
<extension point="org.eclipse.ui.editors.documentProviders">
<provider id="de.evoal.languages.model.generator.dsl.GeneratorDSL.editors.documentProviders"
class="de.evoal.languages.model.generator.dsl.ui.GeneratorDSLExecutableExtensionFactory:org.eclipse.xtext.ui.editor.model.XtextDocumentProvider"
extensions="generator">
</provider>
</extension>
<extension point="org.eclipse.team.core.fileTypes">
<fileTypes
extension="generator"
type="text">
</fileTypes>
</extension>
</plugin>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment