package hu.bme.mit.inf.dslreasoner.application.ide.contentassist.antlr.internal; import java.io.InputStream; import org.eclipse.xtext.*; import org.eclipse.xtext.parser.*; import org.eclipse.xtext.parser.impl.*; import org.eclipse.emf.ecore.util.EcoreUtil; import org.eclipse.emf.ecore.EObject; import org.eclipse.xtext.parser.antlr.XtextTokenStream; import org.eclipse.xtext.parser.antlr.XtextTokenStream.HiddenTokens; import org.eclipse.xtext.ide.editor.contentassist.antlr.internal.AbstractInternalContentAssistParser; import org.eclipse.xtext.ide.editor.contentassist.antlr.internal.DFA; import hu.bme.mit.inf.dslreasoner.application.services.ApplicationConfigurationGrammarAccess; import org.antlr.runtime.*; import java.util.Stack; import java.util.List; import java.util.ArrayList; @SuppressWarnings("all") public class InternalApplicationConfigurationParser extends AbstractInternalContentAssistParser { public static final String[] tokenNames = new String[] { "", "", "", "", "RULE_ID", "RULE_STRING", "RULE_INT", "RULE_ML_COMMENT", "RULE_SL_COMMENT", "RULE_WS", "RULE_ANY_OTHER", "'none'", "'normal'", "'full'", "'SMTSolver'", "'AlloySolver'", "'ViatraSolver'", "'.'", "'import'", "'epackage'", "'viatra'", "'file'", "'='", "'{'", "'}'", "','", "'package'", "'excluding'", "'::'", "'metamodel'", "'folder'", "'models'", "'constraints'", "'config'", "'log-level'", "'runtime'", "'memory'", "'#'", "'<'", "'>'", "'node'", "'int'", "'real'", "'string'", "'..'", "'scope'", "'generate'", "'partial-model'", "'solver'", "'debug'", "'log'", "'statistics'", "'output'", "'+='", "'*'", "'number'", "'runs'" }; public static final int T__50=50; public static final int T__19=19; public static final int T__15=15; public static final int T__16=16; public static final int T__17=17; public static final int T__18=18; public static final int T__11=11; public static final int T__55=55; public static final int T__12=12; public static final int T__56=56; public static final int T__13=13; public static final int T__14=14; public static final int T__51=51; public static final int T__52=52; public static final int T__53=53; public static final int T__54=54; public static final int RULE_ID=4; public static final int T__26=26; public static final int T__27=27; public static final int T__28=28; public static final int RULE_INT=6; public static final int T__29=29; public static final int T__22=22; public static final int RULE_ML_COMMENT=7; public static final int T__23=23; public static final int T__24=24; public static final int T__25=25; public static final int T__20=20; public static final int T__21=21; public static final int RULE_STRING=5; public static final int RULE_SL_COMMENT=8; public static final int T__37=37; public static final int T__38=38; public static final int T__39=39; public static final int T__33=33; public static final int T__34=34; public static final int T__35=35; public static final int T__36=36; public static final int EOF=-1; public static final int T__30=30; public static final int T__31=31; public static final int T__32=32; public static final int RULE_WS=9; public static final int RULE_ANY_OTHER=10; public static final int T__48=48; public static final int T__49=49; public static final int T__44=44; public static final int T__45=45; public static final int T__46=46; public static final int T__47=47; public static final int T__40=40; public static final int T__41=41; public static final int T__42=42; public static final int T__43=43; // delegates // delegators public InternalApplicationConfigurationParser(TokenStream input) { this(input, new RecognizerSharedState()); } public InternalApplicationConfigurationParser(TokenStream input, RecognizerSharedState state) { super(input, state); } public String[] getTokenNames() { return InternalApplicationConfigurationParser.tokenNames; } public String getGrammarFileName() { return "InternalApplicationConfiguration.g"; } private ApplicationConfigurationGrammarAccess grammarAccess; public void setGrammarAccess(ApplicationConfigurationGrammarAccess grammarAccess) { this.grammarAccess = grammarAccess; } @Override protected Grammar getGrammar() { return grammarAccess.getGrammar(); } @Override protected String getValueForTokenName(String tokenName) { return tokenName; } // $ANTLR start "entryRuleConfigurationScript" // InternalApplicationConfiguration.g:53:1: entryRuleConfigurationScript : ruleConfigurationScript EOF ; public final void entryRuleConfigurationScript() throws RecognitionException { try { // InternalApplicationConfiguration.g:54:1: ( ruleConfigurationScript EOF ) // InternalApplicationConfiguration.g:55:1: ruleConfigurationScript EOF { before(grammarAccess.getConfigurationScriptRule()); pushFollow(FOLLOW_1); ruleConfigurationScript(); state._fsp--; after(grammarAccess.getConfigurationScriptRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleConfigurationScript" // $ANTLR start "ruleConfigurationScript" // InternalApplicationConfiguration.g:62:1: ruleConfigurationScript : ( ( rule__ConfigurationScript__Group__0 ) ) ; public final void ruleConfigurationScript() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:66:2: ( ( ( rule__ConfigurationScript__Group__0 ) ) ) // InternalApplicationConfiguration.g:67:2: ( ( rule__ConfigurationScript__Group__0 ) ) { // InternalApplicationConfiguration.g:67:2: ( ( rule__ConfigurationScript__Group__0 ) ) // InternalApplicationConfiguration.g:68:3: ( rule__ConfigurationScript__Group__0 ) { before(grammarAccess.getConfigurationScriptAccess().getGroup()); // InternalApplicationConfiguration.g:69:3: ( rule__ConfigurationScript__Group__0 ) // InternalApplicationConfiguration.g:69:4: rule__ConfigurationScript__Group__0 { pushFollow(FOLLOW_2); rule__ConfigurationScript__Group__0(); state._fsp--; } after(grammarAccess.getConfigurationScriptAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleConfigurationScript" // $ANTLR start "entryRuleCommand" // InternalApplicationConfiguration.g:78:1: entryRuleCommand : ruleCommand EOF ; public final void entryRuleCommand() throws RecognitionException { try { // InternalApplicationConfiguration.g:79:1: ( ruleCommand EOF ) // InternalApplicationConfiguration.g:80:1: ruleCommand EOF { before(grammarAccess.getCommandRule()); pushFollow(FOLLOW_1); ruleCommand(); state._fsp--; after(grammarAccess.getCommandRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleCommand" // $ANTLR start "ruleCommand" // InternalApplicationConfiguration.g:87:1: ruleCommand : ( ( rule__Command__Alternatives ) ) ; public final void ruleCommand() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:91:2: ( ( ( rule__Command__Alternatives ) ) ) // InternalApplicationConfiguration.g:92:2: ( ( rule__Command__Alternatives ) ) { // InternalApplicationConfiguration.g:92:2: ( ( rule__Command__Alternatives ) ) // InternalApplicationConfiguration.g:93:3: ( rule__Command__Alternatives ) { before(grammarAccess.getCommandAccess().getAlternatives()); // InternalApplicationConfiguration.g:94:3: ( rule__Command__Alternatives ) // InternalApplicationConfiguration.g:94:4: rule__Command__Alternatives { pushFollow(FOLLOW_2); rule__Command__Alternatives(); state._fsp--; } after(grammarAccess.getCommandAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleCommand" // $ANTLR start "entryRuleQualifiedName" // InternalApplicationConfiguration.g:103:1: entryRuleQualifiedName : ruleQualifiedName EOF ; public final void entryRuleQualifiedName() throws RecognitionException { try { // InternalApplicationConfiguration.g:104:1: ( ruleQualifiedName EOF ) // InternalApplicationConfiguration.g:105:1: ruleQualifiedName EOF { before(grammarAccess.getQualifiedNameRule()); pushFollow(FOLLOW_1); ruleQualifiedName(); state._fsp--; after(grammarAccess.getQualifiedNameRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleQualifiedName" // $ANTLR start "ruleQualifiedName" // InternalApplicationConfiguration.g:112:1: ruleQualifiedName : ( ( rule__QualifiedName__Group__0 ) ) ; public final void ruleQualifiedName() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:116:2: ( ( ( rule__QualifiedName__Group__0 ) ) ) // InternalApplicationConfiguration.g:117:2: ( ( rule__QualifiedName__Group__0 ) ) { // InternalApplicationConfiguration.g:117:2: ( ( rule__QualifiedName__Group__0 ) ) // InternalApplicationConfiguration.g:118:3: ( rule__QualifiedName__Group__0 ) { before(grammarAccess.getQualifiedNameAccess().getGroup()); // InternalApplicationConfiguration.g:119:3: ( rule__QualifiedName__Group__0 ) // InternalApplicationConfiguration.g:119:4: rule__QualifiedName__Group__0 { pushFollow(FOLLOW_2); rule__QualifiedName__Group__0(); state._fsp--; } after(grammarAccess.getQualifiedNameAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleQualifiedName" // $ANTLR start "entryRuleImport" // InternalApplicationConfiguration.g:128:1: entryRuleImport : ruleImport EOF ; public final void entryRuleImport() throws RecognitionException { try { // InternalApplicationConfiguration.g:129:1: ( ruleImport EOF ) // InternalApplicationConfiguration.g:130:1: ruleImport EOF { before(grammarAccess.getImportRule()); pushFollow(FOLLOW_1); ruleImport(); state._fsp--; after(grammarAccess.getImportRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleImport" // $ANTLR start "ruleImport" // InternalApplicationConfiguration.g:137:1: ruleImport : ( ( rule__Import__Alternatives ) ) ; public final void ruleImport() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:141:2: ( ( ( rule__Import__Alternatives ) ) ) // InternalApplicationConfiguration.g:142:2: ( ( rule__Import__Alternatives ) ) { // InternalApplicationConfiguration.g:142:2: ( ( rule__Import__Alternatives ) ) // InternalApplicationConfiguration.g:143:3: ( rule__Import__Alternatives ) { before(grammarAccess.getImportAccess().getAlternatives()); // InternalApplicationConfiguration.g:144:3: ( rule__Import__Alternatives ) // InternalApplicationConfiguration.g:144:4: rule__Import__Alternatives { pushFollow(FOLLOW_2); rule__Import__Alternatives(); state._fsp--; } after(grammarAccess.getImportAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleImport" // $ANTLR start "entryRuleEPackageImport" // InternalApplicationConfiguration.g:153:1: entryRuleEPackageImport : ruleEPackageImport EOF ; public final void entryRuleEPackageImport() throws RecognitionException { try { // InternalApplicationConfiguration.g:154:1: ( ruleEPackageImport EOF ) // InternalApplicationConfiguration.g:155:1: ruleEPackageImport EOF { before(grammarAccess.getEPackageImportRule()); pushFollow(FOLLOW_1); ruleEPackageImport(); state._fsp--; after(grammarAccess.getEPackageImportRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleEPackageImport" // $ANTLR start "ruleEPackageImport" // InternalApplicationConfiguration.g:162:1: ruleEPackageImport : ( ( rule__EPackageImport__Group__0 ) ) ; public final void ruleEPackageImport() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:166:2: ( ( ( rule__EPackageImport__Group__0 ) ) ) // InternalApplicationConfiguration.g:167:2: ( ( rule__EPackageImport__Group__0 ) ) { // InternalApplicationConfiguration.g:167:2: ( ( rule__EPackageImport__Group__0 ) ) // InternalApplicationConfiguration.g:168:3: ( rule__EPackageImport__Group__0 ) { before(grammarAccess.getEPackageImportAccess().getGroup()); // InternalApplicationConfiguration.g:169:3: ( rule__EPackageImport__Group__0 ) // InternalApplicationConfiguration.g:169:4: rule__EPackageImport__Group__0 { pushFollow(FOLLOW_2); rule__EPackageImport__Group__0(); state._fsp--; } after(grammarAccess.getEPackageImportAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleEPackageImport" // $ANTLR start "entryRuleViatraImport" // InternalApplicationConfiguration.g:178:1: entryRuleViatraImport : ruleViatraImport EOF ; public final void entryRuleViatraImport() throws RecognitionException { try { // InternalApplicationConfiguration.g:179:1: ( ruleViatraImport EOF ) // InternalApplicationConfiguration.g:180:1: ruleViatraImport EOF { before(grammarAccess.getViatraImportRule()); pushFollow(FOLLOW_1); ruleViatraImport(); state._fsp--; after(grammarAccess.getViatraImportRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleViatraImport" // $ANTLR start "ruleViatraImport" // InternalApplicationConfiguration.g:187:1: ruleViatraImport : ( ( rule__ViatraImport__Group__0 ) ) ; public final void ruleViatraImport() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:191:2: ( ( ( rule__ViatraImport__Group__0 ) ) ) // InternalApplicationConfiguration.g:192:2: ( ( rule__ViatraImport__Group__0 ) ) { // InternalApplicationConfiguration.g:192:2: ( ( rule__ViatraImport__Group__0 ) ) // InternalApplicationConfiguration.g:193:3: ( rule__ViatraImport__Group__0 ) { before(grammarAccess.getViatraImportAccess().getGroup()); // InternalApplicationConfiguration.g:194:3: ( rule__ViatraImport__Group__0 ) // InternalApplicationConfiguration.g:194:4: rule__ViatraImport__Group__0 { pushFollow(FOLLOW_2); rule__ViatraImport__Group__0(); state._fsp--; } after(grammarAccess.getViatraImportAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleViatraImport" // $ANTLR start "entryRuleDeclaration" // InternalApplicationConfiguration.g:203:1: entryRuleDeclaration : ruleDeclaration EOF ; public final void entryRuleDeclaration() throws RecognitionException { try { // InternalApplicationConfiguration.g:204:1: ( ruleDeclaration EOF ) // InternalApplicationConfiguration.g:205:1: ruleDeclaration EOF { before(grammarAccess.getDeclarationRule()); pushFollow(FOLLOW_1); ruleDeclaration(); state._fsp--; after(grammarAccess.getDeclarationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleDeclaration" // $ANTLR start "ruleDeclaration" // InternalApplicationConfiguration.g:212:1: ruleDeclaration : ( ( rule__Declaration__Alternatives ) ) ; public final void ruleDeclaration() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:216:2: ( ( ( rule__Declaration__Alternatives ) ) ) // InternalApplicationConfiguration.g:217:2: ( ( rule__Declaration__Alternatives ) ) { // InternalApplicationConfiguration.g:217:2: ( ( rule__Declaration__Alternatives ) ) // InternalApplicationConfiguration.g:218:3: ( rule__Declaration__Alternatives ) { before(grammarAccess.getDeclarationAccess().getAlternatives()); // InternalApplicationConfiguration.g:219:3: ( rule__Declaration__Alternatives ) // InternalApplicationConfiguration.g:219:4: rule__Declaration__Alternatives { pushFollow(FOLLOW_2); rule__Declaration__Alternatives(); state._fsp--; } after(grammarAccess.getDeclarationAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleDeclaration" // $ANTLR start "entryRuleFileSpecification" // InternalApplicationConfiguration.g:228:1: entryRuleFileSpecification : ruleFileSpecification EOF ; public final void entryRuleFileSpecification() throws RecognitionException { try { // InternalApplicationConfiguration.g:229:1: ( ruleFileSpecification EOF ) // InternalApplicationConfiguration.g:230:1: ruleFileSpecification EOF { before(grammarAccess.getFileSpecificationRule()); pushFollow(FOLLOW_1); ruleFileSpecification(); state._fsp--; after(grammarAccess.getFileSpecificationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleFileSpecification" // $ANTLR start "ruleFileSpecification" // InternalApplicationConfiguration.g:237:1: ruleFileSpecification : ( ( rule__FileSpecification__PathAssignment ) ) ; public final void ruleFileSpecification() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:241:2: ( ( ( rule__FileSpecification__PathAssignment ) ) ) // InternalApplicationConfiguration.g:242:2: ( ( rule__FileSpecification__PathAssignment ) ) { // InternalApplicationConfiguration.g:242:2: ( ( rule__FileSpecification__PathAssignment ) ) // InternalApplicationConfiguration.g:243:3: ( rule__FileSpecification__PathAssignment ) { before(grammarAccess.getFileSpecificationAccess().getPathAssignment()); // InternalApplicationConfiguration.g:244:3: ( rule__FileSpecification__PathAssignment ) // InternalApplicationConfiguration.g:244:4: rule__FileSpecification__PathAssignment { pushFollow(FOLLOW_2); rule__FileSpecification__PathAssignment(); state._fsp--; } after(grammarAccess.getFileSpecificationAccess().getPathAssignment()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleFileSpecification" // $ANTLR start "entryRuleFileDeclaration" // InternalApplicationConfiguration.g:253:1: entryRuleFileDeclaration : ruleFileDeclaration EOF ; public final void entryRuleFileDeclaration() throws RecognitionException { try { // InternalApplicationConfiguration.g:254:1: ( ruleFileDeclaration EOF ) // InternalApplicationConfiguration.g:255:1: ruleFileDeclaration EOF { before(grammarAccess.getFileDeclarationRule()); pushFollow(FOLLOW_1); ruleFileDeclaration(); state._fsp--; after(grammarAccess.getFileDeclarationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleFileDeclaration" // $ANTLR start "ruleFileDeclaration" // InternalApplicationConfiguration.g:262:1: ruleFileDeclaration : ( ( rule__FileDeclaration__Group__0 ) ) ; public final void ruleFileDeclaration() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:266:2: ( ( ( rule__FileDeclaration__Group__0 ) ) ) // InternalApplicationConfiguration.g:267:2: ( ( rule__FileDeclaration__Group__0 ) ) { // InternalApplicationConfiguration.g:267:2: ( ( rule__FileDeclaration__Group__0 ) ) // InternalApplicationConfiguration.g:268:3: ( rule__FileDeclaration__Group__0 ) { before(grammarAccess.getFileDeclarationAccess().getGroup()); // InternalApplicationConfiguration.g:269:3: ( rule__FileDeclaration__Group__0 ) // InternalApplicationConfiguration.g:269:4: rule__FileDeclaration__Group__0 { pushFollow(FOLLOW_2); rule__FileDeclaration__Group__0(); state._fsp--; } after(grammarAccess.getFileDeclarationAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleFileDeclaration" // $ANTLR start "entryRuleFileReference" // InternalApplicationConfiguration.g:278:1: entryRuleFileReference : ruleFileReference EOF ; public final void entryRuleFileReference() throws RecognitionException { try { // InternalApplicationConfiguration.g:279:1: ( ruleFileReference EOF ) // InternalApplicationConfiguration.g:280:1: ruleFileReference EOF { before(grammarAccess.getFileReferenceRule()); pushFollow(FOLLOW_1); ruleFileReference(); state._fsp--; after(grammarAccess.getFileReferenceRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleFileReference" // $ANTLR start "ruleFileReference" // InternalApplicationConfiguration.g:287:1: ruleFileReference : ( ( rule__FileReference__ReferredAssignment ) ) ; public final void ruleFileReference() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:291:2: ( ( ( rule__FileReference__ReferredAssignment ) ) ) // InternalApplicationConfiguration.g:292:2: ( ( rule__FileReference__ReferredAssignment ) ) { // InternalApplicationConfiguration.g:292:2: ( ( rule__FileReference__ReferredAssignment ) ) // InternalApplicationConfiguration.g:293:3: ( rule__FileReference__ReferredAssignment ) { before(grammarAccess.getFileReferenceAccess().getReferredAssignment()); // InternalApplicationConfiguration.g:294:3: ( rule__FileReference__ReferredAssignment ) // InternalApplicationConfiguration.g:294:4: rule__FileReference__ReferredAssignment { pushFollow(FOLLOW_2); rule__FileReference__ReferredAssignment(); state._fsp--; } after(grammarAccess.getFileReferenceAccess().getReferredAssignment()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleFileReference" // $ANTLR start "entryRuleFile" // InternalApplicationConfiguration.g:303:1: entryRuleFile : ruleFile EOF ; public final void entryRuleFile() throws RecognitionException { try { // InternalApplicationConfiguration.g:304:1: ( ruleFile EOF ) // InternalApplicationConfiguration.g:305:1: ruleFile EOF { before(grammarAccess.getFileRule()); pushFollow(FOLLOW_1); ruleFile(); state._fsp--; after(grammarAccess.getFileRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleFile" // $ANTLR start "ruleFile" // InternalApplicationConfiguration.g:312:1: ruleFile : ( ( rule__File__Alternatives ) ) ; public final void ruleFile() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:316:2: ( ( ( rule__File__Alternatives ) ) ) // InternalApplicationConfiguration.g:317:2: ( ( rule__File__Alternatives ) ) { // InternalApplicationConfiguration.g:317:2: ( ( rule__File__Alternatives ) ) // InternalApplicationConfiguration.g:318:3: ( rule__File__Alternatives ) { before(grammarAccess.getFileAccess().getAlternatives()); // InternalApplicationConfiguration.g:319:3: ( rule__File__Alternatives ) // InternalApplicationConfiguration.g:319:4: rule__File__Alternatives { pushFollow(FOLLOW_2); rule__File__Alternatives(); state._fsp--; } after(grammarAccess.getFileAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleFile" // $ANTLR start "entryRuleMetamodelSpecification" // InternalApplicationConfiguration.g:328:1: entryRuleMetamodelSpecification : ruleMetamodelSpecification EOF ; public final void entryRuleMetamodelSpecification() throws RecognitionException { try { // InternalApplicationConfiguration.g:329:1: ( ruleMetamodelSpecification EOF ) // InternalApplicationConfiguration.g:330:1: ruleMetamodelSpecification EOF { before(grammarAccess.getMetamodelSpecificationRule()); pushFollow(FOLLOW_1); ruleMetamodelSpecification(); state._fsp--; after(grammarAccess.getMetamodelSpecificationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleMetamodelSpecification" // $ANTLR start "ruleMetamodelSpecification" // InternalApplicationConfiguration.g:337:1: ruleMetamodelSpecification : ( ( rule__MetamodelSpecification__Group__0 ) ) ; public final void ruleMetamodelSpecification() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:341:2: ( ( ( rule__MetamodelSpecification__Group__0 ) ) ) // InternalApplicationConfiguration.g:342:2: ( ( rule__MetamodelSpecification__Group__0 ) ) { // InternalApplicationConfiguration.g:342:2: ( ( rule__MetamodelSpecification__Group__0 ) ) // InternalApplicationConfiguration.g:343:3: ( rule__MetamodelSpecification__Group__0 ) { before(grammarAccess.getMetamodelSpecificationAccess().getGroup()); // InternalApplicationConfiguration.g:344:3: ( rule__MetamodelSpecification__Group__0 ) // InternalApplicationConfiguration.g:344:4: rule__MetamodelSpecification__Group__0 { pushFollow(FOLLOW_2); rule__MetamodelSpecification__Group__0(); state._fsp--; } after(grammarAccess.getMetamodelSpecificationAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleMetamodelSpecification" // $ANTLR start "entryRuleMetamodelEntry" // InternalApplicationConfiguration.g:353:1: entryRuleMetamodelEntry : ruleMetamodelEntry EOF ; public final void entryRuleMetamodelEntry() throws RecognitionException { try { // InternalApplicationConfiguration.g:354:1: ( ruleMetamodelEntry EOF ) // InternalApplicationConfiguration.g:355:1: ruleMetamodelEntry EOF { before(grammarAccess.getMetamodelEntryRule()); pushFollow(FOLLOW_1); ruleMetamodelEntry(); state._fsp--; after(grammarAccess.getMetamodelEntryRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleMetamodelEntry" // $ANTLR start "ruleMetamodelEntry" // InternalApplicationConfiguration.g:362:1: ruleMetamodelEntry : ( ( rule__MetamodelEntry__Alternatives ) ) ; public final void ruleMetamodelEntry() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:366:2: ( ( ( rule__MetamodelEntry__Alternatives ) ) ) // InternalApplicationConfiguration.g:367:2: ( ( rule__MetamodelEntry__Alternatives ) ) { // InternalApplicationConfiguration.g:367:2: ( ( rule__MetamodelEntry__Alternatives ) ) // InternalApplicationConfiguration.g:368:3: ( rule__MetamodelEntry__Alternatives ) { before(grammarAccess.getMetamodelEntryAccess().getAlternatives()); // InternalApplicationConfiguration.g:369:3: ( rule__MetamodelEntry__Alternatives ) // InternalApplicationConfiguration.g:369:4: rule__MetamodelEntry__Alternatives { pushFollow(FOLLOW_2); rule__MetamodelEntry__Alternatives(); state._fsp--; } after(grammarAccess.getMetamodelEntryAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleMetamodelEntry" // $ANTLR start "entryRuleAllPackageEntry" // InternalApplicationConfiguration.g:378:1: entryRuleAllPackageEntry : ruleAllPackageEntry EOF ; public final void entryRuleAllPackageEntry() throws RecognitionException { try { // InternalApplicationConfiguration.g:379:1: ( ruleAllPackageEntry EOF ) // InternalApplicationConfiguration.g:380:1: ruleAllPackageEntry EOF { before(grammarAccess.getAllPackageEntryRule()); pushFollow(FOLLOW_1); ruleAllPackageEntry(); state._fsp--; after(grammarAccess.getAllPackageEntryRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleAllPackageEntry" // $ANTLR start "ruleAllPackageEntry" // InternalApplicationConfiguration.g:387:1: ruleAllPackageEntry : ( ( rule__AllPackageEntry__Group__0 ) ) ; public final void ruleAllPackageEntry() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:391:2: ( ( ( rule__AllPackageEntry__Group__0 ) ) ) // InternalApplicationConfiguration.g:392:2: ( ( rule__AllPackageEntry__Group__0 ) ) { // InternalApplicationConfiguration.g:392:2: ( ( rule__AllPackageEntry__Group__0 ) ) // InternalApplicationConfiguration.g:393:3: ( rule__AllPackageEntry__Group__0 ) { before(grammarAccess.getAllPackageEntryAccess().getGroup()); // InternalApplicationConfiguration.g:394:3: ( rule__AllPackageEntry__Group__0 ) // InternalApplicationConfiguration.g:394:4: rule__AllPackageEntry__Group__0 { pushFollow(FOLLOW_2); rule__AllPackageEntry__Group__0(); state._fsp--; } after(grammarAccess.getAllPackageEntryAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleAllPackageEntry" // $ANTLR start "entryRuleMetamodelElement" // InternalApplicationConfiguration.g:403:1: entryRuleMetamodelElement : ruleMetamodelElement EOF ; public final void entryRuleMetamodelElement() throws RecognitionException { try { // InternalApplicationConfiguration.g:404:1: ( ruleMetamodelElement EOF ) // InternalApplicationConfiguration.g:405:1: ruleMetamodelElement EOF { before(grammarAccess.getMetamodelElementRule()); pushFollow(FOLLOW_1); ruleMetamodelElement(); state._fsp--; after(grammarAccess.getMetamodelElementRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleMetamodelElement" // $ANTLR start "ruleMetamodelElement" // InternalApplicationConfiguration.g:412:1: ruleMetamodelElement : ( ( rule__MetamodelElement__Group__0 ) ) ; public final void ruleMetamodelElement() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:416:2: ( ( ( rule__MetamodelElement__Group__0 ) ) ) // InternalApplicationConfiguration.g:417:2: ( ( rule__MetamodelElement__Group__0 ) ) { // InternalApplicationConfiguration.g:417:2: ( ( rule__MetamodelElement__Group__0 ) ) // InternalApplicationConfiguration.g:418:3: ( rule__MetamodelElement__Group__0 ) { before(grammarAccess.getMetamodelElementAccess().getGroup()); // InternalApplicationConfiguration.g:419:3: ( rule__MetamodelElement__Group__0 ) // InternalApplicationConfiguration.g:419:4: rule__MetamodelElement__Group__0 { pushFollow(FOLLOW_2); rule__MetamodelElement__Group__0(); state._fsp--; } after(grammarAccess.getMetamodelElementAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleMetamodelElement" // $ANTLR start "entryRuleMetamodelDeclaration" // InternalApplicationConfiguration.g:428:1: entryRuleMetamodelDeclaration : ruleMetamodelDeclaration EOF ; public final void entryRuleMetamodelDeclaration() throws RecognitionException { try { // InternalApplicationConfiguration.g:429:1: ( ruleMetamodelDeclaration EOF ) // InternalApplicationConfiguration.g:430:1: ruleMetamodelDeclaration EOF { before(grammarAccess.getMetamodelDeclarationRule()); pushFollow(FOLLOW_1); ruleMetamodelDeclaration(); state._fsp--; after(grammarAccess.getMetamodelDeclarationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleMetamodelDeclaration" // $ANTLR start "ruleMetamodelDeclaration" // InternalApplicationConfiguration.g:437:1: ruleMetamodelDeclaration : ( ( rule__MetamodelDeclaration__Group__0 ) ) ; public final void ruleMetamodelDeclaration() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:441:2: ( ( ( rule__MetamodelDeclaration__Group__0 ) ) ) // InternalApplicationConfiguration.g:442:2: ( ( rule__MetamodelDeclaration__Group__0 ) ) { // InternalApplicationConfiguration.g:442:2: ( ( rule__MetamodelDeclaration__Group__0 ) ) // InternalApplicationConfiguration.g:443:3: ( rule__MetamodelDeclaration__Group__0 ) { before(grammarAccess.getMetamodelDeclarationAccess().getGroup()); // InternalApplicationConfiguration.g:444:3: ( rule__MetamodelDeclaration__Group__0 ) // InternalApplicationConfiguration.g:444:4: rule__MetamodelDeclaration__Group__0 { pushFollow(FOLLOW_2); rule__MetamodelDeclaration__Group__0(); state._fsp--; } after(grammarAccess.getMetamodelDeclarationAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleMetamodelDeclaration" // $ANTLR start "entryRuleMetamodelReference" // InternalApplicationConfiguration.g:453:1: entryRuleMetamodelReference : ruleMetamodelReference EOF ; public final void entryRuleMetamodelReference() throws RecognitionException { try { // InternalApplicationConfiguration.g:454:1: ( ruleMetamodelReference EOF ) // InternalApplicationConfiguration.g:455:1: ruleMetamodelReference EOF { before(grammarAccess.getMetamodelReferenceRule()); pushFollow(FOLLOW_1); ruleMetamodelReference(); state._fsp--; after(grammarAccess.getMetamodelReferenceRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleMetamodelReference" // $ANTLR start "ruleMetamodelReference" // InternalApplicationConfiguration.g:462:1: ruleMetamodelReference : ( ( rule__MetamodelReference__ReferredAssignment ) ) ; public final void ruleMetamodelReference() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:466:2: ( ( ( rule__MetamodelReference__ReferredAssignment ) ) ) // InternalApplicationConfiguration.g:467:2: ( ( rule__MetamodelReference__ReferredAssignment ) ) { // InternalApplicationConfiguration.g:467:2: ( ( rule__MetamodelReference__ReferredAssignment ) ) // InternalApplicationConfiguration.g:468:3: ( rule__MetamodelReference__ReferredAssignment ) { before(grammarAccess.getMetamodelReferenceAccess().getReferredAssignment()); // InternalApplicationConfiguration.g:469:3: ( rule__MetamodelReference__ReferredAssignment ) // InternalApplicationConfiguration.g:469:4: rule__MetamodelReference__ReferredAssignment { pushFollow(FOLLOW_2); rule__MetamodelReference__ReferredAssignment(); state._fsp--; } after(grammarAccess.getMetamodelReferenceAccess().getReferredAssignment()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleMetamodelReference" // $ANTLR start "entryRuleMetamodel" // InternalApplicationConfiguration.g:478:1: entryRuleMetamodel : ruleMetamodel EOF ; public final void entryRuleMetamodel() throws RecognitionException { try { // InternalApplicationConfiguration.g:479:1: ( ruleMetamodel EOF ) // InternalApplicationConfiguration.g:480:1: ruleMetamodel EOF { before(grammarAccess.getMetamodelRule()); pushFollow(FOLLOW_1); ruleMetamodel(); state._fsp--; after(grammarAccess.getMetamodelRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleMetamodel" // $ANTLR start "ruleMetamodel" // InternalApplicationConfiguration.g:487:1: ruleMetamodel : ( ( rule__Metamodel__Alternatives ) ) ; public final void ruleMetamodel() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:491:2: ( ( ( rule__Metamodel__Alternatives ) ) ) // InternalApplicationConfiguration.g:492:2: ( ( rule__Metamodel__Alternatives ) ) { // InternalApplicationConfiguration.g:492:2: ( ( rule__Metamodel__Alternatives ) ) // InternalApplicationConfiguration.g:493:3: ( rule__Metamodel__Alternatives ) { before(grammarAccess.getMetamodelAccess().getAlternatives()); // InternalApplicationConfiguration.g:494:3: ( rule__Metamodel__Alternatives ) // InternalApplicationConfiguration.g:494:4: rule__Metamodel__Alternatives { pushFollow(FOLLOW_2); rule__Metamodel__Alternatives(); state._fsp--; } after(grammarAccess.getMetamodelAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleMetamodel" // $ANTLR start "entryRulePartialModelSpecification" // InternalApplicationConfiguration.g:503:1: entryRulePartialModelSpecification : rulePartialModelSpecification EOF ; public final void entryRulePartialModelSpecification() throws RecognitionException { try { // InternalApplicationConfiguration.g:504:1: ( rulePartialModelSpecification EOF ) // InternalApplicationConfiguration.g:505:1: rulePartialModelSpecification EOF { before(grammarAccess.getPartialModelSpecificationRule()); pushFollow(FOLLOW_1); rulePartialModelSpecification(); state._fsp--; after(grammarAccess.getPartialModelSpecificationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRulePartialModelSpecification" // $ANTLR start "rulePartialModelSpecification" // InternalApplicationConfiguration.g:512:1: rulePartialModelSpecification : ( ( rule__PartialModelSpecification__Group__0 ) ) ; public final void rulePartialModelSpecification() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:516:2: ( ( ( rule__PartialModelSpecification__Group__0 ) ) ) // InternalApplicationConfiguration.g:517:2: ( ( rule__PartialModelSpecification__Group__0 ) ) { // InternalApplicationConfiguration.g:517:2: ( ( rule__PartialModelSpecification__Group__0 ) ) // InternalApplicationConfiguration.g:518:3: ( rule__PartialModelSpecification__Group__0 ) { before(grammarAccess.getPartialModelSpecificationAccess().getGroup()); // InternalApplicationConfiguration.g:519:3: ( rule__PartialModelSpecification__Group__0 ) // InternalApplicationConfiguration.g:519:4: rule__PartialModelSpecification__Group__0 { pushFollow(FOLLOW_2); rule__PartialModelSpecification__Group__0(); state._fsp--; } after(grammarAccess.getPartialModelSpecificationAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rulePartialModelSpecification" // $ANTLR start "entryRulePartialModelEntry" // InternalApplicationConfiguration.g:528:1: entryRulePartialModelEntry : rulePartialModelEntry EOF ; public final void entryRulePartialModelEntry() throws RecognitionException { try { // InternalApplicationConfiguration.g:529:1: ( rulePartialModelEntry EOF ) // InternalApplicationConfiguration.g:530:1: rulePartialModelEntry EOF { before(grammarAccess.getPartialModelEntryRule()); pushFollow(FOLLOW_1); rulePartialModelEntry(); state._fsp--; after(grammarAccess.getPartialModelEntryRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRulePartialModelEntry" // $ANTLR start "rulePartialModelEntry" // InternalApplicationConfiguration.g:537:1: rulePartialModelEntry : ( ( rule__PartialModelEntry__Alternatives ) ) ; public final void rulePartialModelEntry() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:541:2: ( ( ( rule__PartialModelEntry__Alternatives ) ) ) // InternalApplicationConfiguration.g:542:2: ( ( rule__PartialModelEntry__Alternatives ) ) { // InternalApplicationConfiguration.g:542:2: ( ( rule__PartialModelEntry__Alternatives ) ) // InternalApplicationConfiguration.g:543:3: ( rule__PartialModelEntry__Alternatives ) { before(grammarAccess.getPartialModelEntryAccess().getAlternatives()); // InternalApplicationConfiguration.g:544:3: ( rule__PartialModelEntry__Alternatives ) // InternalApplicationConfiguration.g:544:4: rule__PartialModelEntry__Alternatives { pushFollow(FOLLOW_2); rule__PartialModelEntry__Alternatives(); state._fsp--; } after(grammarAccess.getPartialModelEntryAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rulePartialModelEntry" // $ANTLR start "entryRuleModelEntry" // InternalApplicationConfiguration.g:553:1: entryRuleModelEntry : ruleModelEntry EOF ; public final void entryRuleModelEntry() throws RecognitionException { try { // InternalApplicationConfiguration.g:554:1: ( ruleModelEntry EOF ) // InternalApplicationConfiguration.g:555:1: ruleModelEntry EOF { before(grammarAccess.getModelEntryRule()); pushFollow(FOLLOW_1); ruleModelEntry(); state._fsp--; after(grammarAccess.getModelEntryRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleModelEntry" // $ANTLR start "ruleModelEntry" // InternalApplicationConfiguration.g:562:1: ruleModelEntry : ( ( rule__ModelEntry__PathAssignment ) ) ; public final void ruleModelEntry() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:566:2: ( ( ( rule__ModelEntry__PathAssignment ) ) ) // InternalApplicationConfiguration.g:567:2: ( ( rule__ModelEntry__PathAssignment ) ) { // InternalApplicationConfiguration.g:567:2: ( ( rule__ModelEntry__PathAssignment ) ) // InternalApplicationConfiguration.g:568:3: ( rule__ModelEntry__PathAssignment ) { before(grammarAccess.getModelEntryAccess().getPathAssignment()); // InternalApplicationConfiguration.g:569:3: ( rule__ModelEntry__PathAssignment ) // InternalApplicationConfiguration.g:569:4: rule__ModelEntry__PathAssignment { pushFollow(FOLLOW_2); rule__ModelEntry__PathAssignment(); state._fsp--; } after(grammarAccess.getModelEntryAccess().getPathAssignment()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleModelEntry" // $ANTLR start "entryRuleFolderEntry" // InternalApplicationConfiguration.g:578:1: entryRuleFolderEntry : ruleFolderEntry EOF ; public final void entryRuleFolderEntry() throws RecognitionException { try { // InternalApplicationConfiguration.g:579:1: ( ruleFolderEntry EOF ) // InternalApplicationConfiguration.g:580:1: ruleFolderEntry EOF { before(grammarAccess.getFolderEntryRule()); pushFollow(FOLLOW_1); ruleFolderEntry(); state._fsp--; after(grammarAccess.getFolderEntryRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleFolderEntry" // $ANTLR start "ruleFolderEntry" // InternalApplicationConfiguration.g:587:1: ruleFolderEntry : ( ( rule__FolderEntry__Group__0 ) ) ; public final void ruleFolderEntry() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:591:2: ( ( ( rule__FolderEntry__Group__0 ) ) ) // InternalApplicationConfiguration.g:592:2: ( ( rule__FolderEntry__Group__0 ) ) { // InternalApplicationConfiguration.g:592:2: ( ( rule__FolderEntry__Group__0 ) ) // InternalApplicationConfiguration.g:593:3: ( rule__FolderEntry__Group__0 ) { before(grammarAccess.getFolderEntryAccess().getGroup()); // InternalApplicationConfiguration.g:594:3: ( rule__FolderEntry__Group__0 ) // InternalApplicationConfiguration.g:594:4: rule__FolderEntry__Group__0 { pushFollow(FOLLOW_2); rule__FolderEntry__Group__0(); state._fsp--; } after(grammarAccess.getFolderEntryAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleFolderEntry" // $ANTLR start "entryRulePartialModelDeclaration" // InternalApplicationConfiguration.g:603:1: entryRulePartialModelDeclaration : rulePartialModelDeclaration EOF ; public final void entryRulePartialModelDeclaration() throws RecognitionException { try { // InternalApplicationConfiguration.g:604:1: ( rulePartialModelDeclaration EOF ) // InternalApplicationConfiguration.g:605:1: rulePartialModelDeclaration EOF { before(grammarAccess.getPartialModelDeclarationRule()); pushFollow(FOLLOW_1); rulePartialModelDeclaration(); state._fsp--; after(grammarAccess.getPartialModelDeclarationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRulePartialModelDeclaration" // $ANTLR start "rulePartialModelDeclaration" // InternalApplicationConfiguration.g:612:1: rulePartialModelDeclaration : ( ( rule__PartialModelDeclaration__Group__0 ) ) ; public final void rulePartialModelDeclaration() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:616:2: ( ( ( rule__PartialModelDeclaration__Group__0 ) ) ) // InternalApplicationConfiguration.g:617:2: ( ( rule__PartialModelDeclaration__Group__0 ) ) { // InternalApplicationConfiguration.g:617:2: ( ( rule__PartialModelDeclaration__Group__0 ) ) // InternalApplicationConfiguration.g:618:3: ( rule__PartialModelDeclaration__Group__0 ) { before(grammarAccess.getPartialModelDeclarationAccess().getGroup()); // InternalApplicationConfiguration.g:619:3: ( rule__PartialModelDeclaration__Group__0 ) // InternalApplicationConfiguration.g:619:4: rule__PartialModelDeclaration__Group__0 { pushFollow(FOLLOW_2); rule__PartialModelDeclaration__Group__0(); state._fsp--; } after(grammarAccess.getPartialModelDeclarationAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rulePartialModelDeclaration" // $ANTLR start "entryRulePartialModelReference" // InternalApplicationConfiguration.g:628:1: entryRulePartialModelReference : rulePartialModelReference EOF ; public final void entryRulePartialModelReference() throws RecognitionException { try { // InternalApplicationConfiguration.g:629:1: ( rulePartialModelReference EOF ) // InternalApplicationConfiguration.g:630:1: rulePartialModelReference EOF { before(grammarAccess.getPartialModelReferenceRule()); pushFollow(FOLLOW_1); rulePartialModelReference(); state._fsp--; after(grammarAccess.getPartialModelReferenceRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRulePartialModelReference" // $ANTLR start "rulePartialModelReference" // InternalApplicationConfiguration.g:637:1: rulePartialModelReference : ( ( rule__PartialModelReference__ReferredAssignment ) ) ; public final void rulePartialModelReference() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:641:2: ( ( ( rule__PartialModelReference__ReferredAssignment ) ) ) // InternalApplicationConfiguration.g:642:2: ( ( rule__PartialModelReference__ReferredAssignment ) ) { // InternalApplicationConfiguration.g:642:2: ( ( rule__PartialModelReference__ReferredAssignment ) ) // InternalApplicationConfiguration.g:643:3: ( rule__PartialModelReference__ReferredAssignment ) { before(grammarAccess.getPartialModelReferenceAccess().getReferredAssignment()); // InternalApplicationConfiguration.g:644:3: ( rule__PartialModelReference__ReferredAssignment ) // InternalApplicationConfiguration.g:644:4: rule__PartialModelReference__ReferredAssignment { pushFollow(FOLLOW_2); rule__PartialModelReference__ReferredAssignment(); state._fsp--; } after(grammarAccess.getPartialModelReferenceAccess().getReferredAssignment()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rulePartialModelReference" // $ANTLR start "entryRulePartialModel" // InternalApplicationConfiguration.g:653:1: entryRulePartialModel : rulePartialModel EOF ; public final void entryRulePartialModel() throws RecognitionException { try { // InternalApplicationConfiguration.g:654:1: ( rulePartialModel EOF ) // InternalApplicationConfiguration.g:655:1: rulePartialModel EOF { before(grammarAccess.getPartialModelRule()); pushFollow(FOLLOW_1); rulePartialModel(); state._fsp--; after(grammarAccess.getPartialModelRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRulePartialModel" // $ANTLR start "rulePartialModel" // InternalApplicationConfiguration.g:662:1: rulePartialModel : ( ( rule__PartialModel__Alternatives ) ) ; public final void rulePartialModel() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:666:2: ( ( ( rule__PartialModel__Alternatives ) ) ) // InternalApplicationConfiguration.g:667:2: ( ( rule__PartialModel__Alternatives ) ) { // InternalApplicationConfiguration.g:667:2: ( ( rule__PartialModel__Alternatives ) ) // InternalApplicationConfiguration.g:668:3: ( rule__PartialModel__Alternatives ) { before(grammarAccess.getPartialModelAccess().getAlternatives()); // InternalApplicationConfiguration.g:669:3: ( rule__PartialModel__Alternatives ) // InternalApplicationConfiguration.g:669:4: rule__PartialModel__Alternatives { pushFollow(FOLLOW_2); rule__PartialModel__Alternatives(); state._fsp--; } after(grammarAccess.getPartialModelAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rulePartialModel" // $ANTLR start "entryRulePatternSpecification" // InternalApplicationConfiguration.g:678:1: entryRulePatternSpecification : rulePatternSpecification EOF ; public final void entryRulePatternSpecification() throws RecognitionException { try { // InternalApplicationConfiguration.g:679:1: ( rulePatternSpecification EOF ) // InternalApplicationConfiguration.g:680:1: rulePatternSpecification EOF { before(grammarAccess.getPatternSpecificationRule()); pushFollow(FOLLOW_1); rulePatternSpecification(); state._fsp--; after(grammarAccess.getPatternSpecificationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRulePatternSpecification" // $ANTLR start "rulePatternSpecification" // InternalApplicationConfiguration.g:687:1: rulePatternSpecification : ( ( rule__PatternSpecification__Group__0 ) ) ; public final void rulePatternSpecification() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:691:2: ( ( ( rule__PatternSpecification__Group__0 ) ) ) // InternalApplicationConfiguration.g:692:2: ( ( rule__PatternSpecification__Group__0 ) ) { // InternalApplicationConfiguration.g:692:2: ( ( rule__PatternSpecification__Group__0 ) ) // InternalApplicationConfiguration.g:693:3: ( rule__PatternSpecification__Group__0 ) { before(grammarAccess.getPatternSpecificationAccess().getGroup()); // InternalApplicationConfiguration.g:694:3: ( rule__PatternSpecification__Group__0 ) // InternalApplicationConfiguration.g:694:4: rule__PatternSpecification__Group__0 { pushFollow(FOLLOW_2); rule__PatternSpecification__Group__0(); state._fsp--; } after(grammarAccess.getPatternSpecificationAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rulePatternSpecification" // $ANTLR start "entryRulePatternEntry" // InternalApplicationConfiguration.g:703:1: entryRulePatternEntry : rulePatternEntry EOF ; public final void entryRulePatternEntry() throws RecognitionException { try { // InternalApplicationConfiguration.g:704:1: ( rulePatternEntry EOF ) // InternalApplicationConfiguration.g:705:1: rulePatternEntry EOF { before(grammarAccess.getPatternEntryRule()); pushFollow(FOLLOW_1); rulePatternEntry(); state._fsp--; after(grammarAccess.getPatternEntryRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRulePatternEntry" // $ANTLR start "rulePatternEntry" // InternalApplicationConfiguration.g:712:1: rulePatternEntry : ( ( rule__PatternEntry__Alternatives ) ) ; public final void rulePatternEntry() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:716:2: ( ( ( rule__PatternEntry__Alternatives ) ) ) // InternalApplicationConfiguration.g:717:2: ( ( rule__PatternEntry__Alternatives ) ) { // InternalApplicationConfiguration.g:717:2: ( ( rule__PatternEntry__Alternatives ) ) // InternalApplicationConfiguration.g:718:3: ( rule__PatternEntry__Alternatives ) { before(grammarAccess.getPatternEntryAccess().getAlternatives()); // InternalApplicationConfiguration.g:719:3: ( rule__PatternEntry__Alternatives ) // InternalApplicationConfiguration.g:719:4: rule__PatternEntry__Alternatives { pushFollow(FOLLOW_2); rule__PatternEntry__Alternatives(); state._fsp--; } after(grammarAccess.getPatternEntryAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rulePatternEntry" // $ANTLR start "entryRuleAllPatternEntry" // InternalApplicationConfiguration.g:728:1: entryRuleAllPatternEntry : ruleAllPatternEntry EOF ; public final void entryRuleAllPatternEntry() throws RecognitionException { try { // InternalApplicationConfiguration.g:729:1: ( ruleAllPatternEntry EOF ) // InternalApplicationConfiguration.g:730:1: ruleAllPatternEntry EOF { before(grammarAccess.getAllPatternEntryRule()); pushFollow(FOLLOW_1); ruleAllPatternEntry(); state._fsp--; after(grammarAccess.getAllPatternEntryRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleAllPatternEntry" // $ANTLR start "ruleAllPatternEntry" // InternalApplicationConfiguration.g:737:1: ruleAllPatternEntry : ( ( rule__AllPatternEntry__Group__0 ) ) ; public final void ruleAllPatternEntry() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:741:2: ( ( ( rule__AllPatternEntry__Group__0 ) ) ) // InternalApplicationConfiguration.g:742:2: ( ( rule__AllPatternEntry__Group__0 ) ) { // InternalApplicationConfiguration.g:742:2: ( ( rule__AllPatternEntry__Group__0 ) ) // InternalApplicationConfiguration.g:743:3: ( rule__AllPatternEntry__Group__0 ) { before(grammarAccess.getAllPatternEntryAccess().getGroup()); // InternalApplicationConfiguration.g:744:3: ( rule__AllPatternEntry__Group__0 ) // InternalApplicationConfiguration.g:744:4: rule__AllPatternEntry__Group__0 { pushFollow(FOLLOW_2); rule__AllPatternEntry__Group__0(); state._fsp--; } after(grammarAccess.getAllPatternEntryAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleAllPatternEntry" // $ANTLR start "entryRulePatternElement" // InternalApplicationConfiguration.g:753:1: entryRulePatternElement : rulePatternElement EOF ; public final void entryRulePatternElement() throws RecognitionException { try { // InternalApplicationConfiguration.g:754:1: ( rulePatternElement EOF ) // InternalApplicationConfiguration.g:755:1: rulePatternElement EOF { before(grammarAccess.getPatternElementRule()); pushFollow(FOLLOW_1); rulePatternElement(); state._fsp--; after(grammarAccess.getPatternElementRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRulePatternElement" // $ANTLR start "rulePatternElement" // InternalApplicationConfiguration.g:762:1: rulePatternElement : ( ( rule__PatternElement__Group__0 ) ) ; public final void rulePatternElement() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:766:2: ( ( ( rule__PatternElement__Group__0 ) ) ) // InternalApplicationConfiguration.g:767:2: ( ( rule__PatternElement__Group__0 ) ) { // InternalApplicationConfiguration.g:767:2: ( ( rule__PatternElement__Group__0 ) ) // InternalApplicationConfiguration.g:768:3: ( rule__PatternElement__Group__0 ) { before(grammarAccess.getPatternElementAccess().getGroup()); // InternalApplicationConfiguration.g:769:3: ( rule__PatternElement__Group__0 ) // InternalApplicationConfiguration.g:769:4: rule__PatternElement__Group__0 { pushFollow(FOLLOW_2); rule__PatternElement__Group__0(); state._fsp--; } after(grammarAccess.getPatternElementAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rulePatternElement" // $ANTLR start "entryRuleGraphPatternDeclaration" // InternalApplicationConfiguration.g:778:1: entryRuleGraphPatternDeclaration : ruleGraphPatternDeclaration EOF ; public final void entryRuleGraphPatternDeclaration() throws RecognitionException { try { // InternalApplicationConfiguration.g:779:1: ( ruleGraphPatternDeclaration EOF ) // InternalApplicationConfiguration.g:780:1: ruleGraphPatternDeclaration EOF { before(grammarAccess.getGraphPatternDeclarationRule()); pushFollow(FOLLOW_1); ruleGraphPatternDeclaration(); state._fsp--; after(grammarAccess.getGraphPatternDeclarationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleGraphPatternDeclaration" // $ANTLR start "ruleGraphPatternDeclaration" // InternalApplicationConfiguration.g:787:1: ruleGraphPatternDeclaration : ( ( rule__GraphPatternDeclaration__Group__0 ) ) ; public final void ruleGraphPatternDeclaration() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:791:2: ( ( ( rule__GraphPatternDeclaration__Group__0 ) ) ) // InternalApplicationConfiguration.g:792:2: ( ( rule__GraphPatternDeclaration__Group__0 ) ) { // InternalApplicationConfiguration.g:792:2: ( ( rule__GraphPatternDeclaration__Group__0 ) ) // InternalApplicationConfiguration.g:793:3: ( rule__GraphPatternDeclaration__Group__0 ) { before(grammarAccess.getGraphPatternDeclarationAccess().getGroup()); // InternalApplicationConfiguration.g:794:3: ( rule__GraphPatternDeclaration__Group__0 ) // InternalApplicationConfiguration.g:794:4: rule__GraphPatternDeclaration__Group__0 { pushFollow(FOLLOW_2); rule__GraphPatternDeclaration__Group__0(); state._fsp--; } after(grammarAccess.getGraphPatternDeclarationAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleGraphPatternDeclaration" // $ANTLR start "entryRuleGraphPatternReference" // InternalApplicationConfiguration.g:803:1: entryRuleGraphPatternReference : ruleGraphPatternReference EOF ; public final void entryRuleGraphPatternReference() throws RecognitionException { try { // InternalApplicationConfiguration.g:804:1: ( ruleGraphPatternReference EOF ) // InternalApplicationConfiguration.g:805:1: ruleGraphPatternReference EOF { before(grammarAccess.getGraphPatternReferenceRule()); pushFollow(FOLLOW_1); ruleGraphPatternReference(); state._fsp--; after(grammarAccess.getGraphPatternReferenceRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleGraphPatternReference" // $ANTLR start "ruleGraphPatternReference" // InternalApplicationConfiguration.g:812:1: ruleGraphPatternReference : ( ( rule__GraphPatternReference__ReferredAssignment ) ) ; public final void ruleGraphPatternReference() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:816:2: ( ( ( rule__GraphPatternReference__ReferredAssignment ) ) ) // InternalApplicationConfiguration.g:817:2: ( ( rule__GraphPatternReference__ReferredAssignment ) ) { // InternalApplicationConfiguration.g:817:2: ( ( rule__GraphPatternReference__ReferredAssignment ) ) // InternalApplicationConfiguration.g:818:3: ( rule__GraphPatternReference__ReferredAssignment ) { before(grammarAccess.getGraphPatternReferenceAccess().getReferredAssignment()); // InternalApplicationConfiguration.g:819:3: ( rule__GraphPatternReference__ReferredAssignment ) // InternalApplicationConfiguration.g:819:4: rule__GraphPatternReference__ReferredAssignment { pushFollow(FOLLOW_2); rule__GraphPatternReference__ReferredAssignment(); state._fsp--; } after(grammarAccess.getGraphPatternReferenceAccess().getReferredAssignment()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleGraphPatternReference" // $ANTLR start "entryRuleGraphPattern" // InternalApplicationConfiguration.g:828:1: entryRuleGraphPattern : ruleGraphPattern EOF ; public final void entryRuleGraphPattern() throws RecognitionException { try { // InternalApplicationConfiguration.g:829:1: ( ruleGraphPattern EOF ) // InternalApplicationConfiguration.g:830:1: ruleGraphPattern EOF { before(grammarAccess.getGraphPatternRule()); pushFollow(FOLLOW_1); ruleGraphPattern(); state._fsp--; after(grammarAccess.getGraphPatternRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleGraphPattern" // $ANTLR start "ruleGraphPattern" // InternalApplicationConfiguration.g:837:1: ruleGraphPattern : ( ( rule__GraphPattern__Alternatives ) ) ; public final void ruleGraphPattern() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:841:2: ( ( ( rule__GraphPattern__Alternatives ) ) ) // InternalApplicationConfiguration.g:842:2: ( ( rule__GraphPattern__Alternatives ) ) { // InternalApplicationConfiguration.g:842:2: ( ( rule__GraphPattern__Alternatives ) ) // InternalApplicationConfiguration.g:843:3: ( rule__GraphPattern__Alternatives ) { before(grammarAccess.getGraphPatternAccess().getAlternatives()); // InternalApplicationConfiguration.g:844:3: ( rule__GraphPattern__Alternatives ) // InternalApplicationConfiguration.g:844:4: rule__GraphPattern__Alternatives { pushFollow(FOLLOW_2); rule__GraphPattern__Alternatives(); state._fsp--; } after(grammarAccess.getGraphPatternAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleGraphPattern" // $ANTLR start "entryRuleConfigSpecification" // InternalApplicationConfiguration.g:853:1: entryRuleConfigSpecification : ruleConfigSpecification EOF ; public final void entryRuleConfigSpecification() throws RecognitionException { try { // InternalApplicationConfiguration.g:854:1: ( ruleConfigSpecification EOF ) // InternalApplicationConfiguration.g:855:1: ruleConfigSpecification EOF { before(grammarAccess.getConfigSpecificationRule()); pushFollow(FOLLOW_1); ruleConfigSpecification(); state._fsp--; after(grammarAccess.getConfigSpecificationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleConfigSpecification" // $ANTLR start "ruleConfigSpecification" // InternalApplicationConfiguration.g:862:1: ruleConfigSpecification : ( ( rule__ConfigSpecification__Group__0 ) ) ; public final void ruleConfigSpecification() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:866:2: ( ( ( rule__ConfigSpecification__Group__0 ) ) ) // InternalApplicationConfiguration.g:867:2: ( ( rule__ConfigSpecification__Group__0 ) ) { // InternalApplicationConfiguration.g:867:2: ( ( rule__ConfigSpecification__Group__0 ) ) // InternalApplicationConfiguration.g:868:3: ( rule__ConfigSpecification__Group__0 ) { before(grammarAccess.getConfigSpecificationAccess().getGroup()); // InternalApplicationConfiguration.g:869:3: ( rule__ConfigSpecification__Group__0 ) // InternalApplicationConfiguration.g:869:4: rule__ConfigSpecification__Group__0 { pushFollow(FOLLOW_2); rule__ConfigSpecification__Group__0(); state._fsp--; } after(grammarAccess.getConfigSpecificationAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleConfigSpecification" // $ANTLR start "entryRuleConfigDeclaration" // InternalApplicationConfiguration.g:878:1: entryRuleConfigDeclaration : ruleConfigDeclaration EOF ; public final void entryRuleConfigDeclaration() throws RecognitionException { try { // InternalApplicationConfiguration.g:879:1: ( ruleConfigDeclaration EOF ) // InternalApplicationConfiguration.g:880:1: ruleConfigDeclaration EOF { before(grammarAccess.getConfigDeclarationRule()); pushFollow(FOLLOW_1); ruleConfigDeclaration(); state._fsp--; after(grammarAccess.getConfigDeclarationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleConfigDeclaration" // $ANTLR start "ruleConfigDeclaration" // InternalApplicationConfiguration.g:887:1: ruleConfigDeclaration : ( ( rule__ConfigDeclaration__Group__0 ) ) ; public final void ruleConfigDeclaration() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:891:2: ( ( ( rule__ConfigDeclaration__Group__0 ) ) ) // InternalApplicationConfiguration.g:892:2: ( ( rule__ConfigDeclaration__Group__0 ) ) { // InternalApplicationConfiguration.g:892:2: ( ( rule__ConfigDeclaration__Group__0 ) ) // InternalApplicationConfiguration.g:893:3: ( rule__ConfigDeclaration__Group__0 ) { before(grammarAccess.getConfigDeclarationAccess().getGroup()); // InternalApplicationConfiguration.g:894:3: ( rule__ConfigDeclaration__Group__0 ) // InternalApplicationConfiguration.g:894:4: rule__ConfigDeclaration__Group__0 { pushFollow(FOLLOW_2); rule__ConfigDeclaration__Group__0(); state._fsp--; } after(grammarAccess.getConfigDeclarationAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleConfigDeclaration" // $ANTLR start "entryRuleConfigEntry" // InternalApplicationConfiguration.g:903:1: entryRuleConfigEntry : ruleConfigEntry EOF ; public final void entryRuleConfigEntry() throws RecognitionException { try { // InternalApplicationConfiguration.g:904:1: ( ruleConfigEntry EOF ) // InternalApplicationConfiguration.g:905:1: ruleConfigEntry EOF { before(grammarAccess.getConfigEntryRule()); pushFollow(FOLLOW_1); ruleConfigEntry(); state._fsp--; after(grammarAccess.getConfigEntryRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleConfigEntry" // $ANTLR start "ruleConfigEntry" // InternalApplicationConfiguration.g:912:1: ruleConfigEntry : ( ( rule__ConfigEntry__Alternatives ) ) ; public final void ruleConfigEntry() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:916:2: ( ( ( rule__ConfigEntry__Alternatives ) ) ) // InternalApplicationConfiguration.g:917:2: ( ( rule__ConfigEntry__Alternatives ) ) { // InternalApplicationConfiguration.g:917:2: ( ( rule__ConfigEntry__Alternatives ) ) // InternalApplicationConfiguration.g:918:3: ( rule__ConfigEntry__Alternatives ) { before(grammarAccess.getConfigEntryAccess().getAlternatives()); // InternalApplicationConfiguration.g:919:3: ( rule__ConfigEntry__Alternatives ) // InternalApplicationConfiguration.g:919:4: rule__ConfigEntry__Alternatives { pushFollow(FOLLOW_2); rule__ConfigEntry__Alternatives(); state._fsp--; } after(grammarAccess.getConfigEntryAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleConfigEntry" // $ANTLR start "entryRuleDocumentationEntry" // InternalApplicationConfiguration.g:928:1: entryRuleDocumentationEntry : ruleDocumentationEntry EOF ; public final void entryRuleDocumentationEntry() throws RecognitionException { try { // InternalApplicationConfiguration.g:929:1: ( ruleDocumentationEntry EOF ) // InternalApplicationConfiguration.g:930:1: ruleDocumentationEntry EOF { before(grammarAccess.getDocumentationEntryRule()); pushFollow(FOLLOW_1); ruleDocumentationEntry(); state._fsp--; after(grammarAccess.getDocumentationEntryRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleDocumentationEntry" // $ANTLR start "ruleDocumentationEntry" // InternalApplicationConfiguration.g:937:1: ruleDocumentationEntry : ( ( rule__DocumentationEntry__Group__0 ) ) ; public final void ruleDocumentationEntry() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:941:2: ( ( ( rule__DocumentationEntry__Group__0 ) ) ) // InternalApplicationConfiguration.g:942:2: ( ( rule__DocumentationEntry__Group__0 ) ) { // InternalApplicationConfiguration.g:942:2: ( ( rule__DocumentationEntry__Group__0 ) ) // InternalApplicationConfiguration.g:943:3: ( rule__DocumentationEntry__Group__0 ) { before(grammarAccess.getDocumentationEntryAccess().getGroup()); // InternalApplicationConfiguration.g:944:3: ( rule__DocumentationEntry__Group__0 ) // InternalApplicationConfiguration.g:944:4: rule__DocumentationEntry__Group__0 { pushFollow(FOLLOW_2); rule__DocumentationEntry__Group__0(); state._fsp--; } after(grammarAccess.getDocumentationEntryAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleDocumentationEntry" // $ANTLR start "entryRuleRuntimeEntry" // InternalApplicationConfiguration.g:953:1: entryRuleRuntimeEntry : ruleRuntimeEntry EOF ; public final void entryRuleRuntimeEntry() throws RecognitionException { try { // InternalApplicationConfiguration.g:954:1: ( ruleRuntimeEntry EOF ) // InternalApplicationConfiguration.g:955:1: ruleRuntimeEntry EOF { before(grammarAccess.getRuntimeEntryRule()); pushFollow(FOLLOW_1); ruleRuntimeEntry(); state._fsp--; after(grammarAccess.getRuntimeEntryRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleRuntimeEntry" // $ANTLR start "ruleRuntimeEntry" // InternalApplicationConfiguration.g:962:1: ruleRuntimeEntry : ( ( rule__RuntimeEntry__Group__0 ) ) ; public final void ruleRuntimeEntry() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:966:2: ( ( ( rule__RuntimeEntry__Group__0 ) ) ) // InternalApplicationConfiguration.g:967:2: ( ( rule__RuntimeEntry__Group__0 ) ) { // InternalApplicationConfiguration.g:967:2: ( ( rule__RuntimeEntry__Group__0 ) ) // InternalApplicationConfiguration.g:968:3: ( rule__RuntimeEntry__Group__0 ) { before(grammarAccess.getRuntimeEntryAccess().getGroup()); // InternalApplicationConfiguration.g:969:3: ( rule__RuntimeEntry__Group__0 ) // InternalApplicationConfiguration.g:969:4: rule__RuntimeEntry__Group__0 { pushFollow(FOLLOW_2); rule__RuntimeEntry__Group__0(); state._fsp--; } after(grammarAccess.getRuntimeEntryAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleRuntimeEntry" // $ANTLR start "entryRuleMemoryEntry" // InternalApplicationConfiguration.g:978:1: entryRuleMemoryEntry : ruleMemoryEntry EOF ; public final void entryRuleMemoryEntry() throws RecognitionException { try { // InternalApplicationConfiguration.g:979:1: ( ruleMemoryEntry EOF ) // InternalApplicationConfiguration.g:980:1: ruleMemoryEntry EOF { before(grammarAccess.getMemoryEntryRule()); pushFollow(FOLLOW_1); ruleMemoryEntry(); state._fsp--; after(grammarAccess.getMemoryEntryRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleMemoryEntry" // $ANTLR start "ruleMemoryEntry" // InternalApplicationConfiguration.g:987:1: ruleMemoryEntry : ( ( rule__MemoryEntry__Group__0 ) ) ; public final void ruleMemoryEntry() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:991:2: ( ( ( rule__MemoryEntry__Group__0 ) ) ) // InternalApplicationConfiguration.g:992:2: ( ( rule__MemoryEntry__Group__0 ) ) { // InternalApplicationConfiguration.g:992:2: ( ( rule__MemoryEntry__Group__0 ) ) // InternalApplicationConfiguration.g:993:3: ( rule__MemoryEntry__Group__0 ) { before(grammarAccess.getMemoryEntryAccess().getGroup()); // InternalApplicationConfiguration.g:994:3: ( rule__MemoryEntry__Group__0 ) // InternalApplicationConfiguration.g:994:4: rule__MemoryEntry__Group__0 { pushFollow(FOLLOW_2); rule__MemoryEntry__Group__0(); state._fsp--; } after(grammarAccess.getMemoryEntryAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleMemoryEntry" // $ANTLR start "entryRuleCustomEntry" // InternalApplicationConfiguration.g:1003:1: entryRuleCustomEntry : ruleCustomEntry EOF ; public final void entryRuleCustomEntry() throws RecognitionException { try { // InternalApplicationConfiguration.g:1004:1: ( ruleCustomEntry EOF ) // InternalApplicationConfiguration.g:1005:1: ruleCustomEntry EOF { before(grammarAccess.getCustomEntryRule()); pushFollow(FOLLOW_1); ruleCustomEntry(); state._fsp--; after(grammarAccess.getCustomEntryRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleCustomEntry" // $ANTLR start "ruleCustomEntry" // InternalApplicationConfiguration.g:1012:1: ruleCustomEntry : ( ( rule__CustomEntry__Group__0 ) ) ; public final void ruleCustomEntry() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1016:2: ( ( ( rule__CustomEntry__Group__0 ) ) ) // InternalApplicationConfiguration.g:1017:2: ( ( rule__CustomEntry__Group__0 ) ) { // InternalApplicationConfiguration.g:1017:2: ( ( rule__CustomEntry__Group__0 ) ) // InternalApplicationConfiguration.g:1018:3: ( rule__CustomEntry__Group__0 ) { before(grammarAccess.getCustomEntryAccess().getGroup()); // InternalApplicationConfiguration.g:1019:3: ( rule__CustomEntry__Group__0 ) // InternalApplicationConfiguration.g:1019:4: rule__CustomEntry__Group__0 { pushFollow(FOLLOW_2); rule__CustomEntry__Group__0(); state._fsp--; } after(grammarAccess.getCustomEntryAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleCustomEntry" // $ANTLR start "entryRuleConfigReference" // InternalApplicationConfiguration.g:1028:1: entryRuleConfigReference : ruleConfigReference EOF ; public final void entryRuleConfigReference() throws RecognitionException { try { // InternalApplicationConfiguration.g:1029:1: ( ruleConfigReference EOF ) // InternalApplicationConfiguration.g:1030:1: ruleConfigReference EOF { before(grammarAccess.getConfigReferenceRule()); pushFollow(FOLLOW_1); ruleConfigReference(); state._fsp--; after(grammarAccess.getConfigReferenceRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleConfigReference" // $ANTLR start "ruleConfigReference" // InternalApplicationConfiguration.g:1037:1: ruleConfigReference : ( ( rule__ConfigReference__ConfigAssignment ) ) ; public final void ruleConfigReference() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1041:2: ( ( ( rule__ConfigReference__ConfigAssignment ) ) ) // InternalApplicationConfiguration.g:1042:2: ( ( rule__ConfigReference__ConfigAssignment ) ) { // InternalApplicationConfiguration.g:1042:2: ( ( rule__ConfigReference__ConfigAssignment ) ) // InternalApplicationConfiguration.g:1043:3: ( rule__ConfigReference__ConfigAssignment ) { before(grammarAccess.getConfigReferenceAccess().getConfigAssignment()); // InternalApplicationConfiguration.g:1044:3: ( rule__ConfigReference__ConfigAssignment ) // InternalApplicationConfiguration.g:1044:4: rule__ConfigReference__ConfigAssignment { pushFollow(FOLLOW_2); rule__ConfigReference__ConfigAssignment(); state._fsp--; } after(grammarAccess.getConfigReferenceAccess().getConfigAssignment()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleConfigReference" // $ANTLR start "entryRuleConfig" // InternalApplicationConfiguration.g:1053:1: entryRuleConfig : ruleConfig EOF ; public final void entryRuleConfig() throws RecognitionException { try { // InternalApplicationConfiguration.g:1054:1: ( ruleConfig EOF ) // InternalApplicationConfiguration.g:1055:1: ruleConfig EOF { before(grammarAccess.getConfigRule()); pushFollow(FOLLOW_1); ruleConfig(); state._fsp--; after(grammarAccess.getConfigRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleConfig" // $ANTLR start "ruleConfig" // InternalApplicationConfiguration.g:1062:1: ruleConfig : ( ( rule__Config__Alternatives ) ) ; public final void ruleConfig() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1066:2: ( ( ( rule__Config__Alternatives ) ) ) // InternalApplicationConfiguration.g:1067:2: ( ( rule__Config__Alternatives ) ) { // InternalApplicationConfiguration.g:1067:2: ( ( rule__Config__Alternatives ) ) // InternalApplicationConfiguration.g:1068:3: ( rule__Config__Alternatives ) { before(grammarAccess.getConfigAccess().getAlternatives()); // InternalApplicationConfiguration.g:1069:3: ( rule__Config__Alternatives ) // InternalApplicationConfiguration.g:1069:4: rule__Config__Alternatives { pushFollow(FOLLOW_2); rule__Config__Alternatives(); state._fsp--; } after(grammarAccess.getConfigAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleConfig" // $ANTLR start "entryRuleScopeSpecification" // InternalApplicationConfiguration.g:1078:1: entryRuleScopeSpecification : ruleScopeSpecification EOF ; public final void entryRuleScopeSpecification() throws RecognitionException { try { // InternalApplicationConfiguration.g:1079:1: ( ruleScopeSpecification EOF ) // InternalApplicationConfiguration.g:1080:1: ruleScopeSpecification EOF { before(grammarAccess.getScopeSpecificationRule()); pushFollow(FOLLOW_1); ruleScopeSpecification(); state._fsp--; after(grammarAccess.getScopeSpecificationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleScopeSpecification" // $ANTLR start "ruleScopeSpecification" // InternalApplicationConfiguration.g:1087:1: ruleScopeSpecification : ( ( rule__ScopeSpecification__Group__0 ) ) ; public final void ruleScopeSpecification() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1091:2: ( ( ( rule__ScopeSpecification__Group__0 ) ) ) // InternalApplicationConfiguration.g:1092:2: ( ( rule__ScopeSpecification__Group__0 ) ) { // InternalApplicationConfiguration.g:1092:2: ( ( rule__ScopeSpecification__Group__0 ) ) // InternalApplicationConfiguration.g:1093:3: ( rule__ScopeSpecification__Group__0 ) { before(grammarAccess.getScopeSpecificationAccess().getGroup()); // InternalApplicationConfiguration.g:1094:3: ( rule__ScopeSpecification__Group__0 ) // InternalApplicationConfiguration.g:1094:4: rule__ScopeSpecification__Group__0 { pushFollow(FOLLOW_2); rule__ScopeSpecification__Group__0(); state._fsp--; } after(grammarAccess.getScopeSpecificationAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleScopeSpecification" // $ANTLR start "entryRuleTypeScope" // InternalApplicationConfiguration.g:1103:1: entryRuleTypeScope : ruleTypeScope EOF ; public final void entryRuleTypeScope() throws RecognitionException { try { // InternalApplicationConfiguration.g:1104:1: ( ruleTypeScope EOF ) // InternalApplicationConfiguration.g:1105:1: ruleTypeScope EOF { before(grammarAccess.getTypeScopeRule()); pushFollow(FOLLOW_1); ruleTypeScope(); state._fsp--; after(grammarAccess.getTypeScopeRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleTypeScope" // $ANTLR start "ruleTypeScope" // InternalApplicationConfiguration.g:1112:1: ruleTypeScope : ( ( rule__TypeScope__Alternatives ) ) ; public final void ruleTypeScope() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1116:2: ( ( ( rule__TypeScope__Alternatives ) ) ) // InternalApplicationConfiguration.g:1117:2: ( ( rule__TypeScope__Alternatives ) ) { // InternalApplicationConfiguration.g:1117:2: ( ( rule__TypeScope__Alternatives ) ) // InternalApplicationConfiguration.g:1118:3: ( rule__TypeScope__Alternatives ) { before(grammarAccess.getTypeScopeAccess().getAlternatives()); // InternalApplicationConfiguration.g:1119:3: ( rule__TypeScope__Alternatives ) // InternalApplicationConfiguration.g:1119:4: rule__TypeScope__Alternatives { pushFollow(FOLLOW_2); rule__TypeScope__Alternatives(); state._fsp--; } after(grammarAccess.getTypeScopeAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleTypeScope" // $ANTLR start "entryRuleClassTypeScope" // InternalApplicationConfiguration.g:1128:1: entryRuleClassTypeScope : ruleClassTypeScope EOF ; public final void entryRuleClassTypeScope() throws RecognitionException { try { // InternalApplicationConfiguration.g:1129:1: ( ruleClassTypeScope EOF ) // InternalApplicationConfiguration.g:1130:1: ruleClassTypeScope EOF { before(grammarAccess.getClassTypeScopeRule()); pushFollow(FOLLOW_1); ruleClassTypeScope(); state._fsp--; after(grammarAccess.getClassTypeScopeRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleClassTypeScope" // $ANTLR start "ruleClassTypeScope" // InternalApplicationConfiguration.g:1137:1: ruleClassTypeScope : ( ( rule__ClassTypeScope__Group__0 ) ) ; public final void ruleClassTypeScope() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1141:2: ( ( ( rule__ClassTypeScope__Group__0 ) ) ) // InternalApplicationConfiguration.g:1142:2: ( ( rule__ClassTypeScope__Group__0 ) ) { // InternalApplicationConfiguration.g:1142:2: ( ( rule__ClassTypeScope__Group__0 ) ) // InternalApplicationConfiguration.g:1143:3: ( rule__ClassTypeScope__Group__0 ) { before(grammarAccess.getClassTypeScopeAccess().getGroup()); // InternalApplicationConfiguration.g:1144:3: ( rule__ClassTypeScope__Group__0 ) // InternalApplicationConfiguration.g:1144:4: rule__ClassTypeScope__Group__0 { pushFollow(FOLLOW_2); rule__ClassTypeScope__Group__0(); state._fsp--; } after(grammarAccess.getClassTypeScopeAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleClassTypeScope" // $ANTLR start "entryRuleObjectTypeScope" // InternalApplicationConfiguration.g:1153:1: entryRuleObjectTypeScope : ruleObjectTypeScope EOF ; public final void entryRuleObjectTypeScope() throws RecognitionException { try { // InternalApplicationConfiguration.g:1154:1: ( ruleObjectTypeScope EOF ) // InternalApplicationConfiguration.g:1155:1: ruleObjectTypeScope EOF { before(grammarAccess.getObjectTypeScopeRule()); pushFollow(FOLLOW_1); ruleObjectTypeScope(); state._fsp--; after(grammarAccess.getObjectTypeScopeRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleObjectTypeScope" // $ANTLR start "ruleObjectTypeScope" // InternalApplicationConfiguration.g:1162:1: ruleObjectTypeScope : ( ( rule__ObjectTypeScope__Group__0 ) ) ; public final void ruleObjectTypeScope() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1166:2: ( ( ( rule__ObjectTypeScope__Group__0 ) ) ) // InternalApplicationConfiguration.g:1167:2: ( ( rule__ObjectTypeScope__Group__0 ) ) { // InternalApplicationConfiguration.g:1167:2: ( ( rule__ObjectTypeScope__Group__0 ) ) // InternalApplicationConfiguration.g:1168:3: ( rule__ObjectTypeScope__Group__0 ) { before(grammarAccess.getObjectTypeScopeAccess().getGroup()); // InternalApplicationConfiguration.g:1169:3: ( rule__ObjectTypeScope__Group__0 ) // InternalApplicationConfiguration.g:1169:4: rule__ObjectTypeScope__Group__0 { pushFollow(FOLLOW_2); rule__ObjectTypeScope__Group__0(); state._fsp--; } after(grammarAccess.getObjectTypeScopeAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleObjectTypeScope" // $ANTLR start "entryRuleIntegerTypeScope" // InternalApplicationConfiguration.g:1178:1: entryRuleIntegerTypeScope : ruleIntegerTypeScope EOF ; public final void entryRuleIntegerTypeScope() throws RecognitionException { try { // InternalApplicationConfiguration.g:1179:1: ( ruleIntegerTypeScope EOF ) // InternalApplicationConfiguration.g:1180:1: ruleIntegerTypeScope EOF { before(grammarAccess.getIntegerTypeScopeRule()); pushFollow(FOLLOW_1); ruleIntegerTypeScope(); state._fsp--; after(grammarAccess.getIntegerTypeScopeRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleIntegerTypeScope" // $ANTLR start "ruleIntegerTypeScope" // InternalApplicationConfiguration.g:1187:1: ruleIntegerTypeScope : ( ( rule__IntegerTypeScope__Group__0 ) ) ; public final void ruleIntegerTypeScope() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1191:2: ( ( ( rule__IntegerTypeScope__Group__0 ) ) ) // InternalApplicationConfiguration.g:1192:2: ( ( rule__IntegerTypeScope__Group__0 ) ) { // InternalApplicationConfiguration.g:1192:2: ( ( rule__IntegerTypeScope__Group__0 ) ) // InternalApplicationConfiguration.g:1193:3: ( rule__IntegerTypeScope__Group__0 ) { before(grammarAccess.getIntegerTypeScopeAccess().getGroup()); // InternalApplicationConfiguration.g:1194:3: ( rule__IntegerTypeScope__Group__0 ) // InternalApplicationConfiguration.g:1194:4: rule__IntegerTypeScope__Group__0 { pushFollow(FOLLOW_2); rule__IntegerTypeScope__Group__0(); state._fsp--; } after(grammarAccess.getIntegerTypeScopeAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleIntegerTypeScope" // $ANTLR start "entryRuleRealTypeScope" // InternalApplicationConfiguration.g:1203:1: entryRuleRealTypeScope : ruleRealTypeScope EOF ; public final void entryRuleRealTypeScope() throws RecognitionException { try { // InternalApplicationConfiguration.g:1204:1: ( ruleRealTypeScope EOF ) // InternalApplicationConfiguration.g:1205:1: ruleRealTypeScope EOF { before(grammarAccess.getRealTypeScopeRule()); pushFollow(FOLLOW_1); ruleRealTypeScope(); state._fsp--; after(grammarAccess.getRealTypeScopeRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleRealTypeScope" // $ANTLR start "ruleRealTypeScope" // InternalApplicationConfiguration.g:1212:1: ruleRealTypeScope : ( ( rule__RealTypeScope__Group__0 ) ) ; public final void ruleRealTypeScope() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1216:2: ( ( ( rule__RealTypeScope__Group__0 ) ) ) // InternalApplicationConfiguration.g:1217:2: ( ( rule__RealTypeScope__Group__0 ) ) { // InternalApplicationConfiguration.g:1217:2: ( ( rule__RealTypeScope__Group__0 ) ) // InternalApplicationConfiguration.g:1218:3: ( rule__RealTypeScope__Group__0 ) { before(grammarAccess.getRealTypeScopeAccess().getGroup()); // InternalApplicationConfiguration.g:1219:3: ( rule__RealTypeScope__Group__0 ) // InternalApplicationConfiguration.g:1219:4: rule__RealTypeScope__Group__0 { pushFollow(FOLLOW_2); rule__RealTypeScope__Group__0(); state._fsp--; } after(grammarAccess.getRealTypeScopeAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleRealTypeScope" // $ANTLR start "entryRuleStringTypeScope" // InternalApplicationConfiguration.g:1228:1: entryRuleStringTypeScope : ruleStringTypeScope EOF ; public final void entryRuleStringTypeScope() throws RecognitionException { try { // InternalApplicationConfiguration.g:1229:1: ( ruleStringTypeScope EOF ) // InternalApplicationConfiguration.g:1230:1: ruleStringTypeScope EOF { before(grammarAccess.getStringTypeScopeRule()); pushFollow(FOLLOW_1); ruleStringTypeScope(); state._fsp--; after(grammarAccess.getStringTypeScopeRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleStringTypeScope" // $ANTLR start "ruleStringTypeScope" // InternalApplicationConfiguration.g:1237:1: ruleStringTypeScope : ( ( rule__StringTypeScope__Group__0 ) ) ; public final void ruleStringTypeScope() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1241:2: ( ( ( rule__StringTypeScope__Group__0 ) ) ) // InternalApplicationConfiguration.g:1242:2: ( ( rule__StringTypeScope__Group__0 ) ) { // InternalApplicationConfiguration.g:1242:2: ( ( rule__StringTypeScope__Group__0 ) ) // InternalApplicationConfiguration.g:1243:3: ( rule__StringTypeScope__Group__0 ) { before(grammarAccess.getStringTypeScopeAccess().getGroup()); // InternalApplicationConfiguration.g:1244:3: ( rule__StringTypeScope__Group__0 ) // InternalApplicationConfiguration.g:1244:4: rule__StringTypeScope__Group__0 { pushFollow(FOLLOW_2); rule__StringTypeScope__Group__0(); state._fsp--; } after(grammarAccess.getStringTypeScopeAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleStringTypeScope" // $ANTLR start "entryRuleClassReference" // InternalApplicationConfiguration.g:1253:1: entryRuleClassReference : ruleClassReference EOF ; public final void entryRuleClassReference() throws RecognitionException { try { // InternalApplicationConfiguration.g:1254:1: ( ruleClassReference EOF ) // InternalApplicationConfiguration.g:1255:1: ruleClassReference EOF { before(grammarAccess.getClassReferenceRule()); pushFollow(FOLLOW_1); ruleClassReference(); state._fsp--; after(grammarAccess.getClassReferenceRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleClassReference" // $ANTLR start "ruleClassReference" // InternalApplicationConfiguration.g:1262:1: ruleClassReference : ( ( rule__ClassReference__Group__0 ) ) ; public final void ruleClassReference() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1266:2: ( ( ( rule__ClassReference__Group__0 ) ) ) // InternalApplicationConfiguration.g:1267:2: ( ( rule__ClassReference__Group__0 ) ) { // InternalApplicationConfiguration.g:1267:2: ( ( rule__ClassReference__Group__0 ) ) // InternalApplicationConfiguration.g:1268:3: ( rule__ClassReference__Group__0 ) { before(grammarAccess.getClassReferenceAccess().getGroup()); // InternalApplicationConfiguration.g:1269:3: ( rule__ClassReference__Group__0 ) // InternalApplicationConfiguration.g:1269:4: rule__ClassReference__Group__0 { pushFollow(FOLLOW_2); rule__ClassReference__Group__0(); state._fsp--; } after(grammarAccess.getClassReferenceAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleClassReference" // $ANTLR start "entryRuleObjectReference" // InternalApplicationConfiguration.g:1278:1: entryRuleObjectReference : ruleObjectReference EOF ; public final void entryRuleObjectReference() throws RecognitionException { try { // InternalApplicationConfiguration.g:1279:1: ( ruleObjectReference EOF ) // InternalApplicationConfiguration.g:1280:1: ruleObjectReference EOF { before(grammarAccess.getObjectReferenceRule()); pushFollow(FOLLOW_1); ruleObjectReference(); state._fsp--; after(grammarAccess.getObjectReferenceRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleObjectReference" // $ANTLR start "ruleObjectReference" // InternalApplicationConfiguration.g:1287:1: ruleObjectReference : ( ( rule__ObjectReference__Group__0 ) ) ; public final void ruleObjectReference() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1291:2: ( ( ( rule__ObjectReference__Group__0 ) ) ) // InternalApplicationConfiguration.g:1292:2: ( ( rule__ObjectReference__Group__0 ) ) { // InternalApplicationConfiguration.g:1292:2: ( ( rule__ObjectReference__Group__0 ) ) // InternalApplicationConfiguration.g:1293:3: ( rule__ObjectReference__Group__0 ) { before(grammarAccess.getObjectReferenceAccess().getGroup()); // InternalApplicationConfiguration.g:1294:3: ( rule__ObjectReference__Group__0 ) // InternalApplicationConfiguration.g:1294:4: rule__ObjectReference__Group__0 { pushFollow(FOLLOW_2); rule__ObjectReference__Group__0(); state._fsp--; } after(grammarAccess.getObjectReferenceAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleObjectReference" // $ANTLR start "entryRuleIntegerReference" // InternalApplicationConfiguration.g:1303:1: entryRuleIntegerReference : ruleIntegerReference EOF ; public final void entryRuleIntegerReference() throws RecognitionException { try { // InternalApplicationConfiguration.g:1304:1: ( ruleIntegerReference EOF ) // InternalApplicationConfiguration.g:1305:1: ruleIntegerReference EOF { before(grammarAccess.getIntegerReferenceRule()); pushFollow(FOLLOW_1); ruleIntegerReference(); state._fsp--; after(grammarAccess.getIntegerReferenceRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleIntegerReference" // $ANTLR start "ruleIntegerReference" // InternalApplicationConfiguration.g:1312:1: ruleIntegerReference : ( ( rule__IntegerReference__Group__0 ) ) ; public final void ruleIntegerReference() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1316:2: ( ( ( rule__IntegerReference__Group__0 ) ) ) // InternalApplicationConfiguration.g:1317:2: ( ( rule__IntegerReference__Group__0 ) ) { // InternalApplicationConfiguration.g:1317:2: ( ( rule__IntegerReference__Group__0 ) ) // InternalApplicationConfiguration.g:1318:3: ( rule__IntegerReference__Group__0 ) { before(grammarAccess.getIntegerReferenceAccess().getGroup()); // InternalApplicationConfiguration.g:1319:3: ( rule__IntegerReference__Group__0 ) // InternalApplicationConfiguration.g:1319:4: rule__IntegerReference__Group__0 { pushFollow(FOLLOW_2); rule__IntegerReference__Group__0(); state._fsp--; } after(grammarAccess.getIntegerReferenceAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleIntegerReference" // $ANTLR start "entryRuleRealReference" // InternalApplicationConfiguration.g:1328:1: entryRuleRealReference : ruleRealReference EOF ; public final void entryRuleRealReference() throws RecognitionException { try { // InternalApplicationConfiguration.g:1329:1: ( ruleRealReference EOF ) // InternalApplicationConfiguration.g:1330:1: ruleRealReference EOF { before(grammarAccess.getRealReferenceRule()); pushFollow(FOLLOW_1); ruleRealReference(); state._fsp--; after(grammarAccess.getRealReferenceRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleRealReference" // $ANTLR start "ruleRealReference" // InternalApplicationConfiguration.g:1337:1: ruleRealReference : ( ( rule__RealReference__Group__0 ) ) ; public final void ruleRealReference() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1341:2: ( ( ( rule__RealReference__Group__0 ) ) ) // InternalApplicationConfiguration.g:1342:2: ( ( rule__RealReference__Group__0 ) ) { // InternalApplicationConfiguration.g:1342:2: ( ( rule__RealReference__Group__0 ) ) // InternalApplicationConfiguration.g:1343:3: ( rule__RealReference__Group__0 ) { before(grammarAccess.getRealReferenceAccess().getGroup()); // InternalApplicationConfiguration.g:1344:3: ( rule__RealReference__Group__0 ) // InternalApplicationConfiguration.g:1344:4: rule__RealReference__Group__0 { pushFollow(FOLLOW_2); rule__RealReference__Group__0(); state._fsp--; } after(grammarAccess.getRealReferenceAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleRealReference" // $ANTLR start "entryRuleStringReference" // InternalApplicationConfiguration.g:1353:1: entryRuleStringReference : ruleStringReference EOF ; public final void entryRuleStringReference() throws RecognitionException { try { // InternalApplicationConfiguration.g:1354:1: ( ruleStringReference EOF ) // InternalApplicationConfiguration.g:1355:1: ruleStringReference EOF { before(grammarAccess.getStringReferenceRule()); pushFollow(FOLLOW_1); ruleStringReference(); state._fsp--; after(grammarAccess.getStringReferenceRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleStringReference" // $ANTLR start "ruleStringReference" // InternalApplicationConfiguration.g:1362:1: ruleStringReference : ( ( rule__StringReference__Group__0 ) ) ; public final void ruleStringReference() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1366:2: ( ( ( rule__StringReference__Group__0 ) ) ) // InternalApplicationConfiguration.g:1367:2: ( ( rule__StringReference__Group__0 ) ) { // InternalApplicationConfiguration.g:1367:2: ( ( rule__StringReference__Group__0 ) ) // InternalApplicationConfiguration.g:1368:3: ( rule__StringReference__Group__0 ) { before(grammarAccess.getStringReferenceAccess().getGroup()); // InternalApplicationConfiguration.g:1369:3: ( rule__StringReference__Group__0 ) // InternalApplicationConfiguration.g:1369:4: rule__StringReference__Group__0 { pushFollow(FOLLOW_2); rule__StringReference__Group__0(); state._fsp--; } after(grammarAccess.getStringReferenceAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleStringReference" // $ANTLR start "entryRuleExactNumber" // InternalApplicationConfiguration.g:1378:1: entryRuleExactNumber : ruleExactNumber EOF ; public final void entryRuleExactNumber() throws RecognitionException { try { // InternalApplicationConfiguration.g:1379:1: ( ruleExactNumber EOF ) // InternalApplicationConfiguration.g:1380:1: ruleExactNumber EOF { before(grammarAccess.getExactNumberRule()); pushFollow(FOLLOW_1); ruleExactNumber(); state._fsp--; after(grammarAccess.getExactNumberRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleExactNumber" // $ANTLR start "ruleExactNumber" // InternalApplicationConfiguration.g:1387:1: ruleExactNumber : ( ( rule__ExactNumber__Alternatives ) ) ; public final void ruleExactNumber() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1391:2: ( ( ( rule__ExactNumber__Alternatives ) ) ) // InternalApplicationConfiguration.g:1392:2: ( ( rule__ExactNumber__Alternatives ) ) { // InternalApplicationConfiguration.g:1392:2: ( ( rule__ExactNumber__Alternatives ) ) // InternalApplicationConfiguration.g:1393:3: ( rule__ExactNumber__Alternatives ) { before(grammarAccess.getExactNumberAccess().getAlternatives()); // InternalApplicationConfiguration.g:1394:3: ( rule__ExactNumber__Alternatives ) // InternalApplicationConfiguration.g:1394:4: rule__ExactNumber__Alternatives { pushFollow(FOLLOW_2); rule__ExactNumber__Alternatives(); state._fsp--; } after(grammarAccess.getExactNumberAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleExactNumber" // $ANTLR start "entryRuleIntervallNumber" // InternalApplicationConfiguration.g:1403:1: entryRuleIntervallNumber : ruleIntervallNumber EOF ; public final void entryRuleIntervallNumber() throws RecognitionException { try { // InternalApplicationConfiguration.g:1404:1: ( ruleIntervallNumber EOF ) // InternalApplicationConfiguration.g:1405:1: ruleIntervallNumber EOF { before(grammarAccess.getIntervallNumberRule()); pushFollow(FOLLOW_1); ruleIntervallNumber(); state._fsp--; after(grammarAccess.getIntervallNumberRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleIntervallNumber" // $ANTLR start "ruleIntervallNumber" // InternalApplicationConfiguration.g:1412:1: ruleIntervallNumber : ( ( rule__IntervallNumber__Group__0 ) ) ; public final void ruleIntervallNumber() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1416:2: ( ( ( rule__IntervallNumber__Group__0 ) ) ) // InternalApplicationConfiguration.g:1417:2: ( ( rule__IntervallNumber__Group__0 ) ) { // InternalApplicationConfiguration.g:1417:2: ( ( rule__IntervallNumber__Group__0 ) ) // InternalApplicationConfiguration.g:1418:3: ( rule__IntervallNumber__Group__0 ) { before(grammarAccess.getIntervallNumberAccess().getGroup()); // InternalApplicationConfiguration.g:1419:3: ( rule__IntervallNumber__Group__0 ) // InternalApplicationConfiguration.g:1419:4: rule__IntervallNumber__Group__0 { pushFollow(FOLLOW_2); rule__IntervallNumber__Group__0(); state._fsp--; } after(grammarAccess.getIntervallNumberAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleIntervallNumber" // $ANTLR start "entryRuleIntEnumberation" // InternalApplicationConfiguration.g:1428:1: entryRuleIntEnumberation : ruleIntEnumberation EOF ; public final void entryRuleIntEnumberation() throws RecognitionException { try { // InternalApplicationConfiguration.g:1429:1: ( ruleIntEnumberation EOF ) // InternalApplicationConfiguration.g:1430:1: ruleIntEnumberation EOF { before(grammarAccess.getIntEnumberationRule()); pushFollow(FOLLOW_1); ruleIntEnumberation(); state._fsp--; after(grammarAccess.getIntEnumberationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleIntEnumberation" // $ANTLR start "ruleIntEnumberation" // InternalApplicationConfiguration.g:1437:1: ruleIntEnumberation : ( ( rule__IntEnumberation__Group__0 ) ) ; public final void ruleIntEnumberation() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1441:2: ( ( ( rule__IntEnumberation__Group__0 ) ) ) // InternalApplicationConfiguration.g:1442:2: ( ( rule__IntEnumberation__Group__0 ) ) { // InternalApplicationConfiguration.g:1442:2: ( ( rule__IntEnumberation__Group__0 ) ) // InternalApplicationConfiguration.g:1443:3: ( rule__IntEnumberation__Group__0 ) { before(grammarAccess.getIntEnumberationAccess().getGroup()); // InternalApplicationConfiguration.g:1444:3: ( rule__IntEnumberation__Group__0 ) // InternalApplicationConfiguration.g:1444:4: rule__IntEnumberation__Group__0 { pushFollow(FOLLOW_2); rule__IntEnumberation__Group__0(); state._fsp--; } after(grammarAccess.getIntEnumberationAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleIntEnumberation" // $ANTLR start "entryRuleRealEnumeration" // InternalApplicationConfiguration.g:1453:1: entryRuleRealEnumeration : ruleRealEnumeration EOF ; public final void entryRuleRealEnumeration() throws RecognitionException { try { // InternalApplicationConfiguration.g:1454:1: ( ruleRealEnumeration EOF ) // InternalApplicationConfiguration.g:1455:1: ruleRealEnumeration EOF { before(grammarAccess.getRealEnumerationRule()); pushFollow(FOLLOW_1); ruleRealEnumeration(); state._fsp--; after(grammarAccess.getRealEnumerationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleRealEnumeration" // $ANTLR start "ruleRealEnumeration" // InternalApplicationConfiguration.g:1462:1: ruleRealEnumeration : ( ( rule__RealEnumeration__Group__0 ) ) ; public final void ruleRealEnumeration() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1466:2: ( ( ( rule__RealEnumeration__Group__0 ) ) ) // InternalApplicationConfiguration.g:1467:2: ( ( rule__RealEnumeration__Group__0 ) ) { // InternalApplicationConfiguration.g:1467:2: ( ( rule__RealEnumeration__Group__0 ) ) // InternalApplicationConfiguration.g:1468:3: ( rule__RealEnumeration__Group__0 ) { before(grammarAccess.getRealEnumerationAccess().getGroup()); // InternalApplicationConfiguration.g:1469:3: ( rule__RealEnumeration__Group__0 ) // InternalApplicationConfiguration.g:1469:4: rule__RealEnumeration__Group__0 { pushFollow(FOLLOW_2); rule__RealEnumeration__Group__0(); state._fsp--; } after(grammarAccess.getRealEnumerationAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleRealEnumeration" // $ANTLR start "entryRuleStringEnumeration" // InternalApplicationConfiguration.g:1478:1: entryRuleStringEnumeration : ruleStringEnumeration EOF ; public final void entryRuleStringEnumeration() throws RecognitionException { try { // InternalApplicationConfiguration.g:1479:1: ( ruleStringEnumeration EOF ) // InternalApplicationConfiguration.g:1480:1: ruleStringEnumeration EOF { before(grammarAccess.getStringEnumerationRule()); pushFollow(FOLLOW_1); ruleStringEnumeration(); state._fsp--; after(grammarAccess.getStringEnumerationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleStringEnumeration" // $ANTLR start "ruleStringEnumeration" // InternalApplicationConfiguration.g:1487:1: ruleStringEnumeration : ( ( rule__StringEnumeration__Group__0 ) ) ; public final void ruleStringEnumeration() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1491:2: ( ( ( rule__StringEnumeration__Group__0 ) ) ) // InternalApplicationConfiguration.g:1492:2: ( ( rule__StringEnumeration__Group__0 ) ) { // InternalApplicationConfiguration.g:1492:2: ( ( rule__StringEnumeration__Group__0 ) ) // InternalApplicationConfiguration.g:1493:3: ( rule__StringEnumeration__Group__0 ) { before(grammarAccess.getStringEnumerationAccess().getGroup()); // InternalApplicationConfiguration.g:1494:3: ( rule__StringEnumeration__Group__0 ) // InternalApplicationConfiguration.g:1494:4: rule__StringEnumeration__Group__0 { pushFollow(FOLLOW_2); rule__StringEnumeration__Group__0(); state._fsp--; } after(grammarAccess.getStringEnumerationAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleStringEnumeration" // $ANTLR start "entryRuleScopeDeclaration" // InternalApplicationConfiguration.g:1503:1: entryRuleScopeDeclaration : ruleScopeDeclaration EOF ; public final void entryRuleScopeDeclaration() throws RecognitionException { try { // InternalApplicationConfiguration.g:1504:1: ( ruleScopeDeclaration EOF ) // InternalApplicationConfiguration.g:1505:1: ruleScopeDeclaration EOF { before(grammarAccess.getScopeDeclarationRule()); pushFollow(FOLLOW_1); ruleScopeDeclaration(); state._fsp--; after(grammarAccess.getScopeDeclarationRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleScopeDeclaration" // $ANTLR start "ruleScopeDeclaration" // InternalApplicationConfiguration.g:1512:1: ruleScopeDeclaration : ( ( rule__ScopeDeclaration__Group__0 ) ) ; public final void ruleScopeDeclaration() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1516:2: ( ( ( rule__ScopeDeclaration__Group__0 ) ) ) // InternalApplicationConfiguration.g:1517:2: ( ( rule__ScopeDeclaration__Group__0 ) ) { // InternalApplicationConfiguration.g:1517:2: ( ( rule__ScopeDeclaration__Group__0 ) ) // InternalApplicationConfiguration.g:1518:3: ( rule__ScopeDeclaration__Group__0 ) { before(grammarAccess.getScopeDeclarationAccess().getGroup()); // InternalApplicationConfiguration.g:1519:3: ( rule__ScopeDeclaration__Group__0 ) // InternalApplicationConfiguration.g:1519:4: rule__ScopeDeclaration__Group__0 { pushFollow(FOLLOW_2); rule__ScopeDeclaration__Group__0(); state._fsp--; } after(grammarAccess.getScopeDeclarationAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleScopeDeclaration" // $ANTLR start "entryRuleScopeReference" // InternalApplicationConfiguration.g:1528:1: entryRuleScopeReference : ruleScopeReference EOF ; public final void entryRuleScopeReference() throws RecognitionException { try { // InternalApplicationConfiguration.g:1529:1: ( ruleScopeReference EOF ) // InternalApplicationConfiguration.g:1530:1: ruleScopeReference EOF { before(grammarAccess.getScopeReferenceRule()); pushFollow(FOLLOW_1); ruleScopeReference(); state._fsp--; after(grammarAccess.getScopeReferenceRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleScopeReference" // $ANTLR start "ruleScopeReference" // InternalApplicationConfiguration.g:1537:1: ruleScopeReference : ( ( rule__ScopeReference__ReferredAssignment ) ) ; public final void ruleScopeReference() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1541:2: ( ( ( rule__ScopeReference__ReferredAssignment ) ) ) // InternalApplicationConfiguration.g:1542:2: ( ( rule__ScopeReference__ReferredAssignment ) ) { // InternalApplicationConfiguration.g:1542:2: ( ( rule__ScopeReference__ReferredAssignment ) ) // InternalApplicationConfiguration.g:1543:3: ( rule__ScopeReference__ReferredAssignment ) { before(grammarAccess.getScopeReferenceAccess().getReferredAssignment()); // InternalApplicationConfiguration.g:1544:3: ( rule__ScopeReference__ReferredAssignment ) // InternalApplicationConfiguration.g:1544:4: rule__ScopeReference__ReferredAssignment { pushFollow(FOLLOW_2); rule__ScopeReference__ReferredAssignment(); state._fsp--; } after(grammarAccess.getScopeReferenceAccess().getReferredAssignment()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleScopeReference" // $ANTLR start "entryRuleScope" // InternalApplicationConfiguration.g:1553:1: entryRuleScope : ruleScope EOF ; public final void entryRuleScope() throws RecognitionException { try { // InternalApplicationConfiguration.g:1554:1: ( ruleScope EOF ) // InternalApplicationConfiguration.g:1555:1: ruleScope EOF { before(grammarAccess.getScopeRule()); pushFollow(FOLLOW_1); ruleScope(); state._fsp--; after(grammarAccess.getScopeRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleScope" // $ANTLR start "ruleScope" // InternalApplicationConfiguration.g:1562:1: ruleScope : ( ( rule__Scope__Alternatives ) ) ; public final void ruleScope() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1566:2: ( ( ( rule__Scope__Alternatives ) ) ) // InternalApplicationConfiguration.g:1567:2: ( ( rule__Scope__Alternatives ) ) { // InternalApplicationConfiguration.g:1567:2: ( ( rule__Scope__Alternatives ) ) // InternalApplicationConfiguration.g:1568:3: ( rule__Scope__Alternatives ) { before(grammarAccess.getScopeAccess().getAlternatives()); // InternalApplicationConfiguration.g:1569:3: ( rule__Scope__Alternatives ) // InternalApplicationConfiguration.g:1569:4: rule__Scope__Alternatives { pushFollow(FOLLOW_2); rule__Scope__Alternatives(); state._fsp--; } after(grammarAccess.getScopeAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleScope" // $ANTLR start "entryRuleTask" // InternalApplicationConfiguration.g:1578:1: entryRuleTask : ruleTask EOF ; public final void entryRuleTask() throws RecognitionException { try { // InternalApplicationConfiguration.g:1579:1: ( ruleTask EOF ) // InternalApplicationConfiguration.g:1580:1: ruleTask EOF { before(grammarAccess.getTaskRule()); pushFollow(FOLLOW_1); ruleTask(); state._fsp--; after(grammarAccess.getTaskRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleTask" // $ANTLR start "ruleTask" // InternalApplicationConfiguration.g:1587:1: ruleTask : ( ruleGenerationTask ) ; public final void ruleTask() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1591:2: ( ( ruleGenerationTask ) ) // InternalApplicationConfiguration.g:1592:2: ( ruleGenerationTask ) { // InternalApplicationConfiguration.g:1592:2: ( ruleGenerationTask ) // InternalApplicationConfiguration.g:1593:3: ruleGenerationTask { before(grammarAccess.getTaskAccess().getGenerationTaskParserRuleCall()); pushFollow(FOLLOW_2); ruleGenerationTask(); state._fsp--; after(grammarAccess.getTaskAccess().getGenerationTaskParserRuleCall()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleTask" // $ANTLR start "entryRuleGenerationTask" // InternalApplicationConfiguration.g:1603:1: entryRuleGenerationTask : ruleGenerationTask EOF ; public final void entryRuleGenerationTask() throws RecognitionException { try { // InternalApplicationConfiguration.g:1604:1: ( ruleGenerationTask EOF ) // InternalApplicationConfiguration.g:1605:1: ruleGenerationTask EOF { before(grammarAccess.getGenerationTaskRule()); pushFollow(FOLLOW_1); ruleGenerationTask(); state._fsp--; after(grammarAccess.getGenerationTaskRule()); match(input,EOF,FOLLOW_2); } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; } // $ANTLR end "entryRuleGenerationTask" // $ANTLR start "ruleGenerationTask" // InternalApplicationConfiguration.g:1612:1: ruleGenerationTask : ( ( rule__GenerationTask__Group__0 ) ) ; public final void ruleGenerationTask() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1616:2: ( ( ( rule__GenerationTask__Group__0 ) ) ) // InternalApplicationConfiguration.g:1617:2: ( ( rule__GenerationTask__Group__0 ) ) { // InternalApplicationConfiguration.g:1617:2: ( ( rule__GenerationTask__Group__0 ) ) // InternalApplicationConfiguration.g:1618:3: ( rule__GenerationTask__Group__0 ) { before(grammarAccess.getGenerationTaskAccess().getGroup()); // InternalApplicationConfiguration.g:1619:3: ( rule__GenerationTask__Group__0 ) // InternalApplicationConfiguration.g:1619:4: rule__GenerationTask__Group__0 { pushFollow(FOLLOW_2); rule__GenerationTask__Group__0(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getGroup()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleGenerationTask" // $ANTLR start "ruleDocumentLevelSpecification" // InternalApplicationConfiguration.g:1628:1: ruleDocumentLevelSpecification : ( ( rule__DocumentLevelSpecification__Alternatives ) ) ; public final void ruleDocumentLevelSpecification() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1632:1: ( ( ( rule__DocumentLevelSpecification__Alternatives ) ) ) // InternalApplicationConfiguration.g:1633:2: ( ( rule__DocumentLevelSpecification__Alternatives ) ) { // InternalApplicationConfiguration.g:1633:2: ( ( rule__DocumentLevelSpecification__Alternatives ) ) // InternalApplicationConfiguration.g:1634:3: ( rule__DocumentLevelSpecification__Alternatives ) { before(grammarAccess.getDocumentLevelSpecificationAccess().getAlternatives()); // InternalApplicationConfiguration.g:1635:3: ( rule__DocumentLevelSpecification__Alternatives ) // InternalApplicationConfiguration.g:1635:4: rule__DocumentLevelSpecification__Alternatives { pushFollow(FOLLOW_2); rule__DocumentLevelSpecification__Alternatives(); state._fsp--; } after(grammarAccess.getDocumentLevelSpecificationAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleDocumentLevelSpecification" // $ANTLR start "ruleSolver" // InternalApplicationConfiguration.g:1644:1: ruleSolver : ( ( rule__Solver__Alternatives ) ) ; public final void ruleSolver() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1648:1: ( ( ( rule__Solver__Alternatives ) ) ) // InternalApplicationConfiguration.g:1649:2: ( ( rule__Solver__Alternatives ) ) { // InternalApplicationConfiguration.g:1649:2: ( ( rule__Solver__Alternatives ) ) // InternalApplicationConfiguration.g:1650:3: ( rule__Solver__Alternatives ) { before(grammarAccess.getSolverAccess().getAlternatives()); // InternalApplicationConfiguration.g:1651:3: ( rule__Solver__Alternatives ) // InternalApplicationConfiguration.g:1651:4: rule__Solver__Alternatives { pushFollow(FOLLOW_2); rule__Solver__Alternatives(); state._fsp--; } after(grammarAccess.getSolverAccess().getAlternatives()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "ruleSolver" // $ANTLR start "rule__Command__Alternatives" // InternalApplicationConfiguration.g:1659:1: rule__Command__Alternatives : ( ( ruleDeclaration ) | ( ruleTask ) ); public final void rule__Command__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1663:1: ( ( ruleDeclaration ) | ( ruleTask ) ) int alt1=2; int LA1_0 = input.LA(1); if ( (LA1_0==21||LA1_0==29||(LA1_0>=31 && LA1_0<=33)||LA1_0==45) ) { alt1=1; } else if ( (LA1_0==46) ) { alt1=2; } else { NoViableAltException nvae = new NoViableAltException("", 1, 0, input); throw nvae; } switch (alt1) { case 1 : // InternalApplicationConfiguration.g:1664:2: ( ruleDeclaration ) { // InternalApplicationConfiguration.g:1664:2: ( ruleDeclaration ) // InternalApplicationConfiguration.g:1665:3: ruleDeclaration { before(grammarAccess.getCommandAccess().getDeclarationParserRuleCall_0()); pushFollow(FOLLOW_2); ruleDeclaration(); state._fsp--; after(grammarAccess.getCommandAccess().getDeclarationParserRuleCall_0()); } } break; case 2 : // InternalApplicationConfiguration.g:1670:2: ( ruleTask ) { // InternalApplicationConfiguration.g:1670:2: ( ruleTask ) // InternalApplicationConfiguration.g:1671:3: ruleTask { before(grammarAccess.getCommandAccess().getTaskParserRuleCall_1()); pushFollow(FOLLOW_2); ruleTask(); state._fsp--; after(grammarAccess.getCommandAccess().getTaskParserRuleCall_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__Command__Alternatives" // $ANTLR start "rule__Import__Alternatives" // InternalApplicationConfiguration.g:1680:1: rule__Import__Alternatives : ( ( ruleEPackageImport ) | ( ruleViatraImport ) ); public final void rule__Import__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1684:1: ( ( ruleEPackageImport ) | ( ruleViatraImport ) ) int alt2=2; int LA2_0 = input.LA(1); if ( (LA2_0==18) ) { int LA2_1 = input.LA(2); if ( (LA2_1==19) ) { alt2=1; } else if ( (LA2_1==20) ) { alt2=2; } else { NoViableAltException nvae = new NoViableAltException("", 2, 1, input); throw nvae; } } else { NoViableAltException nvae = new NoViableAltException("", 2, 0, input); throw nvae; } switch (alt2) { case 1 : // InternalApplicationConfiguration.g:1685:2: ( ruleEPackageImport ) { // InternalApplicationConfiguration.g:1685:2: ( ruleEPackageImport ) // InternalApplicationConfiguration.g:1686:3: ruleEPackageImport { before(grammarAccess.getImportAccess().getEPackageImportParserRuleCall_0()); pushFollow(FOLLOW_2); ruleEPackageImport(); state._fsp--; after(grammarAccess.getImportAccess().getEPackageImportParserRuleCall_0()); } } break; case 2 : // InternalApplicationConfiguration.g:1691:2: ( ruleViatraImport ) { // InternalApplicationConfiguration.g:1691:2: ( ruleViatraImport ) // InternalApplicationConfiguration.g:1692:3: ruleViatraImport { before(grammarAccess.getImportAccess().getViatraImportParserRuleCall_1()); pushFollow(FOLLOW_2); ruleViatraImport(); state._fsp--; after(grammarAccess.getImportAccess().getViatraImportParserRuleCall_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__Import__Alternatives" // $ANTLR start "rule__Declaration__Alternatives" // InternalApplicationConfiguration.g:1701:1: rule__Declaration__Alternatives : ( ( ruleFileDeclaration ) | ( ruleMetamodelDeclaration ) | ( rulePartialModelDeclaration ) | ( ruleGraphPatternDeclaration ) | ( ruleConfigDeclaration ) | ( ruleScopeDeclaration ) ); public final void rule__Declaration__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1705:1: ( ( ruleFileDeclaration ) | ( ruleMetamodelDeclaration ) | ( rulePartialModelDeclaration ) | ( ruleGraphPatternDeclaration ) | ( ruleConfigDeclaration ) | ( ruleScopeDeclaration ) ) int alt3=6; switch ( input.LA(1) ) { case 21: { alt3=1; } break; case 29: { alt3=2; } break; case 31: { alt3=3; } break; case 32: { alt3=4; } break; case 33: { alt3=5; } break; case 45: { alt3=6; } break; default: NoViableAltException nvae = new NoViableAltException("", 3, 0, input); throw nvae; } switch (alt3) { case 1 : // InternalApplicationConfiguration.g:1706:2: ( ruleFileDeclaration ) { // InternalApplicationConfiguration.g:1706:2: ( ruleFileDeclaration ) // InternalApplicationConfiguration.g:1707:3: ruleFileDeclaration { before(grammarAccess.getDeclarationAccess().getFileDeclarationParserRuleCall_0()); pushFollow(FOLLOW_2); ruleFileDeclaration(); state._fsp--; after(grammarAccess.getDeclarationAccess().getFileDeclarationParserRuleCall_0()); } } break; case 2 : // InternalApplicationConfiguration.g:1712:2: ( ruleMetamodelDeclaration ) { // InternalApplicationConfiguration.g:1712:2: ( ruleMetamodelDeclaration ) // InternalApplicationConfiguration.g:1713:3: ruleMetamodelDeclaration { before(grammarAccess.getDeclarationAccess().getMetamodelDeclarationParserRuleCall_1()); pushFollow(FOLLOW_2); ruleMetamodelDeclaration(); state._fsp--; after(grammarAccess.getDeclarationAccess().getMetamodelDeclarationParserRuleCall_1()); } } break; case 3 : // InternalApplicationConfiguration.g:1718:2: ( rulePartialModelDeclaration ) { // InternalApplicationConfiguration.g:1718:2: ( rulePartialModelDeclaration ) // InternalApplicationConfiguration.g:1719:3: rulePartialModelDeclaration { before(grammarAccess.getDeclarationAccess().getPartialModelDeclarationParserRuleCall_2()); pushFollow(FOLLOW_2); rulePartialModelDeclaration(); state._fsp--; after(grammarAccess.getDeclarationAccess().getPartialModelDeclarationParserRuleCall_2()); } } break; case 4 : // InternalApplicationConfiguration.g:1724:2: ( ruleGraphPatternDeclaration ) { // InternalApplicationConfiguration.g:1724:2: ( ruleGraphPatternDeclaration ) // InternalApplicationConfiguration.g:1725:3: ruleGraphPatternDeclaration { before(grammarAccess.getDeclarationAccess().getGraphPatternDeclarationParserRuleCall_3()); pushFollow(FOLLOW_2); ruleGraphPatternDeclaration(); state._fsp--; after(grammarAccess.getDeclarationAccess().getGraphPatternDeclarationParserRuleCall_3()); } } break; case 5 : // InternalApplicationConfiguration.g:1730:2: ( ruleConfigDeclaration ) { // InternalApplicationConfiguration.g:1730:2: ( ruleConfigDeclaration ) // InternalApplicationConfiguration.g:1731:3: ruleConfigDeclaration { before(grammarAccess.getDeclarationAccess().getConfigDeclarationParserRuleCall_4()); pushFollow(FOLLOW_2); ruleConfigDeclaration(); state._fsp--; after(grammarAccess.getDeclarationAccess().getConfigDeclarationParserRuleCall_4()); } } break; case 6 : // InternalApplicationConfiguration.g:1736:2: ( ruleScopeDeclaration ) { // InternalApplicationConfiguration.g:1736:2: ( ruleScopeDeclaration ) // InternalApplicationConfiguration.g:1737:3: ruleScopeDeclaration { before(grammarAccess.getDeclarationAccess().getScopeDeclarationParserRuleCall_5()); pushFollow(FOLLOW_2); ruleScopeDeclaration(); state._fsp--; after(grammarAccess.getDeclarationAccess().getScopeDeclarationParserRuleCall_5()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__Declaration__Alternatives" // $ANTLR start "rule__File__Alternatives" // InternalApplicationConfiguration.g:1746:1: rule__File__Alternatives : ( ( ruleFileSpecification ) | ( ruleFileReference ) ); public final void rule__File__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1750:1: ( ( ruleFileSpecification ) | ( ruleFileReference ) ) int alt4=2; int LA4_0 = input.LA(1); if ( (LA4_0==RULE_STRING) ) { alt4=1; } else if ( (LA4_0==RULE_ID) ) { alt4=2; } else { NoViableAltException nvae = new NoViableAltException("", 4, 0, input); throw nvae; } switch (alt4) { case 1 : // InternalApplicationConfiguration.g:1751:2: ( ruleFileSpecification ) { // InternalApplicationConfiguration.g:1751:2: ( ruleFileSpecification ) // InternalApplicationConfiguration.g:1752:3: ruleFileSpecification { before(grammarAccess.getFileAccess().getFileSpecificationParserRuleCall_0()); pushFollow(FOLLOW_2); ruleFileSpecification(); state._fsp--; after(grammarAccess.getFileAccess().getFileSpecificationParserRuleCall_0()); } } break; case 2 : // InternalApplicationConfiguration.g:1757:2: ( ruleFileReference ) { // InternalApplicationConfiguration.g:1757:2: ( ruleFileReference ) // InternalApplicationConfiguration.g:1758:3: ruleFileReference { before(grammarAccess.getFileAccess().getFileReferenceParserRuleCall_1()); pushFollow(FOLLOW_2); ruleFileReference(); state._fsp--; after(grammarAccess.getFileAccess().getFileReferenceParserRuleCall_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__File__Alternatives" // $ANTLR start "rule__MetamodelEntry__Alternatives" // InternalApplicationConfiguration.g:1767:1: rule__MetamodelEntry__Alternatives : ( ( ruleMetamodelElement ) | ( ruleAllPackageEntry ) ); public final void rule__MetamodelEntry__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1771:1: ( ( ruleMetamodelElement ) | ( ruleAllPackageEntry ) ) int alt5=2; int LA5_0 = input.LA(1); if ( (LA5_0==RULE_ID) ) { alt5=1; } else if ( (LA5_0==26) ) { alt5=2; } else { NoViableAltException nvae = new NoViableAltException("", 5, 0, input); throw nvae; } switch (alt5) { case 1 : // InternalApplicationConfiguration.g:1772:2: ( ruleMetamodelElement ) { // InternalApplicationConfiguration.g:1772:2: ( ruleMetamodelElement ) // InternalApplicationConfiguration.g:1773:3: ruleMetamodelElement { before(grammarAccess.getMetamodelEntryAccess().getMetamodelElementParserRuleCall_0()); pushFollow(FOLLOW_2); ruleMetamodelElement(); state._fsp--; after(grammarAccess.getMetamodelEntryAccess().getMetamodelElementParserRuleCall_0()); } } break; case 2 : // InternalApplicationConfiguration.g:1778:2: ( ruleAllPackageEntry ) { // InternalApplicationConfiguration.g:1778:2: ( ruleAllPackageEntry ) // InternalApplicationConfiguration.g:1779:3: ruleAllPackageEntry { before(grammarAccess.getMetamodelEntryAccess().getAllPackageEntryParserRuleCall_1()); pushFollow(FOLLOW_2); ruleAllPackageEntry(); state._fsp--; after(grammarAccess.getMetamodelEntryAccess().getAllPackageEntryParserRuleCall_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelEntry__Alternatives" // $ANTLR start "rule__Metamodel__Alternatives" // InternalApplicationConfiguration.g:1788:1: rule__Metamodel__Alternatives : ( ( ruleMetamodelReference ) | ( ruleMetamodelSpecification ) ); public final void rule__Metamodel__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1792:1: ( ( ruleMetamodelReference ) | ( ruleMetamodelSpecification ) ) int alt6=2; int LA6_0 = input.LA(1); if ( (LA6_0==RULE_ID) ) { alt6=1; } else if ( (LA6_0==23) ) { alt6=2; } else { NoViableAltException nvae = new NoViableAltException("", 6, 0, input); throw nvae; } switch (alt6) { case 1 : // InternalApplicationConfiguration.g:1793:2: ( ruleMetamodelReference ) { // InternalApplicationConfiguration.g:1793:2: ( ruleMetamodelReference ) // InternalApplicationConfiguration.g:1794:3: ruleMetamodelReference { before(grammarAccess.getMetamodelAccess().getMetamodelReferenceParserRuleCall_0()); pushFollow(FOLLOW_2); ruleMetamodelReference(); state._fsp--; after(grammarAccess.getMetamodelAccess().getMetamodelReferenceParserRuleCall_0()); } } break; case 2 : // InternalApplicationConfiguration.g:1799:2: ( ruleMetamodelSpecification ) { // InternalApplicationConfiguration.g:1799:2: ( ruleMetamodelSpecification ) // InternalApplicationConfiguration.g:1800:3: ruleMetamodelSpecification { before(grammarAccess.getMetamodelAccess().getMetamodelSpecificationParserRuleCall_1()); pushFollow(FOLLOW_2); ruleMetamodelSpecification(); state._fsp--; after(grammarAccess.getMetamodelAccess().getMetamodelSpecificationParserRuleCall_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__Metamodel__Alternatives" // $ANTLR start "rule__PartialModelEntry__Alternatives" // InternalApplicationConfiguration.g:1809:1: rule__PartialModelEntry__Alternatives : ( ( ruleModelEntry ) | ( ruleFolderEntry ) ); public final void rule__PartialModelEntry__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1813:1: ( ( ruleModelEntry ) | ( ruleFolderEntry ) ) int alt7=2; int LA7_0 = input.LA(1); if ( ((LA7_0>=RULE_ID && LA7_0<=RULE_STRING)) ) { alt7=1; } else if ( (LA7_0==30) ) { alt7=2; } else { NoViableAltException nvae = new NoViableAltException("", 7, 0, input); throw nvae; } switch (alt7) { case 1 : // InternalApplicationConfiguration.g:1814:2: ( ruleModelEntry ) { // InternalApplicationConfiguration.g:1814:2: ( ruleModelEntry ) // InternalApplicationConfiguration.g:1815:3: ruleModelEntry { before(grammarAccess.getPartialModelEntryAccess().getModelEntryParserRuleCall_0()); pushFollow(FOLLOW_2); ruleModelEntry(); state._fsp--; after(grammarAccess.getPartialModelEntryAccess().getModelEntryParserRuleCall_0()); } } break; case 2 : // InternalApplicationConfiguration.g:1820:2: ( ruleFolderEntry ) { // InternalApplicationConfiguration.g:1820:2: ( ruleFolderEntry ) // InternalApplicationConfiguration.g:1821:3: ruleFolderEntry { before(grammarAccess.getPartialModelEntryAccess().getFolderEntryParserRuleCall_1()); pushFollow(FOLLOW_2); ruleFolderEntry(); state._fsp--; after(grammarAccess.getPartialModelEntryAccess().getFolderEntryParserRuleCall_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelEntry__Alternatives" // $ANTLR start "rule__PartialModel__Alternatives" // InternalApplicationConfiguration.g:1830:1: rule__PartialModel__Alternatives : ( ( rulePartialModelSpecification ) | ( rulePartialModelReference ) ); public final void rule__PartialModel__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1834:1: ( ( rulePartialModelSpecification ) | ( rulePartialModelReference ) ) int alt8=2; int LA8_0 = input.LA(1); if ( (LA8_0==23) ) { alt8=1; } else if ( (LA8_0==RULE_ID) ) { alt8=2; } else { NoViableAltException nvae = new NoViableAltException("", 8, 0, input); throw nvae; } switch (alt8) { case 1 : // InternalApplicationConfiguration.g:1835:2: ( rulePartialModelSpecification ) { // InternalApplicationConfiguration.g:1835:2: ( rulePartialModelSpecification ) // InternalApplicationConfiguration.g:1836:3: rulePartialModelSpecification { before(grammarAccess.getPartialModelAccess().getPartialModelSpecificationParserRuleCall_0()); pushFollow(FOLLOW_2); rulePartialModelSpecification(); state._fsp--; after(grammarAccess.getPartialModelAccess().getPartialModelSpecificationParserRuleCall_0()); } } break; case 2 : // InternalApplicationConfiguration.g:1841:2: ( rulePartialModelReference ) { // InternalApplicationConfiguration.g:1841:2: ( rulePartialModelReference ) // InternalApplicationConfiguration.g:1842:3: rulePartialModelReference { before(grammarAccess.getPartialModelAccess().getPartialModelReferenceParserRuleCall_1()); pushFollow(FOLLOW_2); rulePartialModelReference(); state._fsp--; after(grammarAccess.getPartialModelAccess().getPartialModelReferenceParserRuleCall_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModel__Alternatives" // $ANTLR start "rule__PatternEntry__Alternatives" // InternalApplicationConfiguration.g:1851:1: rule__PatternEntry__Alternatives : ( ( rulePatternElement ) | ( ruleAllPatternEntry ) ); public final void rule__PatternEntry__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1855:1: ( ( rulePatternElement ) | ( ruleAllPatternEntry ) ) int alt9=2; int LA9_0 = input.LA(1); if ( (LA9_0==RULE_ID) ) { alt9=1; } else if ( (LA9_0==26) ) { alt9=2; } else { NoViableAltException nvae = new NoViableAltException("", 9, 0, input); throw nvae; } switch (alt9) { case 1 : // InternalApplicationConfiguration.g:1856:2: ( rulePatternElement ) { // InternalApplicationConfiguration.g:1856:2: ( rulePatternElement ) // InternalApplicationConfiguration.g:1857:3: rulePatternElement { before(grammarAccess.getPatternEntryAccess().getPatternElementParserRuleCall_0()); pushFollow(FOLLOW_2); rulePatternElement(); state._fsp--; after(grammarAccess.getPatternEntryAccess().getPatternElementParserRuleCall_0()); } } break; case 2 : // InternalApplicationConfiguration.g:1862:2: ( ruleAllPatternEntry ) { // InternalApplicationConfiguration.g:1862:2: ( ruleAllPatternEntry ) // InternalApplicationConfiguration.g:1863:3: ruleAllPatternEntry { before(grammarAccess.getPatternEntryAccess().getAllPatternEntryParserRuleCall_1()); pushFollow(FOLLOW_2); ruleAllPatternEntry(); state._fsp--; after(grammarAccess.getPatternEntryAccess().getAllPatternEntryParserRuleCall_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternEntry__Alternatives" // $ANTLR start "rule__GraphPattern__Alternatives" // InternalApplicationConfiguration.g:1872:1: rule__GraphPattern__Alternatives : ( ( ruleGraphPatternReference ) | ( rulePatternSpecification ) ); public final void rule__GraphPattern__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1876:1: ( ( ruleGraphPatternReference ) | ( rulePatternSpecification ) ) int alt10=2; int LA10_0 = input.LA(1); if ( (LA10_0==RULE_ID) ) { alt10=1; } else if ( (LA10_0==23) ) { alt10=2; } else { NoViableAltException nvae = new NoViableAltException("", 10, 0, input); throw nvae; } switch (alt10) { case 1 : // InternalApplicationConfiguration.g:1877:2: ( ruleGraphPatternReference ) { // InternalApplicationConfiguration.g:1877:2: ( ruleGraphPatternReference ) // InternalApplicationConfiguration.g:1878:3: ruleGraphPatternReference { before(grammarAccess.getGraphPatternAccess().getGraphPatternReferenceParserRuleCall_0()); pushFollow(FOLLOW_2); ruleGraphPatternReference(); state._fsp--; after(grammarAccess.getGraphPatternAccess().getGraphPatternReferenceParserRuleCall_0()); } } break; case 2 : // InternalApplicationConfiguration.g:1883:2: ( rulePatternSpecification ) { // InternalApplicationConfiguration.g:1883:2: ( rulePatternSpecification ) // InternalApplicationConfiguration.g:1884:3: rulePatternSpecification { before(grammarAccess.getGraphPatternAccess().getPatternSpecificationParserRuleCall_1()); pushFollow(FOLLOW_2); rulePatternSpecification(); state._fsp--; after(grammarAccess.getGraphPatternAccess().getPatternSpecificationParserRuleCall_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GraphPattern__Alternatives" // $ANTLR start "rule__ConfigEntry__Alternatives" // InternalApplicationConfiguration.g:1893:1: rule__ConfigEntry__Alternatives : ( ( ruleDocumentationEntry ) | ( ruleRuntimeEntry ) | ( ruleMemoryEntry ) | ( ruleCustomEntry ) ); public final void rule__ConfigEntry__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1897:1: ( ( ruleDocumentationEntry ) | ( ruleRuntimeEntry ) | ( ruleMemoryEntry ) | ( ruleCustomEntry ) ) int alt11=4; switch ( input.LA(1) ) { case 34: { alt11=1; } break; case 35: { alt11=2; } break; case 36: { alt11=3; } break; case RULE_STRING: { alt11=4; } break; default: NoViableAltException nvae = new NoViableAltException("", 11, 0, input); throw nvae; } switch (alt11) { case 1 : // InternalApplicationConfiguration.g:1898:2: ( ruleDocumentationEntry ) { // InternalApplicationConfiguration.g:1898:2: ( ruleDocumentationEntry ) // InternalApplicationConfiguration.g:1899:3: ruleDocumentationEntry { before(grammarAccess.getConfigEntryAccess().getDocumentationEntryParserRuleCall_0()); pushFollow(FOLLOW_2); ruleDocumentationEntry(); state._fsp--; after(grammarAccess.getConfigEntryAccess().getDocumentationEntryParserRuleCall_0()); } } break; case 2 : // InternalApplicationConfiguration.g:1904:2: ( ruleRuntimeEntry ) { // InternalApplicationConfiguration.g:1904:2: ( ruleRuntimeEntry ) // InternalApplicationConfiguration.g:1905:3: ruleRuntimeEntry { before(grammarAccess.getConfigEntryAccess().getRuntimeEntryParserRuleCall_1()); pushFollow(FOLLOW_2); ruleRuntimeEntry(); state._fsp--; after(grammarAccess.getConfigEntryAccess().getRuntimeEntryParserRuleCall_1()); } } break; case 3 : // InternalApplicationConfiguration.g:1910:2: ( ruleMemoryEntry ) { // InternalApplicationConfiguration.g:1910:2: ( ruleMemoryEntry ) // InternalApplicationConfiguration.g:1911:3: ruleMemoryEntry { before(grammarAccess.getConfigEntryAccess().getMemoryEntryParserRuleCall_2()); pushFollow(FOLLOW_2); ruleMemoryEntry(); state._fsp--; after(grammarAccess.getConfigEntryAccess().getMemoryEntryParserRuleCall_2()); } } break; case 4 : // InternalApplicationConfiguration.g:1916:2: ( ruleCustomEntry ) { // InternalApplicationConfiguration.g:1916:2: ( ruleCustomEntry ) // InternalApplicationConfiguration.g:1917:3: ruleCustomEntry { before(grammarAccess.getConfigEntryAccess().getCustomEntryParserRuleCall_3()); pushFollow(FOLLOW_2); ruleCustomEntry(); state._fsp--; after(grammarAccess.getConfigEntryAccess().getCustomEntryParserRuleCall_3()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigEntry__Alternatives" // $ANTLR start "rule__Config__Alternatives" // InternalApplicationConfiguration.g:1926:1: rule__Config__Alternatives : ( ( ruleConfigSpecification ) | ( ruleConfigReference ) ); public final void rule__Config__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1930:1: ( ( ruleConfigSpecification ) | ( ruleConfigReference ) ) int alt12=2; int LA12_0 = input.LA(1); if ( (LA12_0==23) ) { alt12=1; } else if ( (LA12_0==RULE_ID) ) { alt12=2; } else { NoViableAltException nvae = new NoViableAltException("", 12, 0, input); throw nvae; } switch (alt12) { case 1 : // InternalApplicationConfiguration.g:1931:2: ( ruleConfigSpecification ) { // InternalApplicationConfiguration.g:1931:2: ( ruleConfigSpecification ) // InternalApplicationConfiguration.g:1932:3: ruleConfigSpecification { before(grammarAccess.getConfigAccess().getConfigSpecificationParserRuleCall_0()); pushFollow(FOLLOW_2); ruleConfigSpecification(); state._fsp--; after(grammarAccess.getConfigAccess().getConfigSpecificationParserRuleCall_0()); } } break; case 2 : // InternalApplicationConfiguration.g:1937:2: ( ruleConfigReference ) { // InternalApplicationConfiguration.g:1937:2: ( ruleConfigReference ) // InternalApplicationConfiguration.g:1938:3: ruleConfigReference { before(grammarAccess.getConfigAccess().getConfigReferenceParserRuleCall_1()); pushFollow(FOLLOW_2); ruleConfigReference(); state._fsp--; after(grammarAccess.getConfigAccess().getConfigReferenceParserRuleCall_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__Config__Alternatives" // $ANTLR start "rule__TypeScope__Alternatives" // InternalApplicationConfiguration.g:1947:1: rule__TypeScope__Alternatives : ( ( ruleClassTypeScope ) | ( ruleObjectTypeScope ) | ( ruleIntegerTypeScope ) | ( ruleRealTypeScope ) | ( ruleStringTypeScope ) ); public final void rule__TypeScope__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1951:1: ( ( ruleClassTypeScope ) | ( ruleObjectTypeScope ) | ( ruleIntegerTypeScope ) | ( ruleRealTypeScope ) | ( ruleStringTypeScope ) ) int alt13=5; int LA13_0 = input.LA(1); if ( (LA13_0==37) ) { switch ( input.LA(2) ) { case 41: { alt13=3; } break; case 42: { alt13=4; } break; case 38: { alt13=1; } break; case 43: { alt13=5; } break; case 40: { alt13=2; } break; default: NoViableAltException nvae = new NoViableAltException("", 13, 1, input); throw nvae; } } else { NoViableAltException nvae = new NoViableAltException("", 13, 0, input); throw nvae; } switch (alt13) { case 1 : // InternalApplicationConfiguration.g:1952:2: ( ruleClassTypeScope ) { // InternalApplicationConfiguration.g:1952:2: ( ruleClassTypeScope ) // InternalApplicationConfiguration.g:1953:3: ruleClassTypeScope { before(grammarAccess.getTypeScopeAccess().getClassTypeScopeParserRuleCall_0()); pushFollow(FOLLOW_2); ruleClassTypeScope(); state._fsp--; after(grammarAccess.getTypeScopeAccess().getClassTypeScopeParserRuleCall_0()); } } break; case 2 : // InternalApplicationConfiguration.g:1958:2: ( ruleObjectTypeScope ) { // InternalApplicationConfiguration.g:1958:2: ( ruleObjectTypeScope ) // InternalApplicationConfiguration.g:1959:3: ruleObjectTypeScope { before(grammarAccess.getTypeScopeAccess().getObjectTypeScopeParserRuleCall_1()); pushFollow(FOLLOW_2); ruleObjectTypeScope(); state._fsp--; after(grammarAccess.getTypeScopeAccess().getObjectTypeScopeParserRuleCall_1()); } } break; case 3 : // InternalApplicationConfiguration.g:1964:2: ( ruleIntegerTypeScope ) { // InternalApplicationConfiguration.g:1964:2: ( ruleIntegerTypeScope ) // InternalApplicationConfiguration.g:1965:3: ruleIntegerTypeScope { before(grammarAccess.getTypeScopeAccess().getIntegerTypeScopeParserRuleCall_2()); pushFollow(FOLLOW_2); ruleIntegerTypeScope(); state._fsp--; after(grammarAccess.getTypeScopeAccess().getIntegerTypeScopeParserRuleCall_2()); } } break; case 4 : // InternalApplicationConfiguration.g:1970:2: ( ruleRealTypeScope ) { // InternalApplicationConfiguration.g:1970:2: ( ruleRealTypeScope ) // InternalApplicationConfiguration.g:1971:3: ruleRealTypeScope { before(grammarAccess.getTypeScopeAccess().getRealTypeScopeParserRuleCall_3()); pushFollow(FOLLOW_2); ruleRealTypeScope(); state._fsp--; after(grammarAccess.getTypeScopeAccess().getRealTypeScopeParserRuleCall_3()); } } break; case 5 : // InternalApplicationConfiguration.g:1976:2: ( ruleStringTypeScope ) { // InternalApplicationConfiguration.g:1976:2: ( ruleStringTypeScope ) // InternalApplicationConfiguration.g:1977:3: ruleStringTypeScope { before(grammarAccess.getTypeScopeAccess().getStringTypeScopeParserRuleCall_4()); pushFollow(FOLLOW_2); ruleStringTypeScope(); state._fsp--; after(grammarAccess.getTypeScopeAccess().getStringTypeScopeParserRuleCall_4()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__TypeScope__Alternatives" // $ANTLR start "rule__ClassTypeScope__Alternatives_2" // InternalApplicationConfiguration.g:1986:1: rule__ClassTypeScope__Alternatives_2 : ( ( ( rule__ClassTypeScope__SetsNewAssignment_2_0 ) ) | ( ( rule__ClassTypeScope__SetsSumAssignment_2_1 ) ) ); public final void rule__ClassTypeScope__Alternatives_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:1990:1: ( ( ( rule__ClassTypeScope__SetsNewAssignment_2_0 ) ) | ( ( rule__ClassTypeScope__SetsSumAssignment_2_1 ) ) ) int alt14=2; int LA14_0 = input.LA(1); if ( (LA14_0==53) ) { alt14=1; } else if ( (LA14_0==22) ) { alt14=2; } else { NoViableAltException nvae = new NoViableAltException("", 14, 0, input); throw nvae; } switch (alt14) { case 1 : // InternalApplicationConfiguration.g:1991:2: ( ( rule__ClassTypeScope__SetsNewAssignment_2_0 ) ) { // InternalApplicationConfiguration.g:1991:2: ( ( rule__ClassTypeScope__SetsNewAssignment_2_0 ) ) // InternalApplicationConfiguration.g:1992:3: ( rule__ClassTypeScope__SetsNewAssignment_2_0 ) { before(grammarAccess.getClassTypeScopeAccess().getSetsNewAssignment_2_0()); // InternalApplicationConfiguration.g:1993:3: ( rule__ClassTypeScope__SetsNewAssignment_2_0 ) // InternalApplicationConfiguration.g:1993:4: rule__ClassTypeScope__SetsNewAssignment_2_0 { pushFollow(FOLLOW_2); rule__ClassTypeScope__SetsNewAssignment_2_0(); state._fsp--; } after(grammarAccess.getClassTypeScopeAccess().getSetsNewAssignment_2_0()); } } break; case 2 : // InternalApplicationConfiguration.g:1997:2: ( ( rule__ClassTypeScope__SetsSumAssignment_2_1 ) ) { // InternalApplicationConfiguration.g:1997:2: ( ( rule__ClassTypeScope__SetsSumAssignment_2_1 ) ) // InternalApplicationConfiguration.g:1998:3: ( rule__ClassTypeScope__SetsSumAssignment_2_1 ) { before(grammarAccess.getClassTypeScopeAccess().getSetsSumAssignment_2_1()); // InternalApplicationConfiguration.g:1999:3: ( rule__ClassTypeScope__SetsSumAssignment_2_1 ) // InternalApplicationConfiguration.g:1999:4: rule__ClassTypeScope__SetsSumAssignment_2_1 { pushFollow(FOLLOW_2); rule__ClassTypeScope__SetsSumAssignment_2_1(); state._fsp--; } after(grammarAccess.getClassTypeScopeAccess().getSetsSumAssignment_2_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassTypeScope__Alternatives_2" // $ANTLR start "rule__ClassTypeScope__Alternatives_3" // InternalApplicationConfiguration.g:2007:1: rule__ClassTypeScope__Alternatives_3 : ( ( ( rule__ClassTypeScope__NumberAssignment_3_0 ) ) | ( ( rule__ClassTypeScope__NumberAssignment_3_1 ) ) ); public final void rule__ClassTypeScope__Alternatives_3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2011:1: ( ( ( rule__ClassTypeScope__NumberAssignment_3_0 ) ) | ( ( rule__ClassTypeScope__NumberAssignment_3_1 ) ) ) int alt15=2; int LA15_0 = input.LA(1); if ( (LA15_0==RULE_INT) ) { int LA15_1 = input.LA(2); if ( (LA15_1==44) ) { alt15=2; } else if ( (LA15_1==EOF||(LA15_1>=24 && LA15_1<=25)) ) { alt15=1; } else { NoViableAltException nvae = new NoViableAltException("", 15, 1, input); throw nvae; } } else if ( (LA15_0==54) ) { alt15=1; } else { NoViableAltException nvae = new NoViableAltException("", 15, 0, input); throw nvae; } switch (alt15) { case 1 : // InternalApplicationConfiguration.g:2012:2: ( ( rule__ClassTypeScope__NumberAssignment_3_0 ) ) { // InternalApplicationConfiguration.g:2012:2: ( ( rule__ClassTypeScope__NumberAssignment_3_0 ) ) // InternalApplicationConfiguration.g:2013:3: ( rule__ClassTypeScope__NumberAssignment_3_0 ) { before(grammarAccess.getClassTypeScopeAccess().getNumberAssignment_3_0()); // InternalApplicationConfiguration.g:2014:3: ( rule__ClassTypeScope__NumberAssignment_3_0 ) // InternalApplicationConfiguration.g:2014:4: rule__ClassTypeScope__NumberAssignment_3_0 { pushFollow(FOLLOW_2); rule__ClassTypeScope__NumberAssignment_3_0(); state._fsp--; } after(grammarAccess.getClassTypeScopeAccess().getNumberAssignment_3_0()); } } break; case 2 : // InternalApplicationConfiguration.g:2018:2: ( ( rule__ClassTypeScope__NumberAssignment_3_1 ) ) { // InternalApplicationConfiguration.g:2018:2: ( ( rule__ClassTypeScope__NumberAssignment_3_1 ) ) // InternalApplicationConfiguration.g:2019:3: ( rule__ClassTypeScope__NumberAssignment_3_1 ) { before(grammarAccess.getClassTypeScopeAccess().getNumberAssignment_3_1()); // InternalApplicationConfiguration.g:2020:3: ( rule__ClassTypeScope__NumberAssignment_3_1 ) // InternalApplicationConfiguration.g:2020:4: rule__ClassTypeScope__NumberAssignment_3_1 { pushFollow(FOLLOW_2); rule__ClassTypeScope__NumberAssignment_3_1(); state._fsp--; } after(grammarAccess.getClassTypeScopeAccess().getNumberAssignment_3_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassTypeScope__Alternatives_3" // $ANTLR start "rule__ObjectTypeScope__Alternatives_2" // InternalApplicationConfiguration.g:2028:1: rule__ObjectTypeScope__Alternatives_2 : ( ( ( rule__ObjectTypeScope__SetsNewAssignment_2_0 ) ) | ( ( rule__ObjectTypeScope__SetsSumAssignment_2_1 ) ) ); public final void rule__ObjectTypeScope__Alternatives_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2032:1: ( ( ( rule__ObjectTypeScope__SetsNewAssignment_2_0 ) ) | ( ( rule__ObjectTypeScope__SetsSumAssignment_2_1 ) ) ) int alt16=2; int LA16_0 = input.LA(1); if ( (LA16_0==53) ) { alt16=1; } else if ( (LA16_0==22) ) { alt16=2; } else { NoViableAltException nvae = new NoViableAltException("", 16, 0, input); throw nvae; } switch (alt16) { case 1 : // InternalApplicationConfiguration.g:2033:2: ( ( rule__ObjectTypeScope__SetsNewAssignment_2_0 ) ) { // InternalApplicationConfiguration.g:2033:2: ( ( rule__ObjectTypeScope__SetsNewAssignment_2_0 ) ) // InternalApplicationConfiguration.g:2034:3: ( rule__ObjectTypeScope__SetsNewAssignment_2_0 ) { before(grammarAccess.getObjectTypeScopeAccess().getSetsNewAssignment_2_0()); // InternalApplicationConfiguration.g:2035:3: ( rule__ObjectTypeScope__SetsNewAssignment_2_0 ) // InternalApplicationConfiguration.g:2035:4: rule__ObjectTypeScope__SetsNewAssignment_2_0 { pushFollow(FOLLOW_2); rule__ObjectTypeScope__SetsNewAssignment_2_0(); state._fsp--; } after(grammarAccess.getObjectTypeScopeAccess().getSetsNewAssignment_2_0()); } } break; case 2 : // InternalApplicationConfiguration.g:2039:2: ( ( rule__ObjectTypeScope__SetsSumAssignment_2_1 ) ) { // InternalApplicationConfiguration.g:2039:2: ( ( rule__ObjectTypeScope__SetsSumAssignment_2_1 ) ) // InternalApplicationConfiguration.g:2040:3: ( rule__ObjectTypeScope__SetsSumAssignment_2_1 ) { before(grammarAccess.getObjectTypeScopeAccess().getSetsSumAssignment_2_1()); // InternalApplicationConfiguration.g:2041:3: ( rule__ObjectTypeScope__SetsSumAssignment_2_1 ) // InternalApplicationConfiguration.g:2041:4: rule__ObjectTypeScope__SetsSumAssignment_2_1 { pushFollow(FOLLOW_2); rule__ObjectTypeScope__SetsSumAssignment_2_1(); state._fsp--; } after(grammarAccess.getObjectTypeScopeAccess().getSetsSumAssignment_2_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectTypeScope__Alternatives_2" // $ANTLR start "rule__ObjectTypeScope__Alternatives_3" // InternalApplicationConfiguration.g:2049:1: rule__ObjectTypeScope__Alternatives_3 : ( ( ( rule__ObjectTypeScope__NumberAssignment_3_0 ) ) | ( ( rule__ObjectTypeScope__NumberAssignment_3_1 ) ) ); public final void rule__ObjectTypeScope__Alternatives_3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2053:1: ( ( ( rule__ObjectTypeScope__NumberAssignment_3_0 ) ) | ( ( rule__ObjectTypeScope__NumberAssignment_3_1 ) ) ) int alt17=2; int LA17_0 = input.LA(1); if ( (LA17_0==RULE_INT) ) { int LA17_1 = input.LA(2); if ( (LA17_1==EOF||(LA17_1>=24 && LA17_1<=25)) ) { alt17=1; } else if ( (LA17_1==44) ) { alt17=2; } else { NoViableAltException nvae = new NoViableAltException("", 17, 1, input); throw nvae; } } else if ( (LA17_0==54) ) { alt17=1; } else { NoViableAltException nvae = new NoViableAltException("", 17, 0, input); throw nvae; } switch (alt17) { case 1 : // InternalApplicationConfiguration.g:2054:2: ( ( rule__ObjectTypeScope__NumberAssignment_3_0 ) ) { // InternalApplicationConfiguration.g:2054:2: ( ( rule__ObjectTypeScope__NumberAssignment_3_0 ) ) // InternalApplicationConfiguration.g:2055:3: ( rule__ObjectTypeScope__NumberAssignment_3_0 ) { before(grammarAccess.getObjectTypeScopeAccess().getNumberAssignment_3_0()); // InternalApplicationConfiguration.g:2056:3: ( rule__ObjectTypeScope__NumberAssignment_3_0 ) // InternalApplicationConfiguration.g:2056:4: rule__ObjectTypeScope__NumberAssignment_3_0 { pushFollow(FOLLOW_2); rule__ObjectTypeScope__NumberAssignment_3_0(); state._fsp--; } after(grammarAccess.getObjectTypeScopeAccess().getNumberAssignment_3_0()); } } break; case 2 : // InternalApplicationConfiguration.g:2060:2: ( ( rule__ObjectTypeScope__NumberAssignment_3_1 ) ) { // InternalApplicationConfiguration.g:2060:2: ( ( rule__ObjectTypeScope__NumberAssignment_3_1 ) ) // InternalApplicationConfiguration.g:2061:3: ( rule__ObjectTypeScope__NumberAssignment_3_1 ) { before(grammarAccess.getObjectTypeScopeAccess().getNumberAssignment_3_1()); // InternalApplicationConfiguration.g:2062:3: ( rule__ObjectTypeScope__NumberAssignment_3_1 ) // InternalApplicationConfiguration.g:2062:4: rule__ObjectTypeScope__NumberAssignment_3_1 { pushFollow(FOLLOW_2); rule__ObjectTypeScope__NumberAssignment_3_1(); state._fsp--; } after(grammarAccess.getObjectTypeScopeAccess().getNumberAssignment_3_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectTypeScope__Alternatives_3" // $ANTLR start "rule__IntegerTypeScope__Alternatives_2" // InternalApplicationConfiguration.g:2070:1: rule__IntegerTypeScope__Alternatives_2 : ( ( ( rule__IntegerTypeScope__SetsNewAssignment_2_0 ) ) | ( ( rule__IntegerTypeScope__SetsSumAssignment_2_1 ) ) ); public final void rule__IntegerTypeScope__Alternatives_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2074:1: ( ( ( rule__IntegerTypeScope__SetsNewAssignment_2_0 ) ) | ( ( rule__IntegerTypeScope__SetsSumAssignment_2_1 ) ) ) int alt18=2; int LA18_0 = input.LA(1); if ( (LA18_0==53) ) { alt18=1; } else if ( (LA18_0==22) ) { alt18=2; } else { NoViableAltException nvae = new NoViableAltException("", 18, 0, input); throw nvae; } switch (alt18) { case 1 : // InternalApplicationConfiguration.g:2075:2: ( ( rule__IntegerTypeScope__SetsNewAssignment_2_0 ) ) { // InternalApplicationConfiguration.g:2075:2: ( ( rule__IntegerTypeScope__SetsNewAssignment_2_0 ) ) // InternalApplicationConfiguration.g:2076:3: ( rule__IntegerTypeScope__SetsNewAssignment_2_0 ) { before(grammarAccess.getIntegerTypeScopeAccess().getSetsNewAssignment_2_0()); // InternalApplicationConfiguration.g:2077:3: ( rule__IntegerTypeScope__SetsNewAssignment_2_0 ) // InternalApplicationConfiguration.g:2077:4: rule__IntegerTypeScope__SetsNewAssignment_2_0 { pushFollow(FOLLOW_2); rule__IntegerTypeScope__SetsNewAssignment_2_0(); state._fsp--; } after(grammarAccess.getIntegerTypeScopeAccess().getSetsNewAssignment_2_0()); } } break; case 2 : // InternalApplicationConfiguration.g:2081:2: ( ( rule__IntegerTypeScope__SetsSumAssignment_2_1 ) ) { // InternalApplicationConfiguration.g:2081:2: ( ( rule__IntegerTypeScope__SetsSumAssignment_2_1 ) ) // InternalApplicationConfiguration.g:2082:3: ( rule__IntegerTypeScope__SetsSumAssignment_2_1 ) { before(grammarAccess.getIntegerTypeScopeAccess().getSetsSumAssignment_2_1()); // InternalApplicationConfiguration.g:2083:3: ( rule__IntegerTypeScope__SetsSumAssignment_2_1 ) // InternalApplicationConfiguration.g:2083:4: rule__IntegerTypeScope__SetsSumAssignment_2_1 { pushFollow(FOLLOW_2); rule__IntegerTypeScope__SetsSumAssignment_2_1(); state._fsp--; } after(grammarAccess.getIntegerTypeScopeAccess().getSetsSumAssignment_2_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__Alternatives_2" // $ANTLR start "rule__IntegerTypeScope__Alternatives_3" // InternalApplicationConfiguration.g:2091:1: rule__IntegerTypeScope__Alternatives_3 : ( ( ( rule__IntegerTypeScope__NumberAssignment_3_0 ) ) | ( ( rule__IntegerTypeScope__NumberAssignment_3_1 ) ) | ( ( rule__IntegerTypeScope__NumberAssignment_3_2 ) ) ); public final void rule__IntegerTypeScope__Alternatives_3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2095:1: ( ( ( rule__IntegerTypeScope__NumberAssignment_3_0 ) ) | ( ( rule__IntegerTypeScope__NumberAssignment_3_1 ) ) | ( ( rule__IntegerTypeScope__NumberAssignment_3_2 ) ) ) int alt19=3; switch ( input.LA(1) ) { case RULE_INT: { int LA19_1 = input.LA(2); if ( (LA19_1==44) ) { alt19=2; } else if ( (LA19_1==EOF||(LA19_1>=24 && LA19_1<=25)) ) { alt19=1; } else { NoViableAltException nvae = new NoViableAltException("", 19, 1, input); throw nvae; } } break; case 54: { alt19=1; } break; case 23: { alt19=3; } break; default: NoViableAltException nvae = new NoViableAltException("", 19, 0, input); throw nvae; } switch (alt19) { case 1 : // InternalApplicationConfiguration.g:2096:2: ( ( rule__IntegerTypeScope__NumberAssignment_3_0 ) ) { // InternalApplicationConfiguration.g:2096:2: ( ( rule__IntegerTypeScope__NumberAssignment_3_0 ) ) // InternalApplicationConfiguration.g:2097:3: ( rule__IntegerTypeScope__NumberAssignment_3_0 ) { before(grammarAccess.getIntegerTypeScopeAccess().getNumberAssignment_3_0()); // InternalApplicationConfiguration.g:2098:3: ( rule__IntegerTypeScope__NumberAssignment_3_0 ) // InternalApplicationConfiguration.g:2098:4: rule__IntegerTypeScope__NumberAssignment_3_0 { pushFollow(FOLLOW_2); rule__IntegerTypeScope__NumberAssignment_3_0(); state._fsp--; } after(grammarAccess.getIntegerTypeScopeAccess().getNumberAssignment_3_0()); } } break; case 2 : // InternalApplicationConfiguration.g:2102:2: ( ( rule__IntegerTypeScope__NumberAssignment_3_1 ) ) { // InternalApplicationConfiguration.g:2102:2: ( ( rule__IntegerTypeScope__NumberAssignment_3_1 ) ) // InternalApplicationConfiguration.g:2103:3: ( rule__IntegerTypeScope__NumberAssignment_3_1 ) { before(grammarAccess.getIntegerTypeScopeAccess().getNumberAssignment_3_1()); // InternalApplicationConfiguration.g:2104:3: ( rule__IntegerTypeScope__NumberAssignment_3_1 ) // InternalApplicationConfiguration.g:2104:4: rule__IntegerTypeScope__NumberAssignment_3_1 { pushFollow(FOLLOW_2); rule__IntegerTypeScope__NumberAssignment_3_1(); state._fsp--; } after(grammarAccess.getIntegerTypeScopeAccess().getNumberAssignment_3_1()); } } break; case 3 : // InternalApplicationConfiguration.g:2108:2: ( ( rule__IntegerTypeScope__NumberAssignment_3_2 ) ) { // InternalApplicationConfiguration.g:2108:2: ( ( rule__IntegerTypeScope__NumberAssignment_3_2 ) ) // InternalApplicationConfiguration.g:2109:3: ( rule__IntegerTypeScope__NumberAssignment_3_2 ) { before(grammarAccess.getIntegerTypeScopeAccess().getNumberAssignment_3_2()); // InternalApplicationConfiguration.g:2110:3: ( rule__IntegerTypeScope__NumberAssignment_3_2 ) // InternalApplicationConfiguration.g:2110:4: rule__IntegerTypeScope__NumberAssignment_3_2 { pushFollow(FOLLOW_2); rule__IntegerTypeScope__NumberAssignment_3_2(); state._fsp--; } after(grammarAccess.getIntegerTypeScopeAccess().getNumberAssignment_3_2()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__Alternatives_3" // $ANTLR start "rule__RealTypeScope__Alternatives_2" // InternalApplicationConfiguration.g:2118:1: rule__RealTypeScope__Alternatives_2 : ( ( ( rule__RealTypeScope__SetsNewAssignment_2_0 ) ) | ( ( rule__RealTypeScope__SetsSumAssignment_2_1 ) ) ); public final void rule__RealTypeScope__Alternatives_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2122:1: ( ( ( rule__RealTypeScope__SetsNewAssignment_2_0 ) ) | ( ( rule__RealTypeScope__SetsSumAssignment_2_1 ) ) ) int alt20=2; int LA20_0 = input.LA(1); if ( (LA20_0==53) ) { alt20=1; } else if ( (LA20_0==22) ) { alt20=2; } else { NoViableAltException nvae = new NoViableAltException("", 20, 0, input); throw nvae; } switch (alt20) { case 1 : // InternalApplicationConfiguration.g:2123:2: ( ( rule__RealTypeScope__SetsNewAssignment_2_0 ) ) { // InternalApplicationConfiguration.g:2123:2: ( ( rule__RealTypeScope__SetsNewAssignment_2_0 ) ) // InternalApplicationConfiguration.g:2124:3: ( rule__RealTypeScope__SetsNewAssignment_2_0 ) { before(grammarAccess.getRealTypeScopeAccess().getSetsNewAssignment_2_0()); // InternalApplicationConfiguration.g:2125:3: ( rule__RealTypeScope__SetsNewAssignment_2_0 ) // InternalApplicationConfiguration.g:2125:4: rule__RealTypeScope__SetsNewAssignment_2_0 { pushFollow(FOLLOW_2); rule__RealTypeScope__SetsNewAssignment_2_0(); state._fsp--; } after(grammarAccess.getRealTypeScopeAccess().getSetsNewAssignment_2_0()); } } break; case 2 : // InternalApplicationConfiguration.g:2129:2: ( ( rule__RealTypeScope__SetsSumAssignment_2_1 ) ) { // InternalApplicationConfiguration.g:2129:2: ( ( rule__RealTypeScope__SetsSumAssignment_2_1 ) ) // InternalApplicationConfiguration.g:2130:3: ( rule__RealTypeScope__SetsSumAssignment_2_1 ) { before(grammarAccess.getRealTypeScopeAccess().getSetsSumAssignment_2_1()); // InternalApplicationConfiguration.g:2131:3: ( rule__RealTypeScope__SetsSumAssignment_2_1 ) // InternalApplicationConfiguration.g:2131:4: rule__RealTypeScope__SetsSumAssignment_2_1 { pushFollow(FOLLOW_2); rule__RealTypeScope__SetsSumAssignment_2_1(); state._fsp--; } after(grammarAccess.getRealTypeScopeAccess().getSetsSumAssignment_2_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__Alternatives_2" // $ANTLR start "rule__RealTypeScope__Alternatives_3" // InternalApplicationConfiguration.g:2139:1: rule__RealTypeScope__Alternatives_3 : ( ( ( rule__RealTypeScope__NumberAssignment_3_0 ) ) | ( ( rule__RealTypeScope__NumberAssignment_3_1 ) ) | ( ( rule__RealTypeScope__NumberAssignment_3_2 ) ) ); public final void rule__RealTypeScope__Alternatives_3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2143:1: ( ( ( rule__RealTypeScope__NumberAssignment_3_0 ) ) | ( ( rule__RealTypeScope__NumberAssignment_3_1 ) ) | ( ( rule__RealTypeScope__NumberAssignment_3_2 ) ) ) int alt21=3; switch ( input.LA(1) ) { case RULE_INT: { int LA21_1 = input.LA(2); if ( (LA21_1==44) ) { alt21=2; } else if ( (LA21_1==EOF||(LA21_1>=24 && LA21_1<=25)) ) { alt21=1; } else { NoViableAltException nvae = new NoViableAltException("", 21, 1, input); throw nvae; } } break; case 54: { alt21=1; } break; case 23: { alt21=3; } break; default: NoViableAltException nvae = new NoViableAltException("", 21, 0, input); throw nvae; } switch (alt21) { case 1 : // InternalApplicationConfiguration.g:2144:2: ( ( rule__RealTypeScope__NumberAssignment_3_0 ) ) { // InternalApplicationConfiguration.g:2144:2: ( ( rule__RealTypeScope__NumberAssignment_3_0 ) ) // InternalApplicationConfiguration.g:2145:3: ( rule__RealTypeScope__NumberAssignment_3_0 ) { before(grammarAccess.getRealTypeScopeAccess().getNumberAssignment_3_0()); // InternalApplicationConfiguration.g:2146:3: ( rule__RealTypeScope__NumberAssignment_3_0 ) // InternalApplicationConfiguration.g:2146:4: rule__RealTypeScope__NumberAssignment_3_0 { pushFollow(FOLLOW_2); rule__RealTypeScope__NumberAssignment_3_0(); state._fsp--; } after(grammarAccess.getRealTypeScopeAccess().getNumberAssignment_3_0()); } } break; case 2 : // InternalApplicationConfiguration.g:2150:2: ( ( rule__RealTypeScope__NumberAssignment_3_1 ) ) { // InternalApplicationConfiguration.g:2150:2: ( ( rule__RealTypeScope__NumberAssignment_3_1 ) ) // InternalApplicationConfiguration.g:2151:3: ( rule__RealTypeScope__NumberAssignment_3_1 ) { before(grammarAccess.getRealTypeScopeAccess().getNumberAssignment_3_1()); // InternalApplicationConfiguration.g:2152:3: ( rule__RealTypeScope__NumberAssignment_3_1 ) // InternalApplicationConfiguration.g:2152:4: rule__RealTypeScope__NumberAssignment_3_1 { pushFollow(FOLLOW_2); rule__RealTypeScope__NumberAssignment_3_1(); state._fsp--; } after(grammarAccess.getRealTypeScopeAccess().getNumberAssignment_3_1()); } } break; case 3 : // InternalApplicationConfiguration.g:2156:2: ( ( rule__RealTypeScope__NumberAssignment_3_2 ) ) { // InternalApplicationConfiguration.g:2156:2: ( ( rule__RealTypeScope__NumberAssignment_3_2 ) ) // InternalApplicationConfiguration.g:2157:3: ( rule__RealTypeScope__NumberAssignment_3_2 ) { before(grammarAccess.getRealTypeScopeAccess().getNumberAssignment_3_2()); // InternalApplicationConfiguration.g:2158:3: ( rule__RealTypeScope__NumberAssignment_3_2 ) // InternalApplicationConfiguration.g:2158:4: rule__RealTypeScope__NumberAssignment_3_2 { pushFollow(FOLLOW_2); rule__RealTypeScope__NumberAssignment_3_2(); state._fsp--; } after(grammarAccess.getRealTypeScopeAccess().getNumberAssignment_3_2()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__Alternatives_3" // $ANTLR start "rule__StringTypeScope__Alternatives_2" // InternalApplicationConfiguration.g:2166:1: rule__StringTypeScope__Alternatives_2 : ( ( ( rule__StringTypeScope__SetsNewAssignment_2_0 ) ) | ( ( rule__StringTypeScope__SetsSumAssignment_2_1 ) ) ); public final void rule__StringTypeScope__Alternatives_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2170:1: ( ( ( rule__StringTypeScope__SetsNewAssignment_2_0 ) ) | ( ( rule__StringTypeScope__SetsSumAssignment_2_1 ) ) ) int alt22=2; int LA22_0 = input.LA(1); if ( (LA22_0==53) ) { alt22=1; } else if ( (LA22_0==22) ) { alt22=2; } else { NoViableAltException nvae = new NoViableAltException("", 22, 0, input); throw nvae; } switch (alt22) { case 1 : // InternalApplicationConfiguration.g:2171:2: ( ( rule__StringTypeScope__SetsNewAssignment_2_0 ) ) { // InternalApplicationConfiguration.g:2171:2: ( ( rule__StringTypeScope__SetsNewAssignment_2_0 ) ) // InternalApplicationConfiguration.g:2172:3: ( rule__StringTypeScope__SetsNewAssignment_2_0 ) { before(grammarAccess.getStringTypeScopeAccess().getSetsNewAssignment_2_0()); // InternalApplicationConfiguration.g:2173:3: ( rule__StringTypeScope__SetsNewAssignment_2_0 ) // InternalApplicationConfiguration.g:2173:4: rule__StringTypeScope__SetsNewAssignment_2_0 { pushFollow(FOLLOW_2); rule__StringTypeScope__SetsNewAssignment_2_0(); state._fsp--; } after(grammarAccess.getStringTypeScopeAccess().getSetsNewAssignment_2_0()); } } break; case 2 : // InternalApplicationConfiguration.g:2177:2: ( ( rule__StringTypeScope__SetsSumAssignment_2_1 ) ) { // InternalApplicationConfiguration.g:2177:2: ( ( rule__StringTypeScope__SetsSumAssignment_2_1 ) ) // InternalApplicationConfiguration.g:2178:3: ( rule__StringTypeScope__SetsSumAssignment_2_1 ) { before(grammarAccess.getStringTypeScopeAccess().getSetsSumAssignment_2_1()); // InternalApplicationConfiguration.g:2179:3: ( rule__StringTypeScope__SetsSumAssignment_2_1 ) // InternalApplicationConfiguration.g:2179:4: rule__StringTypeScope__SetsSumAssignment_2_1 { pushFollow(FOLLOW_2); rule__StringTypeScope__SetsSumAssignment_2_1(); state._fsp--; } after(grammarAccess.getStringTypeScopeAccess().getSetsSumAssignment_2_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__Alternatives_2" // $ANTLR start "rule__StringTypeScope__Alternatives_3" // InternalApplicationConfiguration.g:2187:1: rule__StringTypeScope__Alternatives_3 : ( ( ( rule__StringTypeScope__NumberAssignment_3_0 ) ) | ( ( rule__StringTypeScope__NumberAssignment_3_1 ) ) | ( ( rule__StringTypeScope__NumberAssignment_3_2 ) ) ); public final void rule__StringTypeScope__Alternatives_3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2191:1: ( ( ( rule__StringTypeScope__NumberAssignment_3_0 ) ) | ( ( rule__StringTypeScope__NumberAssignment_3_1 ) ) | ( ( rule__StringTypeScope__NumberAssignment_3_2 ) ) ) int alt23=3; switch ( input.LA(1) ) { case RULE_INT: { int LA23_1 = input.LA(2); if ( (LA23_1==44) ) { alt23=2; } else if ( (LA23_1==EOF||(LA23_1>=24 && LA23_1<=25)) ) { alt23=1; } else { NoViableAltException nvae = new NoViableAltException("", 23, 1, input); throw nvae; } } break; case 54: { alt23=1; } break; case 23: { alt23=3; } break; default: NoViableAltException nvae = new NoViableAltException("", 23, 0, input); throw nvae; } switch (alt23) { case 1 : // InternalApplicationConfiguration.g:2192:2: ( ( rule__StringTypeScope__NumberAssignment_3_0 ) ) { // InternalApplicationConfiguration.g:2192:2: ( ( rule__StringTypeScope__NumberAssignment_3_0 ) ) // InternalApplicationConfiguration.g:2193:3: ( rule__StringTypeScope__NumberAssignment_3_0 ) { before(grammarAccess.getStringTypeScopeAccess().getNumberAssignment_3_0()); // InternalApplicationConfiguration.g:2194:3: ( rule__StringTypeScope__NumberAssignment_3_0 ) // InternalApplicationConfiguration.g:2194:4: rule__StringTypeScope__NumberAssignment_3_0 { pushFollow(FOLLOW_2); rule__StringTypeScope__NumberAssignment_3_0(); state._fsp--; } after(grammarAccess.getStringTypeScopeAccess().getNumberAssignment_3_0()); } } break; case 2 : // InternalApplicationConfiguration.g:2198:2: ( ( rule__StringTypeScope__NumberAssignment_3_1 ) ) { // InternalApplicationConfiguration.g:2198:2: ( ( rule__StringTypeScope__NumberAssignment_3_1 ) ) // InternalApplicationConfiguration.g:2199:3: ( rule__StringTypeScope__NumberAssignment_3_1 ) { before(grammarAccess.getStringTypeScopeAccess().getNumberAssignment_3_1()); // InternalApplicationConfiguration.g:2200:3: ( rule__StringTypeScope__NumberAssignment_3_1 ) // InternalApplicationConfiguration.g:2200:4: rule__StringTypeScope__NumberAssignment_3_1 { pushFollow(FOLLOW_2); rule__StringTypeScope__NumberAssignment_3_1(); state._fsp--; } after(grammarAccess.getStringTypeScopeAccess().getNumberAssignment_3_1()); } } break; case 3 : // InternalApplicationConfiguration.g:2204:2: ( ( rule__StringTypeScope__NumberAssignment_3_2 ) ) { // InternalApplicationConfiguration.g:2204:2: ( ( rule__StringTypeScope__NumberAssignment_3_2 ) ) // InternalApplicationConfiguration.g:2205:3: ( rule__StringTypeScope__NumberAssignment_3_2 ) { before(grammarAccess.getStringTypeScopeAccess().getNumberAssignment_3_2()); // InternalApplicationConfiguration.g:2206:3: ( rule__StringTypeScope__NumberAssignment_3_2 ) // InternalApplicationConfiguration.g:2206:4: rule__StringTypeScope__NumberAssignment_3_2 { pushFollow(FOLLOW_2); rule__StringTypeScope__NumberAssignment_3_2(); state._fsp--; } after(grammarAccess.getStringTypeScopeAccess().getNumberAssignment_3_2()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__Alternatives_3" // $ANTLR start "rule__ExactNumber__Alternatives" // InternalApplicationConfiguration.g:2214:1: rule__ExactNumber__Alternatives : ( ( ( rule__ExactNumber__ExactNumberAssignment_0 ) ) | ( ( rule__ExactNumber__ExactUnlimitedAssignment_1 ) ) ); public final void rule__ExactNumber__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2218:1: ( ( ( rule__ExactNumber__ExactNumberAssignment_0 ) ) | ( ( rule__ExactNumber__ExactUnlimitedAssignment_1 ) ) ) int alt24=2; int LA24_0 = input.LA(1); if ( (LA24_0==RULE_INT) ) { alt24=1; } else if ( (LA24_0==54) ) { alt24=2; } else { NoViableAltException nvae = new NoViableAltException("", 24, 0, input); throw nvae; } switch (alt24) { case 1 : // InternalApplicationConfiguration.g:2219:2: ( ( rule__ExactNumber__ExactNumberAssignment_0 ) ) { // InternalApplicationConfiguration.g:2219:2: ( ( rule__ExactNumber__ExactNumberAssignment_0 ) ) // InternalApplicationConfiguration.g:2220:3: ( rule__ExactNumber__ExactNumberAssignment_0 ) { before(grammarAccess.getExactNumberAccess().getExactNumberAssignment_0()); // InternalApplicationConfiguration.g:2221:3: ( rule__ExactNumber__ExactNumberAssignment_0 ) // InternalApplicationConfiguration.g:2221:4: rule__ExactNumber__ExactNumberAssignment_0 { pushFollow(FOLLOW_2); rule__ExactNumber__ExactNumberAssignment_0(); state._fsp--; } after(grammarAccess.getExactNumberAccess().getExactNumberAssignment_0()); } } break; case 2 : // InternalApplicationConfiguration.g:2225:2: ( ( rule__ExactNumber__ExactUnlimitedAssignment_1 ) ) { // InternalApplicationConfiguration.g:2225:2: ( ( rule__ExactNumber__ExactUnlimitedAssignment_1 ) ) // InternalApplicationConfiguration.g:2226:3: ( rule__ExactNumber__ExactUnlimitedAssignment_1 ) { before(grammarAccess.getExactNumberAccess().getExactUnlimitedAssignment_1()); // InternalApplicationConfiguration.g:2227:3: ( rule__ExactNumber__ExactUnlimitedAssignment_1 ) // InternalApplicationConfiguration.g:2227:4: rule__ExactNumber__ExactUnlimitedAssignment_1 { pushFollow(FOLLOW_2); rule__ExactNumber__ExactUnlimitedAssignment_1(); state._fsp--; } after(grammarAccess.getExactNumberAccess().getExactUnlimitedAssignment_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ExactNumber__Alternatives" // $ANTLR start "rule__IntervallNumber__Alternatives_2" // InternalApplicationConfiguration.g:2235:1: rule__IntervallNumber__Alternatives_2 : ( ( ( rule__IntervallNumber__MaxNumberAssignment_2_0 ) ) | ( ( rule__IntervallNumber__MaxUnlimitedAssignment_2_1 ) ) ); public final void rule__IntervallNumber__Alternatives_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2239:1: ( ( ( rule__IntervallNumber__MaxNumberAssignment_2_0 ) ) | ( ( rule__IntervallNumber__MaxUnlimitedAssignment_2_1 ) ) ) int alt25=2; int LA25_0 = input.LA(1); if ( (LA25_0==RULE_INT) ) { alt25=1; } else if ( (LA25_0==54) ) { alt25=2; } else { NoViableAltException nvae = new NoViableAltException("", 25, 0, input); throw nvae; } switch (alt25) { case 1 : // InternalApplicationConfiguration.g:2240:2: ( ( rule__IntervallNumber__MaxNumberAssignment_2_0 ) ) { // InternalApplicationConfiguration.g:2240:2: ( ( rule__IntervallNumber__MaxNumberAssignment_2_0 ) ) // InternalApplicationConfiguration.g:2241:3: ( rule__IntervallNumber__MaxNumberAssignment_2_0 ) { before(grammarAccess.getIntervallNumberAccess().getMaxNumberAssignment_2_0()); // InternalApplicationConfiguration.g:2242:3: ( rule__IntervallNumber__MaxNumberAssignment_2_0 ) // InternalApplicationConfiguration.g:2242:4: rule__IntervallNumber__MaxNumberAssignment_2_0 { pushFollow(FOLLOW_2); rule__IntervallNumber__MaxNumberAssignment_2_0(); state._fsp--; } after(grammarAccess.getIntervallNumberAccess().getMaxNumberAssignment_2_0()); } } break; case 2 : // InternalApplicationConfiguration.g:2246:2: ( ( rule__IntervallNumber__MaxUnlimitedAssignment_2_1 ) ) { // InternalApplicationConfiguration.g:2246:2: ( ( rule__IntervallNumber__MaxUnlimitedAssignment_2_1 ) ) // InternalApplicationConfiguration.g:2247:3: ( rule__IntervallNumber__MaxUnlimitedAssignment_2_1 ) { before(grammarAccess.getIntervallNumberAccess().getMaxUnlimitedAssignment_2_1()); // InternalApplicationConfiguration.g:2248:3: ( rule__IntervallNumber__MaxUnlimitedAssignment_2_1 ) // InternalApplicationConfiguration.g:2248:4: rule__IntervallNumber__MaxUnlimitedAssignment_2_1 { pushFollow(FOLLOW_2); rule__IntervallNumber__MaxUnlimitedAssignment_2_1(); state._fsp--; } after(grammarAccess.getIntervallNumberAccess().getMaxUnlimitedAssignment_2_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntervallNumber__Alternatives_2" // $ANTLR start "rule__Scope__Alternatives" // InternalApplicationConfiguration.g:2256:1: rule__Scope__Alternatives : ( ( ruleScopeSpecification ) | ( ruleScopeReference ) ); public final void rule__Scope__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2260:1: ( ( ruleScopeSpecification ) | ( ruleScopeReference ) ) int alt26=2; int LA26_0 = input.LA(1); if ( (LA26_0==23) ) { alt26=1; } else if ( (LA26_0==RULE_ID) ) { alt26=2; } else { NoViableAltException nvae = new NoViableAltException("", 26, 0, input); throw nvae; } switch (alt26) { case 1 : // InternalApplicationConfiguration.g:2261:2: ( ruleScopeSpecification ) { // InternalApplicationConfiguration.g:2261:2: ( ruleScopeSpecification ) // InternalApplicationConfiguration.g:2262:3: ruleScopeSpecification { before(grammarAccess.getScopeAccess().getScopeSpecificationParserRuleCall_0()); pushFollow(FOLLOW_2); ruleScopeSpecification(); state._fsp--; after(grammarAccess.getScopeAccess().getScopeSpecificationParserRuleCall_0()); } } break; case 2 : // InternalApplicationConfiguration.g:2267:2: ( ruleScopeReference ) { // InternalApplicationConfiguration.g:2267:2: ( ruleScopeReference ) // InternalApplicationConfiguration.g:2268:3: ruleScopeReference { before(grammarAccess.getScopeAccess().getScopeReferenceParserRuleCall_1()); pushFollow(FOLLOW_2); ruleScopeReference(); state._fsp--; after(grammarAccess.getScopeAccess().getScopeReferenceParserRuleCall_1()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__Scope__Alternatives" // $ANTLR start "rule__DocumentLevelSpecification__Alternatives" // InternalApplicationConfiguration.g:2277:1: rule__DocumentLevelSpecification__Alternatives : ( ( ( 'none' ) ) | ( ( 'normal' ) ) | ( ( 'full' ) ) ); public final void rule__DocumentLevelSpecification__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2281:1: ( ( ( 'none' ) ) | ( ( 'normal' ) ) | ( ( 'full' ) ) ) int alt27=3; switch ( input.LA(1) ) { case 11: { alt27=1; } break; case 12: { alt27=2; } break; case 13: { alt27=3; } break; default: NoViableAltException nvae = new NoViableAltException("", 27, 0, input); throw nvae; } switch (alt27) { case 1 : // InternalApplicationConfiguration.g:2282:2: ( ( 'none' ) ) { // InternalApplicationConfiguration.g:2282:2: ( ( 'none' ) ) // InternalApplicationConfiguration.g:2283:3: ( 'none' ) { before(grammarAccess.getDocumentLevelSpecificationAccess().getNoneEnumLiteralDeclaration_0()); // InternalApplicationConfiguration.g:2284:3: ( 'none' ) // InternalApplicationConfiguration.g:2284:4: 'none' { match(input,11,FOLLOW_2); } after(grammarAccess.getDocumentLevelSpecificationAccess().getNoneEnumLiteralDeclaration_0()); } } break; case 2 : // InternalApplicationConfiguration.g:2288:2: ( ( 'normal' ) ) { // InternalApplicationConfiguration.g:2288:2: ( ( 'normal' ) ) // InternalApplicationConfiguration.g:2289:3: ( 'normal' ) { before(grammarAccess.getDocumentLevelSpecificationAccess().getNormalEnumLiteralDeclaration_1()); // InternalApplicationConfiguration.g:2290:3: ( 'normal' ) // InternalApplicationConfiguration.g:2290:4: 'normal' { match(input,12,FOLLOW_2); } after(grammarAccess.getDocumentLevelSpecificationAccess().getNormalEnumLiteralDeclaration_1()); } } break; case 3 : // InternalApplicationConfiguration.g:2294:2: ( ( 'full' ) ) { // InternalApplicationConfiguration.g:2294:2: ( ( 'full' ) ) // InternalApplicationConfiguration.g:2295:3: ( 'full' ) { before(grammarAccess.getDocumentLevelSpecificationAccess().getFullEnumLiteralDeclaration_2()); // InternalApplicationConfiguration.g:2296:3: ( 'full' ) // InternalApplicationConfiguration.g:2296:4: 'full' { match(input,13,FOLLOW_2); } after(grammarAccess.getDocumentLevelSpecificationAccess().getFullEnumLiteralDeclaration_2()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__DocumentLevelSpecification__Alternatives" // $ANTLR start "rule__Solver__Alternatives" // InternalApplicationConfiguration.g:2304:1: rule__Solver__Alternatives : ( ( ( 'SMTSolver' ) ) | ( ( 'AlloySolver' ) ) | ( ( 'ViatraSolver' ) ) ); public final void rule__Solver__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2308:1: ( ( ( 'SMTSolver' ) ) | ( ( 'AlloySolver' ) ) | ( ( 'ViatraSolver' ) ) ) int alt28=3; switch ( input.LA(1) ) { case 14: { alt28=1; } break; case 15: { alt28=2; } break; case 16: { alt28=3; } break; default: NoViableAltException nvae = new NoViableAltException("", 28, 0, input); throw nvae; } switch (alt28) { case 1 : // InternalApplicationConfiguration.g:2309:2: ( ( 'SMTSolver' ) ) { // InternalApplicationConfiguration.g:2309:2: ( ( 'SMTSolver' ) ) // InternalApplicationConfiguration.g:2310:3: ( 'SMTSolver' ) { before(grammarAccess.getSolverAccess().getSMTSolverEnumLiteralDeclaration_0()); // InternalApplicationConfiguration.g:2311:3: ( 'SMTSolver' ) // InternalApplicationConfiguration.g:2311:4: 'SMTSolver' { match(input,14,FOLLOW_2); } after(grammarAccess.getSolverAccess().getSMTSolverEnumLiteralDeclaration_0()); } } break; case 2 : // InternalApplicationConfiguration.g:2315:2: ( ( 'AlloySolver' ) ) { // InternalApplicationConfiguration.g:2315:2: ( ( 'AlloySolver' ) ) // InternalApplicationConfiguration.g:2316:3: ( 'AlloySolver' ) { before(grammarAccess.getSolverAccess().getAlloySolverEnumLiteralDeclaration_1()); // InternalApplicationConfiguration.g:2317:3: ( 'AlloySolver' ) // InternalApplicationConfiguration.g:2317:4: 'AlloySolver' { match(input,15,FOLLOW_2); } after(grammarAccess.getSolverAccess().getAlloySolverEnumLiteralDeclaration_1()); } } break; case 3 : // InternalApplicationConfiguration.g:2321:2: ( ( 'ViatraSolver' ) ) { // InternalApplicationConfiguration.g:2321:2: ( ( 'ViatraSolver' ) ) // InternalApplicationConfiguration.g:2322:3: ( 'ViatraSolver' ) { before(grammarAccess.getSolverAccess().getViatraSolverEnumLiteralDeclaration_2()); // InternalApplicationConfiguration.g:2323:3: ( 'ViatraSolver' ) // InternalApplicationConfiguration.g:2323:4: 'ViatraSolver' { match(input,16,FOLLOW_2); } after(grammarAccess.getSolverAccess().getViatraSolverEnumLiteralDeclaration_2()); } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__Solver__Alternatives" // $ANTLR start "rule__ConfigurationScript__Group__0" // InternalApplicationConfiguration.g:2331:1: rule__ConfigurationScript__Group__0 : rule__ConfigurationScript__Group__0__Impl rule__ConfigurationScript__Group__1 ; public final void rule__ConfigurationScript__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2335:1: ( rule__ConfigurationScript__Group__0__Impl rule__ConfigurationScript__Group__1 ) // InternalApplicationConfiguration.g:2336:2: rule__ConfigurationScript__Group__0__Impl rule__ConfigurationScript__Group__1 { pushFollow(FOLLOW_3); rule__ConfigurationScript__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ConfigurationScript__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigurationScript__Group__0" // $ANTLR start "rule__ConfigurationScript__Group__0__Impl" // InternalApplicationConfiguration.g:2343:1: rule__ConfigurationScript__Group__0__Impl : ( ( rule__ConfigurationScript__ImportsAssignment_0 )* ) ; public final void rule__ConfigurationScript__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2347:1: ( ( ( rule__ConfigurationScript__ImportsAssignment_0 )* ) ) // InternalApplicationConfiguration.g:2348:1: ( ( rule__ConfigurationScript__ImportsAssignment_0 )* ) { // InternalApplicationConfiguration.g:2348:1: ( ( rule__ConfigurationScript__ImportsAssignment_0 )* ) // InternalApplicationConfiguration.g:2349:2: ( rule__ConfigurationScript__ImportsAssignment_0 )* { before(grammarAccess.getConfigurationScriptAccess().getImportsAssignment_0()); // InternalApplicationConfiguration.g:2350:2: ( rule__ConfigurationScript__ImportsAssignment_0 )* loop29: do { int alt29=2; int LA29_0 = input.LA(1); if ( (LA29_0==18) ) { alt29=1; } switch (alt29) { case 1 : // InternalApplicationConfiguration.g:2350:3: rule__ConfigurationScript__ImportsAssignment_0 { pushFollow(FOLLOW_4); rule__ConfigurationScript__ImportsAssignment_0(); state._fsp--; } break; default : break loop29; } } while (true); after(grammarAccess.getConfigurationScriptAccess().getImportsAssignment_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigurationScript__Group__0__Impl" // $ANTLR start "rule__ConfigurationScript__Group__1" // InternalApplicationConfiguration.g:2358:1: rule__ConfigurationScript__Group__1 : rule__ConfigurationScript__Group__1__Impl ; public final void rule__ConfigurationScript__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2362:1: ( rule__ConfigurationScript__Group__1__Impl ) // InternalApplicationConfiguration.g:2363:2: rule__ConfigurationScript__Group__1__Impl { pushFollow(FOLLOW_2); rule__ConfigurationScript__Group__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigurationScript__Group__1" // $ANTLR start "rule__ConfigurationScript__Group__1__Impl" // InternalApplicationConfiguration.g:2369:1: rule__ConfigurationScript__Group__1__Impl : ( ( rule__ConfigurationScript__CommandsAssignment_1 )* ) ; public final void rule__ConfigurationScript__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2373:1: ( ( ( rule__ConfigurationScript__CommandsAssignment_1 )* ) ) // InternalApplicationConfiguration.g:2374:1: ( ( rule__ConfigurationScript__CommandsAssignment_1 )* ) { // InternalApplicationConfiguration.g:2374:1: ( ( rule__ConfigurationScript__CommandsAssignment_1 )* ) // InternalApplicationConfiguration.g:2375:2: ( rule__ConfigurationScript__CommandsAssignment_1 )* { before(grammarAccess.getConfigurationScriptAccess().getCommandsAssignment_1()); // InternalApplicationConfiguration.g:2376:2: ( rule__ConfigurationScript__CommandsAssignment_1 )* loop30: do { int alt30=2; int LA30_0 = input.LA(1); if ( (LA30_0==21||LA30_0==29||(LA30_0>=31 && LA30_0<=33)||(LA30_0>=45 && LA30_0<=46)) ) { alt30=1; } switch (alt30) { case 1 : // InternalApplicationConfiguration.g:2376:3: rule__ConfigurationScript__CommandsAssignment_1 { pushFollow(FOLLOW_5); rule__ConfigurationScript__CommandsAssignment_1(); state._fsp--; } break; default : break loop30; } } while (true); after(grammarAccess.getConfigurationScriptAccess().getCommandsAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigurationScript__Group__1__Impl" // $ANTLR start "rule__QualifiedName__Group__0" // InternalApplicationConfiguration.g:2385:1: rule__QualifiedName__Group__0 : rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 ; public final void rule__QualifiedName__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2389:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 ) // InternalApplicationConfiguration.g:2390:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 { pushFollow(FOLLOW_6); rule__QualifiedName__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__QualifiedName__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__QualifiedName__Group__0" // $ANTLR start "rule__QualifiedName__Group__0__Impl" // InternalApplicationConfiguration.g:2397:1: rule__QualifiedName__Group__0__Impl : ( RULE_ID ) ; public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2401:1: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:2402:1: ( RULE_ID ) { // InternalApplicationConfiguration.g:2402:1: ( RULE_ID ) // InternalApplicationConfiguration.g:2403:2: RULE_ID { before(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__QualifiedName__Group__0__Impl" // $ANTLR start "rule__QualifiedName__Group__1" // InternalApplicationConfiguration.g:2412:1: rule__QualifiedName__Group__1 : rule__QualifiedName__Group__1__Impl ; public final void rule__QualifiedName__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2416:1: ( rule__QualifiedName__Group__1__Impl ) // InternalApplicationConfiguration.g:2417:2: rule__QualifiedName__Group__1__Impl { pushFollow(FOLLOW_2); rule__QualifiedName__Group__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__QualifiedName__Group__1" // $ANTLR start "rule__QualifiedName__Group__1__Impl" // InternalApplicationConfiguration.g:2423:1: rule__QualifiedName__Group__1__Impl : ( ( rule__QualifiedName__Group_1__0 )* ) ; public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2427:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) ) // InternalApplicationConfiguration.g:2428:1: ( ( rule__QualifiedName__Group_1__0 )* ) { // InternalApplicationConfiguration.g:2428:1: ( ( rule__QualifiedName__Group_1__0 )* ) // InternalApplicationConfiguration.g:2429:2: ( rule__QualifiedName__Group_1__0 )* { before(grammarAccess.getQualifiedNameAccess().getGroup_1()); // InternalApplicationConfiguration.g:2430:2: ( rule__QualifiedName__Group_1__0 )* loop31: do { int alt31=2; int LA31_0 = input.LA(1); if ( (LA31_0==17) ) { alt31=1; } switch (alt31) { case 1 : // InternalApplicationConfiguration.g:2430:3: rule__QualifiedName__Group_1__0 { pushFollow(FOLLOW_7); rule__QualifiedName__Group_1__0(); state._fsp--; } break; default : break loop31; } } while (true); after(grammarAccess.getQualifiedNameAccess().getGroup_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__QualifiedName__Group__1__Impl" // $ANTLR start "rule__QualifiedName__Group_1__0" // InternalApplicationConfiguration.g:2439:1: rule__QualifiedName__Group_1__0 : rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 ; public final void rule__QualifiedName__Group_1__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2443:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 ) // InternalApplicationConfiguration.g:2444:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 { pushFollow(FOLLOW_8); rule__QualifiedName__Group_1__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__QualifiedName__Group_1__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__QualifiedName__Group_1__0" // $ANTLR start "rule__QualifiedName__Group_1__0__Impl" // InternalApplicationConfiguration.g:2451:1: rule__QualifiedName__Group_1__0__Impl : ( '.' ) ; public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2455:1: ( ( '.' ) ) // InternalApplicationConfiguration.g:2456:1: ( '.' ) { // InternalApplicationConfiguration.g:2456:1: ( '.' ) // InternalApplicationConfiguration.g:2457:2: '.' { before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); match(input,17,FOLLOW_2); after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__QualifiedName__Group_1__0__Impl" // $ANTLR start "rule__QualifiedName__Group_1__1" // InternalApplicationConfiguration.g:2466:1: rule__QualifiedName__Group_1__1 : rule__QualifiedName__Group_1__1__Impl ; public final void rule__QualifiedName__Group_1__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2470:1: ( rule__QualifiedName__Group_1__1__Impl ) // InternalApplicationConfiguration.g:2471:2: rule__QualifiedName__Group_1__1__Impl { pushFollow(FOLLOW_2); rule__QualifiedName__Group_1__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__QualifiedName__Group_1__1" // $ANTLR start "rule__QualifiedName__Group_1__1__Impl" // InternalApplicationConfiguration.g:2477:1: rule__QualifiedName__Group_1__1__Impl : ( RULE_ID ) ; public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2481:1: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:2482:1: ( RULE_ID ) { // InternalApplicationConfiguration.g:2482:1: ( RULE_ID ) // InternalApplicationConfiguration.g:2483:2: RULE_ID { before(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__QualifiedName__Group_1__1__Impl" // $ANTLR start "rule__EPackageImport__Group__0" // InternalApplicationConfiguration.g:2493:1: rule__EPackageImport__Group__0 : rule__EPackageImport__Group__0__Impl rule__EPackageImport__Group__1 ; public final void rule__EPackageImport__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2497:1: ( rule__EPackageImport__Group__0__Impl rule__EPackageImport__Group__1 ) // InternalApplicationConfiguration.g:2498:2: rule__EPackageImport__Group__0__Impl rule__EPackageImport__Group__1 { pushFollow(FOLLOW_9); rule__EPackageImport__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__EPackageImport__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__EPackageImport__Group__0" // $ANTLR start "rule__EPackageImport__Group__0__Impl" // InternalApplicationConfiguration.g:2505:1: rule__EPackageImport__Group__0__Impl : ( 'import' ) ; public final void rule__EPackageImport__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2509:1: ( ( 'import' ) ) // InternalApplicationConfiguration.g:2510:1: ( 'import' ) { // InternalApplicationConfiguration.g:2510:1: ( 'import' ) // InternalApplicationConfiguration.g:2511:2: 'import' { before(grammarAccess.getEPackageImportAccess().getImportKeyword_0()); match(input,18,FOLLOW_2); after(grammarAccess.getEPackageImportAccess().getImportKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__EPackageImport__Group__0__Impl" // $ANTLR start "rule__EPackageImport__Group__1" // InternalApplicationConfiguration.g:2520:1: rule__EPackageImport__Group__1 : rule__EPackageImport__Group__1__Impl rule__EPackageImport__Group__2 ; public final void rule__EPackageImport__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2524:1: ( rule__EPackageImport__Group__1__Impl rule__EPackageImport__Group__2 ) // InternalApplicationConfiguration.g:2525:2: rule__EPackageImport__Group__1__Impl rule__EPackageImport__Group__2 { pushFollow(FOLLOW_10); rule__EPackageImport__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__EPackageImport__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__EPackageImport__Group__1" // $ANTLR start "rule__EPackageImport__Group__1__Impl" // InternalApplicationConfiguration.g:2532:1: rule__EPackageImport__Group__1__Impl : ( 'epackage' ) ; public final void rule__EPackageImport__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2536:1: ( ( 'epackage' ) ) // InternalApplicationConfiguration.g:2537:1: ( 'epackage' ) { // InternalApplicationConfiguration.g:2537:1: ( 'epackage' ) // InternalApplicationConfiguration.g:2538:2: 'epackage' { before(grammarAccess.getEPackageImportAccess().getEpackageKeyword_1()); match(input,19,FOLLOW_2); after(grammarAccess.getEPackageImportAccess().getEpackageKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__EPackageImport__Group__1__Impl" // $ANTLR start "rule__EPackageImport__Group__2" // InternalApplicationConfiguration.g:2547:1: rule__EPackageImport__Group__2 : rule__EPackageImport__Group__2__Impl ; public final void rule__EPackageImport__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2551:1: ( rule__EPackageImport__Group__2__Impl ) // InternalApplicationConfiguration.g:2552:2: rule__EPackageImport__Group__2__Impl { pushFollow(FOLLOW_2); rule__EPackageImport__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__EPackageImport__Group__2" // $ANTLR start "rule__EPackageImport__Group__2__Impl" // InternalApplicationConfiguration.g:2558:1: rule__EPackageImport__Group__2__Impl : ( ( rule__EPackageImport__ImportedPackageAssignment_2 ) ) ; public final void rule__EPackageImport__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2562:1: ( ( ( rule__EPackageImport__ImportedPackageAssignment_2 ) ) ) // InternalApplicationConfiguration.g:2563:1: ( ( rule__EPackageImport__ImportedPackageAssignment_2 ) ) { // InternalApplicationConfiguration.g:2563:1: ( ( rule__EPackageImport__ImportedPackageAssignment_2 ) ) // InternalApplicationConfiguration.g:2564:2: ( rule__EPackageImport__ImportedPackageAssignment_2 ) { before(grammarAccess.getEPackageImportAccess().getImportedPackageAssignment_2()); // InternalApplicationConfiguration.g:2565:2: ( rule__EPackageImport__ImportedPackageAssignment_2 ) // InternalApplicationConfiguration.g:2565:3: rule__EPackageImport__ImportedPackageAssignment_2 { pushFollow(FOLLOW_2); rule__EPackageImport__ImportedPackageAssignment_2(); state._fsp--; } after(grammarAccess.getEPackageImportAccess().getImportedPackageAssignment_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__EPackageImport__Group__2__Impl" // $ANTLR start "rule__ViatraImport__Group__0" // InternalApplicationConfiguration.g:2574:1: rule__ViatraImport__Group__0 : rule__ViatraImport__Group__0__Impl rule__ViatraImport__Group__1 ; public final void rule__ViatraImport__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2578:1: ( rule__ViatraImport__Group__0__Impl rule__ViatraImport__Group__1 ) // InternalApplicationConfiguration.g:2579:2: rule__ViatraImport__Group__0__Impl rule__ViatraImport__Group__1 { pushFollow(FOLLOW_11); rule__ViatraImport__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ViatraImport__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ViatraImport__Group__0" // $ANTLR start "rule__ViatraImport__Group__0__Impl" // InternalApplicationConfiguration.g:2586:1: rule__ViatraImport__Group__0__Impl : ( 'import' ) ; public final void rule__ViatraImport__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2590:1: ( ( 'import' ) ) // InternalApplicationConfiguration.g:2591:1: ( 'import' ) { // InternalApplicationConfiguration.g:2591:1: ( 'import' ) // InternalApplicationConfiguration.g:2592:2: 'import' { before(grammarAccess.getViatraImportAccess().getImportKeyword_0()); match(input,18,FOLLOW_2); after(grammarAccess.getViatraImportAccess().getImportKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ViatraImport__Group__0__Impl" // $ANTLR start "rule__ViatraImport__Group__1" // InternalApplicationConfiguration.g:2601:1: rule__ViatraImport__Group__1 : rule__ViatraImport__Group__1__Impl rule__ViatraImport__Group__2 ; public final void rule__ViatraImport__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2605:1: ( rule__ViatraImport__Group__1__Impl rule__ViatraImport__Group__2 ) // InternalApplicationConfiguration.g:2606:2: rule__ViatraImport__Group__1__Impl rule__ViatraImport__Group__2 { pushFollow(FOLLOW_10); rule__ViatraImport__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ViatraImport__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ViatraImport__Group__1" // $ANTLR start "rule__ViatraImport__Group__1__Impl" // InternalApplicationConfiguration.g:2613:1: rule__ViatraImport__Group__1__Impl : ( 'viatra' ) ; public final void rule__ViatraImport__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2617:1: ( ( 'viatra' ) ) // InternalApplicationConfiguration.g:2618:1: ( 'viatra' ) { // InternalApplicationConfiguration.g:2618:1: ( 'viatra' ) // InternalApplicationConfiguration.g:2619:2: 'viatra' { before(grammarAccess.getViatraImportAccess().getViatraKeyword_1()); match(input,20,FOLLOW_2); after(grammarAccess.getViatraImportAccess().getViatraKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ViatraImport__Group__1__Impl" // $ANTLR start "rule__ViatraImport__Group__2" // InternalApplicationConfiguration.g:2628:1: rule__ViatraImport__Group__2 : rule__ViatraImport__Group__2__Impl ; public final void rule__ViatraImport__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2632:1: ( rule__ViatraImport__Group__2__Impl ) // InternalApplicationConfiguration.g:2633:2: rule__ViatraImport__Group__2__Impl { pushFollow(FOLLOW_2); rule__ViatraImport__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ViatraImport__Group__2" // $ANTLR start "rule__ViatraImport__Group__2__Impl" // InternalApplicationConfiguration.g:2639:1: rule__ViatraImport__Group__2__Impl : ( ( rule__ViatraImport__ImportedViatraAssignment_2 ) ) ; public final void rule__ViatraImport__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2643:1: ( ( ( rule__ViatraImport__ImportedViatraAssignment_2 ) ) ) // InternalApplicationConfiguration.g:2644:1: ( ( rule__ViatraImport__ImportedViatraAssignment_2 ) ) { // InternalApplicationConfiguration.g:2644:1: ( ( rule__ViatraImport__ImportedViatraAssignment_2 ) ) // InternalApplicationConfiguration.g:2645:2: ( rule__ViatraImport__ImportedViatraAssignment_2 ) { before(grammarAccess.getViatraImportAccess().getImportedViatraAssignment_2()); // InternalApplicationConfiguration.g:2646:2: ( rule__ViatraImport__ImportedViatraAssignment_2 ) // InternalApplicationConfiguration.g:2646:3: rule__ViatraImport__ImportedViatraAssignment_2 { pushFollow(FOLLOW_2); rule__ViatraImport__ImportedViatraAssignment_2(); state._fsp--; } after(grammarAccess.getViatraImportAccess().getImportedViatraAssignment_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ViatraImport__Group__2__Impl" // $ANTLR start "rule__FileDeclaration__Group__0" // InternalApplicationConfiguration.g:2655:1: rule__FileDeclaration__Group__0 : rule__FileDeclaration__Group__0__Impl rule__FileDeclaration__Group__1 ; public final void rule__FileDeclaration__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2659:1: ( rule__FileDeclaration__Group__0__Impl rule__FileDeclaration__Group__1 ) // InternalApplicationConfiguration.g:2660:2: rule__FileDeclaration__Group__0__Impl rule__FileDeclaration__Group__1 { pushFollow(FOLLOW_8); rule__FileDeclaration__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__FileDeclaration__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FileDeclaration__Group__0" // $ANTLR start "rule__FileDeclaration__Group__0__Impl" // InternalApplicationConfiguration.g:2667:1: rule__FileDeclaration__Group__0__Impl : ( 'file' ) ; public final void rule__FileDeclaration__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2671:1: ( ( 'file' ) ) // InternalApplicationConfiguration.g:2672:1: ( 'file' ) { // InternalApplicationConfiguration.g:2672:1: ( 'file' ) // InternalApplicationConfiguration.g:2673:2: 'file' { before(grammarAccess.getFileDeclarationAccess().getFileKeyword_0()); match(input,21,FOLLOW_2); after(grammarAccess.getFileDeclarationAccess().getFileKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FileDeclaration__Group__0__Impl" // $ANTLR start "rule__FileDeclaration__Group__1" // InternalApplicationConfiguration.g:2682:1: rule__FileDeclaration__Group__1 : rule__FileDeclaration__Group__1__Impl rule__FileDeclaration__Group__2 ; public final void rule__FileDeclaration__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2686:1: ( rule__FileDeclaration__Group__1__Impl rule__FileDeclaration__Group__2 ) // InternalApplicationConfiguration.g:2687:2: rule__FileDeclaration__Group__1__Impl rule__FileDeclaration__Group__2 { pushFollow(FOLLOW_12); rule__FileDeclaration__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__FileDeclaration__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FileDeclaration__Group__1" // $ANTLR start "rule__FileDeclaration__Group__1__Impl" // InternalApplicationConfiguration.g:2694:1: rule__FileDeclaration__Group__1__Impl : ( ( rule__FileDeclaration__NameAssignment_1 ) ) ; public final void rule__FileDeclaration__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2698:1: ( ( ( rule__FileDeclaration__NameAssignment_1 ) ) ) // InternalApplicationConfiguration.g:2699:1: ( ( rule__FileDeclaration__NameAssignment_1 ) ) { // InternalApplicationConfiguration.g:2699:1: ( ( rule__FileDeclaration__NameAssignment_1 ) ) // InternalApplicationConfiguration.g:2700:2: ( rule__FileDeclaration__NameAssignment_1 ) { before(grammarAccess.getFileDeclarationAccess().getNameAssignment_1()); // InternalApplicationConfiguration.g:2701:2: ( rule__FileDeclaration__NameAssignment_1 ) // InternalApplicationConfiguration.g:2701:3: rule__FileDeclaration__NameAssignment_1 { pushFollow(FOLLOW_2); rule__FileDeclaration__NameAssignment_1(); state._fsp--; } after(grammarAccess.getFileDeclarationAccess().getNameAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FileDeclaration__Group__1__Impl" // $ANTLR start "rule__FileDeclaration__Group__2" // InternalApplicationConfiguration.g:2709:1: rule__FileDeclaration__Group__2 : rule__FileDeclaration__Group__2__Impl rule__FileDeclaration__Group__3 ; public final void rule__FileDeclaration__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2713:1: ( rule__FileDeclaration__Group__2__Impl rule__FileDeclaration__Group__3 ) // InternalApplicationConfiguration.g:2714:2: rule__FileDeclaration__Group__2__Impl rule__FileDeclaration__Group__3 { pushFollow(FOLLOW_10); rule__FileDeclaration__Group__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__FileDeclaration__Group__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FileDeclaration__Group__2" // $ANTLR start "rule__FileDeclaration__Group__2__Impl" // InternalApplicationConfiguration.g:2721:1: rule__FileDeclaration__Group__2__Impl : ( '=' ) ; public final void rule__FileDeclaration__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2725:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:2726:1: ( '=' ) { // InternalApplicationConfiguration.g:2726:1: ( '=' ) // InternalApplicationConfiguration.g:2727:2: '=' { before(grammarAccess.getFileDeclarationAccess().getEqualsSignKeyword_2()); match(input,22,FOLLOW_2); after(grammarAccess.getFileDeclarationAccess().getEqualsSignKeyword_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FileDeclaration__Group__2__Impl" // $ANTLR start "rule__FileDeclaration__Group__3" // InternalApplicationConfiguration.g:2736:1: rule__FileDeclaration__Group__3 : rule__FileDeclaration__Group__3__Impl ; public final void rule__FileDeclaration__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2740:1: ( rule__FileDeclaration__Group__3__Impl ) // InternalApplicationConfiguration.g:2741:2: rule__FileDeclaration__Group__3__Impl { pushFollow(FOLLOW_2); rule__FileDeclaration__Group__3__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FileDeclaration__Group__3" // $ANTLR start "rule__FileDeclaration__Group__3__Impl" // InternalApplicationConfiguration.g:2747:1: rule__FileDeclaration__Group__3__Impl : ( ( rule__FileDeclaration__SpecificationAssignment_3 ) ) ; public final void rule__FileDeclaration__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2751:1: ( ( ( rule__FileDeclaration__SpecificationAssignment_3 ) ) ) // InternalApplicationConfiguration.g:2752:1: ( ( rule__FileDeclaration__SpecificationAssignment_3 ) ) { // InternalApplicationConfiguration.g:2752:1: ( ( rule__FileDeclaration__SpecificationAssignment_3 ) ) // InternalApplicationConfiguration.g:2753:2: ( rule__FileDeclaration__SpecificationAssignment_3 ) { before(grammarAccess.getFileDeclarationAccess().getSpecificationAssignment_3()); // InternalApplicationConfiguration.g:2754:2: ( rule__FileDeclaration__SpecificationAssignment_3 ) // InternalApplicationConfiguration.g:2754:3: rule__FileDeclaration__SpecificationAssignment_3 { pushFollow(FOLLOW_2); rule__FileDeclaration__SpecificationAssignment_3(); state._fsp--; } after(grammarAccess.getFileDeclarationAccess().getSpecificationAssignment_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FileDeclaration__Group__3__Impl" // $ANTLR start "rule__MetamodelSpecification__Group__0" // InternalApplicationConfiguration.g:2763:1: rule__MetamodelSpecification__Group__0 : rule__MetamodelSpecification__Group__0__Impl rule__MetamodelSpecification__Group__1 ; public final void rule__MetamodelSpecification__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2767:1: ( rule__MetamodelSpecification__Group__0__Impl rule__MetamodelSpecification__Group__1 ) // InternalApplicationConfiguration.g:2768:2: rule__MetamodelSpecification__Group__0__Impl rule__MetamodelSpecification__Group__1 { pushFollow(FOLLOW_13); rule__MetamodelSpecification__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__MetamodelSpecification__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelSpecification__Group__0" // $ANTLR start "rule__MetamodelSpecification__Group__0__Impl" // InternalApplicationConfiguration.g:2775:1: rule__MetamodelSpecification__Group__0__Impl : ( '{' ) ; public final void rule__MetamodelSpecification__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2779:1: ( ( '{' ) ) // InternalApplicationConfiguration.g:2780:1: ( '{' ) { // InternalApplicationConfiguration.g:2780:1: ( '{' ) // InternalApplicationConfiguration.g:2781:2: '{' { before(grammarAccess.getMetamodelSpecificationAccess().getLeftCurlyBracketKeyword_0()); match(input,23,FOLLOW_2); after(grammarAccess.getMetamodelSpecificationAccess().getLeftCurlyBracketKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelSpecification__Group__0__Impl" // $ANTLR start "rule__MetamodelSpecification__Group__1" // InternalApplicationConfiguration.g:2790:1: rule__MetamodelSpecification__Group__1 : rule__MetamodelSpecification__Group__1__Impl rule__MetamodelSpecification__Group__2 ; public final void rule__MetamodelSpecification__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2794:1: ( rule__MetamodelSpecification__Group__1__Impl rule__MetamodelSpecification__Group__2 ) // InternalApplicationConfiguration.g:2795:2: rule__MetamodelSpecification__Group__1__Impl rule__MetamodelSpecification__Group__2 { pushFollow(FOLLOW_14); rule__MetamodelSpecification__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__MetamodelSpecification__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelSpecification__Group__1" // $ANTLR start "rule__MetamodelSpecification__Group__1__Impl" // InternalApplicationConfiguration.g:2802:1: rule__MetamodelSpecification__Group__1__Impl : ( ( rule__MetamodelSpecification__EntriesAssignment_1 ) ) ; public final void rule__MetamodelSpecification__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2806:1: ( ( ( rule__MetamodelSpecification__EntriesAssignment_1 ) ) ) // InternalApplicationConfiguration.g:2807:1: ( ( rule__MetamodelSpecification__EntriesAssignment_1 ) ) { // InternalApplicationConfiguration.g:2807:1: ( ( rule__MetamodelSpecification__EntriesAssignment_1 ) ) // InternalApplicationConfiguration.g:2808:2: ( rule__MetamodelSpecification__EntriesAssignment_1 ) { before(grammarAccess.getMetamodelSpecificationAccess().getEntriesAssignment_1()); // InternalApplicationConfiguration.g:2809:2: ( rule__MetamodelSpecification__EntriesAssignment_1 ) // InternalApplicationConfiguration.g:2809:3: rule__MetamodelSpecification__EntriesAssignment_1 { pushFollow(FOLLOW_2); rule__MetamodelSpecification__EntriesAssignment_1(); state._fsp--; } after(grammarAccess.getMetamodelSpecificationAccess().getEntriesAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelSpecification__Group__1__Impl" // $ANTLR start "rule__MetamodelSpecification__Group__2" // InternalApplicationConfiguration.g:2817:1: rule__MetamodelSpecification__Group__2 : rule__MetamodelSpecification__Group__2__Impl rule__MetamodelSpecification__Group__3 ; public final void rule__MetamodelSpecification__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2821:1: ( rule__MetamodelSpecification__Group__2__Impl rule__MetamodelSpecification__Group__3 ) // InternalApplicationConfiguration.g:2822:2: rule__MetamodelSpecification__Group__2__Impl rule__MetamodelSpecification__Group__3 { pushFollow(FOLLOW_14); rule__MetamodelSpecification__Group__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__MetamodelSpecification__Group__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelSpecification__Group__2" // $ANTLR start "rule__MetamodelSpecification__Group__2__Impl" // InternalApplicationConfiguration.g:2829:1: rule__MetamodelSpecification__Group__2__Impl : ( ( rule__MetamodelSpecification__Group_2__0 )* ) ; public final void rule__MetamodelSpecification__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2833:1: ( ( ( rule__MetamodelSpecification__Group_2__0 )* ) ) // InternalApplicationConfiguration.g:2834:1: ( ( rule__MetamodelSpecification__Group_2__0 )* ) { // InternalApplicationConfiguration.g:2834:1: ( ( rule__MetamodelSpecification__Group_2__0 )* ) // InternalApplicationConfiguration.g:2835:2: ( rule__MetamodelSpecification__Group_2__0 )* { before(grammarAccess.getMetamodelSpecificationAccess().getGroup_2()); // InternalApplicationConfiguration.g:2836:2: ( rule__MetamodelSpecification__Group_2__0 )* loop32: do { int alt32=2; int LA32_0 = input.LA(1); if ( (LA32_0==25) ) { alt32=1; } switch (alt32) { case 1 : // InternalApplicationConfiguration.g:2836:3: rule__MetamodelSpecification__Group_2__0 { pushFollow(FOLLOW_15); rule__MetamodelSpecification__Group_2__0(); state._fsp--; } break; default : break loop32; } } while (true); after(grammarAccess.getMetamodelSpecificationAccess().getGroup_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelSpecification__Group__2__Impl" // $ANTLR start "rule__MetamodelSpecification__Group__3" // InternalApplicationConfiguration.g:2844:1: rule__MetamodelSpecification__Group__3 : rule__MetamodelSpecification__Group__3__Impl ; public final void rule__MetamodelSpecification__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2848:1: ( rule__MetamodelSpecification__Group__3__Impl ) // InternalApplicationConfiguration.g:2849:2: rule__MetamodelSpecification__Group__3__Impl { pushFollow(FOLLOW_2); rule__MetamodelSpecification__Group__3__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelSpecification__Group__3" // $ANTLR start "rule__MetamodelSpecification__Group__3__Impl" // InternalApplicationConfiguration.g:2855:1: rule__MetamodelSpecification__Group__3__Impl : ( '}' ) ; public final void rule__MetamodelSpecification__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2859:1: ( ( '}' ) ) // InternalApplicationConfiguration.g:2860:1: ( '}' ) { // InternalApplicationConfiguration.g:2860:1: ( '}' ) // InternalApplicationConfiguration.g:2861:2: '}' { before(grammarAccess.getMetamodelSpecificationAccess().getRightCurlyBracketKeyword_3()); match(input,24,FOLLOW_2); after(grammarAccess.getMetamodelSpecificationAccess().getRightCurlyBracketKeyword_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelSpecification__Group__3__Impl" // $ANTLR start "rule__MetamodelSpecification__Group_2__0" // InternalApplicationConfiguration.g:2871:1: rule__MetamodelSpecification__Group_2__0 : rule__MetamodelSpecification__Group_2__0__Impl rule__MetamodelSpecification__Group_2__1 ; public final void rule__MetamodelSpecification__Group_2__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2875:1: ( rule__MetamodelSpecification__Group_2__0__Impl rule__MetamodelSpecification__Group_2__1 ) // InternalApplicationConfiguration.g:2876:2: rule__MetamodelSpecification__Group_2__0__Impl rule__MetamodelSpecification__Group_2__1 { pushFollow(FOLLOW_13); rule__MetamodelSpecification__Group_2__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__MetamodelSpecification__Group_2__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelSpecification__Group_2__0" // $ANTLR start "rule__MetamodelSpecification__Group_2__0__Impl" // InternalApplicationConfiguration.g:2883:1: rule__MetamodelSpecification__Group_2__0__Impl : ( ',' ) ; public final void rule__MetamodelSpecification__Group_2__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2887:1: ( ( ',' ) ) // InternalApplicationConfiguration.g:2888:1: ( ',' ) { // InternalApplicationConfiguration.g:2888:1: ( ',' ) // InternalApplicationConfiguration.g:2889:2: ',' { before(grammarAccess.getMetamodelSpecificationAccess().getCommaKeyword_2_0()); match(input,25,FOLLOW_2); after(grammarAccess.getMetamodelSpecificationAccess().getCommaKeyword_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelSpecification__Group_2__0__Impl" // $ANTLR start "rule__MetamodelSpecification__Group_2__1" // InternalApplicationConfiguration.g:2898:1: rule__MetamodelSpecification__Group_2__1 : rule__MetamodelSpecification__Group_2__1__Impl ; public final void rule__MetamodelSpecification__Group_2__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2902:1: ( rule__MetamodelSpecification__Group_2__1__Impl ) // InternalApplicationConfiguration.g:2903:2: rule__MetamodelSpecification__Group_2__1__Impl { pushFollow(FOLLOW_2); rule__MetamodelSpecification__Group_2__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelSpecification__Group_2__1" // $ANTLR start "rule__MetamodelSpecification__Group_2__1__Impl" // InternalApplicationConfiguration.g:2909:1: rule__MetamodelSpecification__Group_2__1__Impl : ( ( rule__MetamodelSpecification__EntriesAssignment_2_1 ) ) ; public final void rule__MetamodelSpecification__Group_2__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2913:1: ( ( ( rule__MetamodelSpecification__EntriesAssignment_2_1 ) ) ) // InternalApplicationConfiguration.g:2914:1: ( ( rule__MetamodelSpecification__EntriesAssignment_2_1 ) ) { // InternalApplicationConfiguration.g:2914:1: ( ( rule__MetamodelSpecification__EntriesAssignment_2_1 ) ) // InternalApplicationConfiguration.g:2915:2: ( rule__MetamodelSpecification__EntriesAssignment_2_1 ) { before(grammarAccess.getMetamodelSpecificationAccess().getEntriesAssignment_2_1()); // InternalApplicationConfiguration.g:2916:2: ( rule__MetamodelSpecification__EntriesAssignment_2_1 ) // InternalApplicationConfiguration.g:2916:3: rule__MetamodelSpecification__EntriesAssignment_2_1 { pushFollow(FOLLOW_2); rule__MetamodelSpecification__EntriesAssignment_2_1(); state._fsp--; } after(grammarAccess.getMetamodelSpecificationAccess().getEntriesAssignment_2_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelSpecification__Group_2__1__Impl" // $ANTLR start "rule__AllPackageEntry__Group__0" // InternalApplicationConfiguration.g:2925:1: rule__AllPackageEntry__Group__0 : rule__AllPackageEntry__Group__0__Impl rule__AllPackageEntry__Group__1 ; public final void rule__AllPackageEntry__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2929:1: ( rule__AllPackageEntry__Group__0__Impl rule__AllPackageEntry__Group__1 ) // InternalApplicationConfiguration.g:2930:2: rule__AllPackageEntry__Group__0__Impl rule__AllPackageEntry__Group__1 { pushFollow(FOLLOW_8); rule__AllPackageEntry__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__AllPackageEntry__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group__0" // $ANTLR start "rule__AllPackageEntry__Group__0__Impl" // InternalApplicationConfiguration.g:2937:1: rule__AllPackageEntry__Group__0__Impl : ( 'package' ) ; public final void rule__AllPackageEntry__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2941:1: ( ( 'package' ) ) // InternalApplicationConfiguration.g:2942:1: ( 'package' ) { // InternalApplicationConfiguration.g:2942:1: ( 'package' ) // InternalApplicationConfiguration.g:2943:2: 'package' { before(grammarAccess.getAllPackageEntryAccess().getPackageKeyword_0()); match(input,26,FOLLOW_2); after(grammarAccess.getAllPackageEntryAccess().getPackageKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group__0__Impl" // $ANTLR start "rule__AllPackageEntry__Group__1" // InternalApplicationConfiguration.g:2952:1: rule__AllPackageEntry__Group__1 : rule__AllPackageEntry__Group__1__Impl rule__AllPackageEntry__Group__2 ; public final void rule__AllPackageEntry__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2956:1: ( rule__AllPackageEntry__Group__1__Impl rule__AllPackageEntry__Group__2 ) // InternalApplicationConfiguration.g:2957:2: rule__AllPackageEntry__Group__1__Impl rule__AllPackageEntry__Group__2 { pushFollow(FOLLOW_16); rule__AllPackageEntry__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__AllPackageEntry__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group__1" // $ANTLR start "rule__AllPackageEntry__Group__1__Impl" // InternalApplicationConfiguration.g:2964:1: rule__AllPackageEntry__Group__1__Impl : ( ( rule__AllPackageEntry__PackageAssignment_1 ) ) ; public final void rule__AllPackageEntry__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2968:1: ( ( ( rule__AllPackageEntry__PackageAssignment_1 ) ) ) // InternalApplicationConfiguration.g:2969:1: ( ( rule__AllPackageEntry__PackageAssignment_1 ) ) { // InternalApplicationConfiguration.g:2969:1: ( ( rule__AllPackageEntry__PackageAssignment_1 ) ) // InternalApplicationConfiguration.g:2970:2: ( rule__AllPackageEntry__PackageAssignment_1 ) { before(grammarAccess.getAllPackageEntryAccess().getPackageAssignment_1()); // InternalApplicationConfiguration.g:2971:2: ( rule__AllPackageEntry__PackageAssignment_1 ) // InternalApplicationConfiguration.g:2971:3: rule__AllPackageEntry__PackageAssignment_1 { pushFollow(FOLLOW_2); rule__AllPackageEntry__PackageAssignment_1(); state._fsp--; } after(grammarAccess.getAllPackageEntryAccess().getPackageAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group__1__Impl" // $ANTLR start "rule__AllPackageEntry__Group__2" // InternalApplicationConfiguration.g:2979:1: rule__AllPackageEntry__Group__2 : rule__AllPackageEntry__Group__2__Impl ; public final void rule__AllPackageEntry__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2983:1: ( rule__AllPackageEntry__Group__2__Impl ) // InternalApplicationConfiguration.g:2984:2: rule__AllPackageEntry__Group__2__Impl { pushFollow(FOLLOW_2); rule__AllPackageEntry__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group__2" // $ANTLR start "rule__AllPackageEntry__Group__2__Impl" // InternalApplicationConfiguration.g:2990:1: rule__AllPackageEntry__Group__2__Impl : ( ( rule__AllPackageEntry__Group_2__0 )? ) ; public final void rule__AllPackageEntry__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:2994:1: ( ( ( rule__AllPackageEntry__Group_2__0 )? ) ) // InternalApplicationConfiguration.g:2995:1: ( ( rule__AllPackageEntry__Group_2__0 )? ) { // InternalApplicationConfiguration.g:2995:1: ( ( rule__AllPackageEntry__Group_2__0 )? ) // InternalApplicationConfiguration.g:2996:2: ( rule__AllPackageEntry__Group_2__0 )? { before(grammarAccess.getAllPackageEntryAccess().getGroup_2()); // InternalApplicationConfiguration.g:2997:2: ( rule__AllPackageEntry__Group_2__0 )? int alt33=2; int LA33_0 = input.LA(1); if ( (LA33_0==27) ) { alt33=1; } switch (alt33) { case 1 : // InternalApplicationConfiguration.g:2997:3: rule__AllPackageEntry__Group_2__0 { pushFollow(FOLLOW_2); rule__AllPackageEntry__Group_2__0(); state._fsp--; } break; } after(grammarAccess.getAllPackageEntryAccess().getGroup_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group__2__Impl" // $ANTLR start "rule__AllPackageEntry__Group_2__0" // InternalApplicationConfiguration.g:3006:1: rule__AllPackageEntry__Group_2__0 : rule__AllPackageEntry__Group_2__0__Impl rule__AllPackageEntry__Group_2__1 ; public final void rule__AllPackageEntry__Group_2__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3010:1: ( rule__AllPackageEntry__Group_2__0__Impl rule__AllPackageEntry__Group_2__1 ) // InternalApplicationConfiguration.g:3011:2: rule__AllPackageEntry__Group_2__0__Impl rule__AllPackageEntry__Group_2__1 { pushFollow(FOLLOW_17); rule__AllPackageEntry__Group_2__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__AllPackageEntry__Group_2__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group_2__0" // $ANTLR start "rule__AllPackageEntry__Group_2__0__Impl" // InternalApplicationConfiguration.g:3018:1: rule__AllPackageEntry__Group_2__0__Impl : ( 'excluding' ) ; public final void rule__AllPackageEntry__Group_2__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3022:1: ( ( 'excluding' ) ) // InternalApplicationConfiguration.g:3023:1: ( 'excluding' ) { // InternalApplicationConfiguration.g:3023:1: ( 'excluding' ) // InternalApplicationConfiguration.g:3024:2: 'excluding' { before(grammarAccess.getAllPackageEntryAccess().getExcludingKeyword_2_0()); match(input,27,FOLLOW_2); after(grammarAccess.getAllPackageEntryAccess().getExcludingKeyword_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group_2__0__Impl" // $ANTLR start "rule__AllPackageEntry__Group_2__1" // InternalApplicationConfiguration.g:3033:1: rule__AllPackageEntry__Group_2__1 : rule__AllPackageEntry__Group_2__1__Impl rule__AllPackageEntry__Group_2__2 ; public final void rule__AllPackageEntry__Group_2__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3037:1: ( rule__AllPackageEntry__Group_2__1__Impl rule__AllPackageEntry__Group_2__2 ) // InternalApplicationConfiguration.g:3038:2: rule__AllPackageEntry__Group_2__1__Impl rule__AllPackageEntry__Group_2__2 { pushFollow(FOLLOW_8); rule__AllPackageEntry__Group_2__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__AllPackageEntry__Group_2__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group_2__1" // $ANTLR start "rule__AllPackageEntry__Group_2__1__Impl" // InternalApplicationConfiguration.g:3045:1: rule__AllPackageEntry__Group_2__1__Impl : ( '{' ) ; public final void rule__AllPackageEntry__Group_2__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3049:1: ( ( '{' ) ) // InternalApplicationConfiguration.g:3050:1: ( '{' ) { // InternalApplicationConfiguration.g:3050:1: ( '{' ) // InternalApplicationConfiguration.g:3051:2: '{' { before(grammarAccess.getAllPackageEntryAccess().getLeftCurlyBracketKeyword_2_1()); match(input,23,FOLLOW_2); after(grammarAccess.getAllPackageEntryAccess().getLeftCurlyBracketKeyword_2_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group_2__1__Impl" // $ANTLR start "rule__AllPackageEntry__Group_2__2" // InternalApplicationConfiguration.g:3060:1: rule__AllPackageEntry__Group_2__2 : rule__AllPackageEntry__Group_2__2__Impl rule__AllPackageEntry__Group_2__3 ; public final void rule__AllPackageEntry__Group_2__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3064:1: ( rule__AllPackageEntry__Group_2__2__Impl rule__AllPackageEntry__Group_2__3 ) // InternalApplicationConfiguration.g:3065:2: rule__AllPackageEntry__Group_2__2__Impl rule__AllPackageEntry__Group_2__3 { pushFollow(FOLLOW_14); rule__AllPackageEntry__Group_2__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__AllPackageEntry__Group_2__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group_2__2" // $ANTLR start "rule__AllPackageEntry__Group_2__2__Impl" // InternalApplicationConfiguration.g:3072:1: rule__AllPackageEntry__Group_2__2__Impl : ( ( rule__AllPackageEntry__ExclusionAssignment_2_2 ) ) ; public final void rule__AllPackageEntry__Group_2__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3076:1: ( ( ( rule__AllPackageEntry__ExclusionAssignment_2_2 ) ) ) // InternalApplicationConfiguration.g:3077:1: ( ( rule__AllPackageEntry__ExclusionAssignment_2_2 ) ) { // InternalApplicationConfiguration.g:3077:1: ( ( rule__AllPackageEntry__ExclusionAssignment_2_2 ) ) // InternalApplicationConfiguration.g:3078:2: ( rule__AllPackageEntry__ExclusionAssignment_2_2 ) { before(grammarAccess.getAllPackageEntryAccess().getExclusionAssignment_2_2()); // InternalApplicationConfiguration.g:3079:2: ( rule__AllPackageEntry__ExclusionAssignment_2_2 ) // InternalApplicationConfiguration.g:3079:3: rule__AllPackageEntry__ExclusionAssignment_2_2 { pushFollow(FOLLOW_2); rule__AllPackageEntry__ExclusionAssignment_2_2(); state._fsp--; } after(grammarAccess.getAllPackageEntryAccess().getExclusionAssignment_2_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group_2__2__Impl" // $ANTLR start "rule__AllPackageEntry__Group_2__3" // InternalApplicationConfiguration.g:3087:1: rule__AllPackageEntry__Group_2__3 : rule__AllPackageEntry__Group_2__3__Impl rule__AllPackageEntry__Group_2__4 ; public final void rule__AllPackageEntry__Group_2__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3091:1: ( rule__AllPackageEntry__Group_2__3__Impl rule__AllPackageEntry__Group_2__4 ) // InternalApplicationConfiguration.g:3092:2: rule__AllPackageEntry__Group_2__3__Impl rule__AllPackageEntry__Group_2__4 { pushFollow(FOLLOW_14); rule__AllPackageEntry__Group_2__3__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__AllPackageEntry__Group_2__4(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group_2__3" // $ANTLR start "rule__AllPackageEntry__Group_2__3__Impl" // InternalApplicationConfiguration.g:3099:1: rule__AllPackageEntry__Group_2__3__Impl : ( ( rule__AllPackageEntry__Group_2_3__0 )* ) ; public final void rule__AllPackageEntry__Group_2__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3103:1: ( ( ( rule__AllPackageEntry__Group_2_3__0 )* ) ) // InternalApplicationConfiguration.g:3104:1: ( ( rule__AllPackageEntry__Group_2_3__0 )* ) { // InternalApplicationConfiguration.g:3104:1: ( ( rule__AllPackageEntry__Group_2_3__0 )* ) // InternalApplicationConfiguration.g:3105:2: ( rule__AllPackageEntry__Group_2_3__0 )* { before(grammarAccess.getAllPackageEntryAccess().getGroup_2_3()); // InternalApplicationConfiguration.g:3106:2: ( rule__AllPackageEntry__Group_2_3__0 )* loop34: do { int alt34=2; int LA34_0 = input.LA(1); if ( (LA34_0==25) ) { alt34=1; } switch (alt34) { case 1 : // InternalApplicationConfiguration.g:3106:3: rule__AllPackageEntry__Group_2_3__0 { pushFollow(FOLLOW_15); rule__AllPackageEntry__Group_2_3__0(); state._fsp--; } break; default : break loop34; } } while (true); after(grammarAccess.getAllPackageEntryAccess().getGroup_2_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group_2__3__Impl" // $ANTLR start "rule__AllPackageEntry__Group_2__4" // InternalApplicationConfiguration.g:3114:1: rule__AllPackageEntry__Group_2__4 : rule__AllPackageEntry__Group_2__4__Impl ; public final void rule__AllPackageEntry__Group_2__4() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3118:1: ( rule__AllPackageEntry__Group_2__4__Impl ) // InternalApplicationConfiguration.g:3119:2: rule__AllPackageEntry__Group_2__4__Impl { pushFollow(FOLLOW_2); rule__AllPackageEntry__Group_2__4__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group_2__4" // $ANTLR start "rule__AllPackageEntry__Group_2__4__Impl" // InternalApplicationConfiguration.g:3125:1: rule__AllPackageEntry__Group_2__4__Impl : ( '}' ) ; public final void rule__AllPackageEntry__Group_2__4__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3129:1: ( ( '}' ) ) // InternalApplicationConfiguration.g:3130:1: ( '}' ) { // InternalApplicationConfiguration.g:3130:1: ( '}' ) // InternalApplicationConfiguration.g:3131:2: '}' { before(grammarAccess.getAllPackageEntryAccess().getRightCurlyBracketKeyword_2_4()); match(input,24,FOLLOW_2); after(grammarAccess.getAllPackageEntryAccess().getRightCurlyBracketKeyword_2_4()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group_2__4__Impl" // $ANTLR start "rule__AllPackageEntry__Group_2_3__0" // InternalApplicationConfiguration.g:3141:1: rule__AllPackageEntry__Group_2_3__0 : rule__AllPackageEntry__Group_2_3__0__Impl rule__AllPackageEntry__Group_2_3__1 ; public final void rule__AllPackageEntry__Group_2_3__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3145:1: ( rule__AllPackageEntry__Group_2_3__0__Impl rule__AllPackageEntry__Group_2_3__1 ) // InternalApplicationConfiguration.g:3146:2: rule__AllPackageEntry__Group_2_3__0__Impl rule__AllPackageEntry__Group_2_3__1 { pushFollow(FOLLOW_8); rule__AllPackageEntry__Group_2_3__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__AllPackageEntry__Group_2_3__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group_2_3__0" // $ANTLR start "rule__AllPackageEntry__Group_2_3__0__Impl" // InternalApplicationConfiguration.g:3153:1: rule__AllPackageEntry__Group_2_3__0__Impl : ( ',' ) ; public final void rule__AllPackageEntry__Group_2_3__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3157:1: ( ( ',' ) ) // InternalApplicationConfiguration.g:3158:1: ( ',' ) { // InternalApplicationConfiguration.g:3158:1: ( ',' ) // InternalApplicationConfiguration.g:3159:2: ',' { before(grammarAccess.getAllPackageEntryAccess().getCommaKeyword_2_3_0()); match(input,25,FOLLOW_2); after(grammarAccess.getAllPackageEntryAccess().getCommaKeyword_2_3_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group_2_3__0__Impl" // $ANTLR start "rule__AllPackageEntry__Group_2_3__1" // InternalApplicationConfiguration.g:3168:1: rule__AllPackageEntry__Group_2_3__1 : rule__AllPackageEntry__Group_2_3__1__Impl ; public final void rule__AllPackageEntry__Group_2_3__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3172:1: ( rule__AllPackageEntry__Group_2_3__1__Impl ) // InternalApplicationConfiguration.g:3173:2: rule__AllPackageEntry__Group_2_3__1__Impl { pushFollow(FOLLOW_2); rule__AllPackageEntry__Group_2_3__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group_2_3__1" // $ANTLR start "rule__AllPackageEntry__Group_2_3__1__Impl" // InternalApplicationConfiguration.g:3179:1: rule__AllPackageEntry__Group_2_3__1__Impl : ( ( rule__AllPackageEntry__ExclusionAssignment_2_3_1 ) ) ; public final void rule__AllPackageEntry__Group_2_3__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3183:1: ( ( ( rule__AllPackageEntry__ExclusionAssignment_2_3_1 ) ) ) // InternalApplicationConfiguration.g:3184:1: ( ( rule__AllPackageEntry__ExclusionAssignment_2_3_1 ) ) { // InternalApplicationConfiguration.g:3184:1: ( ( rule__AllPackageEntry__ExclusionAssignment_2_3_1 ) ) // InternalApplicationConfiguration.g:3185:2: ( rule__AllPackageEntry__ExclusionAssignment_2_3_1 ) { before(grammarAccess.getAllPackageEntryAccess().getExclusionAssignment_2_3_1()); // InternalApplicationConfiguration.g:3186:2: ( rule__AllPackageEntry__ExclusionAssignment_2_3_1 ) // InternalApplicationConfiguration.g:3186:3: rule__AllPackageEntry__ExclusionAssignment_2_3_1 { pushFollow(FOLLOW_2); rule__AllPackageEntry__ExclusionAssignment_2_3_1(); state._fsp--; } after(grammarAccess.getAllPackageEntryAccess().getExclusionAssignment_2_3_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__Group_2_3__1__Impl" // $ANTLR start "rule__MetamodelElement__Group__0" // InternalApplicationConfiguration.g:3195:1: rule__MetamodelElement__Group__0 : rule__MetamodelElement__Group__0__Impl rule__MetamodelElement__Group__1 ; public final void rule__MetamodelElement__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3199:1: ( rule__MetamodelElement__Group__0__Impl rule__MetamodelElement__Group__1 ) // InternalApplicationConfiguration.g:3200:2: rule__MetamodelElement__Group__0__Impl rule__MetamodelElement__Group__1 { pushFollow(FOLLOW_8); rule__MetamodelElement__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__MetamodelElement__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__Group__0" // $ANTLR start "rule__MetamodelElement__Group__0__Impl" // InternalApplicationConfiguration.g:3207:1: rule__MetamodelElement__Group__0__Impl : ( ( rule__MetamodelElement__Group_0__0 )? ) ; public final void rule__MetamodelElement__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3211:1: ( ( ( rule__MetamodelElement__Group_0__0 )? ) ) // InternalApplicationConfiguration.g:3212:1: ( ( rule__MetamodelElement__Group_0__0 )? ) { // InternalApplicationConfiguration.g:3212:1: ( ( rule__MetamodelElement__Group_0__0 )? ) // InternalApplicationConfiguration.g:3213:2: ( rule__MetamodelElement__Group_0__0 )? { before(grammarAccess.getMetamodelElementAccess().getGroup_0()); // InternalApplicationConfiguration.g:3214:2: ( rule__MetamodelElement__Group_0__0 )? int alt35=2; int LA35_0 = input.LA(1); if ( (LA35_0==RULE_ID) ) { int LA35_1 = input.LA(2); if ( (LA35_1==17) ) { int LA35_2 = input.LA(3); if ( (LA35_2==RULE_ID) ) { int LA35_5 = input.LA(4); if ( (LA35_5==17||LA35_5==28) ) { alt35=1; } } } else if ( (LA35_1==28) ) { alt35=1; } } switch (alt35) { case 1 : // InternalApplicationConfiguration.g:3214:3: rule__MetamodelElement__Group_0__0 { pushFollow(FOLLOW_2); rule__MetamodelElement__Group_0__0(); state._fsp--; } break; } after(grammarAccess.getMetamodelElementAccess().getGroup_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__Group__0__Impl" // $ANTLR start "rule__MetamodelElement__Group__1" // InternalApplicationConfiguration.g:3222:1: rule__MetamodelElement__Group__1 : rule__MetamodelElement__Group__1__Impl rule__MetamodelElement__Group__2 ; public final void rule__MetamodelElement__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3226:1: ( rule__MetamodelElement__Group__1__Impl rule__MetamodelElement__Group__2 ) // InternalApplicationConfiguration.g:3227:2: rule__MetamodelElement__Group__1__Impl rule__MetamodelElement__Group__2 { pushFollow(FOLLOW_6); rule__MetamodelElement__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__MetamodelElement__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__Group__1" // $ANTLR start "rule__MetamodelElement__Group__1__Impl" // InternalApplicationConfiguration.g:3234:1: rule__MetamodelElement__Group__1__Impl : ( ( rule__MetamodelElement__ClassifierAssignment_1 ) ) ; public final void rule__MetamodelElement__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3238:1: ( ( ( rule__MetamodelElement__ClassifierAssignment_1 ) ) ) // InternalApplicationConfiguration.g:3239:1: ( ( rule__MetamodelElement__ClassifierAssignment_1 ) ) { // InternalApplicationConfiguration.g:3239:1: ( ( rule__MetamodelElement__ClassifierAssignment_1 ) ) // InternalApplicationConfiguration.g:3240:2: ( rule__MetamodelElement__ClassifierAssignment_1 ) { before(grammarAccess.getMetamodelElementAccess().getClassifierAssignment_1()); // InternalApplicationConfiguration.g:3241:2: ( rule__MetamodelElement__ClassifierAssignment_1 ) // InternalApplicationConfiguration.g:3241:3: rule__MetamodelElement__ClassifierAssignment_1 { pushFollow(FOLLOW_2); rule__MetamodelElement__ClassifierAssignment_1(); state._fsp--; } after(grammarAccess.getMetamodelElementAccess().getClassifierAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__Group__1__Impl" // $ANTLR start "rule__MetamodelElement__Group__2" // InternalApplicationConfiguration.g:3249:1: rule__MetamodelElement__Group__2 : rule__MetamodelElement__Group__2__Impl ; public final void rule__MetamodelElement__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3253:1: ( rule__MetamodelElement__Group__2__Impl ) // InternalApplicationConfiguration.g:3254:2: rule__MetamodelElement__Group__2__Impl { pushFollow(FOLLOW_2); rule__MetamodelElement__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__Group__2" // $ANTLR start "rule__MetamodelElement__Group__2__Impl" // InternalApplicationConfiguration.g:3260:1: rule__MetamodelElement__Group__2__Impl : ( ( rule__MetamodelElement__Group_2__0 )? ) ; public final void rule__MetamodelElement__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3264:1: ( ( ( rule__MetamodelElement__Group_2__0 )? ) ) // InternalApplicationConfiguration.g:3265:1: ( ( rule__MetamodelElement__Group_2__0 )? ) { // InternalApplicationConfiguration.g:3265:1: ( ( rule__MetamodelElement__Group_2__0 )? ) // InternalApplicationConfiguration.g:3266:2: ( rule__MetamodelElement__Group_2__0 )? { before(grammarAccess.getMetamodelElementAccess().getGroup_2()); // InternalApplicationConfiguration.g:3267:2: ( rule__MetamodelElement__Group_2__0 )? int alt36=2; int LA36_0 = input.LA(1); if ( (LA36_0==17) ) { alt36=1; } switch (alt36) { case 1 : // InternalApplicationConfiguration.g:3267:3: rule__MetamodelElement__Group_2__0 { pushFollow(FOLLOW_2); rule__MetamodelElement__Group_2__0(); state._fsp--; } break; } after(grammarAccess.getMetamodelElementAccess().getGroup_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__Group__2__Impl" // $ANTLR start "rule__MetamodelElement__Group_0__0" // InternalApplicationConfiguration.g:3276:1: rule__MetamodelElement__Group_0__0 : rule__MetamodelElement__Group_0__0__Impl rule__MetamodelElement__Group_0__1 ; public final void rule__MetamodelElement__Group_0__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3280:1: ( rule__MetamodelElement__Group_0__0__Impl rule__MetamodelElement__Group_0__1 ) // InternalApplicationConfiguration.g:3281:2: rule__MetamodelElement__Group_0__0__Impl rule__MetamodelElement__Group_0__1 { pushFollow(FOLLOW_18); rule__MetamodelElement__Group_0__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__MetamodelElement__Group_0__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__Group_0__0" // $ANTLR start "rule__MetamodelElement__Group_0__0__Impl" // InternalApplicationConfiguration.g:3288:1: rule__MetamodelElement__Group_0__0__Impl : ( ( rule__MetamodelElement__PackageAssignment_0_0 ) ) ; public final void rule__MetamodelElement__Group_0__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3292:1: ( ( ( rule__MetamodelElement__PackageAssignment_0_0 ) ) ) // InternalApplicationConfiguration.g:3293:1: ( ( rule__MetamodelElement__PackageAssignment_0_0 ) ) { // InternalApplicationConfiguration.g:3293:1: ( ( rule__MetamodelElement__PackageAssignment_0_0 ) ) // InternalApplicationConfiguration.g:3294:2: ( rule__MetamodelElement__PackageAssignment_0_0 ) { before(grammarAccess.getMetamodelElementAccess().getPackageAssignment_0_0()); // InternalApplicationConfiguration.g:3295:2: ( rule__MetamodelElement__PackageAssignment_0_0 ) // InternalApplicationConfiguration.g:3295:3: rule__MetamodelElement__PackageAssignment_0_0 { pushFollow(FOLLOW_2); rule__MetamodelElement__PackageAssignment_0_0(); state._fsp--; } after(grammarAccess.getMetamodelElementAccess().getPackageAssignment_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__Group_0__0__Impl" // $ANTLR start "rule__MetamodelElement__Group_0__1" // InternalApplicationConfiguration.g:3303:1: rule__MetamodelElement__Group_0__1 : rule__MetamodelElement__Group_0__1__Impl ; public final void rule__MetamodelElement__Group_0__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3307:1: ( rule__MetamodelElement__Group_0__1__Impl ) // InternalApplicationConfiguration.g:3308:2: rule__MetamodelElement__Group_0__1__Impl { pushFollow(FOLLOW_2); rule__MetamodelElement__Group_0__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__Group_0__1" // $ANTLR start "rule__MetamodelElement__Group_0__1__Impl" // InternalApplicationConfiguration.g:3314:1: rule__MetamodelElement__Group_0__1__Impl : ( '::' ) ; public final void rule__MetamodelElement__Group_0__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3318:1: ( ( '::' ) ) // InternalApplicationConfiguration.g:3319:1: ( '::' ) { // InternalApplicationConfiguration.g:3319:1: ( '::' ) // InternalApplicationConfiguration.g:3320:2: '::' { before(grammarAccess.getMetamodelElementAccess().getColonColonKeyword_0_1()); match(input,28,FOLLOW_2); after(grammarAccess.getMetamodelElementAccess().getColonColonKeyword_0_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__Group_0__1__Impl" // $ANTLR start "rule__MetamodelElement__Group_2__0" // InternalApplicationConfiguration.g:3330:1: rule__MetamodelElement__Group_2__0 : rule__MetamodelElement__Group_2__0__Impl rule__MetamodelElement__Group_2__1 ; public final void rule__MetamodelElement__Group_2__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3334:1: ( rule__MetamodelElement__Group_2__0__Impl rule__MetamodelElement__Group_2__1 ) // InternalApplicationConfiguration.g:3335:2: rule__MetamodelElement__Group_2__0__Impl rule__MetamodelElement__Group_2__1 { pushFollow(FOLLOW_8); rule__MetamodelElement__Group_2__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__MetamodelElement__Group_2__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__Group_2__0" // $ANTLR start "rule__MetamodelElement__Group_2__0__Impl" // InternalApplicationConfiguration.g:3342:1: rule__MetamodelElement__Group_2__0__Impl : ( '.' ) ; public final void rule__MetamodelElement__Group_2__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3346:1: ( ( '.' ) ) // InternalApplicationConfiguration.g:3347:1: ( '.' ) { // InternalApplicationConfiguration.g:3347:1: ( '.' ) // InternalApplicationConfiguration.g:3348:2: '.' { before(grammarAccess.getMetamodelElementAccess().getFullStopKeyword_2_0()); match(input,17,FOLLOW_2); after(grammarAccess.getMetamodelElementAccess().getFullStopKeyword_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__Group_2__0__Impl" // $ANTLR start "rule__MetamodelElement__Group_2__1" // InternalApplicationConfiguration.g:3357:1: rule__MetamodelElement__Group_2__1 : rule__MetamodelElement__Group_2__1__Impl ; public final void rule__MetamodelElement__Group_2__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3361:1: ( rule__MetamodelElement__Group_2__1__Impl ) // InternalApplicationConfiguration.g:3362:2: rule__MetamodelElement__Group_2__1__Impl { pushFollow(FOLLOW_2); rule__MetamodelElement__Group_2__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__Group_2__1" // $ANTLR start "rule__MetamodelElement__Group_2__1__Impl" // InternalApplicationConfiguration.g:3368:1: rule__MetamodelElement__Group_2__1__Impl : ( ( rule__MetamodelElement__FeatureAssignment_2_1 ) ) ; public final void rule__MetamodelElement__Group_2__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3372:1: ( ( ( rule__MetamodelElement__FeatureAssignment_2_1 ) ) ) // InternalApplicationConfiguration.g:3373:1: ( ( rule__MetamodelElement__FeatureAssignment_2_1 ) ) { // InternalApplicationConfiguration.g:3373:1: ( ( rule__MetamodelElement__FeatureAssignment_2_1 ) ) // InternalApplicationConfiguration.g:3374:2: ( rule__MetamodelElement__FeatureAssignment_2_1 ) { before(grammarAccess.getMetamodelElementAccess().getFeatureAssignment_2_1()); // InternalApplicationConfiguration.g:3375:2: ( rule__MetamodelElement__FeatureAssignment_2_1 ) // InternalApplicationConfiguration.g:3375:3: rule__MetamodelElement__FeatureAssignment_2_1 { pushFollow(FOLLOW_2); rule__MetamodelElement__FeatureAssignment_2_1(); state._fsp--; } after(grammarAccess.getMetamodelElementAccess().getFeatureAssignment_2_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__Group_2__1__Impl" // $ANTLR start "rule__MetamodelDeclaration__Group__0" // InternalApplicationConfiguration.g:3384:1: rule__MetamodelDeclaration__Group__0 : rule__MetamodelDeclaration__Group__0__Impl rule__MetamodelDeclaration__Group__1 ; public final void rule__MetamodelDeclaration__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3388:1: ( rule__MetamodelDeclaration__Group__0__Impl rule__MetamodelDeclaration__Group__1 ) // InternalApplicationConfiguration.g:3389:2: rule__MetamodelDeclaration__Group__0__Impl rule__MetamodelDeclaration__Group__1 { pushFollow(FOLLOW_8); rule__MetamodelDeclaration__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__MetamodelDeclaration__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelDeclaration__Group__0" // $ANTLR start "rule__MetamodelDeclaration__Group__0__Impl" // InternalApplicationConfiguration.g:3396:1: rule__MetamodelDeclaration__Group__0__Impl : ( 'metamodel' ) ; public final void rule__MetamodelDeclaration__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3400:1: ( ( 'metamodel' ) ) // InternalApplicationConfiguration.g:3401:1: ( 'metamodel' ) { // InternalApplicationConfiguration.g:3401:1: ( 'metamodel' ) // InternalApplicationConfiguration.g:3402:2: 'metamodel' { before(grammarAccess.getMetamodelDeclarationAccess().getMetamodelKeyword_0()); match(input,29,FOLLOW_2); after(grammarAccess.getMetamodelDeclarationAccess().getMetamodelKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelDeclaration__Group__0__Impl" // $ANTLR start "rule__MetamodelDeclaration__Group__1" // InternalApplicationConfiguration.g:3411:1: rule__MetamodelDeclaration__Group__1 : rule__MetamodelDeclaration__Group__1__Impl rule__MetamodelDeclaration__Group__2 ; public final void rule__MetamodelDeclaration__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3415:1: ( rule__MetamodelDeclaration__Group__1__Impl rule__MetamodelDeclaration__Group__2 ) // InternalApplicationConfiguration.g:3416:2: rule__MetamodelDeclaration__Group__1__Impl rule__MetamodelDeclaration__Group__2 { pushFollow(FOLLOW_17); rule__MetamodelDeclaration__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__MetamodelDeclaration__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelDeclaration__Group__1" // $ANTLR start "rule__MetamodelDeclaration__Group__1__Impl" // InternalApplicationConfiguration.g:3423:1: rule__MetamodelDeclaration__Group__1__Impl : ( ( rule__MetamodelDeclaration__NameAssignment_1 ) ) ; public final void rule__MetamodelDeclaration__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3427:1: ( ( ( rule__MetamodelDeclaration__NameAssignment_1 ) ) ) // InternalApplicationConfiguration.g:3428:1: ( ( rule__MetamodelDeclaration__NameAssignment_1 ) ) { // InternalApplicationConfiguration.g:3428:1: ( ( rule__MetamodelDeclaration__NameAssignment_1 ) ) // InternalApplicationConfiguration.g:3429:2: ( rule__MetamodelDeclaration__NameAssignment_1 ) { before(grammarAccess.getMetamodelDeclarationAccess().getNameAssignment_1()); // InternalApplicationConfiguration.g:3430:2: ( rule__MetamodelDeclaration__NameAssignment_1 ) // InternalApplicationConfiguration.g:3430:3: rule__MetamodelDeclaration__NameAssignment_1 { pushFollow(FOLLOW_2); rule__MetamodelDeclaration__NameAssignment_1(); state._fsp--; } after(grammarAccess.getMetamodelDeclarationAccess().getNameAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelDeclaration__Group__1__Impl" // $ANTLR start "rule__MetamodelDeclaration__Group__2" // InternalApplicationConfiguration.g:3438:1: rule__MetamodelDeclaration__Group__2 : rule__MetamodelDeclaration__Group__2__Impl ; public final void rule__MetamodelDeclaration__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3442:1: ( rule__MetamodelDeclaration__Group__2__Impl ) // InternalApplicationConfiguration.g:3443:2: rule__MetamodelDeclaration__Group__2__Impl { pushFollow(FOLLOW_2); rule__MetamodelDeclaration__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelDeclaration__Group__2" // $ANTLR start "rule__MetamodelDeclaration__Group__2__Impl" // InternalApplicationConfiguration.g:3449:1: rule__MetamodelDeclaration__Group__2__Impl : ( ( rule__MetamodelDeclaration__SpecificationAssignment_2 ) ) ; public final void rule__MetamodelDeclaration__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3453:1: ( ( ( rule__MetamodelDeclaration__SpecificationAssignment_2 ) ) ) // InternalApplicationConfiguration.g:3454:1: ( ( rule__MetamodelDeclaration__SpecificationAssignment_2 ) ) { // InternalApplicationConfiguration.g:3454:1: ( ( rule__MetamodelDeclaration__SpecificationAssignment_2 ) ) // InternalApplicationConfiguration.g:3455:2: ( rule__MetamodelDeclaration__SpecificationAssignment_2 ) { before(grammarAccess.getMetamodelDeclarationAccess().getSpecificationAssignment_2()); // InternalApplicationConfiguration.g:3456:2: ( rule__MetamodelDeclaration__SpecificationAssignment_2 ) // InternalApplicationConfiguration.g:3456:3: rule__MetamodelDeclaration__SpecificationAssignment_2 { pushFollow(FOLLOW_2); rule__MetamodelDeclaration__SpecificationAssignment_2(); state._fsp--; } after(grammarAccess.getMetamodelDeclarationAccess().getSpecificationAssignment_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelDeclaration__Group__2__Impl" // $ANTLR start "rule__PartialModelSpecification__Group__0" // InternalApplicationConfiguration.g:3465:1: rule__PartialModelSpecification__Group__0 : rule__PartialModelSpecification__Group__0__Impl rule__PartialModelSpecification__Group__1 ; public final void rule__PartialModelSpecification__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3469:1: ( rule__PartialModelSpecification__Group__0__Impl rule__PartialModelSpecification__Group__1 ) // InternalApplicationConfiguration.g:3470:2: rule__PartialModelSpecification__Group__0__Impl rule__PartialModelSpecification__Group__1 { pushFollow(FOLLOW_19); rule__PartialModelSpecification__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__PartialModelSpecification__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelSpecification__Group__0" // $ANTLR start "rule__PartialModelSpecification__Group__0__Impl" // InternalApplicationConfiguration.g:3477:1: rule__PartialModelSpecification__Group__0__Impl : ( '{' ) ; public final void rule__PartialModelSpecification__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3481:1: ( ( '{' ) ) // InternalApplicationConfiguration.g:3482:1: ( '{' ) { // InternalApplicationConfiguration.g:3482:1: ( '{' ) // InternalApplicationConfiguration.g:3483:2: '{' { before(grammarAccess.getPartialModelSpecificationAccess().getLeftCurlyBracketKeyword_0()); match(input,23,FOLLOW_2); after(grammarAccess.getPartialModelSpecificationAccess().getLeftCurlyBracketKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelSpecification__Group__0__Impl" // $ANTLR start "rule__PartialModelSpecification__Group__1" // InternalApplicationConfiguration.g:3492:1: rule__PartialModelSpecification__Group__1 : rule__PartialModelSpecification__Group__1__Impl rule__PartialModelSpecification__Group__2 ; public final void rule__PartialModelSpecification__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3496:1: ( rule__PartialModelSpecification__Group__1__Impl rule__PartialModelSpecification__Group__2 ) // InternalApplicationConfiguration.g:3497:2: rule__PartialModelSpecification__Group__1__Impl rule__PartialModelSpecification__Group__2 { pushFollow(FOLLOW_14); rule__PartialModelSpecification__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__PartialModelSpecification__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelSpecification__Group__1" // $ANTLR start "rule__PartialModelSpecification__Group__1__Impl" // InternalApplicationConfiguration.g:3504:1: rule__PartialModelSpecification__Group__1__Impl : ( ( rule__PartialModelSpecification__EntryAssignment_1 ) ) ; public final void rule__PartialModelSpecification__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3508:1: ( ( ( rule__PartialModelSpecification__EntryAssignment_1 ) ) ) // InternalApplicationConfiguration.g:3509:1: ( ( rule__PartialModelSpecification__EntryAssignment_1 ) ) { // InternalApplicationConfiguration.g:3509:1: ( ( rule__PartialModelSpecification__EntryAssignment_1 ) ) // InternalApplicationConfiguration.g:3510:2: ( rule__PartialModelSpecification__EntryAssignment_1 ) { before(grammarAccess.getPartialModelSpecificationAccess().getEntryAssignment_1()); // InternalApplicationConfiguration.g:3511:2: ( rule__PartialModelSpecification__EntryAssignment_1 ) // InternalApplicationConfiguration.g:3511:3: rule__PartialModelSpecification__EntryAssignment_1 { pushFollow(FOLLOW_2); rule__PartialModelSpecification__EntryAssignment_1(); state._fsp--; } after(grammarAccess.getPartialModelSpecificationAccess().getEntryAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelSpecification__Group__1__Impl" // $ANTLR start "rule__PartialModelSpecification__Group__2" // InternalApplicationConfiguration.g:3519:1: rule__PartialModelSpecification__Group__2 : rule__PartialModelSpecification__Group__2__Impl rule__PartialModelSpecification__Group__3 ; public final void rule__PartialModelSpecification__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3523:1: ( rule__PartialModelSpecification__Group__2__Impl rule__PartialModelSpecification__Group__3 ) // InternalApplicationConfiguration.g:3524:2: rule__PartialModelSpecification__Group__2__Impl rule__PartialModelSpecification__Group__3 { pushFollow(FOLLOW_14); rule__PartialModelSpecification__Group__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__PartialModelSpecification__Group__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelSpecification__Group__2" // $ANTLR start "rule__PartialModelSpecification__Group__2__Impl" // InternalApplicationConfiguration.g:3531:1: rule__PartialModelSpecification__Group__2__Impl : ( ( rule__PartialModelSpecification__Group_2__0 )? ) ; public final void rule__PartialModelSpecification__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3535:1: ( ( ( rule__PartialModelSpecification__Group_2__0 )? ) ) // InternalApplicationConfiguration.g:3536:1: ( ( rule__PartialModelSpecification__Group_2__0 )? ) { // InternalApplicationConfiguration.g:3536:1: ( ( rule__PartialModelSpecification__Group_2__0 )? ) // InternalApplicationConfiguration.g:3537:2: ( rule__PartialModelSpecification__Group_2__0 )? { before(grammarAccess.getPartialModelSpecificationAccess().getGroup_2()); // InternalApplicationConfiguration.g:3538:2: ( rule__PartialModelSpecification__Group_2__0 )? int alt37=2; int LA37_0 = input.LA(1); if ( (LA37_0==25) ) { alt37=1; } switch (alt37) { case 1 : // InternalApplicationConfiguration.g:3538:3: rule__PartialModelSpecification__Group_2__0 { pushFollow(FOLLOW_2); rule__PartialModelSpecification__Group_2__0(); state._fsp--; } break; } after(grammarAccess.getPartialModelSpecificationAccess().getGroup_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelSpecification__Group__2__Impl" // $ANTLR start "rule__PartialModelSpecification__Group__3" // InternalApplicationConfiguration.g:3546:1: rule__PartialModelSpecification__Group__3 : rule__PartialModelSpecification__Group__3__Impl ; public final void rule__PartialModelSpecification__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3550:1: ( rule__PartialModelSpecification__Group__3__Impl ) // InternalApplicationConfiguration.g:3551:2: rule__PartialModelSpecification__Group__3__Impl { pushFollow(FOLLOW_2); rule__PartialModelSpecification__Group__3__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelSpecification__Group__3" // $ANTLR start "rule__PartialModelSpecification__Group__3__Impl" // InternalApplicationConfiguration.g:3557:1: rule__PartialModelSpecification__Group__3__Impl : ( '}' ) ; public final void rule__PartialModelSpecification__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3561:1: ( ( '}' ) ) // InternalApplicationConfiguration.g:3562:1: ( '}' ) { // InternalApplicationConfiguration.g:3562:1: ( '}' ) // InternalApplicationConfiguration.g:3563:2: '}' { before(grammarAccess.getPartialModelSpecificationAccess().getRightCurlyBracketKeyword_3()); match(input,24,FOLLOW_2); after(grammarAccess.getPartialModelSpecificationAccess().getRightCurlyBracketKeyword_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelSpecification__Group__3__Impl" // $ANTLR start "rule__PartialModelSpecification__Group_2__0" // InternalApplicationConfiguration.g:3573:1: rule__PartialModelSpecification__Group_2__0 : rule__PartialModelSpecification__Group_2__0__Impl rule__PartialModelSpecification__Group_2__1 ; public final void rule__PartialModelSpecification__Group_2__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3577:1: ( rule__PartialModelSpecification__Group_2__0__Impl rule__PartialModelSpecification__Group_2__1 ) // InternalApplicationConfiguration.g:3578:2: rule__PartialModelSpecification__Group_2__0__Impl rule__PartialModelSpecification__Group_2__1 { pushFollow(FOLLOW_19); rule__PartialModelSpecification__Group_2__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__PartialModelSpecification__Group_2__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelSpecification__Group_2__0" // $ANTLR start "rule__PartialModelSpecification__Group_2__0__Impl" // InternalApplicationConfiguration.g:3585:1: rule__PartialModelSpecification__Group_2__0__Impl : ( ',' ) ; public final void rule__PartialModelSpecification__Group_2__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3589:1: ( ( ',' ) ) // InternalApplicationConfiguration.g:3590:1: ( ',' ) { // InternalApplicationConfiguration.g:3590:1: ( ',' ) // InternalApplicationConfiguration.g:3591:2: ',' { before(grammarAccess.getPartialModelSpecificationAccess().getCommaKeyword_2_0()); match(input,25,FOLLOW_2); after(grammarAccess.getPartialModelSpecificationAccess().getCommaKeyword_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelSpecification__Group_2__0__Impl" // $ANTLR start "rule__PartialModelSpecification__Group_2__1" // InternalApplicationConfiguration.g:3600:1: rule__PartialModelSpecification__Group_2__1 : rule__PartialModelSpecification__Group_2__1__Impl ; public final void rule__PartialModelSpecification__Group_2__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3604:1: ( rule__PartialModelSpecification__Group_2__1__Impl ) // InternalApplicationConfiguration.g:3605:2: rule__PartialModelSpecification__Group_2__1__Impl { pushFollow(FOLLOW_2); rule__PartialModelSpecification__Group_2__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelSpecification__Group_2__1" // $ANTLR start "rule__PartialModelSpecification__Group_2__1__Impl" // InternalApplicationConfiguration.g:3611:1: rule__PartialModelSpecification__Group_2__1__Impl : ( ( rule__PartialModelSpecification__EntryAssignment_2_1 ) ) ; public final void rule__PartialModelSpecification__Group_2__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3615:1: ( ( ( rule__PartialModelSpecification__EntryAssignment_2_1 ) ) ) // InternalApplicationConfiguration.g:3616:1: ( ( rule__PartialModelSpecification__EntryAssignment_2_1 ) ) { // InternalApplicationConfiguration.g:3616:1: ( ( rule__PartialModelSpecification__EntryAssignment_2_1 ) ) // InternalApplicationConfiguration.g:3617:2: ( rule__PartialModelSpecification__EntryAssignment_2_1 ) { before(grammarAccess.getPartialModelSpecificationAccess().getEntryAssignment_2_1()); // InternalApplicationConfiguration.g:3618:2: ( rule__PartialModelSpecification__EntryAssignment_2_1 ) // InternalApplicationConfiguration.g:3618:3: rule__PartialModelSpecification__EntryAssignment_2_1 { pushFollow(FOLLOW_2); rule__PartialModelSpecification__EntryAssignment_2_1(); state._fsp--; } after(grammarAccess.getPartialModelSpecificationAccess().getEntryAssignment_2_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelSpecification__Group_2__1__Impl" // $ANTLR start "rule__FolderEntry__Group__0" // InternalApplicationConfiguration.g:3627:1: rule__FolderEntry__Group__0 : rule__FolderEntry__Group__0__Impl rule__FolderEntry__Group__1 ; public final void rule__FolderEntry__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3631:1: ( rule__FolderEntry__Group__0__Impl rule__FolderEntry__Group__1 ) // InternalApplicationConfiguration.g:3632:2: rule__FolderEntry__Group__0__Impl rule__FolderEntry__Group__1 { pushFollow(FOLLOW_20); rule__FolderEntry__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__FolderEntry__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group__0" // $ANTLR start "rule__FolderEntry__Group__0__Impl" // InternalApplicationConfiguration.g:3639:1: rule__FolderEntry__Group__0__Impl : ( 'folder' ) ; public final void rule__FolderEntry__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3643:1: ( ( 'folder' ) ) // InternalApplicationConfiguration.g:3644:1: ( 'folder' ) { // InternalApplicationConfiguration.g:3644:1: ( 'folder' ) // InternalApplicationConfiguration.g:3645:2: 'folder' { before(grammarAccess.getFolderEntryAccess().getFolderKeyword_0()); match(input,30,FOLLOW_2); after(grammarAccess.getFolderEntryAccess().getFolderKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group__0__Impl" // $ANTLR start "rule__FolderEntry__Group__1" // InternalApplicationConfiguration.g:3654:1: rule__FolderEntry__Group__1 : rule__FolderEntry__Group__1__Impl rule__FolderEntry__Group__2 ; public final void rule__FolderEntry__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3658:1: ( rule__FolderEntry__Group__1__Impl rule__FolderEntry__Group__2 ) // InternalApplicationConfiguration.g:3659:2: rule__FolderEntry__Group__1__Impl rule__FolderEntry__Group__2 { pushFollow(FOLLOW_16); rule__FolderEntry__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__FolderEntry__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group__1" // $ANTLR start "rule__FolderEntry__Group__1__Impl" // InternalApplicationConfiguration.g:3666:1: rule__FolderEntry__Group__1__Impl : ( ( rule__FolderEntry__PathAssignment_1 ) ) ; public final void rule__FolderEntry__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3670:1: ( ( ( rule__FolderEntry__PathAssignment_1 ) ) ) // InternalApplicationConfiguration.g:3671:1: ( ( rule__FolderEntry__PathAssignment_1 ) ) { // InternalApplicationConfiguration.g:3671:1: ( ( rule__FolderEntry__PathAssignment_1 ) ) // InternalApplicationConfiguration.g:3672:2: ( rule__FolderEntry__PathAssignment_1 ) { before(grammarAccess.getFolderEntryAccess().getPathAssignment_1()); // InternalApplicationConfiguration.g:3673:2: ( rule__FolderEntry__PathAssignment_1 ) // InternalApplicationConfiguration.g:3673:3: rule__FolderEntry__PathAssignment_1 { pushFollow(FOLLOW_2); rule__FolderEntry__PathAssignment_1(); state._fsp--; } after(grammarAccess.getFolderEntryAccess().getPathAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group__1__Impl" // $ANTLR start "rule__FolderEntry__Group__2" // InternalApplicationConfiguration.g:3681:1: rule__FolderEntry__Group__2 : rule__FolderEntry__Group__2__Impl ; public final void rule__FolderEntry__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3685:1: ( rule__FolderEntry__Group__2__Impl ) // InternalApplicationConfiguration.g:3686:2: rule__FolderEntry__Group__2__Impl { pushFollow(FOLLOW_2); rule__FolderEntry__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group__2" // $ANTLR start "rule__FolderEntry__Group__2__Impl" // InternalApplicationConfiguration.g:3692:1: rule__FolderEntry__Group__2__Impl : ( ( rule__FolderEntry__Group_2__0 )? ) ; public final void rule__FolderEntry__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3696:1: ( ( ( rule__FolderEntry__Group_2__0 )? ) ) // InternalApplicationConfiguration.g:3697:1: ( ( rule__FolderEntry__Group_2__0 )? ) { // InternalApplicationConfiguration.g:3697:1: ( ( rule__FolderEntry__Group_2__0 )? ) // InternalApplicationConfiguration.g:3698:2: ( rule__FolderEntry__Group_2__0 )? { before(grammarAccess.getFolderEntryAccess().getGroup_2()); // InternalApplicationConfiguration.g:3699:2: ( rule__FolderEntry__Group_2__0 )? int alt38=2; int LA38_0 = input.LA(1); if ( (LA38_0==27) ) { alt38=1; } switch (alt38) { case 1 : // InternalApplicationConfiguration.g:3699:3: rule__FolderEntry__Group_2__0 { pushFollow(FOLLOW_2); rule__FolderEntry__Group_2__0(); state._fsp--; } break; } after(grammarAccess.getFolderEntryAccess().getGroup_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group__2__Impl" // $ANTLR start "rule__FolderEntry__Group_2__0" // InternalApplicationConfiguration.g:3708:1: rule__FolderEntry__Group_2__0 : rule__FolderEntry__Group_2__0__Impl rule__FolderEntry__Group_2__1 ; public final void rule__FolderEntry__Group_2__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3712:1: ( rule__FolderEntry__Group_2__0__Impl rule__FolderEntry__Group_2__1 ) // InternalApplicationConfiguration.g:3713:2: rule__FolderEntry__Group_2__0__Impl rule__FolderEntry__Group_2__1 { pushFollow(FOLLOW_17); rule__FolderEntry__Group_2__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__FolderEntry__Group_2__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group_2__0" // $ANTLR start "rule__FolderEntry__Group_2__0__Impl" // InternalApplicationConfiguration.g:3720:1: rule__FolderEntry__Group_2__0__Impl : ( 'excluding' ) ; public final void rule__FolderEntry__Group_2__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3724:1: ( ( 'excluding' ) ) // InternalApplicationConfiguration.g:3725:1: ( 'excluding' ) { // InternalApplicationConfiguration.g:3725:1: ( 'excluding' ) // InternalApplicationConfiguration.g:3726:2: 'excluding' { before(grammarAccess.getFolderEntryAccess().getExcludingKeyword_2_0()); match(input,27,FOLLOW_2); after(grammarAccess.getFolderEntryAccess().getExcludingKeyword_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group_2__0__Impl" // $ANTLR start "rule__FolderEntry__Group_2__1" // InternalApplicationConfiguration.g:3735:1: rule__FolderEntry__Group_2__1 : rule__FolderEntry__Group_2__1__Impl rule__FolderEntry__Group_2__2 ; public final void rule__FolderEntry__Group_2__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3739:1: ( rule__FolderEntry__Group_2__1__Impl rule__FolderEntry__Group_2__2 ) // InternalApplicationConfiguration.g:3740:2: rule__FolderEntry__Group_2__1__Impl rule__FolderEntry__Group_2__2 { pushFollow(FOLLOW_20); rule__FolderEntry__Group_2__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__FolderEntry__Group_2__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group_2__1" // $ANTLR start "rule__FolderEntry__Group_2__1__Impl" // InternalApplicationConfiguration.g:3747:1: rule__FolderEntry__Group_2__1__Impl : ( '{' ) ; public final void rule__FolderEntry__Group_2__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3751:1: ( ( '{' ) ) // InternalApplicationConfiguration.g:3752:1: ( '{' ) { // InternalApplicationConfiguration.g:3752:1: ( '{' ) // InternalApplicationConfiguration.g:3753:2: '{' { before(grammarAccess.getFolderEntryAccess().getLeftCurlyBracketKeyword_2_1()); match(input,23,FOLLOW_2); after(grammarAccess.getFolderEntryAccess().getLeftCurlyBracketKeyword_2_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group_2__1__Impl" // $ANTLR start "rule__FolderEntry__Group_2__2" // InternalApplicationConfiguration.g:3762:1: rule__FolderEntry__Group_2__2 : rule__FolderEntry__Group_2__2__Impl rule__FolderEntry__Group_2__3 ; public final void rule__FolderEntry__Group_2__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3766:1: ( rule__FolderEntry__Group_2__2__Impl rule__FolderEntry__Group_2__3 ) // InternalApplicationConfiguration.g:3767:2: rule__FolderEntry__Group_2__2__Impl rule__FolderEntry__Group_2__3 { pushFollow(FOLLOW_14); rule__FolderEntry__Group_2__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__FolderEntry__Group_2__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group_2__2" // $ANTLR start "rule__FolderEntry__Group_2__2__Impl" // InternalApplicationConfiguration.g:3774:1: rule__FolderEntry__Group_2__2__Impl : ( ( rule__FolderEntry__ExclusionAssignment_2_2 ) ) ; public final void rule__FolderEntry__Group_2__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3778:1: ( ( ( rule__FolderEntry__ExclusionAssignment_2_2 ) ) ) // InternalApplicationConfiguration.g:3779:1: ( ( rule__FolderEntry__ExclusionAssignment_2_2 ) ) { // InternalApplicationConfiguration.g:3779:1: ( ( rule__FolderEntry__ExclusionAssignment_2_2 ) ) // InternalApplicationConfiguration.g:3780:2: ( rule__FolderEntry__ExclusionAssignment_2_2 ) { before(grammarAccess.getFolderEntryAccess().getExclusionAssignment_2_2()); // InternalApplicationConfiguration.g:3781:2: ( rule__FolderEntry__ExclusionAssignment_2_2 ) // InternalApplicationConfiguration.g:3781:3: rule__FolderEntry__ExclusionAssignment_2_2 { pushFollow(FOLLOW_2); rule__FolderEntry__ExclusionAssignment_2_2(); state._fsp--; } after(grammarAccess.getFolderEntryAccess().getExclusionAssignment_2_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group_2__2__Impl" // $ANTLR start "rule__FolderEntry__Group_2__3" // InternalApplicationConfiguration.g:3789:1: rule__FolderEntry__Group_2__3 : rule__FolderEntry__Group_2__3__Impl rule__FolderEntry__Group_2__4 ; public final void rule__FolderEntry__Group_2__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3793:1: ( rule__FolderEntry__Group_2__3__Impl rule__FolderEntry__Group_2__4 ) // InternalApplicationConfiguration.g:3794:2: rule__FolderEntry__Group_2__3__Impl rule__FolderEntry__Group_2__4 { pushFollow(FOLLOW_14); rule__FolderEntry__Group_2__3__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__FolderEntry__Group_2__4(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group_2__3" // $ANTLR start "rule__FolderEntry__Group_2__3__Impl" // InternalApplicationConfiguration.g:3801:1: rule__FolderEntry__Group_2__3__Impl : ( ( rule__FolderEntry__Group_2_3__0 )* ) ; public final void rule__FolderEntry__Group_2__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3805:1: ( ( ( rule__FolderEntry__Group_2_3__0 )* ) ) // InternalApplicationConfiguration.g:3806:1: ( ( rule__FolderEntry__Group_2_3__0 )* ) { // InternalApplicationConfiguration.g:3806:1: ( ( rule__FolderEntry__Group_2_3__0 )* ) // InternalApplicationConfiguration.g:3807:2: ( rule__FolderEntry__Group_2_3__0 )* { before(grammarAccess.getFolderEntryAccess().getGroup_2_3()); // InternalApplicationConfiguration.g:3808:2: ( rule__FolderEntry__Group_2_3__0 )* loop39: do { int alt39=2; int LA39_0 = input.LA(1); if ( (LA39_0==25) ) { alt39=1; } switch (alt39) { case 1 : // InternalApplicationConfiguration.g:3808:3: rule__FolderEntry__Group_2_3__0 { pushFollow(FOLLOW_15); rule__FolderEntry__Group_2_3__0(); state._fsp--; } break; default : break loop39; } } while (true); after(grammarAccess.getFolderEntryAccess().getGroup_2_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group_2__3__Impl" // $ANTLR start "rule__FolderEntry__Group_2__4" // InternalApplicationConfiguration.g:3816:1: rule__FolderEntry__Group_2__4 : rule__FolderEntry__Group_2__4__Impl ; public final void rule__FolderEntry__Group_2__4() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3820:1: ( rule__FolderEntry__Group_2__4__Impl ) // InternalApplicationConfiguration.g:3821:2: rule__FolderEntry__Group_2__4__Impl { pushFollow(FOLLOW_2); rule__FolderEntry__Group_2__4__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group_2__4" // $ANTLR start "rule__FolderEntry__Group_2__4__Impl" // InternalApplicationConfiguration.g:3827:1: rule__FolderEntry__Group_2__4__Impl : ( '}' ) ; public final void rule__FolderEntry__Group_2__4__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3831:1: ( ( '}' ) ) // InternalApplicationConfiguration.g:3832:1: ( '}' ) { // InternalApplicationConfiguration.g:3832:1: ( '}' ) // InternalApplicationConfiguration.g:3833:2: '}' { before(grammarAccess.getFolderEntryAccess().getRightCurlyBracketKeyword_2_4()); match(input,24,FOLLOW_2); after(grammarAccess.getFolderEntryAccess().getRightCurlyBracketKeyword_2_4()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group_2__4__Impl" // $ANTLR start "rule__FolderEntry__Group_2_3__0" // InternalApplicationConfiguration.g:3843:1: rule__FolderEntry__Group_2_3__0 : rule__FolderEntry__Group_2_3__0__Impl rule__FolderEntry__Group_2_3__1 ; public final void rule__FolderEntry__Group_2_3__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3847:1: ( rule__FolderEntry__Group_2_3__0__Impl rule__FolderEntry__Group_2_3__1 ) // InternalApplicationConfiguration.g:3848:2: rule__FolderEntry__Group_2_3__0__Impl rule__FolderEntry__Group_2_3__1 { pushFollow(FOLLOW_20); rule__FolderEntry__Group_2_3__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__FolderEntry__Group_2_3__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group_2_3__0" // $ANTLR start "rule__FolderEntry__Group_2_3__0__Impl" // InternalApplicationConfiguration.g:3855:1: rule__FolderEntry__Group_2_3__0__Impl : ( ',' ) ; public final void rule__FolderEntry__Group_2_3__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3859:1: ( ( ',' ) ) // InternalApplicationConfiguration.g:3860:1: ( ',' ) { // InternalApplicationConfiguration.g:3860:1: ( ',' ) // InternalApplicationConfiguration.g:3861:2: ',' { before(grammarAccess.getFolderEntryAccess().getCommaKeyword_2_3_0()); match(input,25,FOLLOW_2); after(grammarAccess.getFolderEntryAccess().getCommaKeyword_2_3_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group_2_3__0__Impl" // $ANTLR start "rule__FolderEntry__Group_2_3__1" // InternalApplicationConfiguration.g:3870:1: rule__FolderEntry__Group_2_3__1 : rule__FolderEntry__Group_2_3__1__Impl ; public final void rule__FolderEntry__Group_2_3__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3874:1: ( rule__FolderEntry__Group_2_3__1__Impl ) // InternalApplicationConfiguration.g:3875:2: rule__FolderEntry__Group_2_3__1__Impl { pushFollow(FOLLOW_2); rule__FolderEntry__Group_2_3__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group_2_3__1" // $ANTLR start "rule__FolderEntry__Group_2_3__1__Impl" // InternalApplicationConfiguration.g:3881:1: rule__FolderEntry__Group_2_3__1__Impl : ( ( rule__FolderEntry__ExclusionAssignment_2_3_1 ) ) ; public final void rule__FolderEntry__Group_2_3__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3885:1: ( ( ( rule__FolderEntry__ExclusionAssignment_2_3_1 ) ) ) // InternalApplicationConfiguration.g:3886:1: ( ( rule__FolderEntry__ExclusionAssignment_2_3_1 ) ) { // InternalApplicationConfiguration.g:3886:1: ( ( rule__FolderEntry__ExclusionAssignment_2_3_1 ) ) // InternalApplicationConfiguration.g:3887:2: ( rule__FolderEntry__ExclusionAssignment_2_3_1 ) { before(grammarAccess.getFolderEntryAccess().getExclusionAssignment_2_3_1()); // InternalApplicationConfiguration.g:3888:2: ( rule__FolderEntry__ExclusionAssignment_2_3_1 ) // InternalApplicationConfiguration.g:3888:3: rule__FolderEntry__ExclusionAssignment_2_3_1 { pushFollow(FOLLOW_2); rule__FolderEntry__ExclusionAssignment_2_3_1(); state._fsp--; } after(grammarAccess.getFolderEntryAccess().getExclusionAssignment_2_3_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__Group_2_3__1__Impl" // $ANTLR start "rule__PartialModelDeclaration__Group__0" // InternalApplicationConfiguration.g:3897:1: rule__PartialModelDeclaration__Group__0 : rule__PartialModelDeclaration__Group__0__Impl rule__PartialModelDeclaration__Group__1 ; public final void rule__PartialModelDeclaration__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3901:1: ( rule__PartialModelDeclaration__Group__0__Impl rule__PartialModelDeclaration__Group__1 ) // InternalApplicationConfiguration.g:3902:2: rule__PartialModelDeclaration__Group__0__Impl rule__PartialModelDeclaration__Group__1 { pushFollow(FOLLOW_8); rule__PartialModelDeclaration__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__PartialModelDeclaration__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelDeclaration__Group__0" // $ANTLR start "rule__PartialModelDeclaration__Group__0__Impl" // InternalApplicationConfiguration.g:3909:1: rule__PartialModelDeclaration__Group__0__Impl : ( 'models' ) ; public final void rule__PartialModelDeclaration__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3913:1: ( ( 'models' ) ) // InternalApplicationConfiguration.g:3914:1: ( 'models' ) { // InternalApplicationConfiguration.g:3914:1: ( 'models' ) // InternalApplicationConfiguration.g:3915:2: 'models' { before(grammarAccess.getPartialModelDeclarationAccess().getModelsKeyword_0()); match(input,31,FOLLOW_2); after(grammarAccess.getPartialModelDeclarationAccess().getModelsKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelDeclaration__Group__0__Impl" // $ANTLR start "rule__PartialModelDeclaration__Group__1" // InternalApplicationConfiguration.g:3924:1: rule__PartialModelDeclaration__Group__1 : rule__PartialModelDeclaration__Group__1__Impl rule__PartialModelDeclaration__Group__2 ; public final void rule__PartialModelDeclaration__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3928:1: ( rule__PartialModelDeclaration__Group__1__Impl rule__PartialModelDeclaration__Group__2 ) // InternalApplicationConfiguration.g:3929:2: rule__PartialModelDeclaration__Group__1__Impl rule__PartialModelDeclaration__Group__2 { pushFollow(FOLLOW_17); rule__PartialModelDeclaration__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__PartialModelDeclaration__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelDeclaration__Group__1" // $ANTLR start "rule__PartialModelDeclaration__Group__1__Impl" // InternalApplicationConfiguration.g:3936:1: rule__PartialModelDeclaration__Group__1__Impl : ( ( rule__PartialModelDeclaration__NameAssignment_1 ) ) ; public final void rule__PartialModelDeclaration__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3940:1: ( ( ( rule__PartialModelDeclaration__NameAssignment_1 ) ) ) // InternalApplicationConfiguration.g:3941:1: ( ( rule__PartialModelDeclaration__NameAssignment_1 ) ) { // InternalApplicationConfiguration.g:3941:1: ( ( rule__PartialModelDeclaration__NameAssignment_1 ) ) // InternalApplicationConfiguration.g:3942:2: ( rule__PartialModelDeclaration__NameAssignment_1 ) { before(grammarAccess.getPartialModelDeclarationAccess().getNameAssignment_1()); // InternalApplicationConfiguration.g:3943:2: ( rule__PartialModelDeclaration__NameAssignment_1 ) // InternalApplicationConfiguration.g:3943:3: rule__PartialModelDeclaration__NameAssignment_1 { pushFollow(FOLLOW_2); rule__PartialModelDeclaration__NameAssignment_1(); state._fsp--; } after(grammarAccess.getPartialModelDeclarationAccess().getNameAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelDeclaration__Group__1__Impl" // $ANTLR start "rule__PartialModelDeclaration__Group__2" // InternalApplicationConfiguration.g:3951:1: rule__PartialModelDeclaration__Group__2 : rule__PartialModelDeclaration__Group__2__Impl ; public final void rule__PartialModelDeclaration__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3955:1: ( rule__PartialModelDeclaration__Group__2__Impl ) // InternalApplicationConfiguration.g:3956:2: rule__PartialModelDeclaration__Group__2__Impl { pushFollow(FOLLOW_2); rule__PartialModelDeclaration__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelDeclaration__Group__2" // $ANTLR start "rule__PartialModelDeclaration__Group__2__Impl" // InternalApplicationConfiguration.g:3962:1: rule__PartialModelDeclaration__Group__2__Impl : ( ( rule__PartialModelDeclaration__SpecificationAssignment_2 ) ) ; public final void rule__PartialModelDeclaration__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3966:1: ( ( ( rule__PartialModelDeclaration__SpecificationAssignment_2 ) ) ) // InternalApplicationConfiguration.g:3967:1: ( ( rule__PartialModelDeclaration__SpecificationAssignment_2 ) ) { // InternalApplicationConfiguration.g:3967:1: ( ( rule__PartialModelDeclaration__SpecificationAssignment_2 ) ) // InternalApplicationConfiguration.g:3968:2: ( rule__PartialModelDeclaration__SpecificationAssignment_2 ) { before(grammarAccess.getPartialModelDeclarationAccess().getSpecificationAssignment_2()); // InternalApplicationConfiguration.g:3969:2: ( rule__PartialModelDeclaration__SpecificationAssignment_2 ) // InternalApplicationConfiguration.g:3969:3: rule__PartialModelDeclaration__SpecificationAssignment_2 { pushFollow(FOLLOW_2); rule__PartialModelDeclaration__SpecificationAssignment_2(); state._fsp--; } after(grammarAccess.getPartialModelDeclarationAccess().getSpecificationAssignment_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelDeclaration__Group__2__Impl" // $ANTLR start "rule__PatternSpecification__Group__0" // InternalApplicationConfiguration.g:3978:1: rule__PatternSpecification__Group__0 : rule__PatternSpecification__Group__0__Impl rule__PatternSpecification__Group__1 ; public final void rule__PatternSpecification__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3982:1: ( rule__PatternSpecification__Group__0__Impl rule__PatternSpecification__Group__1 ) // InternalApplicationConfiguration.g:3983:2: rule__PatternSpecification__Group__0__Impl rule__PatternSpecification__Group__1 { pushFollow(FOLLOW_13); rule__PatternSpecification__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__PatternSpecification__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternSpecification__Group__0" // $ANTLR start "rule__PatternSpecification__Group__0__Impl" // InternalApplicationConfiguration.g:3990:1: rule__PatternSpecification__Group__0__Impl : ( '{' ) ; public final void rule__PatternSpecification__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:3994:1: ( ( '{' ) ) // InternalApplicationConfiguration.g:3995:1: ( '{' ) { // InternalApplicationConfiguration.g:3995:1: ( '{' ) // InternalApplicationConfiguration.g:3996:2: '{' { before(grammarAccess.getPatternSpecificationAccess().getLeftCurlyBracketKeyword_0()); match(input,23,FOLLOW_2); after(grammarAccess.getPatternSpecificationAccess().getLeftCurlyBracketKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternSpecification__Group__0__Impl" // $ANTLR start "rule__PatternSpecification__Group__1" // InternalApplicationConfiguration.g:4005:1: rule__PatternSpecification__Group__1 : rule__PatternSpecification__Group__1__Impl rule__PatternSpecification__Group__2 ; public final void rule__PatternSpecification__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4009:1: ( rule__PatternSpecification__Group__1__Impl rule__PatternSpecification__Group__2 ) // InternalApplicationConfiguration.g:4010:2: rule__PatternSpecification__Group__1__Impl rule__PatternSpecification__Group__2 { pushFollow(FOLLOW_14); rule__PatternSpecification__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__PatternSpecification__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternSpecification__Group__1" // $ANTLR start "rule__PatternSpecification__Group__1__Impl" // InternalApplicationConfiguration.g:4017:1: rule__PatternSpecification__Group__1__Impl : ( ( rule__PatternSpecification__EntriesAssignment_1 ) ) ; public final void rule__PatternSpecification__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4021:1: ( ( ( rule__PatternSpecification__EntriesAssignment_1 ) ) ) // InternalApplicationConfiguration.g:4022:1: ( ( rule__PatternSpecification__EntriesAssignment_1 ) ) { // InternalApplicationConfiguration.g:4022:1: ( ( rule__PatternSpecification__EntriesAssignment_1 ) ) // InternalApplicationConfiguration.g:4023:2: ( rule__PatternSpecification__EntriesAssignment_1 ) { before(grammarAccess.getPatternSpecificationAccess().getEntriesAssignment_1()); // InternalApplicationConfiguration.g:4024:2: ( rule__PatternSpecification__EntriesAssignment_1 ) // InternalApplicationConfiguration.g:4024:3: rule__PatternSpecification__EntriesAssignment_1 { pushFollow(FOLLOW_2); rule__PatternSpecification__EntriesAssignment_1(); state._fsp--; } after(grammarAccess.getPatternSpecificationAccess().getEntriesAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternSpecification__Group__1__Impl" // $ANTLR start "rule__PatternSpecification__Group__2" // InternalApplicationConfiguration.g:4032:1: rule__PatternSpecification__Group__2 : rule__PatternSpecification__Group__2__Impl rule__PatternSpecification__Group__3 ; public final void rule__PatternSpecification__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4036:1: ( rule__PatternSpecification__Group__2__Impl rule__PatternSpecification__Group__3 ) // InternalApplicationConfiguration.g:4037:2: rule__PatternSpecification__Group__2__Impl rule__PatternSpecification__Group__3 { pushFollow(FOLLOW_14); rule__PatternSpecification__Group__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__PatternSpecification__Group__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternSpecification__Group__2" // $ANTLR start "rule__PatternSpecification__Group__2__Impl" // InternalApplicationConfiguration.g:4044:1: rule__PatternSpecification__Group__2__Impl : ( ( rule__PatternSpecification__Group_2__0 )* ) ; public final void rule__PatternSpecification__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4048:1: ( ( ( rule__PatternSpecification__Group_2__0 )* ) ) // InternalApplicationConfiguration.g:4049:1: ( ( rule__PatternSpecification__Group_2__0 )* ) { // InternalApplicationConfiguration.g:4049:1: ( ( rule__PatternSpecification__Group_2__0 )* ) // InternalApplicationConfiguration.g:4050:2: ( rule__PatternSpecification__Group_2__0 )* { before(grammarAccess.getPatternSpecificationAccess().getGroup_2()); // InternalApplicationConfiguration.g:4051:2: ( rule__PatternSpecification__Group_2__0 )* loop40: do { int alt40=2; int LA40_0 = input.LA(1); if ( (LA40_0==25) ) { alt40=1; } switch (alt40) { case 1 : // InternalApplicationConfiguration.g:4051:3: rule__PatternSpecification__Group_2__0 { pushFollow(FOLLOW_15); rule__PatternSpecification__Group_2__0(); state._fsp--; } break; default : break loop40; } } while (true); after(grammarAccess.getPatternSpecificationAccess().getGroup_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternSpecification__Group__2__Impl" // $ANTLR start "rule__PatternSpecification__Group__3" // InternalApplicationConfiguration.g:4059:1: rule__PatternSpecification__Group__3 : rule__PatternSpecification__Group__3__Impl ; public final void rule__PatternSpecification__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4063:1: ( rule__PatternSpecification__Group__3__Impl ) // InternalApplicationConfiguration.g:4064:2: rule__PatternSpecification__Group__3__Impl { pushFollow(FOLLOW_2); rule__PatternSpecification__Group__3__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternSpecification__Group__3" // $ANTLR start "rule__PatternSpecification__Group__3__Impl" // InternalApplicationConfiguration.g:4070:1: rule__PatternSpecification__Group__3__Impl : ( '}' ) ; public final void rule__PatternSpecification__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4074:1: ( ( '}' ) ) // InternalApplicationConfiguration.g:4075:1: ( '}' ) { // InternalApplicationConfiguration.g:4075:1: ( '}' ) // InternalApplicationConfiguration.g:4076:2: '}' { before(grammarAccess.getPatternSpecificationAccess().getRightCurlyBracketKeyword_3()); match(input,24,FOLLOW_2); after(grammarAccess.getPatternSpecificationAccess().getRightCurlyBracketKeyword_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternSpecification__Group__3__Impl" // $ANTLR start "rule__PatternSpecification__Group_2__0" // InternalApplicationConfiguration.g:4086:1: rule__PatternSpecification__Group_2__0 : rule__PatternSpecification__Group_2__0__Impl rule__PatternSpecification__Group_2__1 ; public final void rule__PatternSpecification__Group_2__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4090:1: ( rule__PatternSpecification__Group_2__0__Impl rule__PatternSpecification__Group_2__1 ) // InternalApplicationConfiguration.g:4091:2: rule__PatternSpecification__Group_2__0__Impl rule__PatternSpecification__Group_2__1 { pushFollow(FOLLOW_13); rule__PatternSpecification__Group_2__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__PatternSpecification__Group_2__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternSpecification__Group_2__0" // $ANTLR start "rule__PatternSpecification__Group_2__0__Impl" // InternalApplicationConfiguration.g:4098:1: rule__PatternSpecification__Group_2__0__Impl : ( ',' ) ; public final void rule__PatternSpecification__Group_2__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4102:1: ( ( ',' ) ) // InternalApplicationConfiguration.g:4103:1: ( ',' ) { // InternalApplicationConfiguration.g:4103:1: ( ',' ) // InternalApplicationConfiguration.g:4104:2: ',' { before(grammarAccess.getPatternSpecificationAccess().getCommaKeyword_2_0()); match(input,25,FOLLOW_2); after(grammarAccess.getPatternSpecificationAccess().getCommaKeyword_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternSpecification__Group_2__0__Impl" // $ANTLR start "rule__PatternSpecification__Group_2__1" // InternalApplicationConfiguration.g:4113:1: rule__PatternSpecification__Group_2__1 : rule__PatternSpecification__Group_2__1__Impl ; public final void rule__PatternSpecification__Group_2__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4117:1: ( rule__PatternSpecification__Group_2__1__Impl ) // InternalApplicationConfiguration.g:4118:2: rule__PatternSpecification__Group_2__1__Impl { pushFollow(FOLLOW_2); rule__PatternSpecification__Group_2__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternSpecification__Group_2__1" // $ANTLR start "rule__PatternSpecification__Group_2__1__Impl" // InternalApplicationConfiguration.g:4124:1: rule__PatternSpecification__Group_2__1__Impl : ( ( rule__PatternSpecification__EntriesAssignment_2_1 ) ) ; public final void rule__PatternSpecification__Group_2__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4128:1: ( ( ( rule__PatternSpecification__EntriesAssignment_2_1 ) ) ) // InternalApplicationConfiguration.g:4129:1: ( ( rule__PatternSpecification__EntriesAssignment_2_1 ) ) { // InternalApplicationConfiguration.g:4129:1: ( ( rule__PatternSpecification__EntriesAssignment_2_1 ) ) // InternalApplicationConfiguration.g:4130:2: ( rule__PatternSpecification__EntriesAssignment_2_1 ) { before(grammarAccess.getPatternSpecificationAccess().getEntriesAssignment_2_1()); // InternalApplicationConfiguration.g:4131:2: ( rule__PatternSpecification__EntriesAssignment_2_1 ) // InternalApplicationConfiguration.g:4131:3: rule__PatternSpecification__EntriesAssignment_2_1 { pushFollow(FOLLOW_2); rule__PatternSpecification__EntriesAssignment_2_1(); state._fsp--; } after(grammarAccess.getPatternSpecificationAccess().getEntriesAssignment_2_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternSpecification__Group_2__1__Impl" // $ANTLR start "rule__AllPatternEntry__Group__0" // InternalApplicationConfiguration.g:4140:1: rule__AllPatternEntry__Group__0 : rule__AllPatternEntry__Group__0__Impl rule__AllPatternEntry__Group__1 ; public final void rule__AllPatternEntry__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4144:1: ( rule__AllPatternEntry__Group__0__Impl rule__AllPatternEntry__Group__1 ) // InternalApplicationConfiguration.g:4145:2: rule__AllPatternEntry__Group__0__Impl rule__AllPatternEntry__Group__1 { pushFollow(FOLLOW_8); rule__AllPatternEntry__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__AllPatternEntry__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group__0" // $ANTLR start "rule__AllPatternEntry__Group__0__Impl" // InternalApplicationConfiguration.g:4152:1: rule__AllPatternEntry__Group__0__Impl : ( 'package' ) ; public final void rule__AllPatternEntry__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4156:1: ( ( 'package' ) ) // InternalApplicationConfiguration.g:4157:1: ( 'package' ) { // InternalApplicationConfiguration.g:4157:1: ( 'package' ) // InternalApplicationConfiguration.g:4158:2: 'package' { before(grammarAccess.getAllPatternEntryAccess().getPackageKeyword_0()); match(input,26,FOLLOW_2); after(grammarAccess.getAllPatternEntryAccess().getPackageKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group__0__Impl" // $ANTLR start "rule__AllPatternEntry__Group__1" // InternalApplicationConfiguration.g:4167:1: rule__AllPatternEntry__Group__1 : rule__AllPatternEntry__Group__1__Impl rule__AllPatternEntry__Group__2 ; public final void rule__AllPatternEntry__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4171:1: ( rule__AllPatternEntry__Group__1__Impl rule__AllPatternEntry__Group__2 ) // InternalApplicationConfiguration.g:4172:2: rule__AllPatternEntry__Group__1__Impl rule__AllPatternEntry__Group__2 { pushFollow(FOLLOW_16); rule__AllPatternEntry__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__AllPatternEntry__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group__1" // $ANTLR start "rule__AllPatternEntry__Group__1__Impl" // InternalApplicationConfiguration.g:4179:1: rule__AllPatternEntry__Group__1__Impl : ( ( rule__AllPatternEntry__PackageAssignment_1 ) ) ; public final void rule__AllPatternEntry__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4183:1: ( ( ( rule__AllPatternEntry__PackageAssignment_1 ) ) ) // InternalApplicationConfiguration.g:4184:1: ( ( rule__AllPatternEntry__PackageAssignment_1 ) ) { // InternalApplicationConfiguration.g:4184:1: ( ( rule__AllPatternEntry__PackageAssignment_1 ) ) // InternalApplicationConfiguration.g:4185:2: ( rule__AllPatternEntry__PackageAssignment_1 ) { before(grammarAccess.getAllPatternEntryAccess().getPackageAssignment_1()); // InternalApplicationConfiguration.g:4186:2: ( rule__AllPatternEntry__PackageAssignment_1 ) // InternalApplicationConfiguration.g:4186:3: rule__AllPatternEntry__PackageAssignment_1 { pushFollow(FOLLOW_2); rule__AllPatternEntry__PackageAssignment_1(); state._fsp--; } after(grammarAccess.getAllPatternEntryAccess().getPackageAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group__1__Impl" // $ANTLR start "rule__AllPatternEntry__Group__2" // InternalApplicationConfiguration.g:4194:1: rule__AllPatternEntry__Group__2 : rule__AllPatternEntry__Group__2__Impl ; public final void rule__AllPatternEntry__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4198:1: ( rule__AllPatternEntry__Group__2__Impl ) // InternalApplicationConfiguration.g:4199:2: rule__AllPatternEntry__Group__2__Impl { pushFollow(FOLLOW_2); rule__AllPatternEntry__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group__2" // $ANTLR start "rule__AllPatternEntry__Group__2__Impl" // InternalApplicationConfiguration.g:4205:1: rule__AllPatternEntry__Group__2__Impl : ( ( rule__AllPatternEntry__Group_2__0 )? ) ; public final void rule__AllPatternEntry__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4209:1: ( ( ( rule__AllPatternEntry__Group_2__0 )? ) ) // InternalApplicationConfiguration.g:4210:1: ( ( rule__AllPatternEntry__Group_2__0 )? ) { // InternalApplicationConfiguration.g:4210:1: ( ( rule__AllPatternEntry__Group_2__0 )? ) // InternalApplicationConfiguration.g:4211:2: ( rule__AllPatternEntry__Group_2__0 )? { before(grammarAccess.getAllPatternEntryAccess().getGroup_2()); // InternalApplicationConfiguration.g:4212:2: ( rule__AllPatternEntry__Group_2__0 )? int alt41=2; int LA41_0 = input.LA(1); if ( (LA41_0==27) ) { alt41=1; } switch (alt41) { case 1 : // InternalApplicationConfiguration.g:4212:3: rule__AllPatternEntry__Group_2__0 { pushFollow(FOLLOW_2); rule__AllPatternEntry__Group_2__0(); state._fsp--; } break; } after(grammarAccess.getAllPatternEntryAccess().getGroup_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group__2__Impl" // $ANTLR start "rule__AllPatternEntry__Group_2__0" // InternalApplicationConfiguration.g:4221:1: rule__AllPatternEntry__Group_2__0 : rule__AllPatternEntry__Group_2__0__Impl rule__AllPatternEntry__Group_2__1 ; public final void rule__AllPatternEntry__Group_2__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4225:1: ( rule__AllPatternEntry__Group_2__0__Impl rule__AllPatternEntry__Group_2__1 ) // InternalApplicationConfiguration.g:4226:2: rule__AllPatternEntry__Group_2__0__Impl rule__AllPatternEntry__Group_2__1 { pushFollow(FOLLOW_17); rule__AllPatternEntry__Group_2__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__AllPatternEntry__Group_2__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group_2__0" // $ANTLR start "rule__AllPatternEntry__Group_2__0__Impl" // InternalApplicationConfiguration.g:4233:1: rule__AllPatternEntry__Group_2__0__Impl : ( 'excluding' ) ; public final void rule__AllPatternEntry__Group_2__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4237:1: ( ( 'excluding' ) ) // InternalApplicationConfiguration.g:4238:1: ( 'excluding' ) { // InternalApplicationConfiguration.g:4238:1: ( 'excluding' ) // InternalApplicationConfiguration.g:4239:2: 'excluding' { before(grammarAccess.getAllPatternEntryAccess().getExcludingKeyword_2_0()); match(input,27,FOLLOW_2); after(grammarAccess.getAllPatternEntryAccess().getExcludingKeyword_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group_2__0__Impl" // $ANTLR start "rule__AllPatternEntry__Group_2__1" // InternalApplicationConfiguration.g:4248:1: rule__AllPatternEntry__Group_2__1 : rule__AllPatternEntry__Group_2__1__Impl rule__AllPatternEntry__Group_2__2 ; public final void rule__AllPatternEntry__Group_2__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4252:1: ( rule__AllPatternEntry__Group_2__1__Impl rule__AllPatternEntry__Group_2__2 ) // InternalApplicationConfiguration.g:4253:2: rule__AllPatternEntry__Group_2__1__Impl rule__AllPatternEntry__Group_2__2 { pushFollow(FOLLOW_8); rule__AllPatternEntry__Group_2__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__AllPatternEntry__Group_2__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group_2__1" // $ANTLR start "rule__AllPatternEntry__Group_2__1__Impl" // InternalApplicationConfiguration.g:4260:1: rule__AllPatternEntry__Group_2__1__Impl : ( '{' ) ; public final void rule__AllPatternEntry__Group_2__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4264:1: ( ( '{' ) ) // InternalApplicationConfiguration.g:4265:1: ( '{' ) { // InternalApplicationConfiguration.g:4265:1: ( '{' ) // InternalApplicationConfiguration.g:4266:2: '{' { before(grammarAccess.getAllPatternEntryAccess().getLeftCurlyBracketKeyword_2_1()); match(input,23,FOLLOW_2); after(grammarAccess.getAllPatternEntryAccess().getLeftCurlyBracketKeyword_2_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group_2__1__Impl" // $ANTLR start "rule__AllPatternEntry__Group_2__2" // InternalApplicationConfiguration.g:4275:1: rule__AllPatternEntry__Group_2__2 : rule__AllPatternEntry__Group_2__2__Impl rule__AllPatternEntry__Group_2__3 ; public final void rule__AllPatternEntry__Group_2__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4279:1: ( rule__AllPatternEntry__Group_2__2__Impl rule__AllPatternEntry__Group_2__3 ) // InternalApplicationConfiguration.g:4280:2: rule__AllPatternEntry__Group_2__2__Impl rule__AllPatternEntry__Group_2__3 { pushFollow(FOLLOW_14); rule__AllPatternEntry__Group_2__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__AllPatternEntry__Group_2__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group_2__2" // $ANTLR start "rule__AllPatternEntry__Group_2__2__Impl" // InternalApplicationConfiguration.g:4287:1: rule__AllPatternEntry__Group_2__2__Impl : ( ( rule__AllPatternEntry__ExclusuionAssignment_2_2 ) ) ; public final void rule__AllPatternEntry__Group_2__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4291:1: ( ( ( rule__AllPatternEntry__ExclusuionAssignment_2_2 ) ) ) // InternalApplicationConfiguration.g:4292:1: ( ( rule__AllPatternEntry__ExclusuionAssignment_2_2 ) ) { // InternalApplicationConfiguration.g:4292:1: ( ( rule__AllPatternEntry__ExclusuionAssignment_2_2 ) ) // InternalApplicationConfiguration.g:4293:2: ( rule__AllPatternEntry__ExclusuionAssignment_2_2 ) { before(grammarAccess.getAllPatternEntryAccess().getExclusuionAssignment_2_2()); // InternalApplicationConfiguration.g:4294:2: ( rule__AllPatternEntry__ExclusuionAssignment_2_2 ) // InternalApplicationConfiguration.g:4294:3: rule__AllPatternEntry__ExclusuionAssignment_2_2 { pushFollow(FOLLOW_2); rule__AllPatternEntry__ExclusuionAssignment_2_2(); state._fsp--; } after(grammarAccess.getAllPatternEntryAccess().getExclusuionAssignment_2_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group_2__2__Impl" // $ANTLR start "rule__AllPatternEntry__Group_2__3" // InternalApplicationConfiguration.g:4302:1: rule__AllPatternEntry__Group_2__3 : rule__AllPatternEntry__Group_2__3__Impl rule__AllPatternEntry__Group_2__4 ; public final void rule__AllPatternEntry__Group_2__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4306:1: ( rule__AllPatternEntry__Group_2__3__Impl rule__AllPatternEntry__Group_2__4 ) // InternalApplicationConfiguration.g:4307:2: rule__AllPatternEntry__Group_2__3__Impl rule__AllPatternEntry__Group_2__4 { pushFollow(FOLLOW_14); rule__AllPatternEntry__Group_2__3__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__AllPatternEntry__Group_2__4(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group_2__3" // $ANTLR start "rule__AllPatternEntry__Group_2__3__Impl" // InternalApplicationConfiguration.g:4314:1: rule__AllPatternEntry__Group_2__3__Impl : ( ( rule__AllPatternEntry__Group_2_3__0 )* ) ; public final void rule__AllPatternEntry__Group_2__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4318:1: ( ( ( rule__AllPatternEntry__Group_2_3__0 )* ) ) // InternalApplicationConfiguration.g:4319:1: ( ( rule__AllPatternEntry__Group_2_3__0 )* ) { // InternalApplicationConfiguration.g:4319:1: ( ( rule__AllPatternEntry__Group_2_3__0 )* ) // InternalApplicationConfiguration.g:4320:2: ( rule__AllPatternEntry__Group_2_3__0 )* { before(grammarAccess.getAllPatternEntryAccess().getGroup_2_3()); // InternalApplicationConfiguration.g:4321:2: ( rule__AllPatternEntry__Group_2_3__0 )* loop42: do { int alt42=2; int LA42_0 = input.LA(1); if ( (LA42_0==25) ) { alt42=1; } switch (alt42) { case 1 : // InternalApplicationConfiguration.g:4321:3: rule__AllPatternEntry__Group_2_3__0 { pushFollow(FOLLOW_15); rule__AllPatternEntry__Group_2_3__0(); state._fsp--; } break; default : break loop42; } } while (true); after(grammarAccess.getAllPatternEntryAccess().getGroup_2_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group_2__3__Impl" // $ANTLR start "rule__AllPatternEntry__Group_2__4" // InternalApplicationConfiguration.g:4329:1: rule__AllPatternEntry__Group_2__4 : rule__AllPatternEntry__Group_2__4__Impl ; public final void rule__AllPatternEntry__Group_2__4() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4333:1: ( rule__AllPatternEntry__Group_2__4__Impl ) // InternalApplicationConfiguration.g:4334:2: rule__AllPatternEntry__Group_2__4__Impl { pushFollow(FOLLOW_2); rule__AllPatternEntry__Group_2__4__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group_2__4" // $ANTLR start "rule__AllPatternEntry__Group_2__4__Impl" // InternalApplicationConfiguration.g:4340:1: rule__AllPatternEntry__Group_2__4__Impl : ( '}' ) ; public final void rule__AllPatternEntry__Group_2__4__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4344:1: ( ( '}' ) ) // InternalApplicationConfiguration.g:4345:1: ( '}' ) { // InternalApplicationConfiguration.g:4345:1: ( '}' ) // InternalApplicationConfiguration.g:4346:2: '}' { before(grammarAccess.getAllPatternEntryAccess().getRightCurlyBracketKeyword_2_4()); match(input,24,FOLLOW_2); after(grammarAccess.getAllPatternEntryAccess().getRightCurlyBracketKeyword_2_4()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group_2__4__Impl" // $ANTLR start "rule__AllPatternEntry__Group_2_3__0" // InternalApplicationConfiguration.g:4356:1: rule__AllPatternEntry__Group_2_3__0 : rule__AllPatternEntry__Group_2_3__0__Impl rule__AllPatternEntry__Group_2_3__1 ; public final void rule__AllPatternEntry__Group_2_3__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4360:1: ( rule__AllPatternEntry__Group_2_3__0__Impl rule__AllPatternEntry__Group_2_3__1 ) // InternalApplicationConfiguration.g:4361:2: rule__AllPatternEntry__Group_2_3__0__Impl rule__AllPatternEntry__Group_2_3__1 { pushFollow(FOLLOW_8); rule__AllPatternEntry__Group_2_3__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__AllPatternEntry__Group_2_3__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group_2_3__0" // $ANTLR start "rule__AllPatternEntry__Group_2_3__0__Impl" // InternalApplicationConfiguration.g:4368:1: rule__AllPatternEntry__Group_2_3__0__Impl : ( ',' ) ; public final void rule__AllPatternEntry__Group_2_3__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4372:1: ( ( ',' ) ) // InternalApplicationConfiguration.g:4373:1: ( ',' ) { // InternalApplicationConfiguration.g:4373:1: ( ',' ) // InternalApplicationConfiguration.g:4374:2: ',' { before(grammarAccess.getAllPatternEntryAccess().getCommaKeyword_2_3_0()); match(input,25,FOLLOW_2); after(grammarAccess.getAllPatternEntryAccess().getCommaKeyword_2_3_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group_2_3__0__Impl" // $ANTLR start "rule__AllPatternEntry__Group_2_3__1" // InternalApplicationConfiguration.g:4383:1: rule__AllPatternEntry__Group_2_3__1 : rule__AllPatternEntry__Group_2_3__1__Impl ; public final void rule__AllPatternEntry__Group_2_3__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4387:1: ( rule__AllPatternEntry__Group_2_3__1__Impl ) // InternalApplicationConfiguration.g:4388:2: rule__AllPatternEntry__Group_2_3__1__Impl { pushFollow(FOLLOW_2); rule__AllPatternEntry__Group_2_3__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group_2_3__1" // $ANTLR start "rule__AllPatternEntry__Group_2_3__1__Impl" // InternalApplicationConfiguration.g:4394:1: rule__AllPatternEntry__Group_2_3__1__Impl : ( ( rule__AllPatternEntry__ExclusuionAssignment_2_3_1 ) ) ; public final void rule__AllPatternEntry__Group_2_3__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4398:1: ( ( ( rule__AllPatternEntry__ExclusuionAssignment_2_3_1 ) ) ) // InternalApplicationConfiguration.g:4399:1: ( ( rule__AllPatternEntry__ExclusuionAssignment_2_3_1 ) ) { // InternalApplicationConfiguration.g:4399:1: ( ( rule__AllPatternEntry__ExclusuionAssignment_2_3_1 ) ) // InternalApplicationConfiguration.g:4400:2: ( rule__AllPatternEntry__ExclusuionAssignment_2_3_1 ) { before(grammarAccess.getAllPatternEntryAccess().getExclusuionAssignment_2_3_1()); // InternalApplicationConfiguration.g:4401:2: ( rule__AllPatternEntry__ExclusuionAssignment_2_3_1 ) // InternalApplicationConfiguration.g:4401:3: rule__AllPatternEntry__ExclusuionAssignment_2_3_1 { pushFollow(FOLLOW_2); rule__AllPatternEntry__ExclusuionAssignment_2_3_1(); state._fsp--; } after(grammarAccess.getAllPatternEntryAccess().getExclusuionAssignment_2_3_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__Group_2_3__1__Impl" // $ANTLR start "rule__PatternElement__Group__0" // InternalApplicationConfiguration.g:4410:1: rule__PatternElement__Group__0 : rule__PatternElement__Group__0__Impl rule__PatternElement__Group__1 ; public final void rule__PatternElement__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4414:1: ( rule__PatternElement__Group__0__Impl rule__PatternElement__Group__1 ) // InternalApplicationConfiguration.g:4415:2: rule__PatternElement__Group__0__Impl rule__PatternElement__Group__1 { pushFollow(FOLLOW_8); rule__PatternElement__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__PatternElement__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternElement__Group__0" // $ANTLR start "rule__PatternElement__Group__0__Impl" // InternalApplicationConfiguration.g:4422:1: rule__PatternElement__Group__0__Impl : ( ( rule__PatternElement__Group_0__0 )? ) ; public final void rule__PatternElement__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4426:1: ( ( ( rule__PatternElement__Group_0__0 )? ) ) // InternalApplicationConfiguration.g:4427:1: ( ( rule__PatternElement__Group_0__0 )? ) { // InternalApplicationConfiguration.g:4427:1: ( ( rule__PatternElement__Group_0__0 )? ) // InternalApplicationConfiguration.g:4428:2: ( rule__PatternElement__Group_0__0 )? { before(grammarAccess.getPatternElementAccess().getGroup_0()); // InternalApplicationConfiguration.g:4429:2: ( rule__PatternElement__Group_0__0 )? int alt43=2; int LA43_0 = input.LA(1); if ( (LA43_0==RULE_ID) ) { int LA43_1 = input.LA(2); if ( (LA43_1==17||LA43_1==28) ) { alt43=1; } } switch (alt43) { case 1 : // InternalApplicationConfiguration.g:4429:3: rule__PatternElement__Group_0__0 { pushFollow(FOLLOW_2); rule__PatternElement__Group_0__0(); state._fsp--; } break; } after(grammarAccess.getPatternElementAccess().getGroup_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternElement__Group__0__Impl" // $ANTLR start "rule__PatternElement__Group__1" // InternalApplicationConfiguration.g:4437:1: rule__PatternElement__Group__1 : rule__PatternElement__Group__1__Impl ; public final void rule__PatternElement__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4441:1: ( rule__PatternElement__Group__1__Impl ) // InternalApplicationConfiguration.g:4442:2: rule__PatternElement__Group__1__Impl { pushFollow(FOLLOW_2); rule__PatternElement__Group__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternElement__Group__1" // $ANTLR start "rule__PatternElement__Group__1__Impl" // InternalApplicationConfiguration.g:4448:1: rule__PatternElement__Group__1__Impl : ( ( rule__PatternElement__PatternAssignment_1 ) ) ; public final void rule__PatternElement__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4452:1: ( ( ( rule__PatternElement__PatternAssignment_1 ) ) ) // InternalApplicationConfiguration.g:4453:1: ( ( rule__PatternElement__PatternAssignment_1 ) ) { // InternalApplicationConfiguration.g:4453:1: ( ( rule__PatternElement__PatternAssignment_1 ) ) // InternalApplicationConfiguration.g:4454:2: ( rule__PatternElement__PatternAssignment_1 ) { before(grammarAccess.getPatternElementAccess().getPatternAssignment_1()); // InternalApplicationConfiguration.g:4455:2: ( rule__PatternElement__PatternAssignment_1 ) // InternalApplicationConfiguration.g:4455:3: rule__PatternElement__PatternAssignment_1 { pushFollow(FOLLOW_2); rule__PatternElement__PatternAssignment_1(); state._fsp--; } after(grammarAccess.getPatternElementAccess().getPatternAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternElement__Group__1__Impl" // $ANTLR start "rule__PatternElement__Group_0__0" // InternalApplicationConfiguration.g:4464:1: rule__PatternElement__Group_0__0 : rule__PatternElement__Group_0__0__Impl rule__PatternElement__Group_0__1 ; public final void rule__PatternElement__Group_0__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4468:1: ( rule__PatternElement__Group_0__0__Impl rule__PatternElement__Group_0__1 ) // InternalApplicationConfiguration.g:4469:2: rule__PatternElement__Group_0__0__Impl rule__PatternElement__Group_0__1 { pushFollow(FOLLOW_18); rule__PatternElement__Group_0__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__PatternElement__Group_0__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternElement__Group_0__0" // $ANTLR start "rule__PatternElement__Group_0__0__Impl" // InternalApplicationConfiguration.g:4476:1: rule__PatternElement__Group_0__0__Impl : ( ( rule__PatternElement__PackageAssignment_0_0 ) ) ; public final void rule__PatternElement__Group_0__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4480:1: ( ( ( rule__PatternElement__PackageAssignment_0_0 ) ) ) // InternalApplicationConfiguration.g:4481:1: ( ( rule__PatternElement__PackageAssignment_0_0 ) ) { // InternalApplicationConfiguration.g:4481:1: ( ( rule__PatternElement__PackageAssignment_0_0 ) ) // InternalApplicationConfiguration.g:4482:2: ( rule__PatternElement__PackageAssignment_0_0 ) { before(grammarAccess.getPatternElementAccess().getPackageAssignment_0_0()); // InternalApplicationConfiguration.g:4483:2: ( rule__PatternElement__PackageAssignment_0_0 ) // InternalApplicationConfiguration.g:4483:3: rule__PatternElement__PackageAssignment_0_0 { pushFollow(FOLLOW_2); rule__PatternElement__PackageAssignment_0_0(); state._fsp--; } after(grammarAccess.getPatternElementAccess().getPackageAssignment_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternElement__Group_0__0__Impl" // $ANTLR start "rule__PatternElement__Group_0__1" // InternalApplicationConfiguration.g:4491:1: rule__PatternElement__Group_0__1 : rule__PatternElement__Group_0__1__Impl ; public final void rule__PatternElement__Group_0__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4495:1: ( rule__PatternElement__Group_0__1__Impl ) // InternalApplicationConfiguration.g:4496:2: rule__PatternElement__Group_0__1__Impl { pushFollow(FOLLOW_2); rule__PatternElement__Group_0__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternElement__Group_0__1" // $ANTLR start "rule__PatternElement__Group_0__1__Impl" // InternalApplicationConfiguration.g:4502:1: rule__PatternElement__Group_0__1__Impl : ( '::' ) ; public final void rule__PatternElement__Group_0__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4506:1: ( ( '::' ) ) // InternalApplicationConfiguration.g:4507:1: ( '::' ) { // InternalApplicationConfiguration.g:4507:1: ( '::' ) // InternalApplicationConfiguration.g:4508:2: '::' { before(grammarAccess.getPatternElementAccess().getColonColonKeyword_0_1()); match(input,28,FOLLOW_2); after(grammarAccess.getPatternElementAccess().getColonColonKeyword_0_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternElement__Group_0__1__Impl" // $ANTLR start "rule__GraphPatternDeclaration__Group__0" // InternalApplicationConfiguration.g:4518:1: rule__GraphPatternDeclaration__Group__0 : rule__GraphPatternDeclaration__Group__0__Impl rule__GraphPatternDeclaration__Group__1 ; public final void rule__GraphPatternDeclaration__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4522:1: ( rule__GraphPatternDeclaration__Group__0__Impl rule__GraphPatternDeclaration__Group__1 ) // InternalApplicationConfiguration.g:4523:2: rule__GraphPatternDeclaration__Group__0__Impl rule__GraphPatternDeclaration__Group__1 { pushFollow(FOLLOW_8); rule__GraphPatternDeclaration__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GraphPatternDeclaration__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GraphPatternDeclaration__Group__0" // $ANTLR start "rule__GraphPatternDeclaration__Group__0__Impl" // InternalApplicationConfiguration.g:4530:1: rule__GraphPatternDeclaration__Group__0__Impl : ( 'constraints' ) ; public final void rule__GraphPatternDeclaration__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4534:1: ( ( 'constraints' ) ) // InternalApplicationConfiguration.g:4535:1: ( 'constraints' ) { // InternalApplicationConfiguration.g:4535:1: ( 'constraints' ) // InternalApplicationConfiguration.g:4536:2: 'constraints' { before(grammarAccess.getGraphPatternDeclarationAccess().getConstraintsKeyword_0()); match(input,32,FOLLOW_2); after(grammarAccess.getGraphPatternDeclarationAccess().getConstraintsKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GraphPatternDeclaration__Group__0__Impl" // $ANTLR start "rule__GraphPatternDeclaration__Group__1" // InternalApplicationConfiguration.g:4545:1: rule__GraphPatternDeclaration__Group__1 : rule__GraphPatternDeclaration__Group__1__Impl rule__GraphPatternDeclaration__Group__2 ; public final void rule__GraphPatternDeclaration__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4549:1: ( rule__GraphPatternDeclaration__Group__1__Impl rule__GraphPatternDeclaration__Group__2 ) // InternalApplicationConfiguration.g:4550:2: rule__GraphPatternDeclaration__Group__1__Impl rule__GraphPatternDeclaration__Group__2 { pushFollow(FOLLOW_17); rule__GraphPatternDeclaration__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GraphPatternDeclaration__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GraphPatternDeclaration__Group__1" // $ANTLR start "rule__GraphPatternDeclaration__Group__1__Impl" // InternalApplicationConfiguration.g:4557:1: rule__GraphPatternDeclaration__Group__1__Impl : ( ( rule__GraphPatternDeclaration__NameAssignment_1 ) ) ; public final void rule__GraphPatternDeclaration__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4561:1: ( ( ( rule__GraphPatternDeclaration__NameAssignment_1 ) ) ) // InternalApplicationConfiguration.g:4562:1: ( ( rule__GraphPatternDeclaration__NameAssignment_1 ) ) { // InternalApplicationConfiguration.g:4562:1: ( ( rule__GraphPatternDeclaration__NameAssignment_1 ) ) // InternalApplicationConfiguration.g:4563:2: ( rule__GraphPatternDeclaration__NameAssignment_1 ) { before(grammarAccess.getGraphPatternDeclarationAccess().getNameAssignment_1()); // InternalApplicationConfiguration.g:4564:2: ( rule__GraphPatternDeclaration__NameAssignment_1 ) // InternalApplicationConfiguration.g:4564:3: rule__GraphPatternDeclaration__NameAssignment_1 { pushFollow(FOLLOW_2); rule__GraphPatternDeclaration__NameAssignment_1(); state._fsp--; } after(grammarAccess.getGraphPatternDeclarationAccess().getNameAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GraphPatternDeclaration__Group__1__Impl" // $ANTLR start "rule__GraphPatternDeclaration__Group__2" // InternalApplicationConfiguration.g:4572:1: rule__GraphPatternDeclaration__Group__2 : rule__GraphPatternDeclaration__Group__2__Impl ; public final void rule__GraphPatternDeclaration__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4576:1: ( rule__GraphPatternDeclaration__Group__2__Impl ) // InternalApplicationConfiguration.g:4577:2: rule__GraphPatternDeclaration__Group__2__Impl { pushFollow(FOLLOW_2); rule__GraphPatternDeclaration__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GraphPatternDeclaration__Group__2" // $ANTLR start "rule__GraphPatternDeclaration__Group__2__Impl" // InternalApplicationConfiguration.g:4583:1: rule__GraphPatternDeclaration__Group__2__Impl : ( ( rule__GraphPatternDeclaration__SpecificationAssignment_2 ) ) ; public final void rule__GraphPatternDeclaration__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4587:1: ( ( ( rule__GraphPatternDeclaration__SpecificationAssignment_2 ) ) ) // InternalApplicationConfiguration.g:4588:1: ( ( rule__GraphPatternDeclaration__SpecificationAssignment_2 ) ) { // InternalApplicationConfiguration.g:4588:1: ( ( rule__GraphPatternDeclaration__SpecificationAssignment_2 ) ) // InternalApplicationConfiguration.g:4589:2: ( rule__GraphPatternDeclaration__SpecificationAssignment_2 ) { before(grammarAccess.getGraphPatternDeclarationAccess().getSpecificationAssignment_2()); // InternalApplicationConfiguration.g:4590:2: ( rule__GraphPatternDeclaration__SpecificationAssignment_2 ) // InternalApplicationConfiguration.g:4590:3: rule__GraphPatternDeclaration__SpecificationAssignment_2 { pushFollow(FOLLOW_2); rule__GraphPatternDeclaration__SpecificationAssignment_2(); state._fsp--; } after(grammarAccess.getGraphPatternDeclarationAccess().getSpecificationAssignment_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GraphPatternDeclaration__Group__2__Impl" // $ANTLR start "rule__ConfigSpecification__Group__0" // InternalApplicationConfiguration.g:4599:1: rule__ConfigSpecification__Group__0 : rule__ConfigSpecification__Group__0__Impl rule__ConfigSpecification__Group__1 ; public final void rule__ConfigSpecification__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4603:1: ( rule__ConfigSpecification__Group__0__Impl rule__ConfigSpecification__Group__1 ) // InternalApplicationConfiguration.g:4604:2: rule__ConfigSpecification__Group__0__Impl rule__ConfigSpecification__Group__1 { pushFollow(FOLLOW_17); rule__ConfigSpecification__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ConfigSpecification__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group__0" // $ANTLR start "rule__ConfigSpecification__Group__0__Impl" // InternalApplicationConfiguration.g:4611:1: rule__ConfigSpecification__Group__0__Impl : ( () ) ; public final void rule__ConfigSpecification__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4615:1: ( ( () ) ) // InternalApplicationConfiguration.g:4616:1: ( () ) { // InternalApplicationConfiguration.g:4616:1: ( () ) // InternalApplicationConfiguration.g:4617:2: () { before(grammarAccess.getConfigSpecificationAccess().getConfigSpecificationAction_0()); // InternalApplicationConfiguration.g:4618:2: () // InternalApplicationConfiguration.g:4618:3: { } after(grammarAccess.getConfigSpecificationAccess().getConfigSpecificationAction_0()); } } } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group__0__Impl" // $ANTLR start "rule__ConfigSpecification__Group__1" // InternalApplicationConfiguration.g:4626:1: rule__ConfigSpecification__Group__1 : rule__ConfigSpecification__Group__1__Impl rule__ConfigSpecification__Group__2 ; public final void rule__ConfigSpecification__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4630:1: ( rule__ConfigSpecification__Group__1__Impl rule__ConfigSpecification__Group__2 ) // InternalApplicationConfiguration.g:4631:2: rule__ConfigSpecification__Group__1__Impl rule__ConfigSpecification__Group__2 { pushFollow(FOLLOW_21); rule__ConfigSpecification__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ConfigSpecification__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group__1" // $ANTLR start "rule__ConfigSpecification__Group__1__Impl" // InternalApplicationConfiguration.g:4638:1: rule__ConfigSpecification__Group__1__Impl : ( '{' ) ; public final void rule__ConfigSpecification__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4642:1: ( ( '{' ) ) // InternalApplicationConfiguration.g:4643:1: ( '{' ) { // InternalApplicationConfiguration.g:4643:1: ( '{' ) // InternalApplicationConfiguration.g:4644:2: '{' { before(grammarAccess.getConfigSpecificationAccess().getLeftCurlyBracketKeyword_1()); match(input,23,FOLLOW_2); after(grammarAccess.getConfigSpecificationAccess().getLeftCurlyBracketKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group__1__Impl" // $ANTLR start "rule__ConfigSpecification__Group__2" // InternalApplicationConfiguration.g:4653:1: rule__ConfigSpecification__Group__2 : rule__ConfigSpecification__Group__2__Impl rule__ConfigSpecification__Group__3 ; public final void rule__ConfigSpecification__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4657:1: ( rule__ConfigSpecification__Group__2__Impl rule__ConfigSpecification__Group__3 ) // InternalApplicationConfiguration.g:4658:2: rule__ConfigSpecification__Group__2__Impl rule__ConfigSpecification__Group__3 { pushFollow(FOLLOW_21); rule__ConfigSpecification__Group__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ConfigSpecification__Group__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group__2" // $ANTLR start "rule__ConfigSpecification__Group__2__Impl" // InternalApplicationConfiguration.g:4665:1: rule__ConfigSpecification__Group__2__Impl : ( ( rule__ConfigSpecification__Group_2__0 )? ) ; public final void rule__ConfigSpecification__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4669:1: ( ( ( rule__ConfigSpecification__Group_2__0 )? ) ) // InternalApplicationConfiguration.g:4670:1: ( ( rule__ConfigSpecification__Group_2__0 )? ) { // InternalApplicationConfiguration.g:4670:1: ( ( rule__ConfigSpecification__Group_2__0 )? ) // InternalApplicationConfiguration.g:4671:2: ( rule__ConfigSpecification__Group_2__0 )? { before(grammarAccess.getConfigSpecificationAccess().getGroup_2()); // InternalApplicationConfiguration.g:4672:2: ( rule__ConfigSpecification__Group_2__0 )? int alt44=2; int LA44_0 = input.LA(1); if ( (LA44_0==RULE_STRING||(LA44_0>=34 && LA44_0<=36)) ) { alt44=1; } switch (alt44) { case 1 : // InternalApplicationConfiguration.g:4672:3: rule__ConfigSpecification__Group_2__0 { pushFollow(FOLLOW_2); rule__ConfigSpecification__Group_2__0(); state._fsp--; } break; } after(grammarAccess.getConfigSpecificationAccess().getGroup_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group__2__Impl" // $ANTLR start "rule__ConfigSpecification__Group__3" // InternalApplicationConfiguration.g:4680:1: rule__ConfigSpecification__Group__3 : rule__ConfigSpecification__Group__3__Impl ; public final void rule__ConfigSpecification__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4684:1: ( rule__ConfigSpecification__Group__3__Impl ) // InternalApplicationConfiguration.g:4685:2: rule__ConfigSpecification__Group__3__Impl { pushFollow(FOLLOW_2); rule__ConfigSpecification__Group__3__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group__3" // $ANTLR start "rule__ConfigSpecification__Group__3__Impl" // InternalApplicationConfiguration.g:4691:1: rule__ConfigSpecification__Group__3__Impl : ( '}' ) ; public final void rule__ConfigSpecification__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4695:1: ( ( '}' ) ) // InternalApplicationConfiguration.g:4696:1: ( '}' ) { // InternalApplicationConfiguration.g:4696:1: ( '}' ) // InternalApplicationConfiguration.g:4697:2: '}' { before(grammarAccess.getConfigSpecificationAccess().getRightCurlyBracketKeyword_3()); match(input,24,FOLLOW_2); after(grammarAccess.getConfigSpecificationAccess().getRightCurlyBracketKeyword_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group__3__Impl" // $ANTLR start "rule__ConfigSpecification__Group_2__0" // InternalApplicationConfiguration.g:4707:1: rule__ConfigSpecification__Group_2__0 : rule__ConfigSpecification__Group_2__0__Impl rule__ConfigSpecification__Group_2__1 ; public final void rule__ConfigSpecification__Group_2__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4711:1: ( rule__ConfigSpecification__Group_2__0__Impl rule__ConfigSpecification__Group_2__1 ) // InternalApplicationConfiguration.g:4712:2: rule__ConfigSpecification__Group_2__0__Impl rule__ConfigSpecification__Group_2__1 { pushFollow(FOLLOW_22); rule__ConfigSpecification__Group_2__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ConfigSpecification__Group_2__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group_2__0" // $ANTLR start "rule__ConfigSpecification__Group_2__0__Impl" // InternalApplicationConfiguration.g:4719:1: rule__ConfigSpecification__Group_2__0__Impl : ( ( rule__ConfigSpecification__EntriesAssignment_2_0 ) ) ; public final void rule__ConfigSpecification__Group_2__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4723:1: ( ( ( rule__ConfigSpecification__EntriesAssignment_2_0 ) ) ) // InternalApplicationConfiguration.g:4724:1: ( ( rule__ConfigSpecification__EntriesAssignment_2_0 ) ) { // InternalApplicationConfiguration.g:4724:1: ( ( rule__ConfigSpecification__EntriesAssignment_2_0 ) ) // InternalApplicationConfiguration.g:4725:2: ( rule__ConfigSpecification__EntriesAssignment_2_0 ) { before(grammarAccess.getConfigSpecificationAccess().getEntriesAssignment_2_0()); // InternalApplicationConfiguration.g:4726:2: ( rule__ConfigSpecification__EntriesAssignment_2_0 ) // InternalApplicationConfiguration.g:4726:3: rule__ConfigSpecification__EntriesAssignment_2_0 { pushFollow(FOLLOW_2); rule__ConfigSpecification__EntriesAssignment_2_0(); state._fsp--; } after(grammarAccess.getConfigSpecificationAccess().getEntriesAssignment_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group_2__0__Impl" // $ANTLR start "rule__ConfigSpecification__Group_2__1" // InternalApplicationConfiguration.g:4734:1: rule__ConfigSpecification__Group_2__1 : rule__ConfigSpecification__Group_2__1__Impl ; public final void rule__ConfigSpecification__Group_2__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4738:1: ( rule__ConfigSpecification__Group_2__1__Impl ) // InternalApplicationConfiguration.g:4739:2: rule__ConfigSpecification__Group_2__1__Impl { pushFollow(FOLLOW_2); rule__ConfigSpecification__Group_2__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group_2__1" // $ANTLR start "rule__ConfigSpecification__Group_2__1__Impl" // InternalApplicationConfiguration.g:4745:1: rule__ConfigSpecification__Group_2__1__Impl : ( ( rule__ConfigSpecification__Group_2_1__0 )* ) ; public final void rule__ConfigSpecification__Group_2__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4749:1: ( ( ( rule__ConfigSpecification__Group_2_1__0 )* ) ) // InternalApplicationConfiguration.g:4750:1: ( ( rule__ConfigSpecification__Group_2_1__0 )* ) { // InternalApplicationConfiguration.g:4750:1: ( ( rule__ConfigSpecification__Group_2_1__0 )* ) // InternalApplicationConfiguration.g:4751:2: ( rule__ConfigSpecification__Group_2_1__0 )* { before(grammarAccess.getConfigSpecificationAccess().getGroup_2_1()); // InternalApplicationConfiguration.g:4752:2: ( rule__ConfigSpecification__Group_2_1__0 )* loop45: do { int alt45=2; int LA45_0 = input.LA(1); if ( (LA45_0==25) ) { alt45=1; } switch (alt45) { case 1 : // InternalApplicationConfiguration.g:4752:3: rule__ConfigSpecification__Group_2_1__0 { pushFollow(FOLLOW_15); rule__ConfigSpecification__Group_2_1__0(); state._fsp--; } break; default : break loop45; } } while (true); after(grammarAccess.getConfigSpecificationAccess().getGroup_2_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group_2__1__Impl" // $ANTLR start "rule__ConfigSpecification__Group_2_1__0" // InternalApplicationConfiguration.g:4761:1: rule__ConfigSpecification__Group_2_1__0 : rule__ConfigSpecification__Group_2_1__0__Impl rule__ConfigSpecification__Group_2_1__1 ; public final void rule__ConfigSpecification__Group_2_1__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4765:1: ( rule__ConfigSpecification__Group_2_1__0__Impl rule__ConfigSpecification__Group_2_1__1 ) // InternalApplicationConfiguration.g:4766:2: rule__ConfigSpecification__Group_2_1__0__Impl rule__ConfigSpecification__Group_2_1__1 { pushFollow(FOLLOW_23); rule__ConfigSpecification__Group_2_1__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ConfigSpecification__Group_2_1__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group_2_1__0" // $ANTLR start "rule__ConfigSpecification__Group_2_1__0__Impl" // InternalApplicationConfiguration.g:4773:1: rule__ConfigSpecification__Group_2_1__0__Impl : ( ',' ) ; public final void rule__ConfigSpecification__Group_2_1__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4777:1: ( ( ',' ) ) // InternalApplicationConfiguration.g:4778:1: ( ',' ) { // InternalApplicationConfiguration.g:4778:1: ( ',' ) // InternalApplicationConfiguration.g:4779:2: ',' { before(grammarAccess.getConfigSpecificationAccess().getCommaKeyword_2_1_0()); match(input,25,FOLLOW_2); after(grammarAccess.getConfigSpecificationAccess().getCommaKeyword_2_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group_2_1__0__Impl" // $ANTLR start "rule__ConfigSpecification__Group_2_1__1" // InternalApplicationConfiguration.g:4788:1: rule__ConfigSpecification__Group_2_1__1 : rule__ConfigSpecification__Group_2_1__1__Impl ; public final void rule__ConfigSpecification__Group_2_1__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4792:1: ( rule__ConfigSpecification__Group_2_1__1__Impl ) // InternalApplicationConfiguration.g:4793:2: rule__ConfigSpecification__Group_2_1__1__Impl { pushFollow(FOLLOW_2); rule__ConfigSpecification__Group_2_1__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group_2_1__1" // $ANTLR start "rule__ConfigSpecification__Group_2_1__1__Impl" // InternalApplicationConfiguration.g:4799:1: rule__ConfigSpecification__Group_2_1__1__Impl : ( ( rule__ConfigSpecification__EntriesAssignment_2_1_1 ) ) ; public final void rule__ConfigSpecification__Group_2_1__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4803:1: ( ( ( rule__ConfigSpecification__EntriesAssignment_2_1_1 ) ) ) // InternalApplicationConfiguration.g:4804:1: ( ( rule__ConfigSpecification__EntriesAssignment_2_1_1 ) ) { // InternalApplicationConfiguration.g:4804:1: ( ( rule__ConfigSpecification__EntriesAssignment_2_1_1 ) ) // InternalApplicationConfiguration.g:4805:2: ( rule__ConfigSpecification__EntriesAssignment_2_1_1 ) { before(grammarAccess.getConfigSpecificationAccess().getEntriesAssignment_2_1_1()); // InternalApplicationConfiguration.g:4806:2: ( rule__ConfigSpecification__EntriesAssignment_2_1_1 ) // InternalApplicationConfiguration.g:4806:3: rule__ConfigSpecification__EntriesAssignment_2_1_1 { pushFollow(FOLLOW_2); rule__ConfigSpecification__EntriesAssignment_2_1_1(); state._fsp--; } after(grammarAccess.getConfigSpecificationAccess().getEntriesAssignment_2_1_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__Group_2_1__1__Impl" // $ANTLR start "rule__ConfigDeclaration__Group__0" // InternalApplicationConfiguration.g:4815:1: rule__ConfigDeclaration__Group__0 : rule__ConfigDeclaration__Group__0__Impl rule__ConfigDeclaration__Group__1 ; public final void rule__ConfigDeclaration__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4819:1: ( rule__ConfigDeclaration__Group__0__Impl rule__ConfigDeclaration__Group__1 ) // InternalApplicationConfiguration.g:4820:2: rule__ConfigDeclaration__Group__0__Impl rule__ConfigDeclaration__Group__1 { pushFollow(FOLLOW_8); rule__ConfigDeclaration__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ConfigDeclaration__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigDeclaration__Group__0" // $ANTLR start "rule__ConfigDeclaration__Group__0__Impl" // InternalApplicationConfiguration.g:4827:1: rule__ConfigDeclaration__Group__0__Impl : ( 'config' ) ; public final void rule__ConfigDeclaration__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4831:1: ( ( 'config' ) ) // InternalApplicationConfiguration.g:4832:1: ( 'config' ) { // InternalApplicationConfiguration.g:4832:1: ( 'config' ) // InternalApplicationConfiguration.g:4833:2: 'config' { before(grammarAccess.getConfigDeclarationAccess().getConfigKeyword_0()); match(input,33,FOLLOW_2); after(grammarAccess.getConfigDeclarationAccess().getConfigKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigDeclaration__Group__0__Impl" // $ANTLR start "rule__ConfigDeclaration__Group__1" // InternalApplicationConfiguration.g:4842:1: rule__ConfigDeclaration__Group__1 : rule__ConfigDeclaration__Group__1__Impl rule__ConfigDeclaration__Group__2 ; public final void rule__ConfigDeclaration__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4846:1: ( rule__ConfigDeclaration__Group__1__Impl rule__ConfigDeclaration__Group__2 ) // InternalApplicationConfiguration.g:4847:2: rule__ConfigDeclaration__Group__1__Impl rule__ConfigDeclaration__Group__2 { pushFollow(FOLLOW_17); rule__ConfigDeclaration__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ConfigDeclaration__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigDeclaration__Group__1" // $ANTLR start "rule__ConfigDeclaration__Group__1__Impl" // InternalApplicationConfiguration.g:4854:1: rule__ConfigDeclaration__Group__1__Impl : ( ( rule__ConfigDeclaration__NameAssignment_1 ) ) ; public final void rule__ConfigDeclaration__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4858:1: ( ( ( rule__ConfigDeclaration__NameAssignment_1 ) ) ) // InternalApplicationConfiguration.g:4859:1: ( ( rule__ConfigDeclaration__NameAssignment_1 ) ) { // InternalApplicationConfiguration.g:4859:1: ( ( rule__ConfigDeclaration__NameAssignment_1 ) ) // InternalApplicationConfiguration.g:4860:2: ( rule__ConfigDeclaration__NameAssignment_1 ) { before(grammarAccess.getConfigDeclarationAccess().getNameAssignment_1()); // InternalApplicationConfiguration.g:4861:2: ( rule__ConfigDeclaration__NameAssignment_1 ) // InternalApplicationConfiguration.g:4861:3: rule__ConfigDeclaration__NameAssignment_1 { pushFollow(FOLLOW_2); rule__ConfigDeclaration__NameAssignment_1(); state._fsp--; } after(grammarAccess.getConfigDeclarationAccess().getNameAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigDeclaration__Group__1__Impl" // $ANTLR start "rule__ConfigDeclaration__Group__2" // InternalApplicationConfiguration.g:4869:1: rule__ConfigDeclaration__Group__2 : rule__ConfigDeclaration__Group__2__Impl ; public final void rule__ConfigDeclaration__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4873:1: ( rule__ConfigDeclaration__Group__2__Impl ) // InternalApplicationConfiguration.g:4874:2: rule__ConfigDeclaration__Group__2__Impl { pushFollow(FOLLOW_2); rule__ConfigDeclaration__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigDeclaration__Group__2" // $ANTLR start "rule__ConfigDeclaration__Group__2__Impl" // InternalApplicationConfiguration.g:4880:1: rule__ConfigDeclaration__Group__2__Impl : ( ( rule__ConfigDeclaration__SpecificationAssignment_2 ) ) ; public final void rule__ConfigDeclaration__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4884:1: ( ( ( rule__ConfigDeclaration__SpecificationAssignment_2 ) ) ) // InternalApplicationConfiguration.g:4885:1: ( ( rule__ConfigDeclaration__SpecificationAssignment_2 ) ) { // InternalApplicationConfiguration.g:4885:1: ( ( rule__ConfigDeclaration__SpecificationAssignment_2 ) ) // InternalApplicationConfiguration.g:4886:2: ( rule__ConfigDeclaration__SpecificationAssignment_2 ) { before(grammarAccess.getConfigDeclarationAccess().getSpecificationAssignment_2()); // InternalApplicationConfiguration.g:4887:2: ( rule__ConfigDeclaration__SpecificationAssignment_2 ) // InternalApplicationConfiguration.g:4887:3: rule__ConfigDeclaration__SpecificationAssignment_2 { pushFollow(FOLLOW_2); rule__ConfigDeclaration__SpecificationAssignment_2(); state._fsp--; } after(grammarAccess.getConfigDeclarationAccess().getSpecificationAssignment_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigDeclaration__Group__2__Impl" // $ANTLR start "rule__DocumentationEntry__Group__0" // InternalApplicationConfiguration.g:4896:1: rule__DocumentationEntry__Group__0 : rule__DocumentationEntry__Group__0__Impl rule__DocumentationEntry__Group__1 ; public final void rule__DocumentationEntry__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4900:1: ( rule__DocumentationEntry__Group__0__Impl rule__DocumentationEntry__Group__1 ) // InternalApplicationConfiguration.g:4901:2: rule__DocumentationEntry__Group__0__Impl rule__DocumentationEntry__Group__1 { pushFollow(FOLLOW_12); rule__DocumentationEntry__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__DocumentationEntry__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__DocumentationEntry__Group__0" // $ANTLR start "rule__DocumentationEntry__Group__0__Impl" // InternalApplicationConfiguration.g:4908:1: rule__DocumentationEntry__Group__0__Impl : ( 'log-level' ) ; public final void rule__DocumentationEntry__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4912:1: ( ( 'log-level' ) ) // InternalApplicationConfiguration.g:4913:1: ( 'log-level' ) { // InternalApplicationConfiguration.g:4913:1: ( 'log-level' ) // InternalApplicationConfiguration.g:4914:2: 'log-level' { before(grammarAccess.getDocumentationEntryAccess().getLogLevelKeyword_0()); match(input,34,FOLLOW_2); after(grammarAccess.getDocumentationEntryAccess().getLogLevelKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__DocumentationEntry__Group__0__Impl" // $ANTLR start "rule__DocumentationEntry__Group__1" // InternalApplicationConfiguration.g:4923:1: rule__DocumentationEntry__Group__1 : rule__DocumentationEntry__Group__1__Impl rule__DocumentationEntry__Group__2 ; public final void rule__DocumentationEntry__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4927:1: ( rule__DocumentationEntry__Group__1__Impl rule__DocumentationEntry__Group__2 ) // InternalApplicationConfiguration.g:4928:2: rule__DocumentationEntry__Group__1__Impl rule__DocumentationEntry__Group__2 { pushFollow(FOLLOW_24); rule__DocumentationEntry__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__DocumentationEntry__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__DocumentationEntry__Group__1" // $ANTLR start "rule__DocumentationEntry__Group__1__Impl" // InternalApplicationConfiguration.g:4935:1: rule__DocumentationEntry__Group__1__Impl : ( '=' ) ; public final void rule__DocumentationEntry__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4939:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:4940:1: ( '=' ) { // InternalApplicationConfiguration.g:4940:1: ( '=' ) // InternalApplicationConfiguration.g:4941:2: '=' { before(grammarAccess.getDocumentationEntryAccess().getEqualsSignKeyword_1()); match(input,22,FOLLOW_2); after(grammarAccess.getDocumentationEntryAccess().getEqualsSignKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__DocumentationEntry__Group__1__Impl" // $ANTLR start "rule__DocumentationEntry__Group__2" // InternalApplicationConfiguration.g:4950:1: rule__DocumentationEntry__Group__2 : rule__DocumentationEntry__Group__2__Impl ; public final void rule__DocumentationEntry__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4954:1: ( rule__DocumentationEntry__Group__2__Impl ) // InternalApplicationConfiguration.g:4955:2: rule__DocumentationEntry__Group__2__Impl { pushFollow(FOLLOW_2); rule__DocumentationEntry__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__DocumentationEntry__Group__2" // $ANTLR start "rule__DocumentationEntry__Group__2__Impl" // InternalApplicationConfiguration.g:4961:1: rule__DocumentationEntry__Group__2__Impl : ( ( rule__DocumentationEntry__LevelAssignment_2 ) ) ; public final void rule__DocumentationEntry__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4965:1: ( ( ( rule__DocumentationEntry__LevelAssignment_2 ) ) ) // InternalApplicationConfiguration.g:4966:1: ( ( rule__DocumentationEntry__LevelAssignment_2 ) ) { // InternalApplicationConfiguration.g:4966:1: ( ( rule__DocumentationEntry__LevelAssignment_2 ) ) // InternalApplicationConfiguration.g:4967:2: ( rule__DocumentationEntry__LevelAssignment_2 ) { before(grammarAccess.getDocumentationEntryAccess().getLevelAssignment_2()); // InternalApplicationConfiguration.g:4968:2: ( rule__DocumentationEntry__LevelAssignment_2 ) // InternalApplicationConfiguration.g:4968:3: rule__DocumentationEntry__LevelAssignment_2 { pushFollow(FOLLOW_2); rule__DocumentationEntry__LevelAssignment_2(); state._fsp--; } after(grammarAccess.getDocumentationEntryAccess().getLevelAssignment_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__DocumentationEntry__Group__2__Impl" // $ANTLR start "rule__RuntimeEntry__Group__0" // InternalApplicationConfiguration.g:4977:1: rule__RuntimeEntry__Group__0 : rule__RuntimeEntry__Group__0__Impl rule__RuntimeEntry__Group__1 ; public final void rule__RuntimeEntry__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4981:1: ( rule__RuntimeEntry__Group__0__Impl rule__RuntimeEntry__Group__1 ) // InternalApplicationConfiguration.g:4982:2: rule__RuntimeEntry__Group__0__Impl rule__RuntimeEntry__Group__1 { pushFollow(FOLLOW_12); rule__RuntimeEntry__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__RuntimeEntry__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RuntimeEntry__Group__0" // $ANTLR start "rule__RuntimeEntry__Group__0__Impl" // InternalApplicationConfiguration.g:4989:1: rule__RuntimeEntry__Group__0__Impl : ( 'runtime' ) ; public final void rule__RuntimeEntry__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:4993:1: ( ( 'runtime' ) ) // InternalApplicationConfiguration.g:4994:1: ( 'runtime' ) { // InternalApplicationConfiguration.g:4994:1: ( 'runtime' ) // InternalApplicationConfiguration.g:4995:2: 'runtime' { before(grammarAccess.getRuntimeEntryAccess().getRuntimeKeyword_0()); match(input,35,FOLLOW_2); after(grammarAccess.getRuntimeEntryAccess().getRuntimeKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RuntimeEntry__Group__0__Impl" // $ANTLR start "rule__RuntimeEntry__Group__1" // InternalApplicationConfiguration.g:5004:1: rule__RuntimeEntry__Group__1 : rule__RuntimeEntry__Group__1__Impl rule__RuntimeEntry__Group__2 ; public final void rule__RuntimeEntry__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5008:1: ( rule__RuntimeEntry__Group__1__Impl rule__RuntimeEntry__Group__2 ) // InternalApplicationConfiguration.g:5009:2: rule__RuntimeEntry__Group__1__Impl rule__RuntimeEntry__Group__2 { pushFollow(FOLLOW_25); rule__RuntimeEntry__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__RuntimeEntry__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RuntimeEntry__Group__1" // $ANTLR start "rule__RuntimeEntry__Group__1__Impl" // InternalApplicationConfiguration.g:5016:1: rule__RuntimeEntry__Group__1__Impl : ( '=' ) ; public final void rule__RuntimeEntry__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5020:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:5021:1: ( '=' ) { // InternalApplicationConfiguration.g:5021:1: ( '=' ) // InternalApplicationConfiguration.g:5022:2: '=' { before(grammarAccess.getRuntimeEntryAccess().getEqualsSignKeyword_1()); match(input,22,FOLLOW_2); after(grammarAccess.getRuntimeEntryAccess().getEqualsSignKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RuntimeEntry__Group__1__Impl" // $ANTLR start "rule__RuntimeEntry__Group__2" // InternalApplicationConfiguration.g:5031:1: rule__RuntimeEntry__Group__2 : rule__RuntimeEntry__Group__2__Impl ; public final void rule__RuntimeEntry__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5035:1: ( rule__RuntimeEntry__Group__2__Impl ) // InternalApplicationConfiguration.g:5036:2: rule__RuntimeEntry__Group__2__Impl { pushFollow(FOLLOW_2); rule__RuntimeEntry__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RuntimeEntry__Group__2" // $ANTLR start "rule__RuntimeEntry__Group__2__Impl" // InternalApplicationConfiguration.g:5042:1: rule__RuntimeEntry__Group__2__Impl : ( ( rule__RuntimeEntry__MillisecLimitAssignment_2 ) ) ; public final void rule__RuntimeEntry__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5046:1: ( ( ( rule__RuntimeEntry__MillisecLimitAssignment_2 ) ) ) // InternalApplicationConfiguration.g:5047:1: ( ( rule__RuntimeEntry__MillisecLimitAssignment_2 ) ) { // InternalApplicationConfiguration.g:5047:1: ( ( rule__RuntimeEntry__MillisecLimitAssignment_2 ) ) // InternalApplicationConfiguration.g:5048:2: ( rule__RuntimeEntry__MillisecLimitAssignment_2 ) { before(grammarAccess.getRuntimeEntryAccess().getMillisecLimitAssignment_2()); // InternalApplicationConfiguration.g:5049:2: ( rule__RuntimeEntry__MillisecLimitAssignment_2 ) // InternalApplicationConfiguration.g:5049:3: rule__RuntimeEntry__MillisecLimitAssignment_2 { pushFollow(FOLLOW_2); rule__RuntimeEntry__MillisecLimitAssignment_2(); state._fsp--; } after(grammarAccess.getRuntimeEntryAccess().getMillisecLimitAssignment_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RuntimeEntry__Group__2__Impl" // $ANTLR start "rule__MemoryEntry__Group__0" // InternalApplicationConfiguration.g:5058:1: rule__MemoryEntry__Group__0 : rule__MemoryEntry__Group__0__Impl rule__MemoryEntry__Group__1 ; public final void rule__MemoryEntry__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5062:1: ( rule__MemoryEntry__Group__0__Impl rule__MemoryEntry__Group__1 ) // InternalApplicationConfiguration.g:5063:2: rule__MemoryEntry__Group__0__Impl rule__MemoryEntry__Group__1 { pushFollow(FOLLOW_12); rule__MemoryEntry__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__MemoryEntry__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MemoryEntry__Group__0" // $ANTLR start "rule__MemoryEntry__Group__0__Impl" // InternalApplicationConfiguration.g:5070:1: rule__MemoryEntry__Group__0__Impl : ( 'memory' ) ; public final void rule__MemoryEntry__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5074:1: ( ( 'memory' ) ) // InternalApplicationConfiguration.g:5075:1: ( 'memory' ) { // InternalApplicationConfiguration.g:5075:1: ( 'memory' ) // InternalApplicationConfiguration.g:5076:2: 'memory' { before(grammarAccess.getMemoryEntryAccess().getMemoryKeyword_0()); match(input,36,FOLLOW_2); after(grammarAccess.getMemoryEntryAccess().getMemoryKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MemoryEntry__Group__0__Impl" // $ANTLR start "rule__MemoryEntry__Group__1" // InternalApplicationConfiguration.g:5085:1: rule__MemoryEntry__Group__1 : rule__MemoryEntry__Group__1__Impl rule__MemoryEntry__Group__2 ; public final void rule__MemoryEntry__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5089:1: ( rule__MemoryEntry__Group__1__Impl rule__MemoryEntry__Group__2 ) // InternalApplicationConfiguration.g:5090:2: rule__MemoryEntry__Group__1__Impl rule__MemoryEntry__Group__2 { pushFollow(FOLLOW_25); rule__MemoryEntry__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__MemoryEntry__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MemoryEntry__Group__1" // $ANTLR start "rule__MemoryEntry__Group__1__Impl" // InternalApplicationConfiguration.g:5097:1: rule__MemoryEntry__Group__1__Impl : ( '=' ) ; public final void rule__MemoryEntry__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5101:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:5102:1: ( '=' ) { // InternalApplicationConfiguration.g:5102:1: ( '=' ) // InternalApplicationConfiguration.g:5103:2: '=' { before(grammarAccess.getMemoryEntryAccess().getEqualsSignKeyword_1()); match(input,22,FOLLOW_2); after(grammarAccess.getMemoryEntryAccess().getEqualsSignKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MemoryEntry__Group__1__Impl" // $ANTLR start "rule__MemoryEntry__Group__2" // InternalApplicationConfiguration.g:5112:1: rule__MemoryEntry__Group__2 : rule__MemoryEntry__Group__2__Impl ; public final void rule__MemoryEntry__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5116:1: ( rule__MemoryEntry__Group__2__Impl ) // InternalApplicationConfiguration.g:5117:2: rule__MemoryEntry__Group__2__Impl { pushFollow(FOLLOW_2); rule__MemoryEntry__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MemoryEntry__Group__2" // $ANTLR start "rule__MemoryEntry__Group__2__Impl" // InternalApplicationConfiguration.g:5123:1: rule__MemoryEntry__Group__2__Impl : ( ( rule__MemoryEntry__MegabyteLimitAssignment_2 ) ) ; public final void rule__MemoryEntry__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5127:1: ( ( ( rule__MemoryEntry__MegabyteLimitAssignment_2 ) ) ) // InternalApplicationConfiguration.g:5128:1: ( ( rule__MemoryEntry__MegabyteLimitAssignment_2 ) ) { // InternalApplicationConfiguration.g:5128:1: ( ( rule__MemoryEntry__MegabyteLimitAssignment_2 ) ) // InternalApplicationConfiguration.g:5129:2: ( rule__MemoryEntry__MegabyteLimitAssignment_2 ) { before(grammarAccess.getMemoryEntryAccess().getMegabyteLimitAssignment_2()); // InternalApplicationConfiguration.g:5130:2: ( rule__MemoryEntry__MegabyteLimitAssignment_2 ) // InternalApplicationConfiguration.g:5130:3: rule__MemoryEntry__MegabyteLimitAssignment_2 { pushFollow(FOLLOW_2); rule__MemoryEntry__MegabyteLimitAssignment_2(); state._fsp--; } after(grammarAccess.getMemoryEntryAccess().getMegabyteLimitAssignment_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MemoryEntry__Group__2__Impl" // $ANTLR start "rule__CustomEntry__Group__0" // InternalApplicationConfiguration.g:5139:1: rule__CustomEntry__Group__0 : rule__CustomEntry__Group__0__Impl rule__CustomEntry__Group__1 ; public final void rule__CustomEntry__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5143:1: ( rule__CustomEntry__Group__0__Impl rule__CustomEntry__Group__1 ) // InternalApplicationConfiguration.g:5144:2: rule__CustomEntry__Group__0__Impl rule__CustomEntry__Group__1 { pushFollow(FOLLOW_12); rule__CustomEntry__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__CustomEntry__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__CustomEntry__Group__0" // $ANTLR start "rule__CustomEntry__Group__0__Impl" // InternalApplicationConfiguration.g:5151:1: rule__CustomEntry__Group__0__Impl : ( ( rule__CustomEntry__KeyAssignment_0 ) ) ; public final void rule__CustomEntry__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5155:1: ( ( ( rule__CustomEntry__KeyAssignment_0 ) ) ) // InternalApplicationConfiguration.g:5156:1: ( ( rule__CustomEntry__KeyAssignment_0 ) ) { // InternalApplicationConfiguration.g:5156:1: ( ( rule__CustomEntry__KeyAssignment_0 ) ) // InternalApplicationConfiguration.g:5157:2: ( rule__CustomEntry__KeyAssignment_0 ) { before(grammarAccess.getCustomEntryAccess().getKeyAssignment_0()); // InternalApplicationConfiguration.g:5158:2: ( rule__CustomEntry__KeyAssignment_0 ) // InternalApplicationConfiguration.g:5158:3: rule__CustomEntry__KeyAssignment_0 { pushFollow(FOLLOW_2); rule__CustomEntry__KeyAssignment_0(); state._fsp--; } after(grammarAccess.getCustomEntryAccess().getKeyAssignment_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__CustomEntry__Group__0__Impl" // $ANTLR start "rule__CustomEntry__Group__1" // InternalApplicationConfiguration.g:5166:1: rule__CustomEntry__Group__1 : rule__CustomEntry__Group__1__Impl rule__CustomEntry__Group__2 ; public final void rule__CustomEntry__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5170:1: ( rule__CustomEntry__Group__1__Impl rule__CustomEntry__Group__2 ) // InternalApplicationConfiguration.g:5171:2: rule__CustomEntry__Group__1__Impl rule__CustomEntry__Group__2 { pushFollow(FOLLOW_10); rule__CustomEntry__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__CustomEntry__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__CustomEntry__Group__1" // $ANTLR start "rule__CustomEntry__Group__1__Impl" // InternalApplicationConfiguration.g:5178:1: rule__CustomEntry__Group__1__Impl : ( '=' ) ; public final void rule__CustomEntry__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5182:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:5183:1: ( '=' ) { // InternalApplicationConfiguration.g:5183:1: ( '=' ) // InternalApplicationConfiguration.g:5184:2: '=' { before(grammarAccess.getCustomEntryAccess().getEqualsSignKeyword_1()); match(input,22,FOLLOW_2); after(grammarAccess.getCustomEntryAccess().getEqualsSignKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__CustomEntry__Group__1__Impl" // $ANTLR start "rule__CustomEntry__Group__2" // InternalApplicationConfiguration.g:5193:1: rule__CustomEntry__Group__2 : rule__CustomEntry__Group__2__Impl ; public final void rule__CustomEntry__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5197:1: ( rule__CustomEntry__Group__2__Impl ) // InternalApplicationConfiguration.g:5198:2: rule__CustomEntry__Group__2__Impl { pushFollow(FOLLOW_2); rule__CustomEntry__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__CustomEntry__Group__2" // $ANTLR start "rule__CustomEntry__Group__2__Impl" // InternalApplicationConfiguration.g:5204:1: rule__CustomEntry__Group__2__Impl : ( ( rule__CustomEntry__ValueAssignment_2 ) ) ; public final void rule__CustomEntry__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5208:1: ( ( ( rule__CustomEntry__ValueAssignment_2 ) ) ) // InternalApplicationConfiguration.g:5209:1: ( ( rule__CustomEntry__ValueAssignment_2 ) ) { // InternalApplicationConfiguration.g:5209:1: ( ( rule__CustomEntry__ValueAssignment_2 ) ) // InternalApplicationConfiguration.g:5210:2: ( rule__CustomEntry__ValueAssignment_2 ) { before(grammarAccess.getCustomEntryAccess().getValueAssignment_2()); // InternalApplicationConfiguration.g:5211:2: ( rule__CustomEntry__ValueAssignment_2 ) // InternalApplicationConfiguration.g:5211:3: rule__CustomEntry__ValueAssignment_2 { pushFollow(FOLLOW_2); rule__CustomEntry__ValueAssignment_2(); state._fsp--; } after(grammarAccess.getCustomEntryAccess().getValueAssignment_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__CustomEntry__Group__2__Impl" // $ANTLR start "rule__ScopeSpecification__Group__0" // InternalApplicationConfiguration.g:5220:1: rule__ScopeSpecification__Group__0 : rule__ScopeSpecification__Group__0__Impl rule__ScopeSpecification__Group__1 ; public final void rule__ScopeSpecification__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5224:1: ( rule__ScopeSpecification__Group__0__Impl rule__ScopeSpecification__Group__1 ) // InternalApplicationConfiguration.g:5225:2: rule__ScopeSpecification__Group__0__Impl rule__ScopeSpecification__Group__1 { pushFollow(FOLLOW_17); rule__ScopeSpecification__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ScopeSpecification__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group__0" // $ANTLR start "rule__ScopeSpecification__Group__0__Impl" // InternalApplicationConfiguration.g:5232:1: rule__ScopeSpecification__Group__0__Impl : ( () ) ; public final void rule__ScopeSpecification__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5236:1: ( ( () ) ) // InternalApplicationConfiguration.g:5237:1: ( () ) { // InternalApplicationConfiguration.g:5237:1: ( () ) // InternalApplicationConfiguration.g:5238:2: () { before(grammarAccess.getScopeSpecificationAccess().getScopeSpecificationAction_0()); // InternalApplicationConfiguration.g:5239:2: () // InternalApplicationConfiguration.g:5239:3: { } after(grammarAccess.getScopeSpecificationAccess().getScopeSpecificationAction_0()); } } } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group__0__Impl" // $ANTLR start "rule__ScopeSpecification__Group__1" // InternalApplicationConfiguration.g:5247:1: rule__ScopeSpecification__Group__1 : rule__ScopeSpecification__Group__1__Impl rule__ScopeSpecification__Group__2 ; public final void rule__ScopeSpecification__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5251:1: ( rule__ScopeSpecification__Group__1__Impl rule__ScopeSpecification__Group__2 ) // InternalApplicationConfiguration.g:5252:2: rule__ScopeSpecification__Group__1__Impl rule__ScopeSpecification__Group__2 { pushFollow(FOLLOW_26); rule__ScopeSpecification__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ScopeSpecification__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group__1" // $ANTLR start "rule__ScopeSpecification__Group__1__Impl" // InternalApplicationConfiguration.g:5259:1: rule__ScopeSpecification__Group__1__Impl : ( '{' ) ; public final void rule__ScopeSpecification__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5263:1: ( ( '{' ) ) // InternalApplicationConfiguration.g:5264:1: ( '{' ) { // InternalApplicationConfiguration.g:5264:1: ( '{' ) // InternalApplicationConfiguration.g:5265:2: '{' { before(grammarAccess.getScopeSpecificationAccess().getLeftCurlyBracketKeyword_1()); match(input,23,FOLLOW_2); after(grammarAccess.getScopeSpecificationAccess().getLeftCurlyBracketKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group__1__Impl" // $ANTLR start "rule__ScopeSpecification__Group__2" // InternalApplicationConfiguration.g:5274:1: rule__ScopeSpecification__Group__2 : rule__ScopeSpecification__Group__2__Impl rule__ScopeSpecification__Group__3 ; public final void rule__ScopeSpecification__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5278:1: ( rule__ScopeSpecification__Group__2__Impl rule__ScopeSpecification__Group__3 ) // InternalApplicationConfiguration.g:5279:2: rule__ScopeSpecification__Group__2__Impl rule__ScopeSpecification__Group__3 { pushFollow(FOLLOW_26); rule__ScopeSpecification__Group__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ScopeSpecification__Group__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group__2" // $ANTLR start "rule__ScopeSpecification__Group__2__Impl" // InternalApplicationConfiguration.g:5286:1: rule__ScopeSpecification__Group__2__Impl : ( ( rule__ScopeSpecification__Group_2__0 )? ) ; public final void rule__ScopeSpecification__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5290:1: ( ( ( rule__ScopeSpecification__Group_2__0 )? ) ) // InternalApplicationConfiguration.g:5291:1: ( ( rule__ScopeSpecification__Group_2__0 )? ) { // InternalApplicationConfiguration.g:5291:1: ( ( rule__ScopeSpecification__Group_2__0 )? ) // InternalApplicationConfiguration.g:5292:2: ( rule__ScopeSpecification__Group_2__0 )? { before(grammarAccess.getScopeSpecificationAccess().getGroup_2()); // InternalApplicationConfiguration.g:5293:2: ( rule__ScopeSpecification__Group_2__0 )? int alt46=2; int LA46_0 = input.LA(1); if ( (LA46_0==37) ) { alt46=1; } switch (alt46) { case 1 : // InternalApplicationConfiguration.g:5293:3: rule__ScopeSpecification__Group_2__0 { pushFollow(FOLLOW_2); rule__ScopeSpecification__Group_2__0(); state._fsp--; } break; } after(grammarAccess.getScopeSpecificationAccess().getGroup_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group__2__Impl" // $ANTLR start "rule__ScopeSpecification__Group__3" // InternalApplicationConfiguration.g:5301:1: rule__ScopeSpecification__Group__3 : rule__ScopeSpecification__Group__3__Impl ; public final void rule__ScopeSpecification__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5305:1: ( rule__ScopeSpecification__Group__3__Impl ) // InternalApplicationConfiguration.g:5306:2: rule__ScopeSpecification__Group__3__Impl { pushFollow(FOLLOW_2); rule__ScopeSpecification__Group__3__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group__3" // $ANTLR start "rule__ScopeSpecification__Group__3__Impl" // InternalApplicationConfiguration.g:5312:1: rule__ScopeSpecification__Group__3__Impl : ( '}' ) ; public final void rule__ScopeSpecification__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5316:1: ( ( '}' ) ) // InternalApplicationConfiguration.g:5317:1: ( '}' ) { // InternalApplicationConfiguration.g:5317:1: ( '}' ) // InternalApplicationConfiguration.g:5318:2: '}' { before(grammarAccess.getScopeSpecificationAccess().getRightCurlyBracketKeyword_3()); match(input,24,FOLLOW_2); after(grammarAccess.getScopeSpecificationAccess().getRightCurlyBracketKeyword_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group__3__Impl" // $ANTLR start "rule__ScopeSpecification__Group_2__0" // InternalApplicationConfiguration.g:5328:1: rule__ScopeSpecification__Group_2__0 : rule__ScopeSpecification__Group_2__0__Impl rule__ScopeSpecification__Group_2__1 ; public final void rule__ScopeSpecification__Group_2__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5332:1: ( rule__ScopeSpecification__Group_2__0__Impl rule__ScopeSpecification__Group_2__1 ) // InternalApplicationConfiguration.g:5333:2: rule__ScopeSpecification__Group_2__0__Impl rule__ScopeSpecification__Group_2__1 { pushFollow(FOLLOW_22); rule__ScopeSpecification__Group_2__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ScopeSpecification__Group_2__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group_2__0" // $ANTLR start "rule__ScopeSpecification__Group_2__0__Impl" // InternalApplicationConfiguration.g:5340:1: rule__ScopeSpecification__Group_2__0__Impl : ( ( rule__ScopeSpecification__ScopesAssignment_2_0 ) ) ; public final void rule__ScopeSpecification__Group_2__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5344:1: ( ( ( rule__ScopeSpecification__ScopesAssignment_2_0 ) ) ) // InternalApplicationConfiguration.g:5345:1: ( ( rule__ScopeSpecification__ScopesAssignment_2_0 ) ) { // InternalApplicationConfiguration.g:5345:1: ( ( rule__ScopeSpecification__ScopesAssignment_2_0 ) ) // InternalApplicationConfiguration.g:5346:2: ( rule__ScopeSpecification__ScopesAssignment_2_0 ) { before(grammarAccess.getScopeSpecificationAccess().getScopesAssignment_2_0()); // InternalApplicationConfiguration.g:5347:2: ( rule__ScopeSpecification__ScopesAssignment_2_0 ) // InternalApplicationConfiguration.g:5347:3: rule__ScopeSpecification__ScopesAssignment_2_0 { pushFollow(FOLLOW_2); rule__ScopeSpecification__ScopesAssignment_2_0(); state._fsp--; } after(grammarAccess.getScopeSpecificationAccess().getScopesAssignment_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group_2__0__Impl" // $ANTLR start "rule__ScopeSpecification__Group_2__1" // InternalApplicationConfiguration.g:5355:1: rule__ScopeSpecification__Group_2__1 : rule__ScopeSpecification__Group_2__1__Impl ; public final void rule__ScopeSpecification__Group_2__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5359:1: ( rule__ScopeSpecification__Group_2__1__Impl ) // InternalApplicationConfiguration.g:5360:2: rule__ScopeSpecification__Group_2__1__Impl { pushFollow(FOLLOW_2); rule__ScopeSpecification__Group_2__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group_2__1" // $ANTLR start "rule__ScopeSpecification__Group_2__1__Impl" // InternalApplicationConfiguration.g:5366:1: rule__ScopeSpecification__Group_2__1__Impl : ( ( rule__ScopeSpecification__Group_2_1__0 )* ) ; public final void rule__ScopeSpecification__Group_2__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5370:1: ( ( ( rule__ScopeSpecification__Group_2_1__0 )* ) ) // InternalApplicationConfiguration.g:5371:1: ( ( rule__ScopeSpecification__Group_2_1__0 )* ) { // InternalApplicationConfiguration.g:5371:1: ( ( rule__ScopeSpecification__Group_2_1__0 )* ) // InternalApplicationConfiguration.g:5372:2: ( rule__ScopeSpecification__Group_2_1__0 )* { before(grammarAccess.getScopeSpecificationAccess().getGroup_2_1()); // InternalApplicationConfiguration.g:5373:2: ( rule__ScopeSpecification__Group_2_1__0 )* loop47: do { int alt47=2; int LA47_0 = input.LA(1); if ( (LA47_0==25) ) { alt47=1; } switch (alt47) { case 1 : // InternalApplicationConfiguration.g:5373:3: rule__ScopeSpecification__Group_2_1__0 { pushFollow(FOLLOW_15); rule__ScopeSpecification__Group_2_1__0(); state._fsp--; } break; default : break loop47; } } while (true); after(grammarAccess.getScopeSpecificationAccess().getGroup_2_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group_2__1__Impl" // $ANTLR start "rule__ScopeSpecification__Group_2_1__0" // InternalApplicationConfiguration.g:5382:1: rule__ScopeSpecification__Group_2_1__0 : rule__ScopeSpecification__Group_2_1__0__Impl rule__ScopeSpecification__Group_2_1__1 ; public final void rule__ScopeSpecification__Group_2_1__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5386:1: ( rule__ScopeSpecification__Group_2_1__0__Impl rule__ScopeSpecification__Group_2_1__1 ) // InternalApplicationConfiguration.g:5387:2: rule__ScopeSpecification__Group_2_1__0__Impl rule__ScopeSpecification__Group_2_1__1 { pushFollow(FOLLOW_27); rule__ScopeSpecification__Group_2_1__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ScopeSpecification__Group_2_1__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group_2_1__0" // $ANTLR start "rule__ScopeSpecification__Group_2_1__0__Impl" // InternalApplicationConfiguration.g:5394:1: rule__ScopeSpecification__Group_2_1__0__Impl : ( ',' ) ; public final void rule__ScopeSpecification__Group_2_1__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5398:1: ( ( ',' ) ) // InternalApplicationConfiguration.g:5399:1: ( ',' ) { // InternalApplicationConfiguration.g:5399:1: ( ',' ) // InternalApplicationConfiguration.g:5400:2: ',' { before(grammarAccess.getScopeSpecificationAccess().getCommaKeyword_2_1_0()); match(input,25,FOLLOW_2); after(grammarAccess.getScopeSpecificationAccess().getCommaKeyword_2_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group_2_1__0__Impl" // $ANTLR start "rule__ScopeSpecification__Group_2_1__1" // InternalApplicationConfiguration.g:5409:1: rule__ScopeSpecification__Group_2_1__1 : rule__ScopeSpecification__Group_2_1__1__Impl ; public final void rule__ScopeSpecification__Group_2_1__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5413:1: ( rule__ScopeSpecification__Group_2_1__1__Impl ) // InternalApplicationConfiguration.g:5414:2: rule__ScopeSpecification__Group_2_1__1__Impl { pushFollow(FOLLOW_2); rule__ScopeSpecification__Group_2_1__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group_2_1__1" // $ANTLR start "rule__ScopeSpecification__Group_2_1__1__Impl" // InternalApplicationConfiguration.g:5420:1: rule__ScopeSpecification__Group_2_1__1__Impl : ( ( rule__ScopeSpecification__ScopesAssignment_2_1_1 ) ) ; public final void rule__ScopeSpecification__Group_2_1__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5424:1: ( ( ( rule__ScopeSpecification__ScopesAssignment_2_1_1 ) ) ) // InternalApplicationConfiguration.g:5425:1: ( ( rule__ScopeSpecification__ScopesAssignment_2_1_1 ) ) { // InternalApplicationConfiguration.g:5425:1: ( ( rule__ScopeSpecification__ScopesAssignment_2_1_1 ) ) // InternalApplicationConfiguration.g:5426:2: ( rule__ScopeSpecification__ScopesAssignment_2_1_1 ) { before(grammarAccess.getScopeSpecificationAccess().getScopesAssignment_2_1_1()); // InternalApplicationConfiguration.g:5427:2: ( rule__ScopeSpecification__ScopesAssignment_2_1_1 ) // InternalApplicationConfiguration.g:5427:3: rule__ScopeSpecification__ScopesAssignment_2_1_1 { pushFollow(FOLLOW_2); rule__ScopeSpecification__ScopesAssignment_2_1_1(); state._fsp--; } after(grammarAccess.getScopeSpecificationAccess().getScopesAssignment_2_1_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__Group_2_1__1__Impl" // $ANTLR start "rule__ClassTypeScope__Group__0" // InternalApplicationConfiguration.g:5436:1: rule__ClassTypeScope__Group__0 : rule__ClassTypeScope__Group__0__Impl rule__ClassTypeScope__Group__1 ; public final void rule__ClassTypeScope__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5440:1: ( rule__ClassTypeScope__Group__0__Impl rule__ClassTypeScope__Group__1 ) // InternalApplicationConfiguration.g:5441:2: rule__ClassTypeScope__Group__0__Impl rule__ClassTypeScope__Group__1 { pushFollow(FOLLOW_28); rule__ClassTypeScope__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ClassTypeScope__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassTypeScope__Group__0" // $ANTLR start "rule__ClassTypeScope__Group__0__Impl" // InternalApplicationConfiguration.g:5448:1: rule__ClassTypeScope__Group__0__Impl : ( '#' ) ; public final void rule__ClassTypeScope__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5452:1: ( ( '#' ) ) // InternalApplicationConfiguration.g:5453:1: ( '#' ) { // InternalApplicationConfiguration.g:5453:1: ( '#' ) // InternalApplicationConfiguration.g:5454:2: '#' { before(grammarAccess.getClassTypeScopeAccess().getNumberSignKeyword_0()); match(input,37,FOLLOW_2); after(grammarAccess.getClassTypeScopeAccess().getNumberSignKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassTypeScope__Group__0__Impl" // $ANTLR start "rule__ClassTypeScope__Group__1" // InternalApplicationConfiguration.g:5463:1: rule__ClassTypeScope__Group__1 : rule__ClassTypeScope__Group__1__Impl rule__ClassTypeScope__Group__2 ; public final void rule__ClassTypeScope__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5467:1: ( rule__ClassTypeScope__Group__1__Impl rule__ClassTypeScope__Group__2 ) // InternalApplicationConfiguration.g:5468:2: rule__ClassTypeScope__Group__1__Impl rule__ClassTypeScope__Group__2 { pushFollow(FOLLOW_29); rule__ClassTypeScope__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ClassTypeScope__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassTypeScope__Group__1" // $ANTLR start "rule__ClassTypeScope__Group__1__Impl" // InternalApplicationConfiguration.g:5475:1: rule__ClassTypeScope__Group__1__Impl : ( ( rule__ClassTypeScope__TypeAssignment_1 ) ) ; public final void rule__ClassTypeScope__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5479:1: ( ( ( rule__ClassTypeScope__TypeAssignment_1 ) ) ) // InternalApplicationConfiguration.g:5480:1: ( ( rule__ClassTypeScope__TypeAssignment_1 ) ) { // InternalApplicationConfiguration.g:5480:1: ( ( rule__ClassTypeScope__TypeAssignment_1 ) ) // InternalApplicationConfiguration.g:5481:2: ( rule__ClassTypeScope__TypeAssignment_1 ) { before(grammarAccess.getClassTypeScopeAccess().getTypeAssignment_1()); // InternalApplicationConfiguration.g:5482:2: ( rule__ClassTypeScope__TypeAssignment_1 ) // InternalApplicationConfiguration.g:5482:3: rule__ClassTypeScope__TypeAssignment_1 { pushFollow(FOLLOW_2); rule__ClassTypeScope__TypeAssignment_1(); state._fsp--; } after(grammarAccess.getClassTypeScopeAccess().getTypeAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassTypeScope__Group__1__Impl" // $ANTLR start "rule__ClassTypeScope__Group__2" // InternalApplicationConfiguration.g:5490:1: rule__ClassTypeScope__Group__2 : rule__ClassTypeScope__Group__2__Impl rule__ClassTypeScope__Group__3 ; public final void rule__ClassTypeScope__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5494:1: ( rule__ClassTypeScope__Group__2__Impl rule__ClassTypeScope__Group__3 ) // InternalApplicationConfiguration.g:5495:2: rule__ClassTypeScope__Group__2__Impl rule__ClassTypeScope__Group__3 { pushFollow(FOLLOW_30); rule__ClassTypeScope__Group__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ClassTypeScope__Group__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassTypeScope__Group__2" // $ANTLR start "rule__ClassTypeScope__Group__2__Impl" // InternalApplicationConfiguration.g:5502:1: rule__ClassTypeScope__Group__2__Impl : ( ( rule__ClassTypeScope__Alternatives_2 ) ) ; public final void rule__ClassTypeScope__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5506:1: ( ( ( rule__ClassTypeScope__Alternatives_2 ) ) ) // InternalApplicationConfiguration.g:5507:1: ( ( rule__ClassTypeScope__Alternatives_2 ) ) { // InternalApplicationConfiguration.g:5507:1: ( ( rule__ClassTypeScope__Alternatives_2 ) ) // InternalApplicationConfiguration.g:5508:2: ( rule__ClassTypeScope__Alternatives_2 ) { before(grammarAccess.getClassTypeScopeAccess().getAlternatives_2()); // InternalApplicationConfiguration.g:5509:2: ( rule__ClassTypeScope__Alternatives_2 ) // InternalApplicationConfiguration.g:5509:3: rule__ClassTypeScope__Alternatives_2 { pushFollow(FOLLOW_2); rule__ClassTypeScope__Alternatives_2(); state._fsp--; } after(grammarAccess.getClassTypeScopeAccess().getAlternatives_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassTypeScope__Group__2__Impl" // $ANTLR start "rule__ClassTypeScope__Group__3" // InternalApplicationConfiguration.g:5517:1: rule__ClassTypeScope__Group__3 : rule__ClassTypeScope__Group__3__Impl ; public final void rule__ClassTypeScope__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5521:1: ( rule__ClassTypeScope__Group__3__Impl ) // InternalApplicationConfiguration.g:5522:2: rule__ClassTypeScope__Group__3__Impl { pushFollow(FOLLOW_2); rule__ClassTypeScope__Group__3__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassTypeScope__Group__3" // $ANTLR start "rule__ClassTypeScope__Group__3__Impl" // InternalApplicationConfiguration.g:5528:1: rule__ClassTypeScope__Group__3__Impl : ( ( rule__ClassTypeScope__Alternatives_3 ) ) ; public final void rule__ClassTypeScope__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5532:1: ( ( ( rule__ClassTypeScope__Alternatives_3 ) ) ) // InternalApplicationConfiguration.g:5533:1: ( ( rule__ClassTypeScope__Alternatives_3 ) ) { // InternalApplicationConfiguration.g:5533:1: ( ( rule__ClassTypeScope__Alternatives_3 ) ) // InternalApplicationConfiguration.g:5534:2: ( rule__ClassTypeScope__Alternatives_3 ) { before(grammarAccess.getClassTypeScopeAccess().getAlternatives_3()); // InternalApplicationConfiguration.g:5535:2: ( rule__ClassTypeScope__Alternatives_3 ) // InternalApplicationConfiguration.g:5535:3: rule__ClassTypeScope__Alternatives_3 { pushFollow(FOLLOW_2); rule__ClassTypeScope__Alternatives_3(); state._fsp--; } after(grammarAccess.getClassTypeScopeAccess().getAlternatives_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassTypeScope__Group__3__Impl" // $ANTLR start "rule__ObjectTypeScope__Group__0" // InternalApplicationConfiguration.g:5544:1: rule__ObjectTypeScope__Group__0 : rule__ObjectTypeScope__Group__0__Impl rule__ObjectTypeScope__Group__1 ; public final void rule__ObjectTypeScope__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5548:1: ( rule__ObjectTypeScope__Group__0__Impl rule__ObjectTypeScope__Group__1 ) // InternalApplicationConfiguration.g:5549:2: rule__ObjectTypeScope__Group__0__Impl rule__ObjectTypeScope__Group__1 { pushFollow(FOLLOW_31); rule__ObjectTypeScope__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ObjectTypeScope__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectTypeScope__Group__0" // $ANTLR start "rule__ObjectTypeScope__Group__0__Impl" // InternalApplicationConfiguration.g:5556:1: rule__ObjectTypeScope__Group__0__Impl : ( '#' ) ; public final void rule__ObjectTypeScope__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5560:1: ( ( '#' ) ) // InternalApplicationConfiguration.g:5561:1: ( '#' ) { // InternalApplicationConfiguration.g:5561:1: ( '#' ) // InternalApplicationConfiguration.g:5562:2: '#' { before(grammarAccess.getObjectTypeScopeAccess().getNumberSignKeyword_0()); match(input,37,FOLLOW_2); after(grammarAccess.getObjectTypeScopeAccess().getNumberSignKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectTypeScope__Group__0__Impl" // $ANTLR start "rule__ObjectTypeScope__Group__1" // InternalApplicationConfiguration.g:5571:1: rule__ObjectTypeScope__Group__1 : rule__ObjectTypeScope__Group__1__Impl rule__ObjectTypeScope__Group__2 ; public final void rule__ObjectTypeScope__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5575:1: ( rule__ObjectTypeScope__Group__1__Impl rule__ObjectTypeScope__Group__2 ) // InternalApplicationConfiguration.g:5576:2: rule__ObjectTypeScope__Group__1__Impl rule__ObjectTypeScope__Group__2 { pushFollow(FOLLOW_29); rule__ObjectTypeScope__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ObjectTypeScope__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectTypeScope__Group__1" // $ANTLR start "rule__ObjectTypeScope__Group__1__Impl" // InternalApplicationConfiguration.g:5583:1: rule__ObjectTypeScope__Group__1__Impl : ( ( rule__ObjectTypeScope__TypeAssignment_1 ) ) ; public final void rule__ObjectTypeScope__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5587:1: ( ( ( rule__ObjectTypeScope__TypeAssignment_1 ) ) ) // InternalApplicationConfiguration.g:5588:1: ( ( rule__ObjectTypeScope__TypeAssignment_1 ) ) { // InternalApplicationConfiguration.g:5588:1: ( ( rule__ObjectTypeScope__TypeAssignment_1 ) ) // InternalApplicationConfiguration.g:5589:2: ( rule__ObjectTypeScope__TypeAssignment_1 ) { before(grammarAccess.getObjectTypeScopeAccess().getTypeAssignment_1()); // InternalApplicationConfiguration.g:5590:2: ( rule__ObjectTypeScope__TypeAssignment_1 ) // InternalApplicationConfiguration.g:5590:3: rule__ObjectTypeScope__TypeAssignment_1 { pushFollow(FOLLOW_2); rule__ObjectTypeScope__TypeAssignment_1(); state._fsp--; } after(grammarAccess.getObjectTypeScopeAccess().getTypeAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectTypeScope__Group__1__Impl" // $ANTLR start "rule__ObjectTypeScope__Group__2" // InternalApplicationConfiguration.g:5598:1: rule__ObjectTypeScope__Group__2 : rule__ObjectTypeScope__Group__2__Impl rule__ObjectTypeScope__Group__3 ; public final void rule__ObjectTypeScope__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5602:1: ( rule__ObjectTypeScope__Group__2__Impl rule__ObjectTypeScope__Group__3 ) // InternalApplicationConfiguration.g:5603:2: rule__ObjectTypeScope__Group__2__Impl rule__ObjectTypeScope__Group__3 { pushFollow(FOLLOW_30); rule__ObjectTypeScope__Group__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ObjectTypeScope__Group__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectTypeScope__Group__2" // $ANTLR start "rule__ObjectTypeScope__Group__2__Impl" // InternalApplicationConfiguration.g:5610:1: rule__ObjectTypeScope__Group__2__Impl : ( ( rule__ObjectTypeScope__Alternatives_2 ) ) ; public final void rule__ObjectTypeScope__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5614:1: ( ( ( rule__ObjectTypeScope__Alternatives_2 ) ) ) // InternalApplicationConfiguration.g:5615:1: ( ( rule__ObjectTypeScope__Alternatives_2 ) ) { // InternalApplicationConfiguration.g:5615:1: ( ( rule__ObjectTypeScope__Alternatives_2 ) ) // InternalApplicationConfiguration.g:5616:2: ( rule__ObjectTypeScope__Alternatives_2 ) { before(grammarAccess.getObjectTypeScopeAccess().getAlternatives_2()); // InternalApplicationConfiguration.g:5617:2: ( rule__ObjectTypeScope__Alternatives_2 ) // InternalApplicationConfiguration.g:5617:3: rule__ObjectTypeScope__Alternatives_2 { pushFollow(FOLLOW_2); rule__ObjectTypeScope__Alternatives_2(); state._fsp--; } after(grammarAccess.getObjectTypeScopeAccess().getAlternatives_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectTypeScope__Group__2__Impl" // $ANTLR start "rule__ObjectTypeScope__Group__3" // InternalApplicationConfiguration.g:5625:1: rule__ObjectTypeScope__Group__3 : rule__ObjectTypeScope__Group__3__Impl ; public final void rule__ObjectTypeScope__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5629:1: ( rule__ObjectTypeScope__Group__3__Impl ) // InternalApplicationConfiguration.g:5630:2: rule__ObjectTypeScope__Group__3__Impl { pushFollow(FOLLOW_2); rule__ObjectTypeScope__Group__3__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectTypeScope__Group__3" // $ANTLR start "rule__ObjectTypeScope__Group__3__Impl" // InternalApplicationConfiguration.g:5636:1: rule__ObjectTypeScope__Group__3__Impl : ( ( rule__ObjectTypeScope__Alternatives_3 ) ) ; public final void rule__ObjectTypeScope__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5640:1: ( ( ( rule__ObjectTypeScope__Alternatives_3 ) ) ) // InternalApplicationConfiguration.g:5641:1: ( ( rule__ObjectTypeScope__Alternatives_3 ) ) { // InternalApplicationConfiguration.g:5641:1: ( ( rule__ObjectTypeScope__Alternatives_3 ) ) // InternalApplicationConfiguration.g:5642:2: ( rule__ObjectTypeScope__Alternatives_3 ) { before(grammarAccess.getObjectTypeScopeAccess().getAlternatives_3()); // InternalApplicationConfiguration.g:5643:2: ( rule__ObjectTypeScope__Alternatives_3 ) // InternalApplicationConfiguration.g:5643:3: rule__ObjectTypeScope__Alternatives_3 { pushFollow(FOLLOW_2); rule__ObjectTypeScope__Alternatives_3(); state._fsp--; } after(grammarAccess.getObjectTypeScopeAccess().getAlternatives_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectTypeScope__Group__3__Impl" // $ANTLR start "rule__IntegerTypeScope__Group__0" // InternalApplicationConfiguration.g:5652:1: rule__IntegerTypeScope__Group__0 : rule__IntegerTypeScope__Group__0__Impl rule__IntegerTypeScope__Group__1 ; public final void rule__IntegerTypeScope__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5656:1: ( rule__IntegerTypeScope__Group__0__Impl rule__IntegerTypeScope__Group__1 ) // InternalApplicationConfiguration.g:5657:2: rule__IntegerTypeScope__Group__0__Impl rule__IntegerTypeScope__Group__1 { pushFollow(FOLLOW_32); rule__IntegerTypeScope__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__IntegerTypeScope__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__Group__0" // $ANTLR start "rule__IntegerTypeScope__Group__0__Impl" // InternalApplicationConfiguration.g:5664:1: rule__IntegerTypeScope__Group__0__Impl : ( '#' ) ; public final void rule__IntegerTypeScope__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5668:1: ( ( '#' ) ) // InternalApplicationConfiguration.g:5669:1: ( '#' ) { // InternalApplicationConfiguration.g:5669:1: ( '#' ) // InternalApplicationConfiguration.g:5670:2: '#' { before(grammarAccess.getIntegerTypeScopeAccess().getNumberSignKeyword_0()); match(input,37,FOLLOW_2); after(grammarAccess.getIntegerTypeScopeAccess().getNumberSignKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__Group__0__Impl" // $ANTLR start "rule__IntegerTypeScope__Group__1" // InternalApplicationConfiguration.g:5679:1: rule__IntegerTypeScope__Group__1 : rule__IntegerTypeScope__Group__1__Impl rule__IntegerTypeScope__Group__2 ; public final void rule__IntegerTypeScope__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5683:1: ( rule__IntegerTypeScope__Group__1__Impl rule__IntegerTypeScope__Group__2 ) // InternalApplicationConfiguration.g:5684:2: rule__IntegerTypeScope__Group__1__Impl rule__IntegerTypeScope__Group__2 { pushFollow(FOLLOW_29); rule__IntegerTypeScope__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__IntegerTypeScope__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__Group__1" // $ANTLR start "rule__IntegerTypeScope__Group__1__Impl" // InternalApplicationConfiguration.g:5691:1: rule__IntegerTypeScope__Group__1__Impl : ( ( rule__IntegerTypeScope__TypeAssignment_1 ) ) ; public final void rule__IntegerTypeScope__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5695:1: ( ( ( rule__IntegerTypeScope__TypeAssignment_1 ) ) ) // InternalApplicationConfiguration.g:5696:1: ( ( rule__IntegerTypeScope__TypeAssignment_1 ) ) { // InternalApplicationConfiguration.g:5696:1: ( ( rule__IntegerTypeScope__TypeAssignment_1 ) ) // InternalApplicationConfiguration.g:5697:2: ( rule__IntegerTypeScope__TypeAssignment_1 ) { before(grammarAccess.getIntegerTypeScopeAccess().getTypeAssignment_1()); // InternalApplicationConfiguration.g:5698:2: ( rule__IntegerTypeScope__TypeAssignment_1 ) // InternalApplicationConfiguration.g:5698:3: rule__IntegerTypeScope__TypeAssignment_1 { pushFollow(FOLLOW_2); rule__IntegerTypeScope__TypeAssignment_1(); state._fsp--; } after(grammarAccess.getIntegerTypeScopeAccess().getTypeAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__Group__1__Impl" // $ANTLR start "rule__IntegerTypeScope__Group__2" // InternalApplicationConfiguration.g:5706:1: rule__IntegerTypeScope__Group__2 : rule__IntegerTypeScope__Group__2__Impl rule__IntegerTypeScope__Group__3 ; public final void rule__IntegerTypeScope__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5710:1: ( rule__IntegerTypeScope__Group__2__Impl rule__IntegerTypeScope__Group__3 ) // InternalApplicationConfiguration.g:5711:2: rule__IntegerTypeScope__Group__2__Impl rule__IntegerTypeScope__Group__3 { pushFollow(FOLLOW_33); rule__IntegerTypeScope__Group__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__IntegerTypeScope__Group__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__Group__2" // $ANTLR start "rule__IntegerTypeScope__Group__2__Impl" // InternalApplicationConfiguration.g:5718:1: rule__IntegerTypeScope__Group__2__Impl : ( ( rule__IntegerTypeScope__Alternatives_2 ) ) ; public final void rule__IntegerTypeScope__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5722:1: ( ( ( rule__IntegerTypeScope__Alternatives_2 ) ) ) // InternalApplicationConfiguration.g:5723:1: ( ( rule__IntegerTypeScope__Alternatives_2 ) ) { // InternalApplicationConfiguration.g:5723:1: ( ( rule__IntegerTypeScope__Alternatives_2 ) ) // InternalApplicationConfiguration.g:5724:2: ( rule__IntegerTypeScope__Alternatives_2 ) { before(grammarAccess.getIntegerTypeScopeAccess().getAlternatives_2()); // InternalApplicationConfiguration.g:5725:2: ( rule__IntegerTypeScope__Alternatives_2 ) // InternalApplicationConfiguration.g:5725:3: rule__IntegerTypeScope__Alternatives_2 { pushFollow(FOLLOW_2); rule__IntegerTypeScope__Alternatives_2(); state._fsp--; } after(grammarAccess.getIntegerTypeScopeAccess().getAlternatives_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__Group__2__Impl" // $ANTLR start "rule__IntegerTypeScope__Group__3" // InternalApplicationConfiguration.g:5733:1: rule__IntegerTypeScope__Group__3 : rule__IntegerTypeScope__Group__3__Impl ; public final void rule__IntegerTypeScope__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5737:1: ( rule__IntegerTypeScope__Group__3__Impl ) // InternalApplicationConfiguration.g:5738:2: rule__IntegerTypeScope__Group__3__Impl { pushFollow(FOLLOW_2); rule__IntegerTypeScope__Group__3__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__Group__3" // $ANTLR start "rule__IntegerTypeScope__Group__3__Impl" // InternalApplicationConfiguration.g:5744:1: rule__IntegerTypeScope__Group__3__Impl : ( ( rule__IntegerTypeScope__Alternatives_3 ) ) ; public final void rule__IntegerTypeScope__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5748:1: ( ( ( rule__IntegerTypeScope__Alternatives_3 ) ) ) // InternalApplicationConfiguration.g:5749:1: ( ( rule__IntegerTypeScope__Alternatives_3 ) ) { // InternalApplicationConfiguration.g:5749:1: ( ( rule__IntegerTypeScope__Alternatives_3 ) ) // InternalApplicationConfiguration.g:5750:2: ( rule__IntegerTypeScope__Alternatives_3 ) { before(grammarAccess.getIntegerTypeScopeAccess().getAlternatives_3()); // InternalApplicationConfiguration.g:5751:2: ( rule__IntegerTypeScope__Alternatives_3 ) // InternalApplicationConfiguration.g:5751:3: rule__IntegerTypeScope__Alternatives_3 { pushFollow(FOLLOW_2); rule__IntegerTypeScope__Alternatives_3(); state._fsp--; } after(grammarAccess.getIntegerTypeScopeAccess().getAlternatives_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__Group__3__Impl" // $ANTLR start "rule__RealTypeScope__Group__0" // InternalApplicationConfiguration.g:5760:1: rule__RealTypeScope__Group__0 : rule__RealTypeScope__Group__0__Impl rule__RealTypeScope__Group__1 ; public final void rule__RealTypeScope__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5764:1: ( rule__RealTypeScope__Group__0__Impl rule__RealTypeScope__Group__1 ) // InternalApplicationConfiguration.g:5765:2: rule__RealTypeScope__Group__0__Impl rule__RealTypeScope__Group__1 { pushFollow(FOLLOW_34); rule__RealTypeScope__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__RealTypeScope__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__Group__0" // $ANTLR start "rule__RealTypeScope__Group__0__Impl" // InternalApplicationConfiguration.g:5772:1: rule__RealTypeScope__Group__0__Impl : ( '#' ) ; public final void rule__RealTypeScope__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5776:1: ( ( '#' ) ) // InternalApplicationConfiguration.g:5777:1: ( '#' ) { // InternalApplicationConfiguration.g:5777:1: ( '#' ) // InternalApplicationConfiguration.g:5778:2: '#' { before(grammarAccess.getRealTypeScopeAccess().getNumberSignKeyword_0()); match(input,37,FOLLOW_2); after(grammarAccess.getRealTypeScopeAccess().getNumberSignKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__Group__0__Impl" // $ANTLR start "rule__RealTypeScope__Group__1" // InternalApplicationConfiguration.g:5787:1: rule__RealTypeScope__Group__1 : rule__RealTypeScope__Group__1__Impl rule__RealTypeScope__Group__2 ; public final void rule__RealTypeScope__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5791:1: ( rule__RealTypeScope__Group__1__Impl rule__RealTypeScope__Group__2 ) // InternalApplicationConfiguration.g:5792:2: rule__RealTypeScope__Group__1__Impl rule__RealTypeScope__Group__2 { pushFollow(FOLLOW_29); rule__RealTypeScope__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__RealTypeScope__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__Group__1" // $ANTLR start "rule__RealTypeScope__Group__1__Impl" // InternalApplicationConfiguration.g:5799:1: rule__RealTypeScope__Group__1__Impl : ( ( rule__RealTypeScope__TypeAssignment_1 ) ) ; public final void rule__RealTypeScope__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5803:1: ( ( ( rule__RealTypeScope__TypeAssignment_1 ) ) ) // InternalApplicationConfiguration.g:5804:1: ( ( rule__RealTypeScope__TypeAssignment_1 ) ) { // InternalApplicationConfiguration.g:5804:1: ( ( rule__RealTypeScope__TypeAssignment_1 ) ) // InternalApplicationConfiguration.g:5805:2: ( rule__RealTypeScope__TypeAssignment_1 ) { before(grammarAccess.getRealTypeScopeAccess().getTypeAssignment_1()); // InternalApplicationConfiguration.g:5806:2: ( rule__RealTypeScope__TypeAssignment_1 ) // InternalApplicationConfiguration.g:5806:3: rule__RealTypeScope__TypeAssignment_1 { pushFollow(FOLLOW_2); rule__RealTypeScope__TypeAssignment_1(); state._fsp--; } after(grammarAccess.getRealTypeScopeAccess().getTypeAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__Group__1__Impl" // $ANTLR start "rule__RealTypeScope__Group__2" // InternalApplicationConfiguration.g:5814:1: rule__RealTypeScope__Group__2 : rule__RealTypeScope__Group__2__Impl rule__RealTypeScope__Group__3 ; public final void rule__RealTypeScope__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5818:1: ( rule__RealTypeScope__Group__2__Impl rule__RealTypeScope__Group__3 ) // InternalApplicationConfiguration.g:5819:2: rule__RealTypeScope__Group__2__Impl rule__RealTypeScope__Group__3 { pushFollow(FOLLOW_33); rule__RealTypeScope__Group__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__RealTypeScope__Group__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__Group__2" // $ANTLR start "rule__RealTypeScope__Group__2__Impl" // InternalApplicationConfiguration.g:5826:1: rule__RealTypeScope__Group__2__Impl : ( ( rule__RealTypeScope__Alternatives_2 ) ) ; public final void rule__RealTypeScope__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5830:1: ( ( ( rule__RealTypeScope__Alternatives_2 ) ) ) // InternalApplicationConfiguration.g:5831:1: ( ( rule__RealTypeScope__Alternatives_2 ) ) { // InternalApplicationConfiguration.g:5831:1: ( ( rule__RealTypeScope__Alternatives_2 ) ) // InternalApplicationConfiguration.g:5832:2: ( rule__RealTypeScope__Alternatives_2 ) { before(grammarAccess.getRealTypeScopeAccess().getAlternatives_2()); // InternalApplicationConfiguration.g:5833:2: ( rule__RealTypeScope__Alternatives_2 ) // InternalApplicationConfiguration.g:5833:3: rule__RealTypeScope__Alternatives_2 { pushFollow(FOLLOW_2); rule__RealTypeScope__Alternatives_2(); state._fsp--; } after(grammarAccess.getRealTypeScopeAccess().getAlternatives_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__Group__2__Impl" // $ANTLR start "rule__RealTypeScope__Group__3" // InternalApplicationConfiguration.g:5841:1: rule__RealTypeScope__Group__3 : rule__RealTypeScope__Group__3__Impl ; public final void rule__RealTypeScope__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5845:1: ( rule__RealTypeScope__Group__3__Impl ) // InternalApplicationConfiguration.g:5846:2: rule__RealTypeScope__Group__3__Impl { pushFollow(FOLLOW_2); rule__RealTypeScope__Group__3__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__Group__3" // $ANTLR start "rule__RealTypeScope__Group__3__Impl" // InternalApplicationConfiguration.g:5852:1: rule__RealTypeScope__Group__3__Impl : ( ( rule__RealTypeScope__Alternatives_3 ) ) ; public final void rule__RealTypeScope__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5856:1: ( ( ( rule__RealTypeScope__Alternatives_3 ) ) ) // InternalApplicationConfiguration.g:5857:1: ( ( rule__RealTypeScope__Alternatives_3 ) ) { // InternalApplicationConfiguration.g:5857:1: ( ( rule__RealTypeScope__Alternatives_3 ) ) // InternalApplicationConfiguration.g:5858:2: ( rule__RealTypeScope__Alternatives_3 ) { before(grammarAccess.getRealTypeScopeAccess().getAlternatives_3()); // InternalApplicationConfiguration.g:5859:2: ( rule__RealTypeScope__Alternatives_3 ) // InternalApplicationConfiguration.g:5859:3: rule__RealTypeScope__Alternatives_3 { pushFollow(FOLLOW_2); rule__RealTypeScope__Alternatives_3(); state._fsp--; } after(grammarAccess.getRealTypeScopeAccess().getAlternatives_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__Group__3__Impl" // $ANTLR start "rule__StringTypeScope__Group__0" // InternalApplicationConfiguration.g:5868:1: rule__StringTypeScope__Group__0 : rule__StringTypeScope__Group__0__Impl rule__StringTypeScope__Group__1 ; public final void rule__StringTypeScope__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5872:1: ( rule__StringTypeScope__Group__0__Impl rule__StringTypeScope__Group__1 ) // InternalApplicationConfiguration.g:5873:2: rule__StringTypeScope__Group__0__Impl rule__StringTypeScope__Group__1 { pushFollow(FOLLOW_35); rule__StringTypeScope__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__StringTypeScope__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__Group__0" // $ANTLR start "rule__StringTypeScope__Group__0__Impl" // InternalApplicationConfiguration.g:5880:1: rule__StringTypeScope__Group__0__Impl : ( '#' ) ; public final void rule__StringTypeScope__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5884:1: ( ( '#' ) ) // InternalApplicationConfiguration.g:5885:1: ( '#' ) { // InternalApplicationConfiguration.g:5885:1: ( '#' ) // InternalApplicationConfiguration.g:5886:2: '#' { before(grammarAccess.getStringTypeScopeAccess().getNumberSignKeyword_0()); match(input,37,FOLLOW_2); after(grammarAccess.getStringTypeScopeAccess().getNumberSignKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__Group__0__Impl" // $ANTLR start "rule__StringTypeScope__Group__1" // InternalApplicationConfiguration.g:5895:1: rule__StringTypeScope__Group__1 : rule__StringTypeScope__Group__1__Impl rule__StringTypeScope__Group__2 ; public final void rule__StringTypeScope__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5899:1: ( rule__StringTypeScope__Group__1__Impl rule__StringTypeScope__Group__2 ) // InternalApplicationConfiguration.g:5900:2: rule__StringTypeScope__Group__1__Impl rule__StringTypeScope__Group__2 { pushFollow(FOLLOW_29); rule__StringTypeScope__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__StringTypeScope__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__Group__1" // $ANTLR start "rule__StringTypeScope__Group__1__Impl" // InternalApplicationConfiguration.g:5907:1: rule__StringTypeScope__Group__1__Impl : ( ( rule__StringTypeScope__TypeAssignment_1 ) ) ; public final void rule__StringTypeScope__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5911:1: ( ( ( rule__StringTypeScope__TypeAssignment_1 ) ) ) // InternalApplicationConfiguration.g:5912:1: ( ( rule__StringTypeScope__TypeAssignment_1 ) ) { // InternalApplicationConfiguration.g:5912:1: ( ( rule__StringTypeScope__TypeAssignment_1 ) ) // InternalApplicationConfiguration.g:5913:2: ( rule__StringTypeScope__TypeAssignment_1 ) { before(grammarAccess.getStringTypeScopeAccess().getTypeAssignment_1()); // InternalApplicationConfiguration.g:5914:2: ( rule__StringTypeScope__TypeAssignment_1 ) // InternalApplicationConfiguration.g:5914:3: rule__StringTypeScope__TypeAssignment_1 { pushFollow(FOLLOW_2); rule__StringTypeScope__TypeAssignment_1(); state._fsp--; } after(grammarAccess.getStringTypeScopeAccess().getTypeAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__Group__1__Impl" // $ANTLR start "rule__StringTypeScope__Group__2" // InternalApplicationConfiguration.g:5922:1: rule__StringTypeScope__Group__2 : rule__StringTypeScope__Group__2__Impl rule__StringTypeScope__Group__3 ; public final void rule__StringTypeScope__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5926:1: ( rule__StringTypeScope__Group__2__Impl rule__StringTypeScope__Group__3 ) // InternalApplicationConfiguration.g:5927:2: rule__StringTypeScope__Group__2__Impl rule__StringTypeScope__Group__3 { pushFollow(FOLLOW_33); rule__StringTypeScope__Group__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__StringTypeScope__Group__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__Group__2" // $ANTLR start "rule__StringTypeScope__Group__2__Impl" // InternalApplicationConfiguration.g:5934:1: rule__StringTypeScope__Group__2__Impl : ( ( rule__StringTypeScope__Alternatives_2 ) ) ; public final void rule__StringTypeScope__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5938:1: ( ( ( rule__StringTypeScope__Alternatives_2 ) ) ) // InternalApplicationConfiguration.g:5939:1: ( ( rule__StringTypeScope__Alternatives_2 ) ) { // InternalApplicationConfiguration.g:5939:1: ( ( rule__StringTypeScope__Alternatives_2 ) ) // InternalApplicationConfiguration.g:5940:2: ( rule__StringTypeScope__Alternatives_2 ) { before(grammarAccess.getStringTypeScopeAccess().getAlternatives_2()); // InternalApplicationConfiguration.g:5941:2: ( rule__StringTypeScope__Alternatives_2 ) // InternalApplicationConfiguration.g:5941:3: rule__StringTypeScope__Alternatives_2 { pushFollow(FOLLOW_2); rule__StringTypeScope__Alternatives_2(); state._fsp--; } after(grammarAccess.getStringTypeScopeAccess().getAlternatives_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__Group__2__Impl" // $ANTLR start "rule__StringTypeScope__Group__3" // InternalApplicationConfiguration.g:5949:1: rule__StringTypeScope__Group__3 : rule__StringTypeScope__Group__3__Impl ; public final void rule__StringTypeScope__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5953:1: ( rule__StringTypeScope__Group__3__Impl ) // InternalApplicationConfiguration.g:5954:2: rule__StringTypeScope__Group__3__Impl { pushFollow(FOLLOW_2); rule__StringTypeScope__Group__3__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__Group__3" // $ANTLR start "rule__StringTypeScope__Group__3__Impl" // InternalApplicationConfiguration.g:5960:1: rule__StringTypeScope__Group__3__Impl : ( ( rule__StringTypeScope__Alternatives_3 ) ) ; public final void rule__StringTypeScope__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5964:1: ( ( ( rule__StringTypeScope__Alternatives_3 ) ) ) // InternalApplicationConfiguration.g:5965:1: ( ( rule__StringTypeScope__Alternatives_3 ) ) { // InternalApplicationConfiguration.g:5965:1: ( ( rule__StringTypeScope__Alternatives_3 ) ) // InternalApplicationConfiguration.g:5966:2: ( rule__StringTypeScope__Alternatives_3 ) { before(grammarAccess.getStringTypeScopeAccess().getAlternatives_3()); // InternalApplicationConfiguration.g:5967:2: ( rule__StringTypeScope__Alternatives_3 ) // InternalApplicationConfiguration.g:5967:3: rule__StringTypeScope__Alternatives_3 { pushFollow(FOLLOW_2); rule__StringTypeScope__Alternatives_3(); state._fsp--; } after(grammarAccess.getStringTypeScopeAccess().getAlternatives_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__Group__3__Impl" // $ANTLR start "rule__ClassReference__Group__0" // InternalApplicationConfiguration.g:5976:1: rule__ClassReference__Group__0 : rule__ClassReference__Group__0__Impl rule__ClassReference__Group__1 ; public final void rule__ClassReference__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5980:1: ( rule__ClassReference__Group__0__Impl rule__ClassReference__Group__1 ) // InternalApplicationConfiguration.g:5981:2: rule__ClassReference__Group__0__Impl rule__ClassReference__Group__1 { pushFollow(FOLLOW_8); rule__ClassReference__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ClassReference__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassReference__Group__0" // $ANTLR start "rule__ClassReference__Group__0__Impl" // InternalApplicationConfiguration.g:5988:1: rule__ClassReference__Group__0__Impl : ( '<' ) ; public final void rule__ClassReference__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:5992:1: ( ( '<' ) ) // InternalApplicationConfiguration.g:5993:1: ( '<' ) { // InternalApplicationConfiguration.g:5993:1: ( '<' ) // InternalApplicationConfiguration.g:5994:2: '<' { before(grammarAccess.getClassReferenceAccess().getLessThanSignKeyword_0()); match(input,38,FOLLOW_2); after(grammarAccess.getClassReferenceAccess().getLessThanSignKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassReference__Group__0__Impl" // $ANTLR start "rule__ClassReference__Group__1" // InternalApplicationConfiguration.g:6003:1: rule__ClassReference__Group__1 : rule__ClassReference__Group__1__Impl rule__ClassReference__Group__2 ; public final void rule__ClassReference__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6007:1: ( rule__ClassReference__Group__1__Impl rule__ClassReference__Group__2 ) // InternalApplicationConfiguration.g:6008:2: rule__ClassReference__Group__1__Impl rule__ClassReference__Group__2 { pushFollow(FOLLOW_36); rule__ClassReference__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ClassReference__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassReference__Group__1" // $ANTLR start "rule__ClassReference__Group__1__Impl" // InternalApplicationConfiguration.g:6015:1: rule__ClassReference__Group__1__Impl : ( ( rule__ClassReference__ElementAssignment_1 ) ) ; public final void rule__ClassReference__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6019:1: ( ( ( rule__ClassReference__ElementAssignment_1 ) ) ) // InternalApplicationConfiguration.g:6020:1: ( ( rule__ClassReference__ElementAssignment_1 ) ) { // InternalApplicationConfiguration.g:6020:1: ( ( rule__ClassReference__ElementAssignment_1 ) ) // InternalApplicationConfiguration.g:6021:2: ( rule__ClassReference__ElementAssignment_1 ) { before(grammarAccess.getClassReferenceAccess().getElementAssignment_1()); // InternalApplicationConfiguration.g:6022:2: ( rule__ClassReference__ElementAssignment_1 ) // InternalApplicationConfiguration.g:6022:3: rule__ClassReference__ElementAssignment_1 { pushFollow(FOLLOW_2); rule__ClassReference__ElementAssignment_1(); state._fsp--; } after(grammarAccess.getClassReferenceAccess().getElementAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassReference__Group__1__Impl" // $ANTLR start "rule__ClassReference__Group__2" // InternalApplicationConfiguration.g:6030:1: rule__ClassReference__Group__2 : rule__ClassReference__Group__2__Impl ; public final void rule__ClassReference__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6034:1: ( rule__ClassReference__Group__2__Impl ) // InternalApplicationConfiguration.g:6035:2: rule__ClassReference__Group__2__Impl { pushFollow(FOLLOW_2); rule__ClassReference__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassReference__Group__2" // $ANTLR start "rule__ClassReference__Group__2__Impl" // InternalApplicationConfiguration.g:6041:1: rule__ClassReference__Group__2__Impl : ( '>' ) ; public final void rule__ClassReference__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6045:1: ( ( '>' ) ) // InternalApplicationConfiguration.g:6046:1: ( '>' ) { // InternalApplicationConfiguration.g:6046:1: ( '>' ) // InternalApplicationConfiguration.g:6047:2: '>' { before(grammarAccess.getClassReferenceAccess().getGreaterThanSignKeyword_2()); match(input,39,FOLLOW_2); after(grammarAccess.getClassReferenceAccess().getGreaterThanSignKeyword_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassReference__Group__2__Impl" // $ANTLR start "rule__ObjectReference__Group__0" // InternalApplicationConfiguration.g:6057:1: rule__ObjectReference__Group__0 : rule__ObjectReference__Group__0__Impl rule__ObjectReference__Group__1 ; public final void rule__ObjectReference__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6061:1: ( rule__ObjectReference__Group__0__Impl rule__ObjectReference__Group__1 ) // InternalApplicationConfiguration.g:6062:2: rule__ObjectReference__Group__0__Impl rule__ObjectReference__Group__1 { pushFollow(FOLLOW_31); rule__ObjectReference__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ObjectReference__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectReference__Group__0" // $ANTLR start "rule__ObjectReference__Group__0__Impl" // InternalApplicationConfiguration.g:6069:1: rule__ObjectReference__Group__0__Impl : ( () ) ; public final void rule__ObjectReference__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6073:1: ( ( () ) ) // InternalApplicationConfiguration.g:6074:1: ( () ) { // InternalApplicationConfiguration.g:6074:1: ( () ) // InternalApplicationConfiguration.g:6075:2: () { before(grammarAccess.getObjectReferenceAccess().getObjectReferenceAction_0()); // InternalApplicationConfiguration.g:6076:2: () // InternalApplicationConfiguration.g:6076:3: { } after(grammarAccess.getObjectReferenceAccess().getObjectReferenceAction_0()); } } } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectReference__Group__0__Impl" // $ANTLR start "rule__ObjectReference__Group__1" // InternalApplicationConfiguration.g:6084:1: rule__ObjectReference__Group__1 : rule__ObjectReference__Group__1__Impl ; public final void rule__ObjectReference__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6088:1: ( rule__ObjectReference__Group__1__Impl ) // InternalApplicationConfiguration.g:6089:2: rule__ObjectReference__Group__1__Impl { pushFollow(FOLLOW_2); rule__ObjectReference__Group__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectReference__Group__1" // $ANTLR start "rule__ObjectReference__Group__1__Impl" // InternalApplicationConfiguration.g:6095:1: rule__ObjectReference__Group__1__Impl : ( 'node' ) ; public final void rule__ObjectReference__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6099:1: ( ( 'node' ) ) // InternalApplicationConfiguration.g:6100:1: ( 'node' ) { // InternalApplicationConfiguration.g:6100:1: ( 'node' ) // InternalApplicationConfiguration.g:6101:2: 'node' { before(grammarAccess.getObjectReferenceAccess().getNodeKeyword_1()); match(input,40,FOLLOW_2); after(grammarAccess.getObjectReferenceAccess().getNodeKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectReference__Group__1__Impl" // $ANTLR start "rule__IntegerReference__Group__0" // InternalApplicationConfiguration.g:6111:1: rule__IntegerReference__Group__0 : rule__IntegerReference__Group__0__Impl rule__IntegerReference__Group__1 ; public final void rule__IntegerReference__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6115:1: ( rule__IntegerReference__Group__0__Impl rule__IntegerReference__Group__1 ) // InternalApplicationConfiguration.g:6116:2: rule__IntegerReference__Group__0__Impl rule__IntegerReference__Group__1 { pushFollow(FOLLOW_32); rule__IntegerReference__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__IntegerReference__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerReference__Group__0" // $ANTLR start "rule__IntegerReference__Group__0__Impl" // InternalApplicationConfiguration.g:6123:1: rule__IntegerReference__Group__0__Impl : ( () ) ; public final void rule__IntegerReference__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6127:1: ( ( () ) ) // InternalApplicationConfiguration.g:6128:1: ( () ) { // InternalApplicationConfiguration.g:6128:1: ( () ) // InternalApplicationConfiguration.g:6129:2: () { before(grammarAccess.getIntegerReferenceAccess().getIntegerScopeAction_0()); // InternalApplicationConfiguration.g:6130:2: () // InternalApplicationConfiguration.g:6130:3: { } after(grammarAccess.getIntegerReferenceAccess().getIntegerScopeAction_0()); } } } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerReference__Group__0__Impl" // $ANTLR start "rule__IntegerReference__Group__1" // InternalApplicationConfiguration.g:6138:1: rule__IntegerReference__Group__1 : rule__IntegerReference__Group__1__Impl ; public final void rule__IntegerReference__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6142:1: ( rule__IntegerReference__Group__1__Impl ) // InternalApplicationConfiguration.g:6143:2: rule__IntegerReference__Group__1__Impl { pushFollow(FOLLOW_2); rule__IntegerReference__Group__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerReference__Group__1" // $ANTLR start "rule__IntegerReference__Group__1__Impl" // InternalApplicationConfiguration.g:6149:1: rule__IntegerReference__Group__1__Impl : ( 'int' ) ; public final void rule__IntegerReference__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6153:1: ( ( 'int' ) ) // InternalApplicationConfiguration.g:6154:1: ( 'int' ) { // InternalApplicationConfiguration.g:6154:1: ( 'int' ) // InternalApplicationConfiguration.g:6155:2: 'int' { before(grammarAccess.getIntegerReferenceAccess().getIntKeyword_1()); match(input,41,FOLLOW_2); after(grammarAccess.getIntegerReferenceAccess().getIntKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerReference__Group__1__Impl" // $ANTLR start "rule__RealReference__Group__0" // InternalApplicationConfiguration.g:6165:1: rule__RealReference__Group__0 : rule__RealReference__Group__0__Impl rule__RealReference__Group__1 ; public final void rule__RealReference__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6169:1: ( rule__RealReference__Group__0__Impl rule__RealReference__Group__1 ) // InternalApplicationConfiguration.g:6170:2: rule__RealReference__Group__0__Impl rule__RealReference__Group__1 { pushFollow(FOLLOW_34); rule__RealReference__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__RealReference__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealReference__Group__0" // $ANTLR start "rule__RealReference__Group__0__Impl" // InternalApplicationConfiguration.g:6177:1: rule__RealReference__Group__0__Impl : ( () ) ; public final void rule__RealReference__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6181:1: ( ( () ) ) // InternalApplicationConfiguration.g:6182:1: ( () ) { // InternalApplicationConfiguration.g:6182:1: ( () ) // InternalApplicationConfiguration.g:6183:2: () { before(grammarAccess.getRealReferenceAccess().getRealScopeAction_0()); // InternalApplicationConfiguration.g:6184:2: () // InternalApplicationConfiguration.g:6184:3: { } after(grammarAccess.getRealReferenceAccess().getRealScopeAction_0()); } } } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealReference__Group__0__Impl" // $ANTLR start "rule__RealReference__Group__1" // InternalApplicationConfiguration.g:6192:1: rule__RealReference__Group__1 : rule__RealReference__Group__1__Impl ; public final void rule__RealReference__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6196:1: ( rule__RealReference__Group__1__Impl ) // InternalApplicationConfiguration.g:6197:2: rule__RealReference__Group__1__Impl { pushFollow(FOLLOW_2); rule__RealReference__Group__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealReference__Group__1" // $ANTLR start "rule__RealReference__Group__1__Impl" // InternalApplicationConfiguration.g:6203:1: rule__RealReference__Group__1__Impl : ( 'real' ) ; public final void rule__RealReference__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6207:1: ( ( 'real' ) ) // InternalApplicationConfiguration.g:6208:1: ( 'real' ) { // InternalApplicationConfiguration.g:6208:1: ( 'real' ) // InternalApplicationConfiguration.g:6209:2: 'real' { before(grammarAccess.getRealReferenceAccess().getRealKeyword_1()); match(input,42,FOLLOW_2); after(grammarAccess.getRealReferenceAccess().getRealKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealReference__Group__1__Impl" // $ANTLR start "rule__StringReference__Group__0" // InternalApplicationConfiguration.g:6219:1: rule__StringReference__Group__0 : rule__StringReference__Group__0__Impl rule__StringReference__Group__1 ; public final void rule__StringReference__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6223:1: ( rule__StringReference__Group__0__Impl rule__StringReference__Group__1 ) // InternalApplicationConfiguration.g:6224:2: rule__StringReference__Group__0__Impl rule__StringReference__Group__1 { pushFollow(FOLLOW_35); rule__StringReference__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__StringReference__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringReference__Group__0" // $ANTLR start "rule__StringReference__Group__0__Impl" // InternalApplicationConfiguration.g:6231:1: rule__StringReference__Group__0__Impl : ( () ) ; public final void rule__StringReference__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6235:1: ( ( () ) ) // InternalApplicationConfiguration.g:6236:1: ( () ) { // InternalApplicationConfiguration.g:6236:1: ( () ) // InternalApplicationConfiguration.g:6237:2: () { before(grammarAccess.getStringReferenceAccess().getStringScopeAction_0()); // InternalApplicationConfiguration.g:6238:2: () // InternalApplicationConfiguration.g:6238:3: { } after(grammarAccess.getStringReferenceAccess().getStringScopeAction_0()); } } } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringReference__Group__0__Impl" // $ANTLR start "rule__StringReference__Group__1" // InternalApplicationConfiguration.g:6246:1: rule__StringReference__Group__1 : rule__StringReference__Group__1__Impl ; public final void rule__StringReference__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6250:1: ( rule__StringReference__Group__1__Impl ) // InternalApplicationConfiguration.g:6251:2: rule__StringReference__Group__1__Impl { pushFollow(FOLLOW_2); rule__StringReference__Group__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringReference__Group__1" // $ANTLR start "rule__StringReference__Group__1__Impl" // InternalApplicationConfiguration.g:6257:1: rule__StringReference__Group__1__Impl : ( 'string' ) ; public final void rule__StringReference__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6261:1: ( ( 'string' ) ) // InternalApplicationConfiguration.g:6262:1: ( 'string' ) { // InternalApplicationConfiguration.g:6262:1: ( 'string' ) // InternalApplicationConfiguration.g:6263:2: 'string' { before(grammarAccess.getStringReferenceAccess().getStringKeyword_1()); match(input,43,FOLLOW_2); after(grammarAccess.getStringReferenceAccess().getStringKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringReference__Group__1__Impl" // $ANTLR start "rule__IntervallNumber__Group__0" // InternalApplicationConfiguration.g:6273:1: rule__IntervallNumber__Group__0 : rule__IntervallNumber__Group__0__Impl rule__IntervallNumber__Group__1 ; public final void rule__IntervallNumber__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6277:1: ( rule__IntervallNumber__Group__0__Impl rule__IntervallNumber__Group__1 ) // InternalApplicationConfiguration.g:6278:2: rule__IntervallNumber__Group__0__Impl rule__IntervallNumber__Group__1 { pushFollow(FOLLOW_37); rule__IntervallNumber__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__IntervallNumber__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntervallNumber__Group__0" // $ANTLR start "rule__IntervallNumber__Group__0__Impl" // InternalApplicationConfiguration.g:6285:1: rule__IntervallNumber__Group__0__Impl : ( ( rule__IntervallNumber__MinAssignment_0 ) ) ; public final void rule__IntervallNumber__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6289:1: ( ( ( rule__IntervallNumber__MinAssignment_0 ) ) ) // InternalApplicationConfiguration.g:6290:1: ( ( rule__IntervallNumber__MinAssignment_0 ) ) { // InternalApplicationConfiguration.g:6290:1: ( ( rule__IntervallNumber__MinAssignment_0 ) ) // InternalApplicationConfiguration.g:6291:2: ( rule__IntervallNumber__MinAssignment_0 ) { before(grammarAccess.getIntervallNumberAccess().getMinAssignment_0()); // InternalApplicationConfiguration.g:6292:2: ( rule__IntervallNumber__MinAssignment_0 ) // InternalApplicationConfiguration.g:6292:3: rule__IntervallNumber__MinAssignment_0 { pushFollow(FOLLOW_2); rule__IntervallNumber__MinAssignment_0(); state._fsp--; } after(grammarAccess.getIntervallNumberAccess().getMinAssignment_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntervallNumber__Group__0__Impl" // $ANTLR start "rule__IntervallNumber__Group__1" // InternalApplicationConfiguration.g:6300:1: rule__IntervallNumber__Group__1 : rule__IntervallNumber__Group__1__Impl rule__IntervallNumber__Group__2 ; public final void rule__IntervallNumber__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6304:1: ( rule__IntervallNumber__Group__1__Impl rule__IntervallNumber__Group__2 ) // InternalApplicationConfiguration.g:6305:2: rule__IntervallNumber__Group__1__Impl rule__IntervallNumber__Group__2 { pushFollow(FOLLOW_30); rule__IntervallNumber__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__IntervallNumber__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntervallNumber__Group__1" // $ANTLR start "rule__IntervallNumber__Group__1__Impl" // InternalApplicationConfiguration.g:6312:1: rule__IntervallNumber__Group__1__Impl : ( '..' ) ; public final void rule__IntervallNumber__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6316:1: ( ( '..' ) ) // InternalApplicationConfiguration.g:6317:1: ( '..' ) { // InternalApplicationConfiguration.g:6317:1: ( '..' ) // InternalApplicationConfiguration.g:6318:2: '..' { before(grammarAccess.getIntervallNumberAccess().getFullStopFullStopKeyword_1()); match(input,44,FOLLOW_2); after(grammarAccess.getIntervallNumberAccess().getFullStopFullStopKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntervallNumber__Group__1__Impl" // $ANTLR start "rule__IntervallNumber__Group__2" // InternalApplicationConfiguration.g:6327:1: rule__IntervallNumber__Group__2 : rule__IntervallNumber__Group__2__Impl ; public final void rule__IntervallNumber__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6331:1: ( rule__IntervallNumber__Group__2__Impl ) // InternalApplicationConfiguration.g:6332:2: rule__IntervallNumber__Group__2__Impl { pushFollow(FOLLOW_2); rule__IntervallNumber__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntervallNumber__Group__2" // $ANTLR start "rule__IntervallNumber__Group__2__Impl" // InternalApplicationConfiguration.g:6338:1: rule__IntervallNumber__Group__2__Impl : ( ( rule__IntervallNumber__Alternatives_2 ) ) ; public final void rule__IntervallNumber__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6342:1: ( ( ( rule__IntervallNumber__Alternatives_2 ) ) ) // InternalApplicationConfiguration.g:6343:1: ( ( rule__IntervallNumber__Alternatives_2 ) ) { // InternalApplicationConfiguration.g:6343:1: ( ( rule__IntervallNumber__Alternatives_2 ) ) // InternalApplicationConfiguration.g:6344:2: ( rule__IntervallNumber__Alternatives_2 ) { before(grammarAccess.getIntervallNumberAccess().getAlternatives_2()); // InternalApplicationConfiguration.g:6345:2: ( rule__IntervallNumber__Alternatives_2 ) // InternalApplicationConfiguration.g:6345:3: rule__IntervallNumber__Alternatives_2 { pushFollow(FOLLOW_2); rule__IntervallNumber__Alternatives_2(); state._fsp--; } after(grammarAccess.getIntervallNumberAccess().getAlternatives_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntervallNumber__Group__2__Impl" // $ANTLR start "rule__IntEnumberation__Group__0" // InternalApplicationConfiguration.g:6354:1: rule__IntEnumberation__Group__0 : rule__IntEnumberation__Group__0__Impl rule__IntEnumberation__Group__1 ; public final void rule__IntEnumberation__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6358:1: ( rule__IntEnumberation__Group__0__Impl rule__IntEnumberation__Group__1 ) // InternalApplicationConfiguration.g:6359:2: rule__IntEnumberation__Group__0__Impl rule__IntEnumberation__Group__1 { pushFollow(FOLLOW_33); rule__IntEnumberation__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__IntEnumberation__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group__0" // $ANTLR start "rule__IntEnumberation__Group__0__Impl" // InternalApplicationConfiguration.g:6366:1: rule__IntEnumberation__Group__0__Impl : ( () ) ; public final void rule__IntEnumberation__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6370:1: ( ( () ) ) // InternalApplicationConfiguration.g:6371:1: ( () ) { // InternalApplicationConfiguration.g:6371:1: ( () ) // InternalApplicationConfiguration.g:6372:2: () { before(grammarAccess.getIntEnumberationAccess().getIntEnumberationAction_0()); // InternalApplicationConfiguration.g:6373:2: () // InternalApplicationConfiguration.g:6373:3: { } after(grammarAccess.getIntEnumberationAccess().getIntEnumberationAction_0()); } } } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group__0__Impl" // $ANTLR start "rule__IntEnumberation__Group__1" // InternalApplicationConfiguration.g:6381:1: rule__IntEnumberation__Group__1 : rule__IntEnumberation__Group__1__Impl rule__IntEnumberation__Group__2 ; public final void rule__IntEnumberation__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6385:1: ( rule__IntEnumberation__Group__1__Impl rule__IntEnumberation__Group__2 ) // InternalApplicationConfiguration.g:6386:2: rule__IntEnumberation__Group__1__Impl rule__IntEnumberation__Group__2 { pushFollow(FOLLOW_38); rule__IntEnumberation__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__IntEnumberation__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group__1" // $ANTLR start "rule__IntEnumberation__Group__1__Impl" // InternalApplicationConfiguration.g:6393:1: rule__IntEnumberation__Group__1__Impl : ( '{' ) ; public final void rule__IntEnumberation__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6397:1: ( ( '{' ) ) // InternalApplicationConfiguration.g:6398:1: ( '{' ) { // InternalApplicationConfiguration.g:6398:1: ( '{' ) // InternalApplicationConfiguration.g:6399:2: '{' { before(grammarAccess.getIntEnumberationAccess().getLeftCurlyBracketKeyword_1()); match(input,23,FOLLOW_2); after(grammarAccess.getIntEnumberationAccess().getLeftCurlyBracketKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group__1__Impl" // $ANTLR start "rule__IntEnumberation__Group__2" // InternalApplicationConfiguration.g:6408:1: rule__IntEnumberation__Group__2 : rule__IntEnumberation__Group__2__Impl rule__IntEnumberation__Group__3 ; public final void rule__IntEnumberation__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6412:1: ( rule__IntEnumberation__Group__2__Impl rule__IntEnumberation__Group__3 ) // InternalApplicationConfiguration.g:6413:2: rule__IntEnumberation__Group__2__Impl rule__IntEnumberation__Group__3 { pushFollow(FOLLOW_38); rule__IntEnumberation__Group__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__IntEnumberation__Group__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group__2" // $ANTLR start "rule__IntEnumberation__Group__2__Impl" // InternalApplicationConfiguration.g:6420:1: rule__IntEnumberation__Group__2__Impl : ( ( rule__IntEnumberation__Group_2__0 )? ) ; public final void rule__IntEnumberation__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6424:1: ( ( ( rule__IntEnumberation__Group_2__0 )? ) ) // InternalApplicationConfiguration.g:6425:1: ( ( rule__IntEnumberation__Group_2__0 )? ) { // InternalApplicationConfiguration.g:6425:1: ( ( rule__IntEnumberation__Group_2__0 )? ) // InternalApplicationConfiguration.g:6426:2: ( rule__IntEnumberation__Group_2__0 )? { before(grammarAccess.getIntEnumberationAccess().getGroup_2()); // InternalApplicationConfiguration.g:6427:2: ( rule__IntEnumberation__Group_2__0 )? int alt48=2; int LA48_0 = input.LA(1); if ( (LA48_0==RULE_INT) ) { alt48=1; } switch (alt48) { case 1 : // InternalApplicationConfiguration.g:6427:3: rule__IntEnumberation__Group_2__0 { pushFollow(FOLLOW_2); rule__IntEnumberation__Group_2__0(); state._fsp--; } break; } after(grammarAccess.getIntEnumberationAccess().getGroup_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group__2__Impl" // $ANTLR start "rule__IntEnumberation__Group__3" // InternalApplicationConfiguration.g:6435:1: rule__IntEnumberation__Group__3 : rule__IntEnumberation__Group__3__Impl ; public final void rule__IntEnumberation__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6439:1: ( rule__IntEnumberation__Group__3__Impl ) // InternalApplicationConfiguration.g:6440:2: rule__IntEnumberation__Group__3__Impl { pushFollow(FOLLOW_2); rule__IntEnumberation__Group__3__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group__3" // $ANTLR start "rule__IntEnumberation__Group__3__Impl" // InternalApplicationConfiguration.g:6446:1: rule__IntEnumberation__Group__3__Impl : ( '}' ) ; public final void rule__IntEnumberation__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6450:1: ( ( '}' ) ) // InternalApplicationConfiguration.g:6451:1: ( '}' ) { // InternalApplicationConfiguration.g:6451:1: ( '}' ) // InternalApplicationConfiguration.g:6452:2: '}' { before(grammarAccess.getIntEnumberationAccess().getRightCurlyBracketKeyword_3()); match(input,24,FOLLOW_2); after(grammarAccess.getIntEnumberationAccess().getRightCurlyBracketKeyword_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group__3__Impl" // $ANTLR start "rule__IntEnumberation__Group_2__0" // InternalApplicationConfiguration.g:6462:1: rule__IntEnumberation__Group_2__0 : rule__IntEnumberation__Group_2__0__Impl rule__IntEnumberation__Group_2__1 ; public final void rule__IntEnumberation__Group_2__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6466:1: ( rule__IntEnumberation__Group_2__0__Impl rule__IntEnumberation__Group_2__1 ) // InternalApplicationConfiguration.g:6467:2: rule__IntEnumberation__Group_2__0__Impl rule__IntEnumberation__Group_2__1 { pushFollow(FOLLOW_22); rule__IntEnumberation__Group_2__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__IntEnumberation__Group_2__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group_2__0" // $ANTLR start "rule__IntEnumberation__Group_2__0__Impl" // InternalApplicationConfiguration.g:6474:1: rule__IntEnumberation__Group_2__0__Impl : ( ( rule__IntEnumberation__EntryAssignment_2_0 ) ) ; public final void rule__IntEnumberation__Group_2__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6478:1: ( ( ( rule__IntEnumberation__EntryAssignment_2_0 ) ) ) // InternalApplicationConfiguration.g:6479:1: ( ( rule__IntEnumberation__EntryAssignment_2_0 ) ) { // InternalApplicationConfiguration.g:6479:1: ( ( rule__IntEnumberation__EntryAssignment_2_0 ) ) // InternalApplicationConfiguration.g:6480:2: ( rule__IntEnumberation__EntryAssignment_2_0 ) { before(grammarAccess.getIntEnumberationAccess().getEntryAssignment_2_0()); // InternalApplicationConfiguration.g:6481:2: ( rule__IntEnumberation__EntryAssignment_2_0 ) // InternalApplicationConfiguration.g:6481:3: rule__IntEnumberation__EntryAssignment_2_0 { pushFollow(FOLLOW_2); rule__IntEnumberation__EntryAssignment_2_0(); state._fsp--; } after(grammarAccess.getIntEnumberationAccess().getEntryAssignment_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group_2__0__Impl" // $ANTLR start "rule__IntEnumberation__Group_2__1" // InternalApplicationConfiguration.g:6489:1: rule__IntEnumberation__Group_2__1 : rule__IntEnumberation__Group_2__1__Impl ; public final void rule__IntEnumberation__Group_2__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6493:1: ( rule__IntEnumberation__Group_2__1__Impl ) // InternalApplicationConfiguration.g:6494:2: rule__IntEnumberation__Group_2__1__Impl { pushFollow(FOLLOW_2); rule__IntEnumberation__Group_2__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group_2__1" // $ANTLR start "rule__IntEnumberation__Group_2__1__Impl" // InternalApplicationConfiguration.g:6500:1: rule__IntEnumberation__Group_2__1__Impl : ( ( rule__IntEnumberation__Group_2_1__0 )* ) ; public final void rule__IntEnumberation__Group_2__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6504:1: ( ( ( rule__IntEnumberation__Group_2_1__0 )* ) ) // InternalApplicationConfiguration.g:6505:1: ( ( rule__IntEnumberation__Group_2_1__0 )* ) { // InternalApplicationConfiguration.g:6505:1: ( ( rule__IntEnumberation__Group_2_1__0 )* ) // InternalApplicationConfiguration.g:6506:2: ( rule__IntEnumberation__Group_2_1__0 )* { before(grammarAccess.getIntEnumberationAccess().getGroup_2_1()); // InternalApplicationConfiguration.g:6507:2: ( rule__IntEnumberation__Group_2_1__0 )* loop49: do { int alt49=2; int LA49_0 = input.LA(1); if ( (LA49_0==25) ) { alt49=1; } switch (alt49) { case 1 : // InternalApplicationConfiguration.g:6507:3: rule__IntEnumberation__Group_2_1__0 { pushFollow(FOLLOW_15); rule__IntEnumberation__Group_2_1__0(); state._fsp--; } break; default : break loop49; } } while (true); after(grammarAccess.getIntEnumberationAccess().getGroup_2_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group_2__1__Impl" // $ANTLR start "rule__IntEnumberation__Group_2_1__0" // InternalApplicationConfiguration.g:6516:1: rule__IntEnumberation__Group_2_1__0 : rule__IntEnumberation__Group_2_1__0__Impl rule__IntEnumberation__Group_2_1__1 ; public final void rule__IntEnumberation__Group_2_1__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6520:1: ( rule__IntEnumberation__Group_2_1__0__Impl rule__IntEnumberation__Group_2_1__1 ) // InternalApplicationConfiguration.g:6521:2: rule__IntEnumberation__Group_2_1__0__Impl rule__IntEnumberation__Group_2_1__1 { pushFollow(FOLLOW_25); rule__IntEnumberation__Group_2_1__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__IntEnumberation__Group_2_1__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group_2_1__0" // $ANTLR start "rule__IntEnumberation__Group_2_1__0__Impl" // InternalApplicationConfiguration.g:6528:1: rule__IntEnumberation__Group_2_1__0__Impl : ( ',' ) ; public final void rule__IntEnumberation__Group_2_1__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6532:1: ( ( ',' ) ) // InternalApplicationConfiguration.g:6533:1: ( ',' ) { // InternalApplicationConfiguration.g:6533:1: ( ',' ) // InternalApplicationConfiguration.g:6534:2: ',' { before(grammarAccess.getIntEnumberationAccess().getCommaKeyword_2_1_0()); match(input,25,FOLLOW_2); after(grammarAccess.getIntEnumberationAccess().getCommaKeyword_2_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group_2_1__0__Impl" // $ANTLR start "rule__IntEnumberation__Group_2_1__1" // InternalApplicationConfiguration.g:6543:1: rule__IntEnumberation__Group_2_1__1 : rule__IntEnumberation__Group_2_1__1__Impl ; public final void rule__IntEnumberation__Group_2_1__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6547:1: ( rule__IntEnumberation__Group_2_1__1__Impl ) // InternalApplicationConfiguration.g:6548:2: rule__IntEnumberation__Group_2_1__1__Impl { pushFollow(FOLLOW_2); rule__IntEnumberation__Group_2_1__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group_2_1__1" // $ANTLR start "rule__IntEnumberation__Group_2_1__1__Impl" // InternalApplicationConfiguration.g:6554:1: rule__IntEnumberation__Group_2_1__1__Impl : ( ( rule__IntEnumberation__EntryAssignment_2_1_1 ) ) ; public final void rule__IntEnumberation__Group_2_1__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6558:1: ( ( ( rule__IntEnumberation__EntryAssignment_2_1_1 ) ) ) // InternalApplicationConfiguration.g:6559:1: ( ( rule__IntEnumberation__EntryAssignment_2_1_1 ) ) { // InternalApplicationConfiguration.g:6559:1: ( ( rule__IntEnumberation__EntryAssignment_2_1_1 ) ) // InternalApplicationConfiguration.g:6560:2: ( rule__IntEnumberation__EntryAssignment_2_1_1 ) { before(grammarAccess.getIntEnumberationAccess().getEntryAssignment_2_1_1()); // InternalApplicationConfiguration.g:6561:2: ( rule__IntEnumberation__EntryAssignment_2_1_1 ) // InternalApplicationConfiguration.g:6561:3: rule__IntEnumberation__EntryAssignment_2_1_1 { pushFollow(FOLLOW_2); rule__IntEnumberation__EntryAssignment_2_1_1(); state._fsp--; } after(grammarAccess.getIntEnumberationAccess().getEntryAssignment_2_1_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__Group_2_1__1__Impl" // $ANTLR start "rule__RealEnumeration__Group__0" // InternalApplicationConfiguration.g:6570:1: rule__RealEnumeration__Group__0 : rule__RealEnumeration__Group__0__Impl rule__RealEnumeration__Group__1 ; public final void rule__RealEnumeration__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6574:1: ( rule__RealEnumeration__Group__0__Impl rule__RealEnumeration__Group__1 ) // InternalApplicationConfiguration.g:6575:2: rule__RealEnumeration__Group__0__Impl rule__RealEnumeration__Group__1 { pushFollow(FOLLOW_33); rule__RealEnumeration__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__RealEnumeration__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group__0" // $ANTLR start "rule__RealEnumeration__Group__0__Impl" // InternalApplicationConfiguration.g:6582:1: rule__RealEnumeration__Group__0__Impl : ( () ) ; public final void rule__RealEnumeration__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6586:1: ( ( () ) ) // InternalApplicationConfiguration.g:6587:1: ( () ) { // InternalApplicationConfiguration.g:6587:1: ( () ) // InternalApplicationConfiguration.g:6588:2: () { before(grammarAccess.getRealEnumerationAccess().getRealEnumerationAction_0()); // InternalApplicationConfiguration.g:6589:2: () // InternalApplicationConfiguration.g:6589:3: { } after(grammarAccess.getRealEnumerationAccess().getRealEnumerationAction_0()); } } } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group__0__Impl" // $ANTLR start "rule__RealEnumeration__Group__1" // InternalApplicationConfiguration.g:6597:1: rule__RealEnumeration__Group__1 : rule__RealEnumeration__Group__1__Impl rule__RealEnumeration__Group__2 ; public final void rule__RealEnumeration__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6601:1: ( rule__RealEnumeration__Group__1__Impl rule__RealEnumeration__Group__2 ) // InternalApplicationConfiguration.g:6602:2: rule__RealEnumeration__Group__1__Impl rule__RealEnumeration__Group__2 { pushFollow(FOLLOW_38); rule__RealEnumeration__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__RealEnumeration__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group__1" // $ANTLR start "rule__RealEnumeration__Group__1__Impl" // InternalApplicationConfiguration.g:6609:1: rule__RealEnumeration__Group__1__Impl : ( '{' ) ; public final void rule__RealEnumeration__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6613:1: ( ( '{' ) ) // InternalApplicationConfiguration.g:6614:1: ( '{' ) { // InternalApplicationConfiguration.g:6614:1: ( '{' ) // InternalApplicationConfiguration.g:6615:2: '{' { before(grammarAccess.getRealEnumerationAccess().getLeftCurlyBracketKeyword_1()); match(input,23,FOLLOW_2); after(grammarAccess.getRealEnumerationAccess().getLeftCurlyBracketKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group__1__Impl" // $ANTLR start "rule__RealEnumeration__Group__2" // InternalApplicationConfiguration.g:6624:1: rule__RealEnumeration__Group__2 : rule__RealEnumeration__Group__2__Impl rule__RealEnumeration__Group__3 ; public final void rule__RealEnumeration__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6628:1: ( rule__RealEnumeration__Group__2__Impl rule__RealEnumeration__Group__3 ) // InternalApplicationConfiguration.g:6629:2: rule__RealEnumeration__Group__2__Impl rule__RealEnumeration__Group__3 { pushFollow(FOLLOW_38); rule__RealEnumeration__Group__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__RealEnumeration__Group__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group__2" // $ANTLR start "rule__RealEnumeration__Group__2__Impl" // InternalApplicationConfiguration.g:6636:1: rule__RealEnumeration__Group__2__Impl : ( ( rule__RealEnumeration__Group_2__0 )? ) ; public final void rule__RealEnumeration__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6640:1: ( ( ( rule__RealEnumeration__Group_2__0 )? ) ) // InternalApplicationConfiguration.g:6641:1: ( ( rule__RealEnumeration__Group_2__0 )? ) { // InternalApplicationConfiguration.g:6641:1: ( ( rule__RealEnumeration__Group_2__0 )? ) // InternalApplicationConfiguration.g:6642:2: ( rule__RealEnumeration__Group_2__0 )? { before(grammarAccess.getRealEnumerationAccess().getGroup_2()); // InternalApplicationConfiguration.g:6643:2: ( rule__RealEnumeration__Group_2__0 )? int alt50=2; int LA50_0 = input.LA(1); if ( (LA50_0==RULE_INT) ) { alt50=1; } switch (alt50) { case 1 : // InternalApplicationConfiguration.g:6643:3: rule__RealEnumeration__Group_2__0 { pushFollow(FOLLOW_2); rule__RealEnumeration__Group_2__0(); state._fsp--; } break; } after(grammarAccess.getRealEnumerationAccess().getGroup_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group__2__Impl" // $ANTLR start "rule__RealEnumeration__Group__3" // InternalApplicationConfiguration.g:6651:1: rule__RealEnumeration__Group__3 : rule__RealEnumeration__Group__3__Impl ; public final void rule__RealEnumeration__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6655:1: ( rule__RealEnumeration__Group__3__Impl ) // InternalApplicationConfiguration.g:6656:2: rule__RealEnumeration__Group__3__Impl { pushFollow(FOLLOW_2); rule__RealEnumeration__Group__3__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group__3" // $ANTLR start "rule__RealEnumeration__Group__3__Impl" // InternalApplicationConfiguration.g:6662:1: rule__RealEnumeration__Group__3__Impl : ( '}' ) ; public final void rule__RealEnumeration__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6666:1: ( ( '}' ) ) // InternalApplicationConfiguration.g:6667:1: ( '}' ) { // InternalApplicationConfiguration.g:6667:1: ( '}' ) // InternalApplicationConfiguration.g:6668:2: '}' { before(grammarAccess.getRealEnumerationAccess().getRightCurlyBracketKeyword_3()); match(input,24,FOLLOW_2); after(grammarAccess.getRealEnumerationAccess().getRightCurlyBracketKeyword_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group__3__Impl" // $ANTLR start "rule__RealEnumeration__Group_2__0" // InternalApplicationConfiguration.g:6678:1: rule__RealEnumeration__Group_2__0 : rule__RealEnumeration__Group_2__0__Impl rule__RealEnumeration__Group_2__1 ; public final void rule__RealEnumeration__Group_2__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6682:1: ( rule__RealEnumeration__Group_2__0__Impl rule__RealEnumeration__Group_2__1 ) // InternalApplicationConfiguration.g:6683:2: rule__RealEnumeration__Group_2__0__Impl rule__RealEnumeration__Group_2__1 { pushFollow(FOLLOW_22); rule__RealEnumeration__Group_2__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__RealEnumeration__Group_2__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group_2__0" // $ANTLR start "rule__RealEnumeration__Group_2__0__Impl" // InternalApplicationConfiguration.g:6690:1: rule__RealEnumeration__Group_2__0__Impl : ( ( rule__RealEnumeration__EntryAssignment_2_0 ) ) ; public final void rule__RealEnumeration__Group_2__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6694:1: ( ( ( rule__RealEnumeration__EntryAssignment_2_0 ) ) ) // InternalApplicationConfiguration.g:6695:1: ( ( rule__RealEnumeration__EntryAssignment_2_0 ) ) { // InternalApplicationConfiguration.g:6695:1: ( ( rule__RealEnumeration__EntryAssignment_2_0 ) ) // InternalApplicationConfiguration.g:6696:2: ( rule__RealEnumeration__EntryAssignment_2_0 ) { before(grammarAccess.getRealEnumerationAccess().getEntryAssignment_2_0()); // InternalApplicationConfiguration.g:6697:2: ( rule__RealEnumeration__EntryAssignment_2_0 ) // InternalApplicationConfiguration.g:6697:3: rule__RealEnumeration__EntryAssignment_2_0 { pushFollow(FOLLOW_2); rule__RealEnumeration__EntryAssignment_2_0(); state._fsp--; } after(grammarAccess.getRealEnumerationAccess().getEntryAssignment_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group_2__0__Impl" // $ANTLR start "rule__RealEnumeration__Group_2__1" // InternalApplicationConfiguration.g:6705:1: rule__RealEnumeration__Group_2__1 : rule__RealEnumeration__Group_2__1__Impl ; public final void rule__RealEnumeration__Group_2__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6709:1: ( rule__RealEnumeration__Group_2__1__Impl ) // InternalApplicationConfiguration.g:6710:2: rule__RealEnumeration__Group_2__1__Impl { pushFollow(FOLLOW_2); rule__RealEnumeration__Group_2__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group_2__1" // $ANTLR start "rule__RealEnumeration__Group_2__1__Impl" // InternalApplicationConfiguration.g:6716:1: rule__RealEnumeration__Group_2__1__Impl : ( ( rule__RealEnumeration__Group_2_1__0 )* ) ; public final void rule__RealEnumeration__Group_2__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6720:1: ( ( ( rule__RealEnumeration__Group_2_1__0 )* ) ) // InternalApplicationConfiguration.g:6721:1: ( ( rule__RealEnumeration__Group_2_1__0 )* ) { // InternalApplicationConfiguration.g:6721:1: ( ( rule__RealEnumeration__Group_2_1__0 )* ) // InternalApplicationConfiguration.g:6722:2: ( rule__RealEnumeration__Group_2_1__0 )* { before(grammarAccess.getRealEnumerationAccess().getGroup_2_1()); // InternalApplicationConfiguration.g:6723:2: ( rule__RealEnumeration__Group_2_1__0 )* loop51: do { int alt51=2; int LA51_0 = input.LA(1); if ( (LA51_0==25) ) { alt51=1; } switch (alt51) { case 1 : // InternalApplicationConfiguration.g:6723:3: rule__RealEnumeration__Group_2_1__0 { pushFollow(FOLLOW_15); rule__RealEnumeration__Group_2_1__0(); state._fsp--; } break; default : break loop51; } } while (true); after(grammarAccess.getRealEnumerationAccess().getGroup_2_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group_2__1__Impl" // $ANTLR start "rule__RealEnumeration__Group_2_1__0" // InternalApplicationConfiguration.g:6732:1: rule__RealEnumeration__Group_2_1__0 : rule__RealEnumeration__Group_2_1__0__Impl rule__RealEnumeration__Group_2_1__1 ; public final void rule__RealEnumeration__Group_2_1__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6736:1: ( rule__RealEnumeration__Group_2_1__0__Impl rule__RealEnumeration__Group_2_1__1 ) // InternalApplicationConfiguration.g:6737:2: rule__RealEnumeration__Group_2_1__0__Impl rule__RealEnumeration__Group_2_1__1 { pushFollow(FOLLOW_25); rule__RealEnumeration__Group_2_1__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__RealEnumeration__Group_2_1__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group_2_1__0" // $ANTLR start "rule__RealEnumeration__Group_2_1__0__Impl" // InternalApplicationConfiguration.g:6744:1: rule__RealEnumeration__Group_2_1__0__Impl : ( ',' ) ; public final void rule__RealEnumeration__Group_2_1__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6748:1: ( ( ',' ) ) // InternalApplicationConfiguration.g:6749:1: ( ',' ) { // InternalApplicationConfiguration.g:6749:1: ( ',' ) // InternalApplicationConfiguration.g:6750:2: ',' { before(grammarAccess.getRealEnumerationAccess().getCommaKeyword_2_1_0()); match(input,25,FOLLOW_2); after(grammarAccess.getRealEnumerationAccess().getCommaKeyword_2_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group_2_1__0__Impl" // $ANTLR start "rule__RealEnumeration__Group_2_1__1" // InternalApplicationConfiguration.g:6759:1: rule__RealEnumeration__Group_2_1__1 : rule__RealEnumeration__Group_2_1__1__Impl ; public final void rule__RealEnumeration__Group_2_1__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6763:1: ( rule__RealEnumeration__Group_2_1__1__Impl ) // InternalApplicationConfiguration.g:6764:2: rule__RealEnumeration__Group_2_1__1__Impl { pushFollow(FOLLOW_2); rule__RealEnumeration__Group_2_1__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group_2_1__1" // $ANTLR start "rule__RealEnumeration__Group_2_1__1__Impl" // InternalApplicationConfiguration.g:6770:1: rule__RealEnumeration__Group_2_1__1__Impl : ( ( rule__RealEnumeration__EntryAssignment_2_1_1 ) ) ; public final void rule__RealEnumeration__Group_2_1__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6774:1: ( ( ( rule__RealEnumeration__EntryAssignment_2_1_1 ) ) ) // InternalApplicationConfiguration.g:6775:1: ( ( rule__RealEnumeration__EntryAssignment_2_1_1 ) ) { // InternalApplicationConfiguration.g:6775:1: ( ( rule__RealEnumeration__EntryAssignment_2_1_1 ) ) // InternalApplicationConfiguration.g:6776:2: ( rule__RealEnumeration__EntryAssignment_2_1_1 ) { before(grammarAccess.getRealEnumerationAccess().getEntryAssignment_2_1_1()); // InternalApplicationConfiguration.g:6777:2: ( rule__RealEnumeration__EntryAssignment_2_1_1 ) // InternalApplicationConfiguration.g:6777:3: rule__RealEnumeration__EntryAssignment_2_1_1 { pushFollow(FOLLOW_2); rule__RealEnumeration__EntryAssignment_2_1_1(); state._fsp--; } after(grammarAccess.getRealEnumerationAccess().getEntryAssignment_2_1_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__Group_2_1__1__Impl" // $ANTLR start "rule__StringEnumeration__Group__0" // InternalApplicationConfiguration.g:6786:1: rule__StringEnumeration__Group__0 : rule__StringEnumeration__Group__0__Impl rule__StringEnumeration__Group__1 ; public final void rule__StringEnumeration__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6790:1: ( rule__StringEnumeration__Group__0__Impl rule__StringEnumeration__Group__1 ) // InternalApplicationConfiguration.g:6791:2: rule__StringEnumeration__Group__0__Impl rule__StringEnumeration__Group__1 { pushFollow(FOLLOW_33); rule__StringEnumeration__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__StringEnumeration__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group__0" // $ANTLR start "rule__StringEnumeration__Group__0__Impl" // InternalApplicationConfiguration.g:6798:1: rule__StringEnumeration__Group__0__Impl : ( () ) ; public final void rule__StringEnumeration__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6802:1: ( ( () ) ) // InternalApplicationConfiguration.g:6803:1: ( () ) { // InternalApplicationConfiguration.g:6803:1: ( () ) // InternalApplicationConfiguration.g:6804:2: () { before(grammarAccess.getStringEnumerationAccess().getStringEnumerationAction_0()); // InternalApplicationConfiguration.g:6805:2: () // InternalApplicationConfiguration.g:6805:3: { } after(grammarAccess.getStringEnumerationAccess().getStringEnumerationAction_0()); } } } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group__0__Impl" // $ANTLR start "rule__StringEnumeration__Group__1" // InternalApplicationConfiguration.g:6813:1: rule__StringEnumeration__Group__1 : rule__StringEnumeration__Group__1__Impl rule__StringEnumeration__Group__2 ; public final void rule__StringEnumeration__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6817:1: ( rule__StringEnumeration__Group__1__Impl rule__StringEnumeration__Group__2 ) // InternalApplicationConfiguration.g:6818:2: rule__StringEnumeration__Group__1__Impl rule__StringEnumeration__Group__2 { pushFollow(FOLLOW_39); rule__StringEnumeration__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__StringEnumeration__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group__1" // $ANTLR start "rule__StringEnumeration__Group__1__Impl" // InternalApplicationConfiguration.g:6825:1: rule__StringEnumeration__Group__1__Impl : ( '{' ) ; public final void rule__StringEnumeration__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6829:1: ( ( '{' ) ) // InternalApplicationConfiguration.g:6830:1: ( '{' ) { // InternalApplicationConfiguration.g:6830:1: ( '{' ) // InternalApplicationConfiguration.g:6831:2: '{' { before(grammarAccess.getStringEnumerationAccess().getLeftCurlyBracketKeyword_1()); match(input,23,FOLLOW_2); after(grammarAccess.getStringEnumerationAccess().getLeftCurlyBracketKeyword_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group__1__Impl" // $ANTLR start "rule__StringEnumeration__Group__2" // InternalApplicationConfiguration.g:6840:1: rule__StringEnumeration__Group__2 : rule__StringEnumeration__Group__2__Impl rule__StringEnumeration__Group__3 ; public final void rule__StringEnumeration__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6844:1: ( rule__StringEnumeration__Group__2__Impl rule__StringEnumeration__Group__3 ) // InternalApplicationConfiguration.g:6845:2: rule__StringEnumeration__Group__2__Impl rule__StringEnumeration__Group__3 { pushFollow(FOLLOW_39); rule__StringEnumeration__Group__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__StringEnumeration__Group__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group__2" // $ANTLR start "rule__StringEnumeration__Group__2__Impl" // InternalApplicationConfiguration.g:6852:1: rule__StringEnumeration__Group__2__Impl : ( ( rule__StringEnumeration__Group_2__0 )? ) ; public final void rule__StringEnumeration__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6856:1: ( ( ( rule__StringEnumeration__Group_2__0 )? ) ) // InternalApplicationConfiguration.g:6857:1: ( ( rule__StringEnumeration__Group_2__0 )? ) { // InternalApplicationConfiguration.g:6857:1: ( ( rule__StringEnumeration__Group_2__0 )? ) // InternalApplicationConfiguration.g:6858:2: ( rule__StringEnumeration__Group_2__0 )? { before(grammarAccess.getStringEnumerationAccess().getGroup_2()); // InternalApplicationConfiguration.g:6859:2: ( rule__StringEnumeration__Group_2__0 )? int alt52=2; int LA52_0 = input.LA(1); if ( (LA52_0==RULE_STRING) ) { alt52=1; } switch (alt52) { case 1 : // InternalApplicationConfiguration.g:6859:3: rule__StringEnumeration__Group_2__0 { pushFollow(FOLLOW_2); rule__StringEnumeration__Group_2__0(); state._fsp--; } break; } after(grammarAccess.getStringEnumerationAccess().getGroup_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group__2__Impl" // $ANTLR start "rule__StringEnumeration__Group__3" // InternalApplicationConfiguration.g:6867:1: rule__StringEnumeration__Group__3 : rule__StringEnumeration__Group__3__Impl ; public final void rule__StringEnumeration__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6871:1: ( rule__StringEnumeration__Group__3__Impl ) // InternalApplicationConfiguration.g:6872:2: rule__StringEnumeration__Group__3__Impl { pushFollow(FOLLOW_2); rule__StringEnumeration__Group__3__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group__3" // $ANTLR start "rule__StringEnumeration__Group__3__Impl" // InternalApplicationConfiguration.g:6878:1: rule__StringEnumeration__Group__3__Impl : ( '}' ) ; public final void rule__StringEnumeration__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6882:1: ( ( '}' ) ) // InternalApplicationConfiguration.g:6883:1: ( '}' ) { // InternalApplicationConfiguration.g:6883:1: ( '}' ) // InternalApplicationConfiguration.g:6884:2: '}' { before(grammarAccess.getStringEnumerationAccess().getRightCurlyBracketKeyword_3()); match(input,24,FOLLOW_2); after(grammarAccess.getStringEnumerationAccess().getRightCurlyBracketKeyword_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group__3__Impl" // $ANTLR start "rule__StringEnumeration__Group_2__0" // InternalApplicationConfiguration.g:6894:1: rule__StringEnumeration__Group_2__0 : rule__StringEnumeration__Group_2__0__Impl rule__StringEnumeration__Group_2__1 ; public final void rule__StringEnumeration__Group_2__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6898:1: ( rule__StringEnumeration__Group_2__0__Impl rule__StringEnumeration__Group_2__1 ) // InternalApplicationConfiguration.g:6899:2: rule__StringEnumeration__Group_2__0__Impl rule__StringEnumeration__Group_2__1 { pushFollow(FOLLOW_22); rule__StringEnumeration__Group_2__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__StringEnumeration__Group_2__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group_2__0" // $ANTLR start "rule__StringEnumeration__Group_2__0__Impl" // InternalApplicationConfiguration.g:6906:1: rule__StringEnumeration__Group_2__0__Impl : ( ( rule__StringEnumeration__EntryAssignment_2_0 ) ) ; public final void rule__StringEnumeration__Group_2__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6910:1: ( ( ( rule__StringEnumeration__EntryAssignment_2_0 ) ) ) // InternalApplicationConfiguration.g:6911:1: ( ( rule__StringEnumeration__EntryAssignment_2_0 ) ) { // InternalApplicationConfiguration.g:6911:1: ( ( rule__StringEnumeration__EntryAssignment_2_0 ) ) // InternalApplicationConfiguration.g:6912:2: ( rule__StringEnumeration__EntryAssignment_2_0 ) { before(grammarAccess.getStringEnumerationAccess().getEntryAssignment_2_0()); // InternalApplicationConfiguration.g:6913:2: ( rule__StringEnumeration__EntryAssignment_2_0 ) // InternalApplicationConfiguration.g:6913:3: rule__StringEnumeration__EntryAssignment_2_0 { pushFollow(FOLLOW_2); rule__StringEnumeration__EntryAssignment_2_0(); state._fsp--; } after(grammarAccess.getStringEnumerationAccess().getEntryAssignment_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group_2__0__Impl" // $ANTLR start "rule__StringEnumeration__Group_2__1" // InternalApplicationConfiguration.g:6921:1: rule__StringEnumeration__Group_2__1 : rule__StringEnumeration__Group_2__1__Impl ; public final void rule__StringEnumeration__Group_2__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6925:1: ( rule__StringEnumeration__Group_2__1__Impl ) // InternalApplicationConfiguration.g:6926:2: rule__StringEnumeration__Group_2__1__Impl { pushFollow(FOLLOW_2); rule__StringEnumeration__Group_2__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group_2__1" // $ANTLR start "rule__StringEnumeration__Group_2__1__Impl" // InternalApplicationConfiguration.g:6932:1: rule__StringEnumeration__Group_2__1__Impl : ( ( rule__StringEnumeration__Group_2_1__0 )* ) ; public final void rule__StringEnumeration__Group_2__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6936:1: ( ( ( rule__StringEnumeration__Group_2_1__0 )* ) ) // InternalApplicationConfiguration.g:6937:1: ( ( rule__StringEnumeration__Group_2_1__0 )* ) { // InternalApplicationConfiguration.g:6937:1: ( ( rule__StringEnumeration__Group_2_1__0 )* ) // InternalApplicationConfiguration.g:6938:2: ( rule__StringEnumeration__Group_2_1__0 )* { before(grammarAccess.getStringEnumerationAccess().getGroup_2_1()); // InternalApplicationConfiguration.g:6939:2: ( rule__StringEnumeration__Group_2_1__0 )* loop53: do { int alt53=2; int LA53_0 = input.LA(1); if ( (LA53_0==25) ) { alt53=1; } switch (alt53) { case 1 : // InternalApplicationConfiguration.g:6939:3: rule__StringEnumeration__Group_2_1__0 { pushFollow(FOLLOW_15); rule__StringEnumeration__Group_2_1__0(); state._fsp--; } break; default : break loop53; } } while (true); after(grammarAccess.getStringEnumerationAccess().getGroup_2_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group_2__1__Impl" // $ANTLR start "rule__StringEnumeration__Group_2_1__0" // InternalApplicationConfiguration.g:6948:1: rule__StringEnumeration__Group_2_1__0 : rule__StringEnumeration__Group_2_1__0__Impl rule__StringEnumeration__Group_2_1__1 ; public final void rule__StringEnumeration__Group_2_1__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6952:1: ( rule__StringEnumeration__Group_2_1__0__Impl rule__StringEnumeration__Group_2_1__1 ) // InternalApplicationConfiguration.g:6953:2: rule__StringEnumeration__Group_2_1__0__Impl rule__StringEnumeration__Group_2_1__1 { pushFollow(FOLLOW_10); rule__StringEnumeration__Group_2_1__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__StringEnumeration__Group_2_1__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group_2_1__0" // $ANTLR start "rule__StringEnumeration__Group_2_1__0__Impl" // InternalApplicationConfiguration.g:6960:1: rule__StringEnumeration__Group_2_1__0__Impl : ( ',' ) ; public final void rule__StringEnumeration__Group_2_1__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6964:1: ( ( ',' ) ) // InternalApplicationConfiguration.g:6965:1: ( ',' ) { // InternalApplicationConfiguration.g:6965:1: ( ',' ) // InternalApplicationConfiguration.g:6966:2: ',' { before(grammarAccess.getStringEnumerationAccess().getCommaKeyword_2_1_0()); match(input,25,FOLLOW_2); after(grammarAccess.getStringEnumerationAccess().getCommaKeyword_2_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group_2_1__0__Impl" // $ANTLR start "rule__StringEnumeration__Group_2_1__1" // InternalApplicationConfiguration.g:6975:1: rule__StringEnumeration__Group_2_1__1 : rule__StringEnumeration__Group_2_1__1__Impl ; public final void rule__StringEnumeration__Group_2_1__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6979:1: ( rule__StringEnumeration__Group_2_1__1__Impl ) // InternalApplicationConfiguration.g:6980:2: rule__StringEnumeration__Group_2_1__1__Impl { pushFollow(FOLLOW_2); rule__StringEnumeration__Group_2_1__1__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group_2_1__1" // $ANTLR start "rule__StringEnumeration__Group_2_1__1__Impl" // InternalApplicationConfiguration.g:6986:1: rule__StringEnumeration__Group_2_1__1__Impl : ( ( rule__StringEnumeration__EntryAssignment_2_1_1 ) ) ; public final void rule__StringEnumeration__Group_2_1__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:6990:1: ( ( ( rule__StringEnumeration__EntryAssignment_2_1_1 ) ) ) // InternalApplicationConfiguration.g:6991:1: ( ( rule__StringEnumeration__EntryAssignment_2_1_1 ) ) { // InternalApplicationConfiguration.g:6991:1: ( ( rule__StringEnumeration__EntryAssignment_2_1_1 ) ) // InternalApplicationConfiguration.g:6992:2: ( rule__StringEnumeration__EntryAssignment_2_1_1 ) { before(grammarAccess.getStringEnumerationAccess().getEntryAssignment_2_1_1()); // InternalApplicationConfiguration.g:6993:2: ( rule__StringEnumeration__EntryAssignment_2_1_1 ) // InternalApplicationConfiguration.g:6993:3: rule__StringEnumeration__EntryAssignment_2_1_1 { pushFollow(FOLLOW_2); rule__StringEnumeration__EntryAssignment_2_1_1(); state._fsp--; } after(grammarAccess.getStringEnumerationAccess().getEntryAssignment_2_1_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__Group_2_1__1__Impl" // $ANTLR start "rule__ScopeDeclaration__Group__0" // InternalApplicationConfiguration.g:7002:1: rule__ScopeDeclaration__Group__0 : rule__ScopeDeclaration__Group__0__Impl rule__ScopeDeclaration__Group__1 ; public final void rule__ScopeDeclaration__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7006:1: ( rule__ScopeDeclaration__Group__0__Impl rule__ScopeDeclaration__Group__1 ) // InternalApplicationConfiguration.g:7007:2: rule__ScopeDeclaration__Group__0__Impl rule__ScopeDeclaration__Group__1 { pushFollow(FOLLOW_8); rule__ScopeDeclaration__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ScopeDeclaration__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeDeclaration__Group__0" // $ANTLR start "rule__ScopeDeclaration__Group__0__Impl" // InternalApplicationConfiguration.g:7014:1: rule__ScopeDeclaration__Group__0__Impl : ( 'scope' ) ; public final void rule__ScopeDeclaration__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7018:1: ( ( 'scope' ) ) // InternalApplicationConfiguration.g:7019:1: ( 'scope' ) { // InternalApplicationConfiguration.g:7019:1: ( 'scope' ) // InternalApplicationConfiguration.g:7020:2: 'scope' { before(grammarAccess.getScopeDeclarationAccess().getScopeKeyword_0()); match(input,45,FOLLOW_2); after(grammarAccess.getScopeDeclarationAccess().getScopeKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeDeclaration__Group__0__Impl" // $ANTLR start "rule__ScopeDeclaration__Group__1" // InternalApplicationConfiguration.g:7029:1: rule__ScopeDeclaration__Group__1 : rule__ScopeDeclaration__Group__1__Impl rule__ScopeDeclaration__Group__2 ; public final void rule__ScopeDeclaration__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7033:1: ( rule__ScopeDeclaration__Group__1__Impl rule__ScopeDeclaration__Group__2 ) // InternalApplicationConfiguration.g:7034:2: rule__ScopeDeclaration__Group__1__Impl rule__ScopeDeclaration__Group__2 { pushFollow(FOLLOW_17); rule__ScopeDeclaration__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__ScopeDeclaration__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeDeclaration__Group__1" // $ANTLR start "rule__ScopeDeclaration__Group__1__Impl" // InternalApplicationConfiguration.g:7041:1: rule__ScopeDeclaration__Group__1__Impl : ( ( rule__ScopeDeclaration__NameAssignment_1 ) ) ; public final void rule__ScopeDeclaration__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7045:1: ( ( ( rule__ScopeDeclaration__NameAssignment_1 ) ) ) // InternalApplicationConfiguration.g:7046:1: ( ( rule__ScopeDeclaration__NameAssignment_1 ) ) { // InternalApplicationConfiguration.g:7046:1: ( ( rule__ScopeDeclaration__NameAssignment_1 ) ) // InternalApplicationConfiguration.g:7047:2: ( rule__ScopeDeclaration__NameAssignment_1 ) { before(grammarAccess.getScopeDeclarationAccess().getNameAssignment_1()); // InternalApplicationConfiguration.g:7048:2: ( rule__ScopeDeclaration__NameAssignment_1 ) // InternalApplicationConfiguration.g:7048:3: rule__ScopeDeclaration__NameAssignment_1 { pushFollow(FOLLOW_2); rule__ScopeDeclaration__NameAssignment_1(); state._fsp--; } after(grammarAccess.getScopeDeclarationAccess().getNameAssignment_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeDeclaration__Group__1__Impl" // $ANTLR start "rule__ScopeDeclaration__Group__2" // InternalApplicationConfiguration.g:7056:1: rule__ScopeDeclaration__Group__2 : rule__ScopeDeclaration__Group__2__Impl ; public final void rule__ScopeDeclaration__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7060:1: ( rule__ScopeDeclaration__Group__2__Impl ) // InternalApplicationConfiguration.g:7061:2: rule__ScopeDeclaration__Group__2__Impl { pushFollow(FOLLOW_2); rule__ScopeDeclaration__Group__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeDeclaration__Group__2" // $ANTLR start "rule__ScopeDeclaration__Group__2__Impl" // InternalApplicationConfiguration.g:7067:1: rule__ScopeDeclaration__Group__2__Impl : ( ( rule__ScopeDeclaration__SpecificationAssignment_2 ) ) ; public final void rule__ScopeDeclaration__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7071:1: ( ( ( rule__ScopeDeclaration__SpecificationAssignment_2 ) ) ) // InternalApplicationConfiguration.g:7072:1: ( ( rule__ScopeDeclaration__SpecificationAssignment_2 ) ) { // InternalApplicationConfiguration.g:7072:1: ( ( rule__ScopeDeclaration__SpecificationAssignment_2 ) ) // InternalApplicationConfiguration.g:7073:2: ( rule__ScopeDeclaration__SpecificationAssignment_2 ) { before(grammarAccess.getScopeDeclarationAccess().getSpecificationAssignment_2()); // InternalApplicationConfiguration.g:7074:2: ( rule__ScopeDeclaration__SpecificationAssignment_2 ) // InternalApplicationConfiguration.g:7074:3: rule__ScopeDeclaration__SpecificationAssignment_2 { pushFollow(FOLLOW_2); rule__ScopeDeclaration__SpecificationAssignment_2(); state._fsp--; } after(grammarAccess.getScopeDeclarationAccess().getSpecificationAssignment_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeDeclaration__Group__2__Impl" // $ANTLR start "rule__GenerationTask__Group__0" // InternalApplicationConfiguration.g:7083:1: rule__GenerationTask__Group__0 : rule__GenerationTask__Group__0__Impl rule__GenerationTask__Group__1 ; public final void rule__GenerationTask__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7087:1: ( rule__GenerationTask__Group__0__Impl rule__GenerationTask__Group__1 ) // InternalApplicationConfiguration.g:7088:2: rule__GenerationTask__Group__0__Impl rule__GenerationTask__Group__1 { pushFollow(FOLLOW_17); rule__GenerationTask__Group__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group__0" // $ANTLR start "rule__GenerationTask__Group__0__Impl" // InternalApplicationConfiguration.g:7095:1: rule__GenerationTask__Group__0__Impl : ( 'generate' ) ; public final void rule__GenerationTask__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7099:1: ( ( 'generate' ) ) // InternalApplicationConfiguration.g:7100:1: ( 'generate' ) { // InternalApplicationConfiguration.g:7100:1: ( 'generate' ) // InternalApplicationConfiguration.g:7101:2: 'generate' { before(grammarAccess.getGenerationTaskAccess().getGenerateKeyword_0()); match(input,46,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getGenerateKeyword_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group__0__Impl" // $ANTLR start "rule__GenerationTask__Group__1" // InternalApplicationConfiguration.g:7110:1: rule__GenerationTask__Group__1 : rule__GenerationTask__Group__1__Impl rule__GenerationTask__Group__2 ; public final void rule__GenerationTask__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7114:1: ( rule__GenerationTask__Group__1__Impl rule__GenerationTask__Group__2 ) // InternalApplicationConfiguration.g:7115:2: rule__GenerationTask__Group__1__Impl rule__GenerationTask__Group__2 { pushFollow(FOLLOW_17); rule__GenerationTask__Group__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group__1" // $ANTLR start "rule__GenerationTask__Group__1__Impl" // InternalApplicationConfiguration.g:7122:1: rule__GenerationTask__Group__1__Impl : ( () ) ; public final void rule__GenerationTask__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7126:1: ( ( () ) ) // InternalApplicationConfiguration.g:7127:1: ( () ) { // InternalApplicationConfiguration.g:7127:1: ( () ) // InternalApplicationConfiguration.g:7128:2: () { before(grammarAccess.getGenerationTaskAccess().getGenerationTaskAction_1()); // InternalApplicationConfiguration.g:7129:2: () // InternalApplicationConfiguration.g:7129:3: { } after(grammarAccess.getGenerationTaskAccess().getGenerationTaskAction_1()); } } } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group__1__Impl" // $ANTLR start "rule__GenerationTask__Group__2" // InternalApplicationConfiguration.g:7137:1: rule__GenerationTask__Group__2 : rule__GenerationTask__Group__2__Impl rule__GenerationTask__Group__3 ; public final void rule__GenerationTask__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7141:1: ( rule__GenerationTask__Group__2__Impl rule__GenerationTask__Group__3 ) // InternalApplicationConfiguration.g:7142:2: rule__GenerationTask__Group__2__Impl rule__GenerationTask__Group__3 { pushFollow(FOLLOW_40); rule__GenerationTask__Group__2__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group__3(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group__2" // $ANTLR start "rule__GenerationTask__Group__2__Impl" // InternalApplicationConfiguration.g:7149:1: rule__GenerationTask__Group__2__Impl : ( '{' ) ; public final void rule__GenerationTask__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7153:1: ( ( '{' ) ) // InternalApplicationConfiguration.g:7154:1: ( '{' ) { // InternalApplicationConfiguration.g:7154:1: ( '{' ) // InternalApplicationConfiguration.g:7155:2: '{' { before(grammarAccess.getGenerationTaskAccess().getLeftCurlyBracketKeyword_2()); match(input,23,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getLeftCurlyBracketKeyword_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group__2__Impl" // $ANTLR start "rule__GenerationTask__Group__3" // InternalApplicationConfiguration.g:7164:1: rule__GenerationTask__Group__3 : rule__GenerationTask__Group__3__Impl rule__GenerationTask__Group__4 ; public final void rule__GenerationTask__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7168:1: ( rule__GenerationTask__Group__3__Impl rule__GenerationTask__Group__4 ) // InternalApplicationConfiguration.g:7169:2: rule__GenerationTask__Group__3__Impl rule__GenerationTask__Group__4 { pushFollow(FOLLOW_41); rule__GenerationTask__Group__3__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group__4(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group__3" // $ANTLR start "rule__GenerationTask__Group__3__Impl" // InternalApplicationConfiguration.g:7176:1: rule__GenerationTask__Group__3__Impl : ( ( rule__GenerationTask__UnorderedGroup_3 ) ) ; public final void rule__GenerationTask__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7180:1: ( ( ( rule__GenerationTask__UnorderedGroup_3 ) ) ) // InternalApplicationConfiguration.g:7181:1: ( ( rule__GenerationTask__UnorderedGroup_3 ) ) { // InternalApplicationConfiguration.g:7181:1: ( ( rule__GenerationTask__UnorderedGroup_3 ) ) // InternalApplicationConfiguration.g:7182:2: ( rule__GenerationTask__UnorderedGroup_3 ) { before(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3()); // InternalApplicationConfiguration.g:7183:2: ( rule__GenerationTask__UnorderedGroup_3 ) // InternalApplicationConfiguration.g:7183:3: rule__GenerationTask__UnorderedGroup_3 { pushFollow(FOLLOW_2); rule__GenerationTask__UnorderedGroup_3(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group__3__Impl" // $ANTLR start "rule__GenerationTask__Group__4" // InternalApplicationConfiguration.g:7191:1: rule__GenerationTask__Group__4 : rule__GenerationTask__Group__4__Impl ; public final void rule__GenerationTask__Group__4() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7195:1: ( rule__GenerationTask__Group__4__Impl ) // InternalApplicationConfiguration.g:7196:2: rule__GenerationTask__Group__4__Impl { pushFollow(FOLLOW_2); rule__GenerationTask__Group__4__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group__4" // $ANTLR start "rule__GenerationTask__Group__4__Impl" // InternalApplicationConfiguration.g:7202:1: rule__GenerationTask__Group__4__Impl : ( '}' ) ; public final void rule__GenerationTask__Group__4__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7206:1: ( ( '}' ) ) // InternalApplicationConfiguration.g:7207:1: ( '}' ) { // InternalApplicationConfiguration.g:7207:1: ( '}' ) // InternalApplicationConfiguration.g:7208:2: '}' { before(grammarAccess.getGenerationTaskAccess().getRightCurlyBracketKeyword_4()); match(input,24,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getRightCurlyBracketKeyword_4()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group__4__Impl" // $ANTLR start "rule__GenerationTask__Group_3_0__0" // InternalApplicationConfiguration.g:7218:1: rule__GenerationTask__Group_3_0__0 : rule__GenerationTask__Group_3_0__0__Impl rule__GenerationTask__Group_3_0__1 ; public final void rule__GenerationTask__Group_3_0__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7222:1: ( rule__GenerationTask__Group_3_0__0__Impl rule__GenerationTask__Group_3_0__1 ) // InternalApplicationConfiguration.g:7223:2: rule__GenerationTask__Group_3_0__0__Impl rule__GenerationTask__Group_3_0__1 { pushFollow(FOLLOW_12); rule__GenerationTask__Group_3_0__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_0__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_0__0" // $ANTLR start "rule__GenerationTask__Group_3_0__0__Impl" // InternalApplicationConfiguration.g:7230:1: rule__GenerationTask__Group_3_0__0__Impl : ( 'metamodel' ) ; public final void rule__GenerationTask__Group_3_0__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7234:1: ( ( 'metamodel' ) ) // InternalApplicationConfiguration.g:7235:1: ( 'metamodel' ) { // InternalApplicationConfiguration.g:7235:1: ( 'metamodel' ) // InternalApplicationConfiguration.g:7236:2: 'metamodel' { before(grammarAccess.getGenerationTaskAccess().getMetamodelKeyword_3_0_0()); match(input,29,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getMetamodelKeyword_3_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_0__0__Impl" // $ANTLR start "rule__GenerationTask__Group_3_0__1" // InternalApplicationConfiguration.g:7245:1: rule__GenerationTask__Group_3_0__1 : rule__GenerationTask__Group_3_0__1__Impl rule__GenerationTask__Group_3_0__2 ; public final void rule__GenerationTask__Group_3_0__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7249:1: ( rule__GenerationTask__Group_3_0__1__Impl rule__GenerationTask__Group_3_0__2 ) // InternalApplicationConfiguration.g:7250:2: rule__GenerationTask__Group_3_0__1__Impl rule__GenerationTask__Group_3_0__2 { pushFollow(FOLLOW_42); rule__GenerationTask__Group_3_0__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_0__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_0__1" // $ANTLR start "rule__GenerationTask__Group_3_0__1__Impl" // InternalApplicationConfiguration.g:7257:1: rule__GenerationTask__Group_3_0__1__Impl : ( '=' ) ; public final void rule__GenerationTask__Group_3_0__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7261:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:7262:1: ( '=' ) { // InternalApplicationConfiguration.g:7262:1: ( '=' ) // InternalApplicationConfiguration.g:7263:2: '=' { before(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_0_1()); match(input,22,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_0_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_0__1__Impl" // $ANTLR start "rule__GenerationTask__Group_3_0__2" // InternalApplicationConfiguration.g:7272:1: rule__GenerationTask__Group_3_0__2 : rule__GenerationTask__Group_3_0__2__Impl ; public final void rule__GenerationTask__Group_3_0__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7276:1: ( rule__GenerationTask__Group_3_0__2__Impl ) // InternalApplicationConfiguration.g:7277:2: rule__GenerationTask__Group_3_0__2__Impl { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_0__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_0__2" // $ANTLR start "rule__GenerationTask__Group_3_0__2__Impl" // InternalApplicationConfiguration.g:7283:1: rule__GenerationTask__Group_3_0__2__Impl : ( ( rule__GenerationTask__MetamodelAssignment_3_0_2 ) ) ; public final void rule__GenerationTask__Group_3_0__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7287:1: ( ( ( rule__GenerationTask__MetamodelAssignment_3_0_2 ) ) ) // InternalApplicationConfiguration.g:7288:1: ( ( rule__GenerationTask__MetamodelAssignment_3_0_2 ) ) { // InternalApplicationConfiguration.g:7288:1: ( ( rule__GenerationTask__MetamodelAssignment_3_0_2 ) ) // InternalApplicationConfiguration.g:7289:2: ( rule__GenerationTask__MetamodelAssignment_3_0_2 ) { before(grammarAccess.getGenerationTaskAccess().getMetamodelAssignment_3_0_2()); // InternalApplicationConfiguration.g:7290:2: ( rule__GenerationTask__MetamodelAssignment_3_0_2 ) // InternalApplicationConfiguration.g:7290:3: rule__GenerationTask__MetamodelAssignment_3_0_2 { pushFollow(FOLLOW_2); rule__GenerationTask__MetamodelAssignment_3_0_2(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getMetamodelAssignment_3_0_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_0__2__Impl" // $ANTLR start "rule__GenerationTask__Group_3_1__0" // InternalApplicationConfiguration.g:7299:1: rule__GenerationTask__Group_3_1__0 : rule__GenerationTask__Group_3_1__0__Impl rule__GenerationTask__Group_3_1__1 ; public final void rule__GenerationTask__Group_3_1__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7303:1: ( rule__GenerationTask__Group_3_1__0__Impl rule__GenerationTask__Group_3_1__1 ) // InternalApplicationConfiguration.g:7304:2: rule__GenerationTask__Group_3_1__0__Impl rule__GenerationTask__Group_3_1__1 { pushFollow(FOLLOW_12); rule__GenerationTask__Group_3_1__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_1__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_1__0" // $ANTLR start "rule__GenerationTask__Group_3_1__0__Impl" // InternalApplicationConfiguration.g:7311:1: rule__GenerationTask__Group_3_1__0__Impl : ( 'partial-model' ) ; public final void rule__GenerationTask__Group_3_1__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7315:1: ( ( 'partial-model' ) ) // InternalApplicationConfiguration.g:7316:1: ( 'partial-model' ) { // InternalApplicationConfiguration.g:7316:1: ( 'partial-model' ) // InternalApplicationConfiguration.g:7317:2: 'partial-model' { before(grammarAccess.getGenerationTaskAccess().getPartialModelKeyword_3_1_0()); match(input,47,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getPartialModelKeyword_3_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_1__0__Impl" // $ANTLR start "rule__GenerationTask__Group_3_1__1" // InternalApplicationConfiguration.g:7326:1: rule__GenerationTask__Group_3_1__1 : rule__GenerationTask__Group_3_1__1__Impl rule__GenerationTask__Group_3_1__2 ; public final void rule__GenerationTask__Group_3_1__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7330:1: ( rule__GenerationTask__Group_3_1__1__Impl rule__GenerationTask__Group_3_1__2 ) // InternalApplicationConfiguration.g:7331:2: rule__GenerationTask__Group_3_1__1__Impl rule__GenerationTask__Group_3_1__2 { pushFollow(FOLLOW_42); rule__GenerationTask__Group_3_1__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_1__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_1__1" // $ANTLR start "rule__GenerationTask__Group_3_1__1__Impl" // InternalApplicationConfiguration.g:7338:1: rule__GenerationTask__Group_3_1__1__Impl : ( '=' ) ; public final void rule__GenerationTask__Group_3_1__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7342:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:7343:1: ( '=' ) { // InternalApplicationConfiguration.g:7343:1: ( '=' ) // InternalApplicationConfiguration.g:7344:2: '=' { before(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_1_1()); match(input,22,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_1_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_1__1__Impl" // $ANTLR start "rule__GenerationTask__Group_3_1__2" // InternalApplicationConfiguration.g:7353:1: rule__GenerationTask__Group_3_1__2 : rule__GenerationTask__Group_3_1__2__Impl ; public final void rule__GenerationTask__Group_3_1__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7357:1: ( rule__GenerationTask__Group_3_1__2__Impl ) // InternalApplicationConfiguration.g:7358:2: rule__GenerationTask__Group_3_1__2__Impl { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_1__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_1__2" // $ANTLR start "rule__GenerationTask__Group_3_1__2__Impl" // InternalApplicationConfiguration.g:7364:1: rule__GenerationTask__Group_3_1__2__Impl : ( ( rule__GenerationTask__PartialModelAssignment_3_1_2 ) ) ; public final void rule__GenerationTask__Group_3_1__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7368:1: ( ( ( rule__GenerationTask__PartialModelAssignment_3_1_2 ) ) ) // InternalApplicationConfiguration.g:7369:1: ( ( rule__GenerationTask__PartialModelAssignment_3_1_2 ) ) { // InternalApplicationConfiguration.g:7369:1: ( ( rule__GenerationTask__PartialModelAssignment_3_1_2 ) ) // InternalApplicationConfiguration.g:7370:2: ( rule__GenerationTask__PartialModelAssignment_3_1_2 ) { before(grammarAccess.getGenerationTaskAccess().getPartialModelAssignment_3_1_2()); // InternalApplicationConfiguration.g:7371:2: ( rule__GenerationTask__PartialModelAssignment_3_1_2 ) // InternalApplicationConfiguration.g:7371:3: rule__GenerationTask__PartialModelAssignment_3_1_2 { pushFollow(FOLLOW_2); rule__GenerationTask__PartialModelAssignment_3_1_2(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getPartialModelAssignment_3_1_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_1__2__Impl" // $ANTLR start "rule__GenerationTask__Group_3_2__0" // InternalApplicationConfiguration.g:7380:1: rule__GenerationTask__Group_3_2__0 : rule__GenerationTask__Group_3_2__0__Impl rule__GenerationTask__Group_3_2__1 ; public final void rule__GenerationTask__Group_3_2__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7384:1: ( rule__GenerationTask__Group_3_2__0__Impl rule__GenerationTask__Group_3_2__1 ) // InternalApplicationConfiguration.g:7385:2: rule__GenerationTask__Group_3_2__0__Impl rule__GenerationTask__Group_3_2__1 { pushFollow(FOLLOW_12); rule__GenerationTask__Group_3_2__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_2__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_2__0" // $ANTLR start "rule__GenerationTask__Group_3_2__0__Impl" // InternalApplicationConfiguration.g:7392:1: rule__GenerationTask__Group_3_2__0__Impl : ( 'constraints' ) ; public final void rule__GenerationTask__Group_3_2__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7396:1: ( ( 'constraints' ) ) // InternalApplicationConfiguration.g:7397:1: ( 'constraints' ) { // InternalApplicationConfiguration.g:7397:1: ( 'constraints' ) // InternalApplicationConfiguration.g:7398:2: 'constraints' { before(grammarAccess.getGenerationTaskAccess().getConstraintsKeyword_3_2_0()); match(input,32,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getConstraintsKeyword_3_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_2__0__Impl" // $ANTLR start "rule__GenerationTask__Group_3_2__1" // InternalApplicationConfiguration.g:7407:1: rule__GenerationTask__Group_3_2__1 : rule__GenerationTask__Group_3_2__1__Impl rule__GenerationTask__Group_3_2__2 ; public final void rule__GenerationTask__Group_3_2__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7411:1: ( rule__GenerationTask__Group_3_2__1__Impl rule__GenerationTask__Group_3_2__2 ) // InternalApplicationConfiguration.g:7412:2: rule__GenerationTask__Group_3_2__1__Impl rule__GenerationTask__Group_3_2__2 { pushFollow(FOLLOW_42); rule__GenerationTask__Group_3_2__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_2__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_2__1" // $ANTLR start "rule__GenerationTask__Group_3_2__1__Impl" // InternalApplicationConfiguration.g:7419:1: rule__GenerationTask__Group_3_2__1__Impl : ( '=' ) ; public final void rule__GenerationTask__Group_3_2__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7423:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:7424:1: ( '=' ) { // InternalApplicationConfiguration.g:7424:1: ( '=' ) // InternalApplicationConfiguration.g:7425:2: '=' { before(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_2_1()); match(input,22,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_2_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_2__1__Impl" // $ANTLR start "rule__GenerationTask__Group_3_2__2" // InternalApplicationConfiguration.g:7434:1: rule__GenerationTask__Group_3_2__2 : rule__GenerationTask__Group_3_2__2__Impl ; public final void rule__GenerationTask__Group_3_2__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7438:1: ( rule__GenerationTask__Group_3_2__2__Impl ) // InternalApplicationConfiguration.g:7439:2: rule__GenerationTask__Group_3_2__2__Impl { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_2__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_2__2" // $ANTLR start "rule__GenerationTask__Group_3_2__2__Impl" // InternalApplicationConfiguration.g:7445:1: rule__GenerationTask__Group_3_2__2__Impl : ( ( rule__GenerationTask__PatternsAssignment_3_2_2 ) ) ; public final void rule__GenerationTask__Group_3_2__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7449:1: ( ( ( rule__GenerationTask__PatternsAssignment_3_2_2 ) ) ) // InternalApplicationConfiguration.g:7450:1: ( ( rule__GenerationTask__PatternsAssignment_3_2_2 ) ) { // InternalApplicationConfiguration.g:7450:1: ( ( rule__GenerationTask__PatternsAssignment_3_2_2 ) ) // InternalApplicationConfiguration.g:7451:2: ( rule__GenerationTask__PatternsAssignment_3_2_2 ) { before(grammarAccess.getGenerationTaskAccess().getPatternsAssignment_3_2_2()); // InternalApplicationConfiguration.g:7452:2: ( rule__GenerationTask__PatternsAssignment_3_2_2 ) // InternalApplicationConfiguration.g:7452:3: rule__GenerationTask__PatternsAssignment_3_2_2 { pushFollow(FOLLOW_2); rule__GenerationTask__PatternsAssignment_3_2_2(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getPatternsAssignment_3_2_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_2__2__Impl" // $ANTLR start "rule__GenerationTask__Group_3_3__0" // InternalApplicationConfiguration.g:7461:1: rule__GenerationTask__Group_3_3__0 : rule__GenerationTask__Group_3_3__0__Impl rule__GenerationTask__Group_3_3__1 ; public final void rule__GenerationTask__Group_3_3__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7465:1: ( rule__GenerationTask__Group_3_3__0__Impl rule__GenerationTask__Group_3_3__1 ) // InternalApplicationConfiguration.g:7466:2: rule__GenerationTask__Group_3_3__0__Impl rule__GenerationTask__Group_3_3__1 { pushFollow(FOLLOW_12); rule__GenerationTask__Group_3_3__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_3__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_3__0" // $ANTLR start "rule__GenerationTask__Group_3_3__0__Impl" // InternalApplicationConfiguration.g:7473:1: rule__GenerationTask__Group_3_3__0__Impl : ( 'scope' ) ; public final void rule__GenerationTask__Group_3_3__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7477:1: ( ( 'scope' ) ) // InternalApplicationConfiguration.g:7478:1: ( 'scope' ) { // InternalApplicationConfiguration.g:7478:1: ( 'scope' ) // InternalApplicationConfiguration.g:7479:2: 'scope' { before(grammarAccess.getGenerationTaskAccess().getScopeKeyword_3_3_0()); match(input,45,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getScopeKeyword_3_3_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_3__0__Impl" // $ANTLR start "rule__GenerationTask__Group_3_3__1" // InternalApplicationConfiguration.g:7488:1: rule__GenerationTask__Group_3_3__1 : rule__GenerationTask__Group_3_3__1__Impl rule__GenerationTask__Group_3_3__2 ; public final void rule__GenerationTask__Group_3_3__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7492:1: ( rule__GenerationTask__Group_3_3__1__Impl rule__GenerationTask__Group_3_3__2 ) // InternalApplicationConfiguration.g:7493:2: rule__GenerationTask__Group_3_3__1__Impl rule__GenerationTask__Group_3_3__2 { pushFollow(FOLLOW_42); rule__GenerationTask__Group_3_3__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_3__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_3__1" // $ANTLR start "rule__GenerationTask__Group_3_3__1__Impl" // InternalApplicationConfiguration.g:7500:1: rule__GenerationTask__Group_3_3__1__Impl : ( '=' ) ; public final void rule__GenerationTask__Group_3_3__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7504:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:7505:1: ( '=' ) { // InternalApplicationConfiguration.g:7505:1: ( '=' ) // InternalApplicationConfiguration.g:7506:2: '=' { before(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_3_1()); match(input,22,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_3_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_3__1__Impl" // $ANTLR start "rule__GenerationTask__Group_3_3__2" // InternalApplicationConfiguration.g:7515:1: rule__GenerationTask__Group_3_3__2 : rule__GenerationTask__Group_3_3__2__Impl ; public final void rule__GenerationTask__Group_3_3__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7519:1: ( rule__GenerationTask__Group_3_3__2__Impl ) // InternalApplicationConfiguration.g:7520:2: rule__GenerationTask__Group_3_3__2__Impl { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_3__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_3__2" // $ANTLR start "rule__GenerationTask__Group_3_3__2__Impl" // InternalApplicationConfiguration.g:7526:1: rule__GenerationTask__Group_3_3__2__Impl : ( ( rule__GenerationTask__ScopeAssignment_3_3_2 ) ) ; public final void rule__GenerationTask__Group_3_3__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7530:1: ( ( ( rule__GenerationTask__ScopeAssignment_3_3_2 ) ) ) // InternalApplicationConfiguration.g:7531:1: ( ( rule__GenerationTask__ScopeAssignment_3_3_2 ) ) { // InternalApplicationConfiguration.g:7531:1: ( ( rule__GenerationTask__ScopeAssignment_3_3_2 ) ) // InternalApplicationConfiguration.g:7532:2: ( rule__GenerationTask__ScopeAssignment_3_3_2 ) { before(grammarAccess.getGenerationTaskAccess().getScopeAssignment_3_3_2()); // InternalApplicationConfiguration.g:7533:2: ( rule__GenerationTask__ScopeAssignment_3_3_2 ) // InternalApplicationConfiguration.g:7533:3: rule__GenerationTask__ScopeAssignment_3_3_2 { pushFollow(FOLLOW_2); rule__GenerationTask__ScopeAssignment_3_3_2(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getScopeAssignment_3_3_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_3__2__Impl" // $ANTLR start "rule__GenerationTask__Group_3_4__0" // InternalApplicationConfiguration.g:7542:1: rule__GenerationTask__Group_3_4__0 : rule__GenerationTask__Group_3_4__0__Impl rule__GenerationTask__Group_3_4__1 ; public final void rule__GenerationTask__Group_3_4__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7546:1: ( rule__GenerationTask__Group_3_4__0__Impl rule__GenerationTask__Group_3_4__1 ) // InternalApplicationConfiguration.g:7547:2: rule__GenerationTask__Group_3_4__0__Impl rule__GenerationTask__Group_3_4__1 { pushFollow(FOLLOW_12); rule__GenerationTask__Group_3_4__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_4__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_4__0" // $ANTLR start "rule__GenerationTask__Group_3_4__0__Impl" // InternalApplicationConfiguration.g:7554:1: rule__GenerationTask__Group_3_4__0__Impl : ( ( rule__GenerationTask__NumberSpecifiedAssignment_3_4_0 ) ) ; public final void rule__GenerationTask__Group_3_4__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7558:1: ( ( ( rule__GenerationTask__NumberSpecifiedAssignment_3_4_0 ) ) ) // InternalApplicationConfiguration.g:7559:1: ( ( rule__GenerationTask__NumberSpecifiedAssignment_3_4_0 ) ) { // InternalApplicationConfiguration.g:7559:1: ( ( rule__GenerationTask__NumberSpecifiedAssignment_3_4_0 ) ) // InternalApplicationConfiguration.g:7560:2: ( rule__GenerationTask__NumberSpecifiedAssignment_3_4_0 ) { before(grammarAccess.getGenerationTaskAccess().getNumberSpecifiedAssignment_3_4_0()); // InternalApplicationConfiguration.g:7561:2: ( rule__GenerationTask__NumberSpecifiedAssignment_3_4_0 ) // InternalApplicationConfiguration.g:7561:3: rule__GenerationTask__NumberSpecifiedAssignment_3_4_0 { pushFollow(FOLLOW_2); rule__GenerationTask__NumberSpecifiedAssignment_3_4_0(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getNumberSpecifiedAssignment_3_4_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_4__0__Impl" // $ANTLR start "rule__GenerationTask__Group_3_4__1" // InternalApplicationConfiguration.g:7569:1: rule__GenerationTask__Group_3_4__1 : rule__GenerationTask__Group_3_4__1__Impl rule__GenerationTask__Group_3_4__2 ; public final void rule__GenerationTask__Group_3_4__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7573:1: ( rule__GenerationTask__Group_3_4__1__Impl rule__GenerationTask__Group_3_4__2 ) // InternalApplicationConfiguration.g:7574:2: rule__GenerationTask__Group_3_4__1__Impl rule__GenerationTask__Group_3_4__2 { pushFollow(FOLLOW_25); rule__GenerationTask__Group_3_4__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_4__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_4__1" // $ANTLR start "rule__GenerationTask__Group_3_4__1__Impl" // InternalApplicationConfiguration.g:7581:1: rule__GenerationTask__Group_3_4__1__Impl : ( '=' ) ; public final void rule__GenerationTask__Group_3_4__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7585:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:7586:1: ( '=' ) { // InternalApplicationConfiguration.g:7586:1: ( '=' ) // InternalApplicationConfiguration.g:7587:2: '=' { before(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_4_1()); match(input,22,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_4_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_4__1__Impl" // $ANTLR start "rule__GenerationTask__Group_3_4__2" // InternalApplicationConfiguration.g:7596:1: rule__GenerationTask__Group_3_4__2 : rule__GenerationTask__Group_3_4__2__Impl ; public final void rule__GenerationTask__Group_3_4__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7600:1: ( rule__GenerationTask__Group_3_4__2__Impl ) // InternalApplicationConfiguration.g:7601:2: rule__GenerationTask__Group_3_4__2__Impl { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_4__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_4__2" // $ANTLR start "rule__GenerationTask__Group_3_4__2__Impl" // InternalApplicationConfiguration.g:7607:1: rule__GenerationTask__Group_3_4__2__Impl : ( ( rule__GenerationTask__NumberAssignment_3_4_2 ) ) ; public final void rule__GenerationTask__Group_3_4__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7611:1: ( ( ( rule__GenerationTask__NumberAssignment_3_4_2 ) ) ) // InternalApplicationConfiguration.g:7612:1: ( ( rule__GenerationTask__NumberAssignment_3_4_2 ) ) { // InternalApplicationConfiguration.g:7612:1: ( ( rule__GenerationTask__NumberAssignment_3_4_2 ) ) // InternalApplicationConfiguration.g:7613:2: ( rule__GenerationTask__NumberAssignment_3_4_2 ) { before(grammarAccess.getGenerationTaskAccess().getNumberAssignment_3_4_2()); // InternalApplicationConfiguration.g:7614:2: ( rule__GenerationTask__NumberAssignment_3_4_2 ) // InternalApplicationConfiguration.g:7614:3: rule__GenerationTask__NumberAssignment_3_4_2 { pushFollow(FOLLOW_2); rule__GenerationTask__NumberAssignment_3_4_2(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getNumberAssignment_3_4_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_4__2__Impl" // $ANTLR start "rule__GenerationTask__Group_3_5__0" // InternalApplicationConfiguration.g:7623:1: rule__GenerationTask__Group_3_5__0 : rule__GenerationTask__Group_3_5__0__Impl rule__GenerationTask__Group_3_5__1 ; public final void rule__GenerationTask__Group_3_5__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7627:1: ( rule__GenerationTask__Group_3_5__0__Impl rule__GenerationTask__Group_3_5__1 ) // InternalApplicationConfiguration.g:7628:2: rule__GenerationTask__Group_3_5__0__Impl rule__GenerationTask__Group_3_5__1 { pushFollow(FOLLOW_12); rule__GenerationTask__Group_3_5__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_5__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_5__0" // $ANTLR start "rule__GenerationTask__Group_3_5__0__Impl" // InternalApplicationConfiguration.g:7635:1: rule__GenerationTask__Group_3_5__0__Impl : ( ( rule__GenerationTask__RunSpecifiedAssignment_3_5_0 ) ) ; public final void rule__GenerationTask__Group_3_5__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7639:1: ( ( ( rule__GenerationTask__RunSpecifiedAssignment_3_5_0 ) ) ) // InternalApplicationConfiguration.g:7640:1: ( ( rule__GenerationTask__RunSpecifiedAssignment_3_5_0 ) ) { // InternalApplicationConfiguration.g:7640:1: ( ( rule__GenerationTask__RunSpecifiedAssignment_3_5_0 ) ) // InternalApplicationConfiguration.g:7641:2: ( rule__GenerationTask__RunSpecifiedAssignment_3_5_0 ) { before(grammarAccess.getGenerationTaskAccess().getRunSpecifiedAssignment_3_5_0()); // InternalApplicationConfiguration.g:7642:2: ( rule__GenerationTask__RunSpecifiedAssignment_3_5_0 ) // InternalApplicationConfiguration.g:7642:3: rule__GenerationTask__RunSpecifiedAssignment_3_5_0 { pushFollow(FOLLOW_2); rule__GenerationTask__RunSpecifiedAssignment_3_5_0(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getRunSpecifiedAssignment_3_5_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_5__0__Impl" // $ANTLR start "rule__GenerationTask__Group_3_5__1" // InternalApplicationConfiguration.g:7650:1: rule__GenerationTask__Group_3_5__1 : rule__GenerationTask__Group_3_5__1__Impl rule__GenerationTask__Group_3_5__2 ; public final void rule__GenerationTask__Group_3_5__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7654:1: ( rule__GenerationTask__Group_3_5__1__Impl rule__GenerationTask__Group_3_5__2 ) // InternalApplicationConfiguration.g:7655:2: rule__GenerationTask__Group_3_5__1__Impl rule__GenerationTask__Group_3_5__2 { pushFollow(FOLLOW_25); rule__GenerationTask__Group_3_5__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_5__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_5__1" // $ANTLR start "rule__GenerationTask__Group_3_5__1__Impl" // InternalApplicationConfiguration.g:7662:1: rule__GenerationTask__Group_3_5__1__Impl : ( '=' ) ; public final void rule__GenerationTask__Group_3_5__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7666:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:7667:1: ( '=' ) { // InternalApplicationConfiguration.g:7667:1: ( '=' ) // InternalApplicationConfiguration.g:7668:2: '=' { before(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_5_1()); match(input,22,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_5_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_5__1__Impl" // $ANTLR start "rule__GenerationTask__Group_3_5__2" // InternalApplicationConfiguration.g:7677:1: rule__GenerationTask__Group_3_5__2 : rule__GenerationTask__Group_3_5__2__Impl ; public final void rule__GenerationTask__Group_3_5__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7681:1: ( rule__GenerationTask__Group_3_5__2__Impl ) // InternalApplicationConfiguration.g:7682:2: rule__GenerationTask__Group_3_5__2__Impl { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_5__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_5__2" // $ANTLR start "rule__GenerationTask__Group_3_5__2__Impl" // InternalApplicationConfiguration.g:7688:1: rule__GenerationTask__Group_3_5__2__Impl : ( ( rule__GenerationTask__RunsAssignment_3_5_2 ) ) ; public final void rule__GenerationTask__Group_3_5__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7692:1: ( ( ( rule__GenerationTask__RunsAssignment_3_5_2 ) ) ) // InternalApplicationConfiguration.g:7693:1: ( ( rule__GenerationTask__RunsAssignment_3_5_2 ) ) { // InternalApplicationConfiguration.g:7693:1: ( ( rule__GenerationTask__RunsAssignment_3_5_2 ) ) // InternalApplicationConfiguration.g:7694:2: ( rule__GenerationTask__RunsAssignment_3_5_2 ) { before(grammarAccess.getGenerationTaskAccess().getRunsAssignment_3_5_2()); // InternalApplicationConfiguration.g:7695:2: ( rule__GenerationTask__RunsAssignment_3_5_2 ) // InternalApplicationConfiguration.g:7695:3: rule__GenerationTask__RunsAssignment_3_5_2 { pushFollow(FOLLOW_2); rule__GenerationTask__RunsAssignment_3_5_2(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getRunsAssignment_3_5_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_5__2__Impl" // $ANTLR start "rule__GenerationTask__Group_3_6__0" // InternalApplicationConfiguration.g:7704:1: rule__GenerationTask__Group_3_6__0 : rule__GenerationTask__Group_3_6__0__Impl rule__GenerationTask__Group_3_6__1 ; public final void rule__GenerationTask__Group_3_6__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7708:1: ( rule__GenerationTask__Group_3_6__0__Impl rule__GenerationTask__Group_3_6__1 ) // InternalApplicationConfiguration.g:7709:2: rule__GenerationTask__Group_3_6__0__Impl rule__GenerationTask__Group_3_6__1 { pushFollow(FOLLOW_12); rule__GenerationTask__Group_3_6__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_6__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_6__0" // $ANTLR start "rule__GenerationTask__Group_3_6__0__Impl" // InternalApplicationConfiguration.g:7716:1: rule__GenerationTask__Group_3_6__0__Impl : ( 'solver' ) ; public final void rule__GenerationTask__Group_3_6__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7720:1: ( ( 'solver' ) ) // InternalApplicationConfiguration.g:7721:1: ( 'solver' ) { // InternalApplicationConfiguration.g:7721:1: ( 'solver' ) // InternalApplicationConfiguration.g:7722:2: 'solver' { before(grammarAccess.getGenerationTaskAccess().getSolverKeyword_3_6_0()); match(input,48,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getSolverKeyword_3_6_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_6__0__Impl" // $ANTLR start "rule__GenerationTask__Group_3_6__1" // InternalApplicationConfiguration.g:7731:1: rule__GenerationTask__Group_3_6__1 : rule__GenerationTask__Group_3_6__1__Impl rule__GenerationTask__Group_3_6__2 ; public final void rule__GenerationTask__Group_3_6__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7735:1: ( rule__GenerationTask__Group_3_6__1__Impl rule__GenerationTask__Group_3_6__2 ) // InternalApplicationConfiguration.g:7736:2: rule__GenerationTask__Group_3_6__1__Impl rule__GenerationTask__Group_3_6__2 { pushFollow(FOLLOW_43); rule__GenerationTask__Group_3_6__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_6__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_6__1" // $ANTLR start "rule__GenerationTask__Group_3_6__1__Impl" // InternalApplicationConfiguration.g:7743:1: rule__GenerationTask__Group_3_6__1__Impl : ( '=' ) ; public final void rule__GenerationTask__Group_3_6__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7747:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:7748:1: ( '=' ) { // InternalApplicationConfiguration.g:7748:1: ( '=' ) // InternalApplicationConfiguration.g:7749:2: '=' { before(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_6_1()); match(input,22,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_6_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_6__1__Impl" // $ANTLR start "rule__GenerationTask__Group_3_6__2" // InternalApplicationConfiguration.g:7758:1: rule__GenerationTask__Group_3_6__2 : rule__GenerationTask__Group_3_6__2__Impl ; public final void rule__GenerationTask__Group_3_6__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7762:1: ( rule__GenerationTask__Group_3_6__2__Impl ) // InternalApplicationConfiguration.g:7763:2: rule__GenerationTask__Group_3_6__2__Impl { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_6__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_6__2" // $ANTLR start "rule__GenerationTask__Group_3_6__2__Impl" // InternalApplicationConfiguration.g:7769:1: rule__GenerationTask__Group_3_6__2__Impl : ( ( rule__GenerationTask__SolverAssignment_3_6_2 ) ) ; public final void rule__GenerationTask__Group_3_6__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7773:1: ( ( ( rule__GenerationTask__SolverAssignment_3_6_2 ) ) ) // InternalApplicationConfiguration.g:7774:1: ( ( rule__GenerationTask__SolverAssignment_3_6_2 ) ) { // InternalApplicationConfiguration.g:7774:1: ( ( rule__GenerationTask__SolverAssignment_3_6_2 ) ) // InternalApplicationConfiguration.g:7775:2: ( rule__GenerationTask__SolverAssignment_3_6_2 ) { before(grammarAccess.getGenerationTaskAccess().getSolverAssignment_3_6_2()); // InternalApplicationConfiguration.g:7776:2: ( rule__GenerationTask__SolverAssignment_3_6_2 ) // InternalApplicationConfiguration.g:7776:3: rule__GenerationTask__SolverAssignment_3_6_2 { pushFollow(FOLLOW_2); rule__GenerationTask__SolverAssignment_3_6_2(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getSolverAssignment_3_6_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_6__2__Impl" // $ANTLR start "rule__GenerationTask__Group_3_7__0" // InternalApplicationConfiguration.g:7785:1: rule__GenerationTask__Group_3_7__0 : rule__GenerationTask__Group_3_7__0__Impl rule__GenerationTask__Group_3_7__1 ; public final void rule__GenerationTask__Group_3_7__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7789:1: ( rule__GenerationTask__Group_3_7__0__Impl rule__GenerationTask__Group_3_7__1 ) // InternalApplicationConfiguration.g:7790:2: rule__GenerationTask__Group_3_7__0__Impl rule__GenerationTask__Group_3_7__1 { pushFollow(FOLLOW_12); rule__GenerationTask__Group_3_7__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_7__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_7__0" // $ANTLR start "rule__GenerationTask__Group_3_7__0__Impl" // InternalApplicationConfiguration.g:7797:1: rule__GenerationTask__Group_3_7__0__Impl : ( 'config' ) ; public final void rule__GenerationTask__Group_3_7__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7801:1: ( ( 'config' ) ) // InternalApplicationConfiguration.g:7802:1: ( 'config' ) { // InternalApplicationConfiguration.g:7802:1: ( 'config' ) // InternalApplicationConfiguration.g:7803:2: 'config' { before(grammarAccess.getGenerationTaskAccess().getConfigKeyword_3_7_0()); match(input,33,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getConfigKeyword_3_7_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_7__0__Impl" // $ANTLR start "rule__GenerationTask__Group_3_7__1" // InternalApplicationConfiguration.g:7812:1: rule__GenerationTask__Group_3_7__1 : rule__GenerationTask__Group_3_7__1__Impl rule__GenerationTask__Group_3_7__2 ; public final void rule__GenerationTask__Group_3_7__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7816:1: ( rule__GenerationTask__Group_3_7__1__Impl rule__GenerationTask__Group_3_7__2 ) // InternalApplicationConfiguration.g:7817:2: rule__GenerationTask__Group_3_7__1__Impl rule__GenerationTask__Group_3_7__2 { pushFollow(FOLLOW_42); rule__GenerationTask__Group_3_7__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_7__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_7__1" // $ANTLR start "rule__GenerationTask__Group_3_7__1__Impl" // InternalApplicationConfiguration.g:7824:1: rule__GenerationTask__Group_3_7__1__Impl : ( '=' ) ; public final void rule__GenerationTask__Group_3_7__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7828:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:7829:1: ( '=' ) { // InternalApplicationConfiguration.g:7829:1: ( '=' ) // InternalApplicationConfiguration.g:7830:2: '=' { before(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_7_1()); match(input,22,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_7_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_7__1__Impl" // $ANTLR start "rule__GenerationTask__Group_3_7__2" // InternalApplicationConfiguration.g:7839:1: rule__GenerationTask__Group_3_7__2 : rule__GenerationTask__Group_3_7__2__Impl ; public final void rule__GenerationTask__Group_3_7__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7843:1: ( rule__GenerationTask__Group_3_7__2__Impl ) // InternalApplicationConfiguration.g:7844:2: rule__GenerationTask__Group_3_7__2__Impl { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_7__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_7__2" // $ANTLR start "rule__GenerationTask__Group_3_7__2__Impl" // InternalApplicationConfiguration.g:7850:1: rule__GenerationTask__Group_3_7__2__Impl : ( ( rule__GenerationTask__ConfigAssignment_3_7_2 ) ) ; public final void rule__GenerationTask__Group_3_7__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7854:1: ( ( ( rule__GenerationTask__ConfigAssignment_3_7_2 ) ) ) // InternalApplicationConfiguration.g:7855:1: ( ( rule__GenerationTask__ConfigAssignment_3_7_2 ) ) { // InternalApplicationConfiguration.g:7855:1: ( ( rule__GenerationTask__ConfigAssignment_3_7_2 ) ) // InternalApplicationConfiguration.g:7856:2: ( rule__GenerationTask__ConfigAssignment_3_7_2 ) { before(grammarAccess.getGenerationTaskAccess().getConfigAssignment_3_7_2()); // InternalApplicationConfiguration.g:7857:2: ( rule__GenerationTask__ConfigAssignment_3_7_2 ) // InternalApplicationConfiguration.g:7857:3: rule__GenerationTask__ConfigAssignment_3_7_2 { pushFollow(FOLLOW_2); rule__GenerationTask__ConfigAssignment_3_7_2(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getConfigAssignment_3_7_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_7__2__Impl" // $ANTLR start "rule__GenerationTask__Group_3_8__0" // InternalApplicationConfiguration.g:7866:1: rule__GenerationTask__Group_3_8__0 : rule__GenerationTask__Group_3_8__0__Impl rule__GenerationTask__Group_3_8__1 ; public final void rule__GenerationTask__Group_3_8__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7870:1: ( rule__GenerationTask__Group_3_8__0__Impl rule__GenerationTask__Group_3_8__1 ) // InternalApplicationConfiguration.g:7871:2: rule__GenerationTask__Group_3_8__0__Impl rule__GenerationTask__Group_3_8__1 { pushFollow(FOLLOW_12); rule__GenerationTask__Group_3_8__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_8__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_8__0" // $ANTLR start "rule__GenerationTask__Group_3_8__0__Impl" // InternalApplicationConfiguration.g:7878:1: rule__GenerationTask__Group_3_8__0__Impl : ( 'debug' ) ; public final void rule__GenerationTask__Group_3_8__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7882:1: ( ( 'debug' ) ) // InternalApplicationConfiguration.g:7883:1: ( 'debug' ) { // InternalApplicationConfiguration.g:7883:1: ( 'debug' ) // InternalApplicationConfiguration.g:7884:2: 'debug' { before(grammarAccess.getGenerationTaskAccess().getDebugKeyword_3_8_0()); match(input,49,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getDebugKeyword_3_8_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_8__0__Impl" // $ANTLR start "rule__GenerationTask__Group_3_8__1" // InternalApplicationConfiguration.g:7893:1: rule__GenerationTask__Group_3_8__1 : rule__GenerationTask__Group_3_8__1__Impl rule__GenerationTask__Group_3_8__2 ; public final void rule__GenerationTask__Group_3_8__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7897:1: ( rule__GenerationTask__Group_3_8__1__Impl rule__GenerationTask__Group_3_8__2 ) // InternalApplicationConfiguration.g:7898:2: rule__GenerationTask__Group_3_8__1__Impl rule__GenerationTask__Group_3_8__2 { pushFollow(FOLLOW_20); rule__GenerationTask__Group_3_8__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_8__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_8__1" // $ANTLR start "rule__GenerationTask__Group_3_8__1__Impl" // InternalApplicationConfiguration.g:7905:1: rule__GenerationTask__Group_3_8__1__Impl : ( '=' ) ; public final void rule__GenerationTask__Group_3_8__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7909:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:7910:1: ( '=' ) { // InternalApplicationConfiguration.g:7910:1: ( '=' ) // InternalApplicationConfiguration.g:7911:2: '=' { before(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_8_1()); match(input,22,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_8_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_8__1__Impl" // $ANTLR start "rule__GenerationTask__Group_3_8__2" // InternalApplicationConfiguration.g:7920:1: rule__GenerationTask__Group_3_8__2 : rule__GenerationTask__Group_3_8__2__Impl ; public final void rule__GenerationTask__Group_3_8__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7924:1: ( rule__GenerationTask__Group_3_8__2__Impl ) // InternalApplicationConfiguration.g:7925:2: rule__GenerationTask__Group_3_8__2__Impl { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_8__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_8__2" // $ANTLR start "rule__GenerationTask__Group_3_8__2__Impl" // InternalApplicationConfiguration.g:7931:1: rule__GenerationTask__Group_3_8__2__Impl : ( ( rule__GenerationTask__DebugFolderAssignment_3_8_2 ) ) ; public final void rule__GenerationTask__Group_3_8__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7935:1: ( ( ( rule__GenerationTask__DebugFolderAssignment_3_8_2 ) ) ) // InternalApplicationConfiguration.g:7936:1: ( ( rule__GenerationTask__DebugFolderAssignment_3_8_2 ) ) { // InternalApplicationConfiguration.g:7936:1: ( ( rule__GenerationTask__DebugFolderAssignment_3_8_2 ) ) // InternalApplicationConfiguration.g:7937:2: ( rule__GenerationTask__DebugFolderAssignment_3_8_2 ) { before(grammarAccess.getGenerationTaskAccess().getDebugFolderAssignment_3_8_2()); // InternalApplicationConfiguration.g:7938:2: ( rule__GenerationTask__DebugFolderAssignment_3_8_2 ) // InternalApplicationConfiguration.g:7938:3: rule__GenerationTask__DebugFolderAssignment_3_8_2 { pushFollow(FOLLOW_2); rule__GenerationTask__DebugFolderAssignment_3_8_2(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getDebugFolderAssignment_3_8_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_8__2__Impl" // $ANTLR start "rule__GenerationTask__Group_3_9__0" // InternalApplicationConfiguration.g:7947:1: rule__GenerationTask__Group_3_9__0 : rule__GenerationTask__Group_3_9__0__Impl rule__GenerationTask__Group_3_9__1 ; public final void rule__GenerationTask__Group_3_9__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7951:1: ( rule__GenerationTask__Group_3_9__0__Impl rule__GenerationTask__Group_3_9__1 ) // InternalApplicationConfiguration.g:7952:2: rule__GenerationTask__Group_3_9__0__Impl rule__GenerationTask__Group_3_9__1 { pushFollow(FOLLOW_12); rule__GenerationTask__Group_3_9__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_9__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_9__0" // $ANTLR start "rule__GenerationTask__Group_3_9__0__Impl" // InternalApplicationConfiguration.g:7959:1: rule__GenerationTask__Group_3_9__0__Impl : ( 'log' ) ; public final void rule__GenerationTask__Group_3_9__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7963:1: ( ( 'log' ) ) // InternalApplicationConfiguration.g:7964:1: ( 'log' ) { // InternalApplicationConfiguration.g:7964:1: ( 'log' ) // InternalApplicationConfiguration.g:7965:2: 'log' { before(grammarAccess.getGenerationTaskAccess().getLogKeyword_3_9_0()); match(input,50,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getLogKeyword_3_9_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_9__0__Impl" // $ANTLR start "rule__GenerationTask__Group_3_9__1" // InternalApplicationConfiguration.g:7974:1: rule__GenerationTask__Group_3_9__1 : rule__GenerationTask__Group_3_9__1__Impl rule__GenerationTask__Group_3_9__2 ; public final void rule__GenerationTask__Group_3_9__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7978:1: ( rule__GenerationTask__Group_3_9__1__Impl rule__GenerationTask__Group_3_9__2 ) // InternalApplicationConfiguration.g:7979:2: rule__GenerationTask__Group_3_9__1__Impl rule__GenerationTask__Group_3_9__2 { pushFollow(FOLLOW_20); rule__GenerationTask__Group_3_9__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_9__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_9__1" // $ANTLR start "rule__GenerationTask__Group_3_9__1__Impl" // InternalApplicationConfiguration.g:7986:1: rule__GenerationTask__Group_3_9__1__Impl : ( '=' ) ; public final void rule__GenerationTask__Group_3_9__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:7990:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:7991:1: ( '=' ) { // InternalApplicationConfiguration.g:7991:1: ( '=' ) // InternalApplicationConfiguration.g:7992:2: '=' { before(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_9_1()); match(input,22,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_9_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_9__1__Impl" // $ANTLR start "rule__GenerationTask__Group_3_9__2" // InternalApplicationConfiguration.g:8001:1: rule__GenerationTask__Group_3_9__2 : rule__GenerationTask__Group_3_9__2__Impl ; public final void rule__GenerationTask__Group_3_9__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8005:1: ( rule__GenerationTask__Group_3_9__2__Impl ) // InternalApplicationConfiguration.g:8006:2: rule__GenerationTask__Group_3_9__2__Impl { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_9__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_9__2" // $ANTLR start "rule__GenerationTask__Group_3_9__2__Impl" // InternalApplicationConfiguration.g:8012:1: rule__GenerationTask__Group_3_9__2__Impl : ( ( rule__GenerationTask__TargetLogFileAssignment_3_9_2 ) ) ; public final void rule__GenerationTask__Group_3_9__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8016:1: ( ( ( rule__GenerationTask__TargetLogFileAssignment_3_9_2 ) ) ) // InternalApplicationConfiguration.g:8017:1: ( ( rule__GenerationTask__TargetLogFileAssignment_3_9_2 ) ) { // InternalApplicationConfiguration.g:8017:1: ( ( rule__GenerationTask__TargetLogFileAssignment_3_9_2 ) ) // InternalApplicationConfiguration.g:8018:2: ( rule__GenerationTask__TargetLogFileAssignment_3_9_2 ) { before(grammarAccess.getGenerationTaskAccess().getTargetLogFileAssignment_3_9_2()); // InternalApplicationConfiguration.g:8019:2: ( rule__GenerationTask__TargetLogFileAssignment_3_9_2 ) // InternalApplicationConfiguration.g:8019:3: rule__GenerationTask__TargetLogFileAssignment_3_9_2 { pushFollow(FOLLOW_2); rule__GenerationTask__TargetLogFileAssignment_3_9_2(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getTargetLogFileAssignment_3_9_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_9__2__Impl" // $ANTLR start "rule__GenerationTask__Group_3_10__0" // InternalApplicationConfiguration.g:8028:1: rule__GenerationTask__Group_3_10__0 : rule__GenerationTask__Group_3_10__0__Impl rule__GenerationTask__Group_3_10__1 ; public final void rule__GenerationTask__Group_3_10__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8032:1: ( rule__GenerationTask__Group_3_10__0__Impl rule__GenerationTask__Group_3_10__1 ) // InternalApplicationConfiguration.g:8033:2: rule__GenerationTask__Group_3_10__0__Impl rule__GenerationTask__Group_3_10__1 { pushFollow(FOLLOW_12); rule__GenerationTask__Group_3_10__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_10__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_10__0" // $ANTLR start "rule__GenerationTask__Group_3_10__0__Impl" // InternalApplicationConfiguration.g:8040:1: rule__GenerationTask__Group_3_10__0__Impl : ( 'statistics' ) ; public final void rule__GenerationTask__Group_3_10__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8044:1: ( ( 'statistics' ) ) // InternalApplicationConfiguration.g:8045:1: ( 'statistics' ) { // InternalApplicationConfiguration.g:8045:1: ( 'statistics' ) // InternalApplicationConfiguration.g:8046:2: 'statistics' { before(grammarAccess.getGenerationTaskAccess().getStatisticsKeyword_3_10_0()); match(input,51,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getStatisticsKeyword_3_10_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_10__0__Impl" // $ANTLR start "rule__GenerationTask__Group_3_10__1" // InternalApplicationConfiguration.g:8055:1: rule__GenerationTask__Group_3_10__1 : rule__GenerationTask__Group_3_10__1__Impl rule__GenerationTask__Group_3_10__2 ; public final void rule__GenerationTask__Group_3_10__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8059:1: ( rule__GenerationTask__Group_3_10__1__Impl rule__GenerationTask__Group_3_10__2 ) // InternalApplicationConfiguration.g:8060:2: rule__GenerationTask__Group_3_10__1__Impl rule__GenerationTask__Group_3_10__2 { pushFollow(FOLLOW_20); rule__GenerationTask__Group_3_10__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_10__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_10__1" // $ANTLR start "rule__GenerationTask__Group_3_10__1__Impl" // InternalApplicationConfiguration.g:8067:1: rule__GenerationTask__Group_3_10__1__Impl : ( '=' ) ; public final void rule__GenerationTask__Group_3_10__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8071:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:8072:1: ( '=' ) { // InternalApplicationConfiguration.g:8072:1: ( '=' ) // InternalApplicationConfiguration.g:8073:2: '=' { before(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_10_1()); match(input,22,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_10_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_10__1__Impl" // $ANTLR start "rule__GenerationTask__Group_3_10__2" // InternalApplicationConfiguration.g:8082:1: rule__GenerationTask__Group_3_10__2 : rule__GenerationTask__Group_3_10__2__Impl ; public final void rule__GenerationTask__Group_3_10__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8086:1: ( rule__GenerationTask__Group_3_10__2__Impl ) // InternalApplicationConfiguration.g:8087:2: rule__GenerationTask__Group_3_10__2__Impl { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_10__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_10__2" // $ANTLR start "rule__GenerationTask__Group_3_10__2__Impl" // InternalApplicationConfiguration.g:8093:1: rule__GenerationTask__Group_3_10__2__Impl : ( ( rule__GenerationTask__TargetStatisticsFileAssignment_3_10_2 ) ) ; public final void rule__GenerationTask__Group_3_10__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8097:1: ( ( ( rule__GenerationTask__TargetStatisticsFileAssignment_3_10_2 ) ) ) // InternalApplicationConfiguration.g:8098:1: ( ( rule__GenerationTask__TargetStatisticsFileAssignment_3_10_2 ) ) { // InternalApplicationConfiguration.g:8098:1: ( ( rule__GenerationTask__TargetStatisticsFileAssignment_3_10_2 ) ) // InternalApplicationConfiguration.g:8099:2: ( rule__GenerationTask__TargetStatisticsFileAssignment_3_10_2 ) { before(grammarAccess.getGenerationTaskAccess().getTargetStatisticsFileAssignment_3_10_2()); // InternalApplicationConfiguration.g:8100:2: ( rule__GenerationTask__TargetStatisticsFileAssignment_3_10_2 ) // InternalApplicationConfiguration.g:8100:3: rule__GenerationTask__TargetStatisticsFileAssignment_3_10_2 { pushFollow(FOLLOW_2); rule__GenerationTask__TargetStatisticsFileAssignment_3_10_2(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getTargetStatisticsFileAssignment_3_10_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_10__2__Impl" // $ANTLR start "rule__GenerationTask__Group_3_11__0" // InternalApplicationConfiguration.g:8109:1: rule__GenerationTask__Group_3_11__0 : rule__GenerationTask__Group_3_11__0__Impl rule__GenerationTask__Group_3_11__1 ; public final void rule__GenerationTask__Group_3_11__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8113:1: ( rule__GenerationTask__Group_3_11__0__Impl rule__GenerationTask__Group_3_11__1 ) // InternalApplicationConfiguration.g:8114:2: rule__GenerationTask__Group_3_11__0__Impl rule__GenerationTask__Group_3_11__1 { pushFollow(FOLLOW_12); rule__GenerationTask__Group_3_11__0__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_11__1(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_11__0" // $ANTLR start "rule__GenerationTask__Group_3_11__0__Impl" // InternalApplicationConfiguration.g:8121:1: rule__GenerationTask__Group_3_11__0__Impl : ( 'output' ) ; public final void rule__GenerationTask__Group_3_11__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8125:1: ( ( 'output' ) ) // InternalApplicationConfiguration.g:8126:1: ( 'output' ) { // InternalApplicationConfiguration.g:8126:1: ( 'output' ) // InternalApplicationConfiguration.g:8127:2: 'output' { before(grammarAccess.getGenerationTaskAccess().getOutputKeyword_3_11_0()); match(input,52,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getOutputKeyword_3_11_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_11__0__Impl" // $ANTLR start "rule__GenerationTask__Group_3_11__1" // InternalApplicationConfiguration.g:8136:1: rule__GenerationTask__Group_3_11__1 : rule__GenerationTask__Group_3_11__1__Impl rule__GenerationTask__Group_3_11__2 ; public final void rule__GenerationTask__Group_3_11__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8140:1: ( rule__GenerationTask__Group_3_11__1__Impl rule__GenerationTask__Group_3_11__2 ) // InternalApplicationConfiguration.g:8141:2: rule__GenerationTask__Group_3_11__1__Impl rule__GenerationTask__Group_3_11__2 { pushFollow(FOLLOW_20); rule__GenerationTask__Group_3_11__1__Impl(); state._fsp--; pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_11__2(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_11__1" // $ANTLR start "rule__GenerationTask__Group_3_11__1__Impl" // InternalApplicationConfiguration.g:8148:1: rule__GenerationTask__Group_3_11__1__Impl : ( '=' ) ; public final void rule__GenerationTask__Group_3_11__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8152:1: ( ( '=' ) ) // InternalApplicationConfiguration.g:8153:1: ( '=' ) { // InternalApplicationConfiguration.g:8153:1: ( '=' ) // InternalApplicationConfiguration.g:8154:2: '=' { before(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_11_1()); match(input,22,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getEqualsSignKeyword_3_11_1()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_11__1__Impl" // $ANTLR start "rule__GenerationTask__Group_3_11__2" // InternalApplicationConfiguration.g:8163:1: rule__GenerationTask__Group_3_11__2 : rule__GenerationTask__Group_3_11__2__Impl ; public final void rule__GenerationTask__Group_3_11__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8167:1: ( rule__GenerationTask__Group_3_11__2__Impl ) // InternalApplicationConfiguration.g:8168:2: rule__GenerationTask__Group_3_11__2__Impl { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_11__2__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_11__2" // $ANTLR start "rule__GenerationTask__Group_3_11__2__Impl" // InternalApplicationConfiguration.g:8174:1: rule__GenerationTask__Group_3_11__2__Impl : ( ( rule__GenerationTask__TagetFolderAssignment_3_11_2 ) ) ; public final void rule__GenerationTask__Group_3_11__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8178:1: ( ( ( rule__GenerationTask__TagetFolderAssignment_3_11_2 ) ) ) // InternalApplicationConfiguration.g:8179:1: ( ( rule__GenerationTask__TagetFolderAssignment_3_11_2 ) ) { // InternalApplicationConfiguration.g:8179:1: ( ( rule__GenerationTask__TagetFolderAssignment_3_11_2 ) ) // InternalApplicationConfiguration.g:8180:2: ( rule__GenerationTask__TagetFolderAssignment_3_11_2 ) { before(grammarAccess.getGenerationTaskAccess().getTagetFolderAssignment_3_11_2()); // InternalApplicationConfiguration.g:8181:2: ( rule__GenerationTask__TagetFolderAssignment_3_11_2 ) // InternalApplicationConfiguration.g:8181:3: rule__GenerationTask__TagetFolderAssignment_3_11_2 { pushFollow(FOLLOW_2); rule__GenerationTask__TagetFolderAssignment_3_11_2(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getTagetFolderAssignment_3_11_2()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__Group_3_11__2__Impl" // $ANTLR start "rule__GenerationTask__UnorderedGroup_3" // InternalApplicationConfiguration.g:8190:1: rule__GenerationTask__UnorderedGroup_3 : ( rule__GenerationTask__UnorderedGroup_3__0 )? ; public final void rule__GenerationTask__UnorderedGroup_3() throws RecognitionException { int stackSize = keepStackSize(); getUnorderedGroupHelper().enter(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3()); try { // InternalApplicationConfiguration.g:8195:1: ( ( rule__GenerationTask__UnorderedGroup_3__0 )? ) // InternalApplicationConfiguration.g:8196:2: ( rule__GenerationTask__UnorderedGroup_3__0 )? { // InternalApplicationConfiguration.g:8196:2: ( rule__GenerationTask__UnorderedGroup_3__0 )? int alt54=2; alt54 = dfa54.predict(input); switch (alt54) { case 1 : // InternalApplicationConfiguration.g:8196:2: rule__GenerationTask__UnorderedGroup_3__0 { pushFollow(FOLLOW_2); rule__GenerationTask__UnorderedGroup_3__0(); state._fsp--; } break; } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { getUnorderedGroupHelper().leave(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3()); restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__UnorderedGroup_3" // $ANTLR start "rule__GenerationTask__UnorderedGroup_3__Impl" // InternalApplicationConfiguration.g:8204:1: rule__GenerationTask__UnorderedGroup_3__Impl : ( ({...}? => ( ( ( rule__GenerationTask__Group_3_0__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_1__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_2__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_3__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_4__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_5__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_6__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_7__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_8__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_9__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_10__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_11__0 ) ) ) ) ) ; public final void rule__GenerationTask__UnorderedGroup_3__Impl() throws RecognitionException { int stackSize = keepStackSize(); boolean selected = false; try { // InternalApplicationConfiguration.g:8209:1: ( ( ({...}? => ( ( ( rule__GenerationTask__Group_3_0__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_1__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_2__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_3__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_4__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_5__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_6__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_7__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_8__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_9__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_10__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_11__0 ) ) ) ) ) ) // InternalApplicationConfiguration.g:8210:3: ( ({...}? => ( ( ( rule__GenerationTask__Group_3_0__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_1__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_2__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_3__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_4__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_5__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_6__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_7__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_8__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_9__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_10__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_11__0 ) ) ) ) ) { // InternalApplicationConfiguration.g:8210:3: ( ({...}? => ( ( ( rule__GenerationTask__Group_3_0__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_1__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_2__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_3__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_4__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_5__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_6__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_7__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_8__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_9__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_10__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_11__0 ) ) ) ) ) int alt55=12; alt55 = dfa55.predict(input); switch (alt55) { case 1 : // InternalApplicationConfiguration.g:8211:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_0__0 ) ) ) ) { // InternalApplicationConfiguration.g:8211:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_0__0 ) ) ) ) // InternalApplicationConfiguration.g:8212:4: {...}? => ( ( ( rule__GenerationTask__Group_3_0__0 ) ) ) { if ( ! getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0) ) { throw new FailedPredicateException(input, "rule__GenerationTask__UnorderedGroup_3__Impl", "getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0)"); } // InternalApplicationConfiguration.g:8212:110: ( ( ( rule__GenerationTask__Group_3_0__0 ) ) ) // InternalApplicationConfiguration.g:8213:5: ( ( rule__GenerationTask__Group_3_0__0 ) ) { getUnorderedGroupHelper().select(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0); selected = true; // InternalApplicationConfiguration.g:8219:5: ( ( rule__GenerationTask__Group_3_0__0 ) ) // InternalApplicationConfiguration.g:8220:6: ( rule__GenerationTask__Group_3_0__0 ) { before(grammarAccess.getGenerationTaskAccess().getGroup_3_0()); // InternalApplicationConfiguration.g:8221:6: ( rule__GenerationTask__Group_3_0__0 ) // InternalApplicationConfiguration.g:8221:7: rule__GenerationTask__Group_3_0__0 { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_0__0(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getGroup_3_0()); } } } } break; case 2 : // InternalApplicationConfiguration.g:8226:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_1__0 ) ) ) ) { // InternalApplicationConfiguration.g:8226:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_1__0 ) ) ) ) // InternalApplicationConfiguration.g:8227:4: {...}? => ( ( ( rule__GenerationTask__Group_3_1__0 ) ) ) { if ( ! getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1) ) { throw new FailedPredicateException(input, "rule__GenerationTask__UnorderedGroup_3__Impl", "getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1)"); } // InternalApplicationConfiguration.g:8227:110: ( ( ( rule__GenerationTask__Group_3_1__0 ) ) ) // InternalApplicationConfiguration.g:8228:5: ( ( rule__GenerationTask__Group_3_1__0 ) ) { getUnorderedGroupHelper().select(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1); selected = true; // InternalApplicationConfiguration.g:8234:5: ( ( rule__GenerationTask__Group_3_1__0 ) ) // InternalApplicationConfiguration.g:8235:6: ( rule__GenerationTask__Group_3_1__0 ) { before(grammarAccess.getGenerationTaskAccess().getGroup_3_1()); // InternalApplicationConfiguration.g:8236:6: ( rule__GenerationTask__Group_3_1__0 ) // InternalApplicationConfiguration.g:8236:7: rule__GenerationTask__Group_3_1__0 { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_1__0(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getGroup_3_1()); } } } } break; case 3 : // InternalApplicationConfiguration.g:8241:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_2__0 ) ) ) ) { // InternalApplicationConfiguration.g:8241:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_2__0 ) ) ) ) // InternalApplicationConfiguration.g:8242:4: {...}? => ( ( ( rule__GenerationTask__Group_3_2__0 ) ) ) { if ( ! getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2) ) { throw new FailedPredicateException(input, "rule__GenerationTask__UnorderedGroup_3__Impl", "getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2)"); } // InternalApplicationConfiguration.g:8242:110: ( ( ( rule__GenerationTask__Group_3_2__0 ) ) ) // InternalApplicationConfiguration.g:8243:5: ( ( rule__GenerationTask__Group_3_2__0 ) ) { getUnorderedGroupHelper().select(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2); selected = true; // InternalApplicationConfiguration.g:8249:5: ( ( rule__GenerationTask__Group_3_2__0 ) ) // InternalApplicationConfiguration.g:8250:6: ( rule__GenerationTask__Group_3_2__0 ) { before(grammarAccess.getGenerationTaskAccess().getGroup_3_2()); // InternalApplicationConfiguration.g:8251:6: ( rule__GenerationTask__Group_3_2__0 ) // InternalApplicationConfiguration.g:8251:7: rule__GenerationTask__Group_3_2__0 { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_2__0(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getGroup_3_2()); } } } } break; case 4 : // InternalApplicationConfiguration.g:8256:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_3__0 ) ) ) ) { // InternalApplicationConfiguration.g:8256:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_3__0 ) ) ) ) // InternalApplicationConfiguration.g:8257:4: {...}? => ( ( ( rule__GenerationTask__Group_3_3__0 ) ) ) { if ( ! getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3) ) { throw new FailedPredicateException(input, "rule__GenerationTask__UnorderedGroup_3__Impl", "getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3)"); } // InternalApplicationConfiguration.g:8257:110: ( ( ( rule__GenerationTask__Group_3_3__0 ) ) ) // InternalApplicationConfiguration.g:8258:5: ( ( rule__GenerationTask__Group_3_3__0 ) ) { getUnorderedGroupHelper().select(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3); selected = true; // InternalApplicationConfiguration.g:8264:5: ( ( rule__GenerationTask__Group_3_3__0 ) ) // InternalApplicationConfiguration.g:8265:6: ( rule__GenerationTask__Group_3_3__0 ) { before(grammarAccess.getGenerationTaskAccess().getGroup_3_3()); // InternalApplicationConfiguration.g:8266:6: ( rule__GenerationTask__Group_3_3__0 ) // InternalApplicationConfiguration.g:8266:7: rule__GenerationTask__Group_3_3__0 { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_3__0(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getGroup_3_3()); } } } } break; case 5 : // InternalApplicationConfiguration.g:8271:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_4__0 ) ) ) ) { // InternalApplicationConfiguration.g:8271:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_4__0 ) ) ) ) // InternalApplicationConfiguration.g:8272:4: {...}? => ( ( ( rule__GenerationTask__Group_3_4__0 ) ) ) { if ( ! getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4) ) { throw new FailedPredicateException(input, "rule__GenerationTask__UnorderedGroup_3__Impl", "getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4)"); } // InternalApplicationConfiguration.g:8272:110: ( ( ( rule__GenerationTask__Group_3_4__0 ) ) ) // InternalApplicationConfiguration.g:8273:5: ( ( rule__GenerationTask__Group_3_4__0 ) ) { getUnorderedGroupHelper().select(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4); selected = true; // InternalApplicationConfiguration.g:8279:5: ( ( rule__GenerationTask__Group_3_4__0 ) ) // InternalApplicationConfiguration.g:8280:6: ( rule__GenerationTask__Group_3_4__0 ) { before(grammarAccess.getGenerationTaskAccess().getGroup_3_4()); // InternalApplicationConfiguration.g:8281:6: ( rule__GenerationTask__Group_3_4__0 ) // InternalApplicationConfiguration.g:8281:7: rule__GenerationTask__Group_3_4__0 { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_4__0(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getGroup_3_4()); } } } } break; case 6 : // InternalApplicationConfiguration.g:8286:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_5__0 ) ) ) ) { // InternalApplicationConfiguration.g:8286:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_5__0 ) ) ) ) // InternalApplicationConfiguration.g:8287:4: {...}? => ( ( ( rule__GenerationTask__Group_3_5__0 ) ) ) { if ( ! getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5) ) { throw new FailedPredicateException(input, "rule__GenerationTask__UnorderedGroup_3__Impl", "getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5)"); } // InternalApplicationConfiguration.g:8287:110: ( ( ( rule__GenerationTask__Group_3_5__0 ) ) ) // InternalApplicationConfiguration.g:8288:5: ( ( rule__GenerationTask__Group_3_5__0 ) ) { getUnorderedGroupHelper().select(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5); selected = true; // InternalApplicationConfiguration.g:8294:5: ( ( rule__GenerationTask__Group_3_5__0 ) ) // InternalApplicationConfiguration.g:8295:6: ( rule__GenerationTask__Group_3_5__0 ) { before(grammarAccess.getGenerationTaskAccess().getGroup_3_5()); // InternalApplicationConfiguration.g:8296:6: ( rule__GenerationTask__Group_3_5__0 ) // InternalApplicationConfiguration.g:8296:7: rule__GenerationTask__Group_3_5__0 { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_5__0(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getGroup_3_5()); } } } } break; case 7 : // InternalApplicationConfiguration.g:8301:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_6__0 ) ) ) ) { // InternalApplicationConfiguration.g:8301:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_6__0 ) ) ) ) // InternalApplicationConfiguration.g:8302:4: {...}? => ( ( ( rule__GenerationTask__Group_3_6__0 ) ) ) { if ( ! getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6) ) { throw new FailedPredicateException(input, "rule__GenerationTask__UnorderedGroup_3__Impl", "getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6)"); } // InternalApplicationConfiguration.g:8302:110: ( ( ( rule__GenerationTask__Group_3_6__0 ) ) ) // InternalApplicationConfiguration.g:8303:5: ( ( rule__GenerationTask__Group_3_6__0 ) ) { getUnorderedGroupHelper().select(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6); selected = true; // InternalApplicationConfiguration.g:8309:5: ( ( rule__GenerationTask__Group_3_6__0 ) ) // InternalApplicationConfiguration.g:8310:6: ( rule__GenerationTask__Group_3_6__0 ) { before(grammarAccess.getGenerationTaskAccess().getGroup_3_6()); // InternalApplicationConfiguration.g:8311:6: ( rule__GenerationTask__Group_3_6__0 ) // InternalApplicationConfiguration.g:8311:7: rule__GenerationTask__Group_3_6__0 { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_6__0(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getGroup_3_6()); } } } } break; case 8 : // InternalApplicationConfiguration.g:8316:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_7__0 ) ) ) ) { // InternalApplicationConfiguration.g:8316:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_7__0 ) ) ) ) // InternalApplicationConfiguration.g:8317:4: {...}? => ( ( ( rule__GenerationTask__Group_3_7__0 ) ) ) { if ( ! getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7) ) { throw new FailedPredicateException(input, "rule__GenerationTask__UnorderedGroup_3__Impl", "getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7)"); } // InternalApplicationConfiguration.g:8317:110: ( ( ( rule__GenerationTask__Group_3_7__0 ) ) ) // InternalApplicationConfiguration.g:8318:5: ( ( rule__GenerationTask__Group_3_7__0 ) ) { getUnorderedGroupHelper().select(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7); selected = true; // InternalApplicationConfiguration.g:8324:5: ( ( rule__GenerationTask__Group_3_7__0 ) ) // InternalApplicationConfiguration.g:8325:6: ( rule__GenerationTask__Group_3_7__0 ) { before(grammarAccess.getGenerationTaskAccess().getGroup_3_7()); // InternalApplicationConfiguration.g:8326:6: ( rule__GenerationTask__Group_3_7__0 ) // InternalApplicationConfiguration.g:8326:7: rule__GenerationTask__Group_3_7__0 { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_7__0(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getGroup_3_7()); } } } } break; case 9 : // InternalApplicationConfiguration.g:8331:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_8__0 ) ) ) ) { // InternalApplicationConfiguration.g:8331:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_8__0 ) ) ) ) // InternalApplicationConfiguration.g:8332:4: {...}? => ( ( ( rule__GenerationTask__Group_3_8__0 ) ) ) { if ( ! getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8) ) { throw new FailedPredicateException(input, "rule__GenerationTask__UnorderedGroup_3__Impl", "getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8)"); } // InternalApplicationConfiguration.g:8332:110: ( ( ( rule__GenerationTask__Group_3_8__0 ) ) ) // InternalApplicationConfiguration.g:8333:5: ( ( rule__GenerationTask__Group_3_8__0 ) ) { getUnorderedGroupHelper().select(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8); selected = true; // InternalApplicationConfiguration.g:8339:5: ( ( rule__GenerationTask__Group_3_8__0 ) ) // InternalApplicationConfiguration.g:8340:6: ( rule__GenerationTask__Group_3_8__0 ) { before(grammarAccess.getGenerationTaskAccess().getGroup_3_8()); // InternalApplicationConfiguration.g:8341:6: ( rule__GenerationTask__Group_3_8__0 ) // InternalApplicationConfiguration.g:8341:7: rule__GenerationTask__Group_3_8__0 { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_8__0(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getGroup_3_8()); } } } } break; case 10 : // InternalApplicationConfiguration.g:8346:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_9__0 ) ) ) ) { // InternalApplicationConfiguration.g:8346:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_9__0 ) ) ) ) // InternalApplicationConfiguration.g:8347:4: {...}? => ( ( ( rule__GenerationTask__Group_3_9__0 ) ) ) { if ( ! getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9) ) { throw new FailedPredicateException(input, "rule__GenerationTask__UnorderedGroup_3__Impl", "getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9)"); } // InternalApplicationConfiguration.g:8347:110: ( ( ( rule__GenerationTask__Group_3_9__0 ) ) ) // InternalApplicationConfiguration.g:8348:5: ( ( rule__GenerationTask__Group_3_9__0 ) ) { getUnorderedGroupHelper().select(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9); selected = true; // InternalApplicationConfiguration.g:8354:5: ( ( rule__GenerationTask__Group_3_9__0 ) ) // InternalApplicationConfiguration.g:8355:6: ( rule__GenerationTask__Group_3_9__0 ) { before(grammarAccess.getGenerationTaskAccess().getGroup_3_9()); // InternalApplicationConfiguration.g:8356:6: ( rule__GenerationTask__Group_3_9__0 ) // InternalApplicationConfiguration.g:8356:7: rule__GenerationTask__Group_3_9__0 { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_9__0(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getGroup_3_9()); } } } } break; case 11 : // InternalApplicationConfiguration.g:8361:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_10__0 ) ) ) ) { // InternalApplicationConfiguration.g:8361:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_10__0 ) ) ) ) // InternalApplicationConfiguration.g:8362:4: {...}? => ( ( ( rule__GenerationTask__Group_3_10__0 ) ) ) { if ( ! getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10) ) { throw new FailedPredicateException(input, "rule__GenerationTask__UnorderedGroup_3__Impl", "getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10)"); } // InternalApplicationConfiguration.g:8362:111: ( ( ( rule__GenerationTask__Group_3_10__0 ) ) ) // InternalApplicationConfiguration.g:8363:5: ( ( rule__GenerationTask__Group_3_10__0 ) ) { getUnorderedGroupHelper().select(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10); selected = true; // InternalApplicationConfiguration.g:8369:5: ( ( rule__GenerationTask__Group_3_10__0 ) ) // InternalApplicationConfiguration.g:8370:6: ( rule__GenerationTask__Group_3_10__0 ) { before(grammarAccess.getGenerationTaskAccess().getGroup_3_10()); // InternalApplicationConfiguration.g:8371:6: ( rule__GenerationTask__Group_3_10__0 ) // InternalApplicationConfiguration.g:8371:7: rule__GenerationTask__Group_3_10__0 { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_10__0(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getGroup_3_10()); } } } } break; case 12 : // InternalApplicationConfiguration.g:8376:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_11__0 ) ) ) ) { // InternalApplicationConfiguration.g:8376:3: ({...}? => ( ( ( rule__GenerationTask__Group_3_11__0 ) ) ) ) // InternalApplicationConfiguration.g:8377:4: {...}? => ( ( ( rule__GenerationTask__Group_3_11__0 ) ) ) { if ( ! getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11) ) { throw new FailedPredicateException(input, "rule__GenerationTask__UnorderedGroup_3__Impl", "getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11)"); } // InternalApplicationConfiguration.g:8377:111: ( ( ( rule__GenerationTask__Group_3_11__0 ) ) ) // InternalApplicationConfiguration.g:8378:5: ( ( rule__GenerationTask__Group_3_11__0 ) ) { getUnorderedGroupHelper().select(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11); selected = true; // InternalApplicationConfiguration.g:8384:5: ( ( rule__GenerationTask__Group_3_11__0 ) ) // InternalApplicationConfiguration.g:8385:6: ( rule__GenerationTask__Group_3_11__0 ) { before(grammarAccess.getGenerationTaskAccess().getGroup_3_11()); // InternalApplicationConfiguration.g:8386:6: ( rule__GenerationTask__Group_3_11__0 ) // InternalApplicationConfiguration.g:8386:7: rule__GenerationTask__Group_3_11__0 { pushFollow(FOLLOW_2); rule__GenerationTask__Group_3_11__0(); state._fsp--; } after(grammarAccess.getGenerationTaskAccess().getGroup_3_11()); } } } } break; } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { if (selected) getUnorderedGroupHelper().returnFromSelection(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3()); restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__UnorderedGroup_3__Impl" // $ANTLR start "rule__GenerationTask__UnorderedGroup_3__0" // InternalApplicationConfiguration.g:8399:1: rule__GenerationTask__UnorderedGroup_3__0 : rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__1 )? ; public final void rule__GenerationTask__UnorderedGroup_3__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8403:1: ( rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__1 )? ) // InternalApplicationConfiguration.g:8404:2: rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__1 )? { pushFollow(FOLLOW_44); rule__GenerationTask__UnorderedGroup_3__Impl(); state._fsp--; // InternalApplicationConfiguration.g:8405:2: ( rule__GenerationTask__UnorderedGroup_3__1 )? int alt56=2; alt56 = dfa56.predict(input); switch (alt56) { case 1 : // InternalApplicationConfiguration.g:8405:2: rule__GenerationTask__UnorderedGroup_3__1 { pushFollow(FOLLOW_2); rule__GenerationTask__UnorderedGroup_3__1(); state._fsp--; } break; } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__UnorderedGroup_3__0" // $ANTLR start "rule__GenerationTask__UnorderedGroup_3__1" // InternalApplicationConfiguration.g:8411:1: rule__GenerationTask__UnorderedGroup_3__1 : rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__2 )? ; public final void rule__GenerationTask__UnorderedGroup_3__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8415:1: ( rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__2 )? ) // InternalApplicationConfiguration.g:8416:2: rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__2 )? { pushFollow(FOLLOW_44); rule__GenerationTask__UnorderedGroup_3__Impl(); state._fsp--; // InternalApplicationConfiguration.g:8417:2: ( rule__GenerationTask__UnorderedGroup_3__2 )? int alt57=2; alt57 = dfa57.predict(input); switch (alt57) { case 1 : // InternalApplicationConfiguration.g:8417:2: rule__GenerationTask__UnorderedGroup_3__2 { pushFollow(FOLLOW_2); rule__GenerationTask__UnorderedGroup_3__2(); state._fsp--; } break; } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__UnorderedGroup_3__1" // $ANTLR start "rule__GenerationTask__UnorderedGroup_3__2" // InternalApplicationConfiguration.g:8423:1: rule__GenerationTask__UnorderedGroup_3__2 : rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__3 )? ; public final void rule__GenerationTask__UnorderedGroup_3__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8427:1: ( rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__3 )? ) // InternalApplicationConfiguration.g:8428:2: rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__3 )? { pushFollow(FOLLOW_44); rule__GenerationTask__UnorderedGroup_3__Impl(); state._fsp--; // InternalApplicationConfiguration.g:8429:2: ( rule__GenerationTask__UnorderedGroup_3__3 )? int alt58=2; alt58 = dfa58.predict(input); switch (alt58) { case 1 : // InternalApplicationConfiguration.g:8429:2: rule__GenerationTask__UnorderedGroup_3__3 { pushFollow(FOLLOW_2); rule__GenerationTask__UnorderedGroup_3__3(); state._fsp--; } break; } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__UnorderedGroup_3__2" // $ANTLR start "rule__GenerationTask__UnorderedGroup_3__3" // InternalApplicationConfiguration.g:8435:1: rule__GenerationTask__UnorderedGroup_3__3 : rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__4 )? ; public final void rule__GenerationTask__UnorderedGroup_3__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8439:1: ( rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__4 )? ) // InternalApplicationConfiguration.g:8440:2: rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__4 )? { pushFollow(FOLLOW_44); rule__GenerationTask__UnorderedGroup_3__Impl(); state._fsp--; // InternalApplicationConfiguration.g:8441:2: ( rule__GenerationTask__UnorderedGroup_3__4 )? int alt59=2; alt59 = dfa59.predict(input); switch (alt59) { case 1 : // InternalApplicationConfiguration.g:8441:2: rule__GenerationTask__UnorderedGroup_3__4 { pushFollow(FOLLOW_2); rule__GenerationTask__UnorderedGroup_3__4(); state._fsp--; } break; } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__UnorderedGroup_3__3" // $ANTLR start "rule__GenerationTask__UnorderedGroup_3__4" // InternalApplicationConfiguration.g:8447:1: rule__GenerationTask__UnorderedGroup_3__4 : rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__5 )? ; public final void rule__GenerationTask__UnorderedGroup_3__4() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8451:1: ( rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__5 )? ) // InternalApplicationConfiguration.g:8452:2: rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__5 )? { pushFollow(FOLLOW_44); rule__GenerationTask__UnorderedGroup_3__Impl(); state._fsp--; // InternalApplicationConfiguration.g:8453:2: ( rule__GenerationTask__UnorderedGroup_3__5 )? int alt60=2; alt60 = dfa60.predict(input); switch (alt60) { case 1 : // InternalApplicationConfiguration.g:8453:2: rule__GenerationTask__UnorderedGroup_3__5 { pushFollow(FOLLOW_2); rule__GenerationTask__UnorderedGroup_3__5(); state._fsp--; } break; } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__UnorderedGroup_3__4" // $ANTLR start "rule__GenerationTask__UnorderedGroup_3__5" // InternalApplicationConfiguration.g:8459:1: rule__GenerationTask__UnorderedGroup_3__5 : rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__6 )? ; public final void rule__GenerationTask__UnorderedGroup_3__5() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8463:1: ( rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__6 )? ) // InternalApplicationConfiguration.g:8464:2: rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__6 )? { pushFollow(FOLLOW_44); rule__GenerationTask__UnorderedGroup_3__Impl(); state._fsp--; // InternalApplicationConfiguration.g:8465:2: ( rule__GenerationTask__UnorderedGroup_3__6 )? int alt61=2; alt61 = dfa61.predict(input); switch (alt61) { case 1 : // InternalApplicationConfiguration.g:8465:2: rule__GenerationTask__UnorderedGroup_3__6 { pushFollow(FOLLOW_2); rule__GenerationTask__UnorderedGroup_3__6(); state._fsp--; } break; } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__UnorderedGroup_3__5" // $ANTLR start "rule__GenerationTask__UnorderedGroup_3__6" // InternalApplicationConfiguration.g:8471:1: rule__GenerationTask__UnorderedGroup_3__6 : rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__7 )? ; public final void rule__GenerationTask__UnorderedGroup_3__6() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8475:1: ( rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__7 )? ) // InternalApplicationConfiguration.g:8476:2: rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__7 )? { pushFollow(FOLLOW_44); rule__GenerationTask__UnorderedGroup_3__Impl(); state._fsp--; // InternalApplicationConfiguration.g:8477:2: ( rule__GenerationTask__UnorderedGroup_3__7 )? int alt62=2; alt62 = dfa62.predict(input); switch (alt62) { case 1 : // InternalApplicationConfiguration.g:8477:2: rule__GenerationTask__UnorderedGroup_3__7 { pushFollow(FOLLOW_2); rule__GenerationTask__UnorderedGroup_3__7(); state._fsp--; } break; } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__UnorderedGroup_3__6" // $ANTLR start "rule__GenerationTask__UnorderedGroup_3__7" // InternalApplicationConfiguration.g:8483:1: rule__GenerationTask__UnorderedGroup_3__7 : rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__8 )? ; public final void rule__GenerationTask__UnorderedGroup_3__7() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8487:1: ( rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__8 )? ) // InternalApplicationConfiguration.g:8488:2: rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__8 )? { pushFollow(FOLLOW_44); rule__GenerationTask__UnorderedGroup_3__Impl(); state._fsp--; // InternalApplicationConfiguration.g:8489:2: ( rule__GenerationTask__UnorderedGroup_3__8 )? int alt63=2; alt63 = dfa63.predict(input); switch (alt63) { case 1 : // InternalApplicationConfiguration.g:8489:2: rule__GenerationTask__UnorderedGroup_3__8 { pushFollow(FOLLOW_2); rule__GenerationTask__UnorderedGroup_3__8(); state._fsp--; } break; } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__UnorderedGroup_3__7" // $ANTLR start "rule__GenerationTask__UnorderedGroup_3__8" // InternalApplicationConfiguration.g:8495:1: rule__GenerationTask__UnorderedGroup_3__8 : rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__9 )? ; public final void rule__GenerationTask__UnorderedGroup_3__8() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8499:1: ( rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__9 )? ) // InternalApplicationConfiguration.g:8500:2: rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__9 )? { pushFollow(FOLLOW_44); rule__GenerationTask__UnorderedGroup_3__Impl(); state._fsp--; // InternalApplicationConfiguration.g:8501:2: ( rule__GenerationTask__UnorderedGroup_3__9 )? int alt64=2; alt64 = dfa64.predict(input); switch (alt64) { case 1 : // InternalApplicationConfiguration.g:8501:2: rule__GenerationTask__UnorderedGroup_3__9 { pushFollow(FOLLOW_2); rule__GenerationTask__UnorderedGroup_3__9(); state._fsp--; } break; } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__UnorderedGroup_3__8" // $ANTLR start "rule__GenerationTask__UnorderedGroup_3__9" // InternalApplicationConfiguration.g:8507:1: rule__GenerationTask__UnorderedGroup_3__9 : rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__10 )? ; public final void rule__GenerationTask__UnorderedGroup_3__9() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8511:1: ( rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__10 )? ) // InternalApplicationConfiguration.g:8512:2: rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__10 )? { pushFollow(FOLLOW_44); rule__GenerationTask__UnorderedGroup_3__Impl(); state._fsp--; // InternalApplicationConfiguration.g:8513:2: ( rule__GenerationTask__UnorderedGroup_3__10 )? int alt65=2; alt65 = dfa65.predict(input); switch (alt65) { case 1 : // InternalApplicationConfiguration.g:8513:2: rule__GenerationTask__UnorderedGroup_3__10 { pushFollow(FOLLOW_2); rule__GenerationTask__UnorderedGroup_3__10(); state._fsp--; } break; } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__UnorderedGroup_3__9" // $ANTLR start "rule__GenerationTask__UnorderedGroup_3__10" // InternalApplicationConfiguration.g:8519:1: rule__GenerationTask__UnorderedGroup_3__10 : rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__11 )? ; public final void rule__GenerationTask__UnorderedGroup_3__10() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8523:1: ( rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__11 )? ) // InternalApplicationConfiguration.g:8524:2: rule__GenerationTask__UnorderedGroup_3__Impl ( rule__GenerationTask__UnorderedGroup_3__11 )? { pushFollow(FOLLOW_44); rule__GenerationTask__UnorderedGroup_3__Impl(); state._fsp--; // InternalApplicationConfiguration.g:8525:2: ( rule__GenerationTask__UnorderedGroup_3__11 )? int alt66=2; alt66 = dfa66.predict(input); switch (alt66) { case 1 : // InternalApplicationConfiguration.g:8525:2: rule__GenerationTask__UnorderedGroup_3__11 { pushFollow(FOLLOW_2); rule__GenerationTask__UnorderedGroup_3__11(); state._fsp--; } break; } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__UnorderedGroup_3__10" // $ANTLR start "rule__GenerationTask__UnorderedGroup_3__11" // InternalApplicationConfiguration.g:8531:1: rule__GenerationTask__UnorderedGroup_3__11 : rule__GenerationTask__UnorderedGroup_3__Impl ; public final void rule__GenerationTask__UnorderedGroup_3__11() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8535:1: ( rule__GenerationTask__UnorderedGroup_3__Impl ) // InternalApplicationConfiguration.g:8536:2: rule__GenerationTask__UnorderedGroup_3__Impl { pushFollow(FOLLOW_2); rule__GenerationTask__UnorderedGroup_3__Impl(); state._fsp--; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__UnorderedGroup_3__11" // $ANTLR start "rule__ConfigurationScript__ImportsAssignment_0" // InternalApplicationConfiguration.g:8543:1: rule__ConfigurationScript__ImportsAssignment_0 : ( ruleImport ) ; public final void rule__ConfigurationScript__ImportsAssignment_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8547:1: ( ( ruleImport ) ) // InternalApplicationConfiguration.g:8548:2: ( ruleImport ) { // InternalApplicationConfiguration.g:8548:2: ( ruleImport ) // InternalApplicationConfiguration.g:8549:3: ruleImport { before(grammarAccess.getConfigurationScriptAccess().getImportsImportParserRuleCall_0_0()); pushFollow(FOLLOW_2); ruleImport(); state._fsp--; after(grammarAccess.getConfigurationScriptAccess().getImportsImportParserRuleCall_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigurationScript__ImportsAssignment_0" // $ANTLR start "rule__ConfigurationScript__CommandsAssignment_1" // InternalApplicationConfiguration.g:8558:1: rule__ConfigurationScript__CommandsAssignment_1 : ( ruleCommand ) ; public final void rule__ConfigurationScript__CommandsAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8562:1: ( ( ruleCommand ) ) // InternalApplicationConfiguration.g:8563:2: ( ruleCommand ) { // InternalApplicationConfiguration.g:8563:2: ( ruleCommand ) // InternalApplicationConfiguration.g:8564:3: ruleCommand { before(grammarAccess.getConfigurationScriptAccess().getCommandsCommandParserRuleCall_1_0()); pushFollow(FOLLOW_2); ruleCommand(); state._fsp--; after(grammarAccess.getConfigurationScriptAccess().getCommandsCommandParserRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigurationScript__CommandsAssignment_1" // $ANTLR start "rule__EPackageImport__ImportedPackageAssignment_2" // InternalApplicationConfiguration.g:8573:1: rule__EPackageImport__ImportedPackageAssignment_2 : ( ( RULE_STRING ) ) ; public final void rule__EPackageImport__ImportedPackageAssignment_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8577:1: ( ( ( RULE_STRING ) ) ) // InternalApplicationConfiguration.g:8578:2: ( ( RULE_STRING ) ) { // InternalApplicationConfiguration.g:8578:2: ( ( RULE_STRING ) ) // InternalApplicationConfiguration.g:8579:3: ( RULE_STRING ) { before(grammarAccess.getEPackageImportAccess().getImportedPackageEPackageCrossReference_2_0()); // InternalApplicationConfiguration.g:8580:3: ( RULE_STRING ) // InternalApplicationConfiguration.g:8581:4: RULE_STRING { before(grammarAccess.getEPackageImportAccess().getImportedPackageEPackageSTRINGTerminalRuleCall_2_0_1()); match(input,RULE_STRING,FOLLOW_2); after(grammarAccess.getEPackageImportAccess().getImportedPackageEPackageSTRINGTerminalRuleCall_2_0_1()); } after(grammarAccess.getEPackageImportAccess().getImportedPackageEPackageCrossReference_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__EPackageImport__ImportedPackageAssignment_2" // $ANTLR start "rule__ViatraImport__ImportedViatraAssignment_2" // InternalApplicationConfiguration.g:8592:1: rule__ViatraImport__ImportedViatraAssignment_2 : ( ( RULE_STRING ) ) ; public final void rule__ViatraImport__ImportedViatraAssignment_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8596:1: ( ( ( RULE_STRING ) ) ) // InternalApplicationConfiguration.g:8597:2: ( ( RULE_STRING ) ) { // InternalApplicationConfiguration.g:8597:2: ( ( RULE_STRING ) ) // InternalApplicationConfiguration.g:8598:3: ( RULE_STRING ) { before(grammarAccess.getViatraImportAccess().getImportedViatraPatternModelCrossReference_2_0()); // InternalApplicationConfiguration.g:8599:3: ( RULE_STRING ) // InternalApplicationConfiguration.g:8600:4: RULE_STRING { before(grammarAccess.getViatraImportAccess().getImportedViatraPatternModelSTRINGTerminalRuleCall_2_0_1()); match(input,RULE_STRING,FOLLOW_2); after(grammarAccess.getViatraImportAccess().getImportedViatraPatternModelSTRINGTerminalRuleCall_2_0_1()); } after(grammarAccess.getViatraImportAccess().getImportedViatraPatternModelCrossReference_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ViatraImport__ImportedViatraAssignment_2" // $ANTLR start "rule__FileSpecification__PathAssignment" // InternalApplicationConfiguration.g:8611:1: rule__FileSpecification__PathAssignment : ( RULE_STRING ) ; public final void rule__FileSpecification__PathAssignment() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8615:1: ( ( RULE_STRING ) ) // InternalApplicationConfiguration.g:8616:2: ( RULE_STRING ) { // InternalApplicationConfiguration.g:8616:2: ( RULE_STRING ) // InternalApplicationConfiguration.g:8617:3: RULE_STRING { before(grammarAccess.getFileSpecificationAccess().getPathSTRINGTerminalRuleCall_0()); match(input,RULE_STRING,FOLLOW_2); after(grammarAccess.getFileSpecificationAccess().getPathSTRINGTerminalRuleCall_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FileSpecification__PathAssignment" // $ANTLR start "rule__FileDeclaration__NameAssignment_1" // InternalApplicationConfiguration.g:8626:1: rule__FileDeclaration__NameAssignment_1 : ( RULE_ID ) ; public final void rule__FileDeclaration__NameAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8630:1: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:8631:2: ( RULE_ID ) { // InternalApplicationConfiguration.g:8631:2: ( RULE_ID ) // InternalApplicationConfiguration.g:8632:3: RULE_ID { before(grammarAccess.getFileDeclarationAccess().getNameIDTerminalRuleCall_1_0()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getFileDeclarationAccess().getNameIDTerminalRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FileDeclaration__NameAssignment_1" // $ANTLR start "rule__FileDeclaration__SpecificationAssignment_3" // InternalApplicationConfiguration.g:8641:1: rule__FileDeclaration__SpecificationAssignment_3 : ( ruleFileSpecification ) ; public final void rule__FileDeclaration__SpecificationAssignment_3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8645:1: ( ( ruleFileSpecification ) ) // InternalApplicationConfiguration.g:8646:2: ( ruleFileSpecification ) { // InternalApplicationConfiguration.g:8646:2: ( ruleFileSpecification ) // InternalApplicationConfiguration.g:8647:3: ruleFileSpecification { before(grammarAccess.getFileDeclarationAccess().getSpecificationFileSpecificationParserRuleCall_3_0()); pushFollow(FOLLOW_2); ruleFileSpecification(); state._fsp--; after(grammarAccess.getFileDeclarationAccess().getSpecificationFileSpecificationParserRuleCall_3_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FileDeclaration__SpecificationAssignment_3" // $ANTLR start "rule__FileReference__ReferredAssignment" // InternalApplicationConfiguration.g:8656:1: rule__FileReference__ReferredAssignment : ( ( RULE_ID ) ) ; public final void rule__FileReference__ReferredAssignment() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8660:1: ( ( ( RULE_ID ) ) ) // InternalApplicationConfiguration.g:8661:2: ( ( RULE_ID ) ) { // InternalApplicationConfiguration.g:8661:2: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:8662:3: ( RULE_ID ) { before(grammarAccess.getFileReferenceAccess().getReferredFileDeclarationCrossReference_0()); // InternalApplicationConfiguration.g:8663:3: ( RULE_ID ) // InternalApplicationConfiguration.g:8664:4: RULE_ID { before(grammarAccess.getFileReferenceAccess().getReferredFileDeclarationIDTerminalRuleCall_0_1()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getFileReferenceAccess().getReferredFileDeclarationIDTerminalRuleCall_0_1()); } after(grammarAccess.getFileReferenceAccess().getReferredFileDeclarationCrossReference_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FileReference__ReferredAssignment" // $ANTLR start "rule__MetamodelSpecification__EntriesAssignment_1" // InternalApplicationConfiguration.g:8675:1: rule__MetamodelSpecification__EntriesAssignment_1 : ( ruleMetamodelEntry ) ; public final void rule__MetamodelSpecification__EntriesAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8679:1: ( ( ruleMetamodelEntry ) ) // InternalApplicationConfiguration.g:8680:2: ( ruleMetamodelEntry ) { // InternalApplicationConfiguration.g:8680:2: ( ruleMetamodelEntry ) // InternalApplicationConfiguration.g:8681:3: ruleMetamodelEntry { before(grammarAccess.getMetamodelSpecificationAccess().getEntriesMetamodelEntryParserRuleCall_1_0()); pushFollow(FOLLOW_2); ruleMetamodelEntry(); state._fsp--; after(grammarAccess.getMetamodelSpecificationAccess().getEntriesMetamodelEntryParserRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelSpecification__EntriesAssignment_1" // $ANTLR start "rule__MetamodelSpecification__EntriesAssignment_2_1" // InternalApplicationConfiguration.g:8690:1: rule__MetamodelSpecification__EntriesAssignment_2_1 : ( ruleMetamodelEntry ) ; public final void rule__MetamodelSpecification__EntriesAssignment_2_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8694:1: ( ( ruleMetamodelEntry ) ) // InternalApplicationConfiguration.g:8695:2: ( ruleMetamodelEntry ) { // InternalApplicationConfiguration.g:8695:2: ( ruleMetamodelEntry ) // InternalApplicationConfiguration.g:8696:3: ruleMetamodelEntry { before(grammarAccess.getMetamodelSpecificationAccess().getEntriesMetamodelEntryParserRuleCall_2_1_0()); pushFollow(FOLLOW_2); ruleMetamodelEntry(); state._fsp--; after(grammarAccess.getMetamodelSpecificationAccess().getEntriesMetamodelEntryParserRuleCall_2_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelSpecification__EntriesAssignment_2_1" // $ANTLR start "rule__AllPackageEntry__PackageAssignment_1" // InternalApplicationConfiguration.g:8705:1: rule__AllPackageEntry__PackageAssignment_1 : ( ( ruleQualifiedName ) ) ; public final void rule__AllPackageEntry__PackageAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8709:1: ( ( ( ruleQualifiedName ) ) ) // InternalApplicationConfiguration.g:8710:2: ( ( ruleQualifiedName ) ) { // InternalApplicationConfiguration.g:8710:2: ( ( ruleQualifiedName ) ) // InternalApplicationConfiguration.g:8711:3: ( ruleQualifiedName ) { before(grammarAccess.getAllPackageEntryAccess().getPackageEPackageCrossReference_1_0()); // InternalApplicationConfiguration.g:8712:3: ( ruleQualifiedName ) // InternalApplicationConfiguration.g:8713:4: ruleQualifiedName { before(grammarAccess.getAllPackageEntryAccess().getPackageEPackageQualifiedNameParserRuleCall_1_0_1()); pushFollow(FOLLOW_2); ruleQualifiedName(); state._fsp--; after(grammarAccess.getAllPackageEntryAccess().getPackageEPackageQualifiedNameParserRuleCall_1_0_1()); } after(grammarAccess.getAllPackageEntryAccess().getPackageEPackageCrossReference_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__PackageAssignment_1" // $ANTLR start "rule__AllPackageEntry__ExclusionAssignment_2_2" // InternalApplicationConfiguration.g:8724:1: rule__AllPackageEntry__ExclusionAssignment_2_2 : ( ruleMetamodelElement ) ; public final void rule__AllPackageEntry__ExclusionAssignment_2_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8728:1: ( ( ruleMetamodelElement ) ) // InternalApplicationConfiguration.g:8729:2: ( ruleMetamodelElement ) { // InternalApplicationConfiguration.g:8729:2: ( ruleMetamodelElement ) // InternalApplicationConfiguration.g:8730:3: ruleMetamodelElement { before(grammarAccess.getAllPackageEntryAccess().getExclusionMetamodelElementParserRuleCall_2_2_0()); pushFollow(FOLLOW_2); ruleMetamodelElement(); state._fsp--; after(grammarAccess.getAllPackageEntryAccess().getExclusionMetamodelElementParserRuleCall_2_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__ExclusionAssignment_2_2" // $ANTLR start "rule__AllPackageEntry__ExclusionAssignment_2_3_1" // InternalApplicationConfiguration.g:8739:1: rule__AllPackageEntry__ExclusionAssignment_2_3_1 : ( ruleMetamodelElement ) ; public final void rule__AllPackageEntry__ExclusionAssignment_2_3_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8743:1: ( ( ruleMetamodelElement ) ) // InternalApplicationConfiguration.g:8744:2: ( ruleMetamodelElement ) { // InternalApplicationConfiguration.g:8744:2: ( ruleMetamodelElement ) // InternalApplicationConfiguration.g:8745:3: ruleMetamodelElement { before(grammarAccess.getAllPackageEntryAccess().getExclusionMetamodelElementParserRuleCall_2_3_1_0()); pushFollow(FOLLOW_2); ruleMetamodelElement(); state._fsp--; after(grammarAccess.getAllPackageEntryAccess().getExclusionMetamodelElementParserRuleCall_2_3_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPackageEntry__ExclusionAssignment_2_3_1" // $ANTLR start "rule__MetamodelElement__PackageAssignment_0_0" // InternalApplicationConfiguration.g:8754:1: rule__MetamodelElement__PackageAssignment_0_0 : ( ( ruleQualifiedName ) ) ; public final void rule__MetamodelElement__PackageAssignment_0_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8758:1: ( ( ( ruleQualifiedName ) ) ) // InternalApplicationConfiguration.g:8759:2: ( ( ruleQualifiedName ) ) { // InternalApplicationConfiguration.g:8759:2: ( ( ruleQualifiedName ) ) // InternalApplicationConfiguration.g:8760:3: ( ruleQualifiedName ) { before(grammarAccess.getMetamodelElementAccess().getPackageEPackageCrossReference_0_0_0()); // InternalApplicationConfiguration.g:8761:3: ( ruleQualifiedName ) // InternalApplicationConfiguration.g:8762:4: ruleQualifiedName { before(grammarAccess.getMetamodelElementAccess().getPackageEPackageQualifiedNameParserRuleCall_0_0_0_1()); pushFollow(FOLLOW_2); ruleQualifiedName(); state._fsp--; after(grammarAccess.getMetamodelElementAccess().getPackageEPackageQualifiedNameParserRuleCall_0_0_0_1()); } after(grammarAccess.getMetamodelElementAccess().getPackageEPackageCrossReference_0_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__PackageAssignment_0_0" // $ANTLR start "rule__MetamodelElement__ClassifierAssignment_1" // InternalApplicationConfiguration.g:8773:1: rule__MetamodelElement__ClassifierAssignment_1 : ( ( RULE_ID ) ) ; public final void rule__MetamodelElement__ClassifierAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8777:1: ( ( ( RULE_ID ) ) ) // InternalApplicationConfiguration.g:8778:2: ( ( RULE_ID ) ) { // InternalApplicationConfiguration.g:8778:2: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:8779:3: ( RULE_ID ) { before(grammarAccess.getMetamodelElementAccess().getClassifierEClassifierCrossReference_1_0()); // InternalApplicationConfiguration.g:8780:3: ( RULE_ID ) // InternalApplicationConfiguration.g:8781:4: RULE_ID { before(grammarAccess.getMetamodelElementAccess().getClassifierEClassifierIDTerminalRuleCall_1_0_1()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getMetamodelElementAccess().getClassifierEClassifierIDTerminalRuleCall_1_0_1()); } after(grammarAccess.getMetamodelElementAccess().getClassifierEClassifierCrossReference_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__ClassifierAssignment_1" // $ANTLR start "rule__MetamodelElement__FeatureAssignment_2_1" // InternalApplicationConfiguration.g:8792:1: rule__MetamodelElement__FeatureAssignment_2_1 : ( ( RULE_ID ) ) ; public final void rule__MetamodelElement__FeatureAssignment_2_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8796:1: ( ( ( RULE_ID ) ) ) // InternalApplicationConfiguration.g:8797:2: ( ( RULE_ID ) ) { // InternalApplicationConfiguration.g:8797:2: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:8798:3: ( RULE_ID ) { before(grammarAccess.getMetamodelElementAccess().getFeatureENamedElementCrossReference_2_1_0()); // InternalApplicationConfiguration.g:8799:3: ( RULE_ID ) // InternalApplicationConfiguration.g:8800:4: RULE_ID { before(grammarAccess.getMetamodelElementAccess().getFeatureENamedElementIDTerminalRuleCall_2_1_0_1()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getMetamodelElementAccess().getFeatureENamedElementIDTerminalRuleCall_2_1_0_1()); } after(grammarAccess.getMetamodelElementAccess().getFeatureENamedElementCrossReference_2_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelElement__FeatureAssignment_2_1" // $ANTLR start "rule__MetamodelDeclaration__NameAssignment_1" // InternalApplicationConfiguration.g:8811:1: rule__MetamodelDeclaration__NameAssignment_1 : ( RULE_ID ) ; public final void rule__MetamodelDeclaration__NameAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8815:1: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:8816:2: ( RULE_ID ) { // InternalApplicationConfiguration.g:8816:2: ( RULE_ID ) // InternalApplicationConfiguration.g:8817:3: RULE_ID { before(grammarAccess.getMetamodelDeclarationAccess().getNameIDTerminalRuleCall_1_0()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getMetamodelDeclarationAccess().getNameIDTerminalRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelDeclaration__NameAssignment_1" // $ANTLR start "rule__MetamodelDeclaration__SpecificationAssignment_2" // InternalApplicationConfiguration.g:8826:1: rule__MetamodelDeclaration__SpecificationAssignment_2 : ( ruleMetamodelSpecification ) ; public final void rule__MetamodelDeclaration__SpecificationAssignment_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8830:1: ( ( ruleMetamodelSpecification ) ) // InternalApplicationConfiguration.g:8831:2: ( ruleMetamodelSpecification ) { // InternalApplicationConfiguration.g:8831:2: ( ruleMetamodelSpecification ) // InternalApplicationConfiguration.g:8832:3: ruleMetamodelSpecification { before(grammarAccess.getMetamodelDeclarationAccess().getSpecificationMetamodelSpecificationParserRuleCall_2_0()); pushFollow(FOLLOW_2); ruleMetamodelSpecification(); state._fsp--; after(grammarAccess.getMetamodelDeclarationAccess().getSpecificationMetamodelSpecificationParserRuleCall_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelDeclaration__SpecificationAssignment_2" // $ANTLR start "rule__MetamodelReference__ReferredAssignment" // InternalApplicationConfiguration.g:8841:1: rule__MetamodelReference__ReferredAssignment : ( ( RULE_ID ) ) ; public final void rule__MetamodelReference__ReferredAssignment() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8845:1: ( ( ( RULE_ID ) ) ) // InternalApplicationConfiguration.g:8846:2: ( ( RULE_ID ) ) { // InternalApplicationConfiguration.g:8846:2: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:8847:3: ( RULE_ID ) { before(grammarAccess.getMetamodelReferenceAccess().getReferredMetamodelDeclarationCrossReference_0()); // InternalApplicationConfiguration.g:8848:3: ( RULE_ID ) // InternalApplicationConfiguration.g:8849:4: RULE_ID { before(grammarAccess.getMetamodelReferenceAccess().getReferredMetamodelDeclarationIDTerminalRuleCall_0_1()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getMetamodelReferenceAccess().getReferredMetamodelDeclarationIDTerminalRuleCall_0_1()); } after(grammarAccess.getMetamodelReferenceAccess().getReferredMetamodelDeclarationCrossReference_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MetamodelReference__ReferredAssignment" // $ANTLR start "rule__PartialModelSpecification__EntryAssignment_1" // InternalApplicationConfiguration.g:8860:1: rule__PartialModelSpecification__EntryAssignment_1 : ( rulePartialModelEntry ) ; public final void rule__PartialModelSpecification__EntryAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8864:1: ( ( rulePartialModelEntry ) ) // InternalApplicationConfiguration.g:8865:2: ( rulePartialModelEntry ) { // InternalApplicationConfiguration.g:8865:2: ( rulePartialModelEntry ) // InternalApplicationConfiguration.g:8866:3: rulePartialModelEntry { before(grammarAccess.getPartialModelSpecificationAccess().getEntryPartialModelEntryParserRuleCall_1_0()); pushFollow(FOLLOW_2); rulePartialModelEntry(); state._fsp--; after(grammarAccess.getPartialModelSpecificationAccess().getEntryPartialModelEntryParserRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelSpecification__EntryAssignment_1" // $ANTLR start "rule__PartialModelSpecification__EntryAssignment_2_1" // InternalApplicationConfiguration.g:8875:1: rule__PartialModelSpecification__EntryAssignment_2_1 : ( rulePartialModelEntry ) ; public final void rule__PartialModelSpecification__EntryAssignment_2_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8879:1: ( ( rulePartialModelEntry ) ) // InternalApplicationConfiguration.g:8880:2: ( rulePartialModelEntry ) { // InternalApplicationConfiguration.g:8880:2: ( rulePartialModelEntry ) // InternalApplicationConfiguration.g:8881:3: rulePartialModelEntry { before(grammarAccess.getPartialModelSpecificationAccess().getEntryPartialModelEntryParserRuleCall_2_1_0()); pushFollow(FOLLOW_2); rulePartialModelEntry(); state._fsp--; after(grammarAccess.getPartialModelSpecificationAccess().getEntryPartialModelEntryParserRuleCall_2_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelSpecification__EntryAssignment_2_1" // $ANTLR start "rule__ModelEntry__PathAssignment" // InternalApplicationConfiguration.g:8890:1: rule__ModelEntry__PathAssignment : ( ruleFile ) ; public final void rule__ModelEntry__PathAssignment() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8894:1: ( ( ruleFile ) ) // InternalApplicationConfiguration.g:8895:2: ( ruleFile ) { // InternalApplicationConfiguration.g:8895:2: ( ruleFile ) // InternalApplicationConfiguration.g:8896:3: ruleFile { before(grammarAccess.getModelEntryAccess().getPathFileParserRuleCall_0()); pushFollow(FOLLOW_2); ruleFile(); state._fsp--; after(grammarAccess.getModelEntryAccess().getPathFileParserRuleCall_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ModelEntry__PathAssignment" // $ANTLR start "rule__FolderEntry__PathAssignment_1" // InternalApplicationConfiguration.g:8905:1: rule__FolderEntry__PathAssignment_1 : ( ruleFile ) ; public final void rule__FolderEntry__PathAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8909:1: ( ( ruleFile ) ) // InternalApplicationConfiguration.g:8910:2: ( ruleFile ) { // InternalApplicationConfiguration.g:8910:2: ( ruleFile ) // InternalApplicationConfiguration.g:8911:3: ruleFile { before(grammarAccess.getFolderEntryAccess().getPathFileParserRuleCall_1_0()); pushFollow(FOLLOW_2); ruleFile(); state._fsp--; after(grammarAccess.getFolderEntryAccess().getPathFileParserRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__PathAssignment_1" // $ANTLR start "rule__FolderEntry__ExclusionAssignment_2_2" // InternalApplicationConfiguration.g:8920:1: rule__FolderEntry__ExclusionAssignment_2_2 : ( ruleModelEntry ) ; public final void rule__FolderEntry__ExclusionAssignment_2_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8924:1: ( ( ruleModelEntry ) ) // InternalApplicationConfiguration.g:8925:2: ( ruleModelEntry ) { // InternalApplicationConfiguration.g:8925:2: ( ruleModelEntry ) // InternalApplicationConfiguration.g:8926:3: ruleModelEntry { before(grammarAccess.getFolderEntryAccess().getExclusionModelEntryParserRuleCall_2_2_0()); pushFollow(FOLLOW_2); ruleModelEntry(); state._fsp--; after(grammarAccess.getFolderEntryAccess().getExclusionModelEntryParserRuleCall_2_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__ExclusionAssignment_2_2" // $ANTLR start "rule__FolderEntry__ExclusionAssignment_2_3_1" // InternalApplicationConfiguration.g:8935:1: rule__FolderEntry__ExclusionAssignment_2_3_1 : ( ruleModelEntry ) ; public final void rule__FolderEntry__ExclusionAssignment_2_3_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8939:1: ( ( ruleModelEntry ) ) // InternalApplicationConfiguration.g:8940:2: ( ruleModelEntry ) { // InternalApplicationConfiguration.g:8940:2: ( ruleModelEntry ) // InternalApplicationConfiguration.g:8941:3: ruleModelEntry { before(grammarAccess.getFolderEntryAccess().getExclusionModelEntryParserRuleCall_2_3_1_0()); pushFollow(FOLLOW_2); ruleModelEntry(); state._fsp--; after(grammarAccess.getFolderEntryAccess().getExclusionModelEntryParserRuleCall_2_3_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__FolderEntry__ExclusionAssignment_2_3_1" // $ANTLR start "rule__PartialModelDeclaration__NameAssignment_1" // InternalApplicationConfiguration.g:8950:1: rule__PartialModelDeclaration__NameAssignment_1 : ( RULE_ID ) ; public final void rule__PartialModelDeclaration__NameAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8954:1: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:8955:2: ( RULE_ID ) { // InternalApplicationConfiguration.g:8955:2: ( RULE_ID ) // InternalApplicationConfiguration.g:8956:3: RULE_ID { before(grammarAccess.getPartialModelDeclarationAccess().getNameIDTerminalRuleCall_1_0()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getPartialModelDeclarationAccess().getNameIDTerminalRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelDeclaration__NameAssignment_1" // $ANTLR start "rule__PartialModelDeclaration__SpecificationAssignment_2" // InternalApplicationConfiguration.g:8965:1: rule__PartialModelDeclaration__SpecificationAssignment_2 : ( rulePartialModelSpecification ) ; public final void rule__PartialModelDeclaration__SpecificationAssignment_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8969:1: ( ( rulePartialModelSpecification ) ) // InternalApplicationConfiguration.g:8970:2: ( rulePartialModelSpecification ) { // InternalApplicationConfiguration.g:8970:2: ( rulePartialModelSpecification ) // InternalApplicationConfiguration.g:8971:3: rulePartialModelSpecification { before(grammarAccess.getPartialModelDeclarationAccess().getSpecificationPartialModelSpecificationParserRuleCall_2_0()); pushFollow(FOLLOW_2); rulePartialModelSpecification(); state._fsp--; after(grammarAccess.getPartialModelDeclarationAccess().getSpecificationPartialModelSpecificationParserRuleCall_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelDeclaration__SpecificationAssignment_2" // $ANTLR start "rule__PartialModelReference__ReferredAssignment" // InternalApplicationConfiguration.g:8980:1: rule__PartialModelReference__ReferredAssignment : ( ( RULE_ID ) ) ; public final void rule__PartialModelReference__ReferredAssignment() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:8984:1: ( ( ( RULE_ID ) ) ) // InternalApplicationConfiguration.g:8985:2: ( ( RULE_ID ) ) { // InternalApplicationConfiguration.g:8985:2: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:8986:3: ( RULE_ID ) { before(grammarAccess.getPartialModelReferenceAccess().getReferredPartialModelDeclarationCrossReference_0()); // InternalApplicationConfiguration.g:8987:3: ( RULE_ID ) // InternalApplicationConfiguration.g:8988:4: RULE_ID { before(grammarAccess.getPartialModelReferenceAccess().getReferredPartialModelDeclarationIDTerminalRuleCall_0_1()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getPartialModelReferenceAccess().getReferredPartialModelDeclarationIDTerminalRuleCall_0_1()); } after(grammarAccess.getPartialModelReferenceAccess().getReferredPartialModelDeclarationCrossReference_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PartialModelReference__ReferredAssignment" // $ANTLR start "rule__PatternSpecification__EntriesAssignment_1" // InternalApplicationConfiguration.g:8999:1: rule__PatternSpecification__EntriesAssignment_1 : ( rulePatternEntry ) ; public final void rule__PatternSpecification__EntriesAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9003:1: ( ( rulePatternEntry ) ) // InternalApplicationConfiguration.g:9004:2: ( rulePatternEntry ) { // InternalApplicationConfiguration.g:9004:2: ( rulePatternEntry ) // InternalApplicationConfiguration.g:9005:3: rulePatternEntry { before(grammarAccess.getPatternSpecificationAccess().getEntriesPatternEntryParserRuleCall_1_0()); pushFollow(FOLLOW_2); rulePatternEntry(); state._fsp--; after(grammarAccess.getPatternSpecificationAccess().getEntriesPatternEntryParserRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternSpecification__EntriesAssignment_1" // $ANTLR start "rule__PatternSpecification__EntriesAssignment_2_1" // InternalApplicationConfiguration.g:9014:1: rule__PatternSpecification__EntriesAssignment_2_1 : ( rulePatternEntry ) ; public final void rule__PatternSpecification__EntriesAssignment_2_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9018:1: ( ( rulePatternEntry ) ) // InternalApplicationConfiguration.g:9019:2: ( rulePatternEntry ) { // InternalApplicationConfiguration.g:9019:2: ( rulePatternEntry ) // InternalApplicationConfiguration.g:9020:3: rulePatternEntry { before(grammarAccess.getPatternSpecificationAccess().getEntriesPatternEntryParserRuleCall_2_1_0()); pushFollow(FOLLOW_2); rulePatternEntry(); state._fsp--; after(grammarAccess.getPatternSpecificationAccess().getEntriesPatternEntryParserRuleCall_2_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternSpecification__EntriesAssignment_2_1" // $ANTLR start "rule__AllPatternEntry__PackageAssignment_1" // InternalApplicationConfiguration.g:9029:1: rule__AllPatternEntry__PackageAssignment_1 : ( ( ruleQualifiedName ) ) ; public final void rule__AllPatternEntry__PackageAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9033:1: ( ( ( ruleQualifiedName ) ) ) // InternalApplicationConfiguration.g:9034:2: ( ( ruleQualifiedName ) ) { // InternalApplicationConfiguration.g:9034:2: ( ( ruleQualifiedName ) ) // InternalApplicationConfiguration.g:9035:3: ( ruleQualifiedName ) { before(grammarAccess.getAllPatternEntryAccess().getPackagePatternModelCrossReference_1_0()); // InternalApplicationConfiguration.g:9036:3: ( ruleQualifiedName ) // InternalApplicationConfiguration.g:9037:4: ruleQualifiedName { before(grammarAccess.getAllPatternEntryAccess().getPackagePatternModelQualifiedNameParserRuleCall_1_0_1()); pushFollow(FOLLOW_2); ruleQualifiedName(); state._fsp--; after(grammarAccess.getAllPatternEntryAccess().getPackagePatternModelQualifiedNameParserRuleCall_1_0_1()); } after(grammarAccess.getAllPatternEntryAccess().getPackagePatternModelCrossReference_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__PackageAssignment_1" // $ANTLR start "rule__AllPatternEntry__ExclusuionAssignment_2_2" // InternalApplicationConfiguration.g:9048:1: rule__AllPatternEntry__ExclusuionAssignment_2_2 : ( rulePatternElement ) ; public final void rule__AllPatternEntry__ExclusuionAssignment_2_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9052:1: ( ( rulePatternElement ) ) // InternalApplicationConfiguration.g:9053:2: ( rulePatternElement ) { // InternalApplicationConfiguration.g:9053:2: ( rulePatternElement ) // InternalApplicationConfiguration.g:9054:3: rulePatternElement { before(grammarAccess.getAllPatternEntryAccess().getExclusuionPatternElementParserRuleCall_2_2_0()); pushFollow(FOLLOW_2); rulePatternElement(); state._fsp--; after(grammarAccess.getAllPatternEntryAccess().getExclusuionPatternElementParserRuleCall_2_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__ExclusuionAssignment_2_2" // $ANTLR start "rule__AllPatternEntry__ExclusuionAssignment_2_3_1" // InternalApplicationConfiguration.g:9063:1: rule__AllPatternEntry__ExclusuionAssignment_2_3_1 : ( rulePatternElement ) ; public final void rule__AllPatternEntry__ExclusuionAssignment_2_3_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9067:1: ( ( rulePatternElement ) ) // InternalApplicationConfiguration.g:9068:2: ( rulePatternElement ) { // InternalApplicationConfiguration.g:9068:2: ( rulePatternElement ) // InternalApplicationConfiguration.g:9069:3: rulePatternElement { before(grammarAccess.getAllPatternEntryAccess().getExclusuionPatternElementParserRuleCall_2_3_1_0()); pushFollow(FOLLOW_2); rulePatternElement(); state._fsp--; after(grammarAccess.getAllPatternEntryAccess().getExclusuionPatternElementParserRuleCall_2_3_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__AllPatternEntry__ExclusuionAssignment_2_3_1" // $ANTLR start "rule__PatternElement__PackageAssignment_0_0" // InternalApplicationConfiguration.g:9078:1: rule__PatternElement__PackageAssignment_0_0 : ( ( ruleQualifiedName ) ) ; public final void rule__PatternElement__PackageAssignment_0_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9082:1: ( ( ( ruleQualifiedName ) ) ) // InternalApplicationConfiguration.g:9083:2: ( ( ruleQualifiedName ) ) { // InternalApplicationConfiguration.g:9083:2: ( ( ruleQualifiedName ) ) // InternalApplicationConfiguration.g:9084:3: ( ruleQualifiedName ) { before(grammarAccess.getPatternElementAccess().getPackagePatternModelCrossReference_0_0_0()); // InternalApplicationConfiguration.g:9085:3: ( ruleQualifiedName ) // InternalApplicationConfiguration.g:9086:4: ruleQualifiedName { before(grammarAccess.getPatternElementAccess().getPackagePatternModelQualifiedNameParserRuleCall_0_0_0_1()); pushFollow(FOLLOW_2); ruleQualifiedName(); state._fsp--; after(grammarAccess.getPatternElementAccess().getPackagePatternModelQualifiedNameParserRuleCall_0_0_0_1()); } after(grammarAccess.getPatternElementAccess().getPackagePatternModelCrossReference_0_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternElement__PackageAssignment_0_0" // $ANTLR start "rule__PatternElement__PatternAssignment_1" // InternalApplicationConfiguration.g:9097:1: rule__PatternElement__PatternAssignment_1 : ( ( RULE_ID ) ) ; public final void rule__PatternElement__PatternAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9101:1: ( ( ( RULE_ID ) ) ) // InternalApplicationConfiguration.g:9102:2: ( ( RULE_ID ) ) { // InternalApplicationConfiguration.g:9102:2: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:9103:3: ( RULE_ID ) { before(grammarAccess.getPatternElementAccess().getPatternPatternCrossReference_1_0()); // InternalApplicationConfiguration.g:9104:3: ( RULE_ID ) // InternalApplicationConfiguration.g:9105:4: RULE_ID { before(grammarAccess.getPatternElementAccess().getPatternPatternIDTerminalRuleCall_1_0_1()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getPatternElementAccess().getPatternPatternIDTerminalRuleCall_1_0_1()); } after(grammarAccess.getPatternElementAccess().getPatternPatternCrossReference_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__PatternElement__PatternAssignment_1" // $ANTLR start "rule__GraphPatternDeclaration__NameAssignment_1" // InternalApplicationConfiguration.g:9116:1: rule__GraphPatternDeclaration__NameAssignment_1 : ( RULE_ID ) ; public final void rule__GraphPatternDeclaration__NameAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9120:1: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:9121:2: ( RULE_ID ) { // InternalApplicationConfiguration.g:9121:2: ( RULE_ID ) // InternalApplicationConfiguration.g:9122:3: RULE_ID { before(grammarAccess.getGraphPatternDeclarationAccess().getNameIDTerminalRuleCall_1_0()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getGraphPatternDeclarationAccess().getNameIDTerminalRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GraphPatternDeclaration__NameAssignment_1" // $ANTLR start "rule__GraphPatternDeclaration__SpecificationAssignment_2" // InternalApplicationConfiguration.g:9131:1: rule__GraphPatternDeclaration__SpecificationAssignment_2 : ( rulePatternSpecification ) ; public final void rule__GraphPatternDeclaration__SpecificationAssignment_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9135:1: ( ( rulePatternSpecification ) ) // InternalApplicationConfiguration.g:9136:2: ( rulePatternSpecification ) { // InternalApplicationConfiguration.g:9136:2: ( rulePatternSpecification ) // InternalApplicationConfiguration.g:9137:3: rulePatternSpecification { before(grammarAccess.getGraphPatternDeclarationAccess().getSpecificationPatternSpecificationParserRuleCall_2_0()); pushFollow(FOLLOW_2); rulePatternSpecification(); state._fsp--; after(grammarAccess.getGraphPatternDeclarationAccess().getSpecificationPatternSpecificationParserRuleCall_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GraphPatternDeclaration__SpecificationAssignment_2" // $ANTLR start "rule__GraphPatternReference__ReferredAssignment" // InternalApplicationConfiguration.g:9146:1: rule__GraphPatternReference__ReferredAssignment : ( ( RULE_ID ) ) ; public final void rule__GraphPatternReference__ReferredAssignment() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9150:1: ( ( ( RULE_ID ) ) ) // InternalApplicationConfiguration.g:9151:2: ( ( RULE_ID ) ) { // InternalApplicationConfiguration.g:9151:2: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:9152:3: ( RULE_ID ) { before(grammarAccess.getGraphPatternReferenceAccess().getReferredGraphPatternDeclarationCrossReference_0()); // InternalApplicationConfiguration.g:9153:3: ( RULE_ID ) // InternalApplicationConfiguration.g:9154:4: RULE_ID { before(grammarAccess.getGraphPatternReferenceAccess().getReferredGraphPatternDeclarationIDTerminalRuleCall_0_1()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getGraphPatternReferenceAccess().getReferredGraphPatternDeclarationIDTerminalRuleCall_0_1()); } after(grammarAccess.getGraphPatternReferenceAccess().getReferredGraphPatternDeclarationCrossReference_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GraphPatternReference__ReferredAssignment" // $ANTLR start "rule__ConfigSpecification__EntriesAssignment_2_0" // InternalApplicationConfiguration.g:9165:1: rule__ConfigSpecification__EntriesAssignment_2_0 : ( ruleConfigEntry ) ; public final void rule__ConfigSpecification__EntriesAssignment_2_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9169:1: ( ( ruleConfigEntry ) ) // InternalApplicationConfiguration.g:9170:2: ( ruleConfigEntry ) { // InternalApplicationConfiguration.g:9170:2: ( ruleConfigEntry ) // InternalApplicationConfiguration.g:9171:3: ruleConfigEntry { before(grammarAccess.getConfigSpecificationAccess().getEntriesConfigEntryParserRuleCall_2_0_0()); pushFollow(FOLLOW_2); ruleConfigEntry(); state._fsp--; after(grammarAccess.getConfigSpecificationAccess().getEntriesConfigEntryParserRuleCall_2_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__EntriesAssignment_2_0" // $ANTLR start "rule__ConfigSpecification__EntriesAssignment_2_1_1" // InternalApplicationConfiguration.g:9180:1: rule__ConfigSpecification__EntriesAssignment_2_1_1 : ( ruleConfigEntry ) ; public final void rule__ConfigSpecification__EntriesAssignment_2_1_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9184:1: ( ( ruleConfigEntry ) ) // InternalApplicationConfiguration.g:9185:2: ( ruleConfigEntry ) { // InternalApplicationConfiguration.g:9185:2: ( ruleConfigEntry ) // InternalApplicationConfiguration.g:9186:3: ruleConfigEntry { before(grammarAccess.getConfigSpecificationAccess().getEntriesConfigEntryParserRuleCall_2_1_1_0()); pushFollow(FOLLOW_2); ruleConfigEntry(); state._fsp--; after(grammarAccess.getConfigSpecificationAccess().getEntriesConfigEntryParserRuleCall_2_1_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigSpecification__EntriesAssignment_2_1_1" // $ANTLR start "rule__ConfigDeclaration__NameAssignment_1" // InternalApplicationConfiguration.g:9195:1: rule__ConfigDeclaration__NameAssignment_1 : ( RULE_ID ) ; public final void rule__ConfigDeclaration__NameAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9199:1: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:9200:2: ( RULE_ID ) { // InternalApplicationConfiguration.g:9200:2: ( RULE_ID ) // InternalApplicationConfiguration.g:9201:3: RULE_ID { before(grammarAccess.getConfigDeclarationAccess().getNameIDTerminalRuleCall_1_0()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getConfigDeclarationAccess().getNameIDTerminalRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigDeclaration__NameAssignment_1" // $ANTLR start "rule__ConfigDeclaration__SpecificationAssignment_2" // InternalApplicationConfiguration.g:9210:1: rule__ConfigDeclaration__SpecificationAssignment_2 : ( ruleConfigSpecification ) ; public final void rule__ConfigDeclaration__SpecificationAssignment_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9214:1: ( ( ruleConfigSpecification ) ) // InternalApplicationConfiguration.g:9215:2: ( ruleConfigSpecification ) { // InternalApplicationConfiguration.g:9215:2: ( ruleConfigSpecification ) // InternalApplicationConfiguration.g:9216:3: ruleConfigSpecification { before(grammarAccess.getConfigDeclarationAccess().getSpecificationConfigSpecificationParserRuleCall_2_0()); pushFollow(FOLLOW_2); ruleConfigSpecification(); state._fsp--; after(grammarAccess.getConfigDeclarationAccess().getSpecificationConfigSpecificationParserRuleCall_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigDeclaration__SpecificationAssignment_2" // $ANTLR start "rule__DocumentationEntry__LevelAssignment_2" // InternalApplicationConfiguration.g:9225:1: rule__DocumentationEntry__LevelAssignment_2 : ( ruleDocumentLevelSpecification ) ; public final void rule__DocumentationEntry__LevelAssignment_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9229:1: ( ( ruleDocumentLevelSpecification ) ) // InternalApplicationConfiguration.g:9230:2: ( ruleDocumentLevelSpecification ) { // InternalApplicationConfiguration.g:9230:2: ( ruleDocumentLevelSpecification ) // InternalApplicationConfiguration.g:9231:3: ruleDocumentLevelSpecification { before(grammarAccess.getDocumentationEntryAccess().getLevelDocumentLevelSpecificationEnumRuleCall_2_0()); pushFollow(FOLLOW_2); ruleDocumentLevelSpecification(); state._fsp--; after(grammarAccess.getDocumentationEntryAccess().getLevelDocumentLevelSpecificationEnumRuleCall_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__DocumentationEntry__LevelAssignment_2" // $ANTLR start "rule__RuntimeEntry__MillisecLimitAssignment_2" // InternalApplicationConfiguration.g:9240:1: rule__RuntimeEntry__MillisecLimitAssignment_2 : ( RULE_INT ) ; public final void rule__RuntimeEntry__MillisecLimitAssignment_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9244:1: ( ( RULE_INT ) ) // InternalApplicationConfiguration.g:9245:2: ( RULE_INT ) { // InternalApplicationConfiguration.g:9245:2: ( RULE_INT ) // InternalApplicationConfiguration.g:9246:3: RULE_INT { before(grammarAccess.getRuntimeEntryAccess().getMillisecLimitINTTerminalRuleCall_2_0()); match(input,RULE_INT,FOLLOW_2); after(grammarAccess.getRuntimeEntryAccess().getMillisecLimitINTTerminalRuleCall_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RuntimeEntry__MillisecLimitAssignment_2" // $ANTLR start "rule__MemoryEntry__MegabyteLimitAssignment_2" // InternalApplicationConfiguration.g:9255:1: rule__MemoryEntry__MegabyteLimitAssignment_2 : ( RULE_INT ) ; public final void rule__MemoryEntry__MegabyteLimitAssignment_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9259:1: ( ( RULE_INT ) ) // InternalApplicationConfiguration.g:9260:2: ( RULE_INT ) { // InternalApplicationConfiguration.g:9260:2: ( RULE_INT ) // InternalApplicationConfiguration.g:9261:3: RULE_INT { before(grammarAccess.getMemoryEntryAccess().getMegabyteLimitINTTerminalRuleCall_2_0()); match(input,RULE_INT,FOLLOW_2); after(grammarAccess.getMemoryEntryAccess().getMegabyteLimitINTTerminalRuleCall_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__MemoryEntry__MegabyteLimitAssignment_2" // $ANTLR start "rule__CustomEntry__KeyAssignment_0" // InternalApplicationConfiguration.g:9270:1: rule__CustomEntry__KeyAssignment_0 : ( RULE_STRING ) ; public final void rule__CustomEntry__KeyAssignment_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9274:1: ( ( RULE_STRING ) ) // InternalApplicationConfiguration.g:9275:2: ( RULE_STRING ) { // InternalApplicationConfiguration.g:9275:2: ( RULE_STRING ) // InternalApplicationConfiguration.g:9276:3: RULE_STRING { before(grammarAccess.getCustomEntryAccess().getKeySTRINGTerminalRuleCall_0_0()); match(input,RULE_STRING,FOLLOW_2); after(grammarAccess.getCustomEntryAccess().getKeySTRINGTerminalRuleCall_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__CustomEntry__KeyAssignment_0" // $ANTLR start "rule__CustomEntry__ValueAssignment_2" // InternalApplicationConfiguration.g:9285:1: rule__CustomEntry__ValueAssignment_2 : ( RULE_STRING ) ; public final void rule__CustomEntry__ValueAssignment_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9289:1: ( ( RULE_STRING ) ) // InternalApplicationConfiguration.g:9290:2: ( RULE_STRING ) { // InternalApplicationConfiguration.g:9290:2: ( RULE_STRING ) // InternalApplicationConfiguration.g:9291:3: RULE_STRING { before(grammarAccess.getCustomEntryAccess().getValueSTRINGTerminalRuleCall_2_0()); match(input,RULE_STRING,FOLLOW_2); after(grammarAccess.getCustomEntryAccess().getValueSTRINGTerminalRuleCall_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__CustomEntry__ValueAssignment_2" // $ANTLR start "rule__ConfigReference__ConfigAssignment" // InternalApplicationConfiguration.g:9300:1: rule__ConfigReference__ConfigAssignment : ( ( RULE_ID ) ) ; public final void rule__ConfigReference__ConfigAssignment() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9304:1: ( ( ( RULE_ID ) ) ) // InternalApplicationConfiguration.g:9305:2: ( ( RULE_ID ) ) { // InternalApplicationConfiguration.g:9305:2: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:9306:3: ( RULE_ID ) { before(grammarAccess.getConfigReferenceAccess().getConfigConfigDeclarationCrossReference_0()); // InternalApplicationConfiguration.g:9307:3: ( RULE_ID ) // InternalApplicationConfiguration.g:9308:4: RULE_ID { before(grammarAccess.getConfigReferenceAccess().getConfigConfigDeclarationIDTerminalRuleCall_0_1()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getConfigReferenceAccess().getConfigConfigDeclarationIDTerminalRuleCall_0_1()); } after(grammarAccess.getConfigReferenceAccess().getConfigConfigDeclarationCrossReference_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ConfigReference__ConfigAssignment" // $ANTLR start "rule__ScopeSpecification__ScopesAssignment_2_0" // InternalApplicationConfiguration.g:9319:1: rule__ScopeSpecification__ScopesAssignment_2_0 : ( ruleTypeScope ) ; public final void rule__ScopeSpecification__ScopesAssignment_2_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9323:1: ( ( ruleTypeScope ) ) // InternalApplicationConfiguration.g:9324:2: ( ruleTypeScope ) { // InternalApplicationConfiguration.g:9324:2: ( ruleTypeScope ) // InternalApplicationConfiguration.g:9325:3: ruleTypeScope { before(grammarAccess.getScopeSpecificationAccess().getScopesTypeScopeParserRuleCall_2_0_0()); pushFollow(FOLLOW_2); ruleTypeScope(); state._fsp--; after(grammarAccess.getScopeSpecificationAccess().getScopesTypeScopeParserRuleCall_2_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__ScopesAssignment_2_0" // $ANTLR start "rule__ScopeSpecification__ScopesAssignment_2_1_1" // InternalApplicationConfiguration.g:9334:1: rule__ScopeSpecification__ScopesAssignment_2_1_1 : ( ruleTypeScope ) ; public final void rule__ScopeSpecification__ScopesAssignment_2_1_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9338:1: ( ( ruleTypeScope ) ) // InternalApplicationConfiguration.g:9339:2: ( ruleTypeScope ) { // InternalApplicationConfiguration.g:9339:2: ( ruleTypeScope ) // InternalApplicationConfiguration.g:9340:3: ruleTypeScope { before(grammarAccess.getScopeSpecificationAccess().getScopesTypeScopeParserRuleCall_2_1_1_0()); pushFollow(FOLLOW_2); ruleTypeScope(); state._fsp--; after(grammarAccess.getScopeSpecificationAccess().getScopesTypeScopeParserRuleCall_2_1_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeSpecification__ScopesAssignment_2_1_1" // $ANTLR start "rule__ClassTypeScope__TypeAssignment_1" // InternalApplicationConfiguration.g:9349:1: rule__ClassTypeScope__TypeAssignment_1 : ( ruleClassReference ) ; public final void rule__ClassTypeScope__TypeAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9353:1: ( ( ruleClassReference ) ) // InternalApplicationConfiguration.g:9354:2: ( ruleClassReference ) { // InternalApplicationConfiguration.g:9354:2: ( ruleClassReference ) // InternalApplicationConfiguration.g:9355:3: ruleClassReference { before(grammarAccess.getClassTypeScopeAccess().getTypeClassReferenceParserRuleCall_1_0()); pushFollow(FOLLOW_2); ruleClassReference(); state._fsp--; after(grammarAccess.getClassTypeScopeAccess().getTypeClassReferenceParserRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassTypeScope__TypeAssignment_1" // $ANTLR start "rule__ClassTypeScope__SetsNewAssignment_2_0" // InternalApplicationConfiguration.g:9364:1: rule__ClassTypeScope__SetsNewAssignment_2_0 : ( ( '+=' ) ) ; public final void rule__ClassTypeScope__SetsNewAssignment_2_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9368:1: ( ( ( '+=' ) ) ) // InternalApplicationConfiguration.g:9369:2: ( ( '+=' ) ) { // InternalApplicationConfiguration.g:9369:2: ( ( '+=' ) ) // InternalApplicationConfiguration.g:9370:3: ( '+=' ) { before(grammarAccess.getClassTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); // InternalApplicationConfiguration.g:9371:3: ( '+=' ) // InternalApplicationConfiguration.g:9372:4: '+=' { before(grammarAccess.getClassTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); match(input,53,FOLLOW_2); after(grammarAccess.getClassTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); } after(grammarAccess.getClassTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassTypeScope__SetsNewAssignment_2_0" // $ANTLR start "rule__ClassTypeScope__SetsSumAssignment_2_1" // InternalApplicationConfiguration.g:9383:1: rule__ClassTypeScope__SetsSumAssignment_2_1 : ( ( '=' ) ) ; public final void rule__ClassTypeScope__SetsSumAssignment_2_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9387:1: ( ( ( '=' ) ) ) // InternalApplicationConfiguration.g:9388:2: ( ( '=' ) ) { // InternalApplicationConfiguration.g:9388:2: ( ( '=' ) ) // InternalApplicationConfiguration.g:9389:3: ( '=' ) { before(grammarAccess.getClassTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); // InternalApplicationConfiguration.g:9390:3: ( '=' ) // InternalApplicationConfiguration.g:9391:4: '=' { before(grammarAccess.getClassTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); match(input,22,FOLLOW_2); after(grammarAccess.getClassTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); } after(grammarAccess.getClassTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassTypeScope__SetsSumAssignment_2_1" // $ANTLR start "rule__ClassTypeScope__NumberAssignment_3_0" // InternalApplicationConfiguration.g:9402:1: rule__ClassTypeScope__NumberAssignment_3_0 : ( ruleExactNumber ) ; public final void rule__ClassTypeScope__NumberAssignment_3_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9406:1: ( ( ruleExactNumber ) ) // InternalApplicationConfiguration.g:9407:2: ( ruleExactNumber ) { // InternalApplicationConfiguration.g:9407:2: ( ruleExactNumber ) // InternalApplicationConfiguration.g:9408:3: ruleExactNumber { before(grammarAccess.getClassTypeScopeAccess().getNumberExactNumberParserRuleCall_3_0_0()); pushFollow(FOLLOW_2); ruleExactNumber(); state._fsp--; after(grammarAccess.getClassTypeScopeAccess().getNumberExactNumberParserRuleCall_3_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassTypeScope__NumberAssignment_3_0" // $ANTLR start "rule__ClassTypeScope__NumberAssignment_3_1" // InternalApplicationConfiguration.g:9417:1: rule__ClassTypeScope__NumberAssignment_3_1 : ( ruleIntervallNumber ) ; public final void rule__ClassTypeScope__NumberAssignment_3_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9421:1: ( ( ruleIntervallNumber ) ) // InternalApplicationConfiguration.g:9422:2: ( ruleIntervallNumber ) { // InternalApplicationConfiguration.g:9422:2: ( ruleIntervallNumber ) // InternalApplicationConfiguration.g:9423:3: ruleIntervallNumber { before(grammarAccess.getClassTypeScopeAccess().getNumberIntervallNumberParserRuleCall_3_1_0()); pushFollow(FOLLOW_2); ruleIntervallNumber(); state._fsp--; after(grammarAccess.getClassTypeScopeAccess().getNumberIntervallNumberParserRuleCall_3_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassTypeScope__NumberAssignment_3_1" // $ANTLR start "rule__ObjectTypeScope__TypeAssignment_1" // InternalApplicationConfiguration.g:9432:1: rule__ObjectTypeScope__TypeAssignment_1 : ( ruleObjectReference ) ; public final void rule__ObjectTypeScope__TypeAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9436:1: ( ( ruleObjectReference ) ) // InternalApplicationConfiguration.g:9437:2: ( ruleObjectReference ) { // InternalApplicationConfiguration.g:9437:2: ( ruleObjectReference ) // InternalApplicationConfiguration.g:9438:3: ruleObjectReference { before(grammarAccess.getObjectTypeScopeAccess().getTypeObjectReferenceParserRuleCall_1_0()); pushFollow(FOLLOW_2); ruleObjectReference(); state._fsp--; after(grammarAccess.getObjectTypeScopeAccess().getTypeObjectReferenceParserRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectTypeScope__TypeAssignment_1" // $ANTLR start "rule__ObjectTypeScope__SetsNewAssignment_2_0" // InternalApplicationConfiguration.g:9447:1: rule__ObjectTypeScope__SetsNewAssignment_2_0 : ( ( '+=' ) ) ; public final void rule__ObjectTypeScope__SetsNewAssignment_2_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9451:1: ( ( ( '+=' ) ) ) // InternalApplicationConfiguration.g:9452:2: ( ( '+=' ) ) { // InternalApplicationConfiguration.g:9452:2: ( ( '+=' ) ) // InternalApplicationConfiguration.g:9453:3: ( '+=' ) { before(grammarAccess.getObjectTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); // InternalApplicationConfiguration.g:9454:3: ( '+=' ) // InternalApplicationConfiguration.g:9455:4: '+=' { before(grammarAccess.getObjectTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); match(input,53,FOLLOW_2); after(grammarAccess.getObjectTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); } after(grammarAccess.getObjectTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectTypeScope__SetsNewAssignment_2_0" // $ANTLR start "rule__ObjectTypeScope__SetsSumAssignment_2_1" // InternalApplicationConfiguration.g:9466:1: rule__ObjectTypeScope__SetsSumAssignment_2_1 : ( ( '=' ) ) ; public final void rule__ObjectTypeScope__SetsSumAssignment_2_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9470:1: ( ( ( '=' ) ) ) // InternalApplicationConfiguration.g:9471:2: ( ( '=' ) ) { // InternalApplicationConfiguration.g:9471:2: ( ( '=' ) ) // InternalApplicationConfiguration.g:9472:3: ( '=' ) { before(grammarAccess.getObjectTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); // InternalApplicationConfiguration.g:9473:3: ( '=' ) // InternalApplicationConfiguration.g:9474:4: '=' { before(grammarAccess.getObjectTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); match(input,22,FOLLOW_2); after(grammarAccess.getObjectTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); } after(grammarAccess.getObjectTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectTypeScope__SetsSumAssignment_2_1" // $ANTLR start "rule__ObjectTypeScope__NumberAssignment_3_0" // InternalApplicationConfiguration.g:9485:1: rule__ObjectTypeScope__NumberAssignment_3_0 : ( ruleExactNumber ) ; public final void rule__ObjectTypeScope__NumberAssignment_3_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9489:1: ( ( ruleExactNumber ) ) // InternalApplicationConfiguration.g:9490:2: ( ruleExactNumber ) { // InternalApplicationConfiguration.g:9490:2: ( ruleExactNumber ) // InternalApplicationConfiguration.g:9491:3: ruleExactNumber { before(grammarAccess.getObjectTypeScopeAccess().getNumberExactNumberParserRuleCall_3_0_0()); pushFollow(FOLLOW_2); ruleExactNumber(); state._fsp--; after(grammarAccess.getObjectTypeScopeAccess().getNumberExactNumberParserRuleCall_3_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectTypeScope__NumberAssignment_3_0" // $ANTLR start "rule__ObjectTypeScope__NumberAssignment_3_1" // InternalApplicationConfiguration.g:9500:1: rule__ObjectTypeScope__NumberAssignment_3_1 : ( ruleIntervallNumber ) ; public final void rule__ObjectTypeScope__NumberAssignment_3_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9504:1: ( ( ruleIntervallNumber ) ) // InternalApplicationConfiguration.g:9505:2: ( ruleIntervallNumber ) { // InternalApplicationConfiguration.g:9505:2: ( ruleIntervallNumber ) // InternalApplicationConfiguration.g:9506:3: ruleIntervallNumber { before(grammarAccess.getObjectTypeScopeAccess().getNumberIntervallNumberParserRuleCall_3_1_0()); pushFollow(FOLLOW_2); ruleIntervallNumber(); state._fsp--; after(grammarAccess.getObjectTypeScopeAccess().getNumberIntervallNumberParserRuleCall_3_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ObjectTypeScope__NumberAssignment_3_1" // $ANTLR start "rule__IntegerTypeScope__TypeAssignment_1" // InternalApplicationConfiguration.g:9515:1: rule__IntegerTypeScope__TypeAssignment_1 : ( ruleIntegerReference ) ; public final void rule__IntegerTypeScope__TypeAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9519:1: ( ( ruleIntegerReference ) ) // InternalApplicationConfiguration.g:9520:2: ( ruleIntegerReference ) { // InternalApplicationConfiguration.g:9520:2: ( ruleIntegerReference ) // InternalApplicationConfiguration.g:9521:3: ruleIntegerReference { before(grammarAccess.getIntegerTypeScopeAccess().getTypeIntegerReferenceParserRuleCall_1_0()); pushFollow(FOLLOW_2); ruleIntegerReference(); state._fsp--; after(grammarAccess.getIntegerTypeScopeAccess().getTypeIntegerReferenceParserRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__TypeAssignment_1" // $ANTLR start "rule__IntegerTypeScope__SetsNewAssignment_2_0" // InternalApplicationConfiguration.g:9530:1: rule__IntegerTypeScope__SetsNewAssignment_2_0 : ( ( '+=' ) ) ; public final void rule__IntegerTypeScope__SetsNewAssignment_2_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9534:1: ( ( ( '+=' ) ) ) // InternalApplicationConfiguration.g:9535:2: ( ( '+=' ) ) { // InternalApplicationConfiguration.g:9535:2: ( ( '+=' ) ) // InternalApplicationConfiguration.g:9536:3: ( '+=' ) { before(grammarAccess.getIntegerTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); // InternalApplicationConfiguration.g:9537:3: ( '+=' ) // InternalApplicationConfiguration.g:9538:4: '+=' { before(grammarAccess.getIntegerTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); match(input,53,FOLLOW_2); after(grammarAccess.getIntegerTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); } after(grammarAccess.getIntegerTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__SetsNewAssignment_2_0" // $ANTLR start "rule__IntegerTypeScope__SetsSumAssignment_2_1" // InternalApplicationConfiguration.g:9549:1: rule__IntegerTypeScope__SetsSumAssignment_2_1 : ( ( '=' ) ) ; public final void rule__IntegerTypeScope__SetsSumAssignment_2_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9553:1: ( ( ( '=' ) ) ) // InternalApplicationConfiguration.g:9554:2: ( ( '=' ) ) { // InternalApplicationConfiguration.g:9554:2: ( ( '=' ) ) // InternalApplicationConfiguration.g:9555:3: ( '=' ) { before(grammarAccess.getIntegerTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); // InternalApplicationConfiguration.g:9556:3: ( '=' ) // InternalApplicationConfiguration.g:9557:4: '=' { before(grammarAccess.getIntegerTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); match(input,22,FOLLOW_2); after(grammarAccess.getIntegerTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); } after(grammarAccess.getIntegerTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__SetsSumAssignment_2_1" // $ANTLR start "rule__IntegerTypeScope__NumberAssignment_3_0" // InternalApplicationConfiguration.g:9568:1: rule__IntegerTypeScope__NumberAssignment_3_0 : ( ruleExactNumber ) ; public final void rule__IntegerTypeScope__NumberAssignment_3_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9572:1: ( ( ruleExactNumber ) ) // InternalApplicationConfiguration.g:9573:2: ( ruleExactNumber ) { // InternalApplicationConfiguration.g:9573:2: ( ruleExactNumber ) // InternalApplicationConfiguration.g:9574:3: ruleExactNumber { before(grammarAccess.getIntegerTypeScopeAccess().getNumberExactNumberParserRuleCall_3_0_0()); pushFollow(FOLLOW_2); ruleExactNumber(); state._fsp--; after(grammarAccess.getIntegerTypeScopeAccess().getNumberExactNumberParserRuleCall_3_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__NumberAssignment_3_0" // $ANTLR start "rule__IntegerTypeScope__NumberAssignment_3_1" // InternalApplicationConfiguration.g:9583:1: rule__IntegerTypeScope__NumberAssignment_3_1 : ( ruleIntervallNumber ) ; public final void rule__IntegerTypeScope__NumberAssignment_3_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9587:1: ( ( ruleIntervallNumber ) ) // InternalApplicationConfiguration.g:9588:2: ( ruleIntervallNumber ) { // InternalApplicationConfiguration.g:9588:2: ( ruleIntervallNumber ) // InternalApplicationConfiguration.g:9589:3: ruleIntervallNumber { before(grammarAccess.getIntegerTypeScopeAccess().getNumberIntervallNumberParserRuleCall_3_1_0()); pushFollow(FOLLOW_2); ruleIntervallNumber(); state._fsp--; after(grammarAccess.getIntegerTypeScopeAccess().getNumberIntervallNumberParserRuleCall_3_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__NumberAssignment_3_1" // $ANTLR start "rule__IntegerTypeScope__NumberAssignment_3_2" // InternalApplicationConfiguration.g:9598:1: rule__IntegerTypeScope__NumberAssignment_3_2 : ( ruleIntEnumberation ) ; public final void rule__IntegerTypeScope__NumberAssignment_3_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9602:1: ( ( ruleIntEnumberation ) ) // InternalApplicationConfiguration.g:9603:2: ( ruleIntEnumberation ) { // InternalApplicationConfiguration.g:9603:2: ( ruleIntEnumberation ) // InternalApplicationConfiguration.g:9604:3: ruleIntEnumberation { before(grammarAccess.getIntegerTypeScopeAccess().getNumberIntEnumberationParserRuleCall_3_2_0()); pushFollow(FOLLOW_2); ruleIntEnumberation(); state._fsp--; after(grammarAccess.getIntegerTypeScopeAccess().getNumberIntEnumberationParserRuleCall_3_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntegerTypeScope__NumberAssignment_3_2" // $ANTLR start "rule__RealTypeScope__TypeAssignment_1" // InternalApplicationConfiguration.g:9613:1: rule__RealTypeScope__TypeAssignment_1 : ( ruleRealReference ) ; public final void rule__RealTypeScope__TypeAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9617:1: ( ( ruleRealReference ) ) // InternalApplicationConfiguration.g:9618:2: ( ruleRealReference ) { // InternalApplicationConfiguration.g:9618:2: ( ruleRealReference ) // InternalApplicationConfiguration.g:9619:3: ruleRealReference { before(grammarAccess.getRealTypeScopeAccess().getTypeRealReferenceParserRuleCall_1_0()); pushFollow(FOLLOW_2); ruleRealReference(); state._fsp--; after(grammarAccess.getRealTypeScopeAccess().getTypeRealReferenceParserRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__TypeAssignment_1" // $ANTLR start "rule__RealTypeScope__SetsNewAssignment_2_0" // InternalApplicationConfiguration.g:9628:1: rule__RealTypeScope__SetsNewAssignment_2_0 : ( ( '+=' ) ) ; public final void rule__RealTypeScope__SetsNewAssignment_2_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9632:1: ( ( ( '+=' ) ) ) // InternalApplicationConfiguration.g:9633:2: ( ( '+=' ) ) { // InternalApplicationConfiguration.g:9633:2: ( ( '+=' ) ) // InternalApplicationConfiguration.g:9634:3: ( '+=' ) { before(grammarAccess.getRealTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); // InternalApplicationConfiguration.g:9635:3: ( '+=' ) // InternalApplicationConfiguration.g:9636:4: '+=' { before(grammarAccess.getRealTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); match(input,53,FOLLOW_2); after(grammarAccess.getRealTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); } after(grammarAccess.getRealTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__SetsNewAssignment_2_0" // $ANTLR start "rule__RealTypeScope__SetsSumAssignment_2_1" // InternalApplicationConfiguration.g:9647:1: rule__RealTypeScope__SetsSumAssignment_2_1 : ( ( '=' ) ) ; public final void rule__RealTypeScope__SetsSumAssignment_2_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9651:1: ( ( ( '=' ) ) ) // InternalApplicationConfiguration.g:9652:2: ( ( '=' ) ) { // InternalApplicationConfiguration.g:9652:2: ( ( '=' ) ) // InternalApplicationConfiguration.g:9653:3: ( '=' ) { before(grammarAccess.getRealTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); // InternalApplicationConfiguration.g:9654:3: ( '=' ) // InternalApplicationConfiguration.g:9655:4: '=' { before(grammarAccess.getRealTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); match(input,22,FOLLOW_2); after(grammarAccess.getRealTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); } after(grammarAccess.getRealTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__SetsSumAssignment_2_1" // $ANTLR start "rule__RealTypeScope__NumberAssignment_3_0" // InternalApplicationConfiguration.g:9666:1: rule__RealTypeScope__NumberAssignment_3_0 : ( ruleExactNumber ) ; public final void rule__RealTypeScope__NumberAssignment_3_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9670:1: ( ( ruleExactNumber ) ) // InternalApplicationConfiguration.g:9671:2: ( ruleExactNumber ) { // InternalApplicationConfiguration.g:9671:2: ( ruleExactNumber ) // InternalApplicationConfiguration.g:9672:3: ruleExactNumber { before(grammarAccess.getRealTypeScopeAccess().getNumberExactNumberParserRuleCall_3_0_0()); pushFollow(FOLLOW_2); ruleExactNumber(); state._fsp--; after(grammarAccess.getRealTypeScopeAccess().getNumberExactNumberParserRuleCall_3_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__NumberAssignment_3_0" // $ANTLR start "rule__RealTypeScope__NumberAssignment_3_1" // InternalApplicationConfiguration.g:9681:1: rule__RealTypeScope__NumberAssignment_3_1 : ( ruleIntervallNumber ) ; public final void rule__RealTypeScope__NumberAssignment_3_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9685:1: ( ( ruleIntervallNumber ) ) // InternalApplicationConfiguration.g:9686:2: ( ruleIntervallNumber ) { // InternalApplicationConfiguration.g:9686:2: ( ruleIntervallNumber ) // InternalApplicationConfiguration.g:9687:3: ruleIntervallNumber { before(grammarAccess.getRealTypeScopeAccess().getNumberIntervallNumberParserRuleCall_3_1_0()); pushFollow(FOLLOW_2); ruleIntervallNumber(); state._fsp--; after(grammarAccess.getRealTypeScopeAccess().getNumberIntervallNumberParserRuleCall_3_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__NumberAssignment_3_1" // $ANTLR start "rule__RealTypeScope__NumberAssignment_3_2" // InternalApplicationConfiguration.g:9696:1: rule__RealTypeScope__NumberAssignment_3_2 : ( ruleRealEnumeration ) ; public final void rule__RealTypeScope__NumberAssignment_3_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9700:1: ( ( ruleRealEnumeration ) ) // InternalApplicationConfiguration.g:9701:2: ( ruleRealEnumeration ) { // InternalApplicationConfiguration.g:9701:2: ( ruleRealEnumeration ) // InternalApplicationConfiguration.g:9702:3: ruleRealEnumeration { before(grammarAccess.getRealTypeScopeAccess().getNumberRealEnumerationParserRuleCall_3_2_0()); pushFollow(FOLLOW_2); ruleRealEnumeration(); state._fsp--; after(grammarAccess.getRealTypeScopeAccess().getNumberRealEnumerationParserRuleCall_3_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealTypeScope__NumberAssignment_3_2" // $ANTLR start "rule__StringTypeScope__TypeAssignment_1" // InternalApplicationConfiguration.g:9711:1: rule__StringTypeScope__TypeAssignment_1 : ( ruleStringReference ) ; public final void rule__StringTypeScope__TypeAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9715:1: ( ( ruleStringReference ) ) // InternalApplicationConfiguration.g:9716:2: ( ruleStringReference ) { // InternalApplicationConfiguration.g:9716:2: ( ruleStringReference ) // InternalApplicationConfiguration.g:9717:3: ruleStringReference { before(grammarAccess.getStringTypeScopeAccess().getTypeStringReferenceParserRuleCall_1_0()); pushFollow(FOLLOW_2); ruleStringReference(); state._fsp--; after(grammarAccess.getStringTypeScopeAccess().getTypeStringReferenceParserRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__TypeAssignment_1" // $ANTLR start "rule__StringTypeScope__SetsNewAssignment_2_0" // InternalApplicationConfiguration.g:9726:1: rule__StringTypeScope__SetsNewAssignment_2_0 : ( ( '+=' ) ) ; public final void rule__StringTypeScope__SetsNewAssignment_2_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9730:1: ( ( ( '+=' ) ) ) // InternalApplicationConfiguration.g:9731:2: ( ( '+=' ) ) { // InternalApplicationConfiguration.g:9731:2: ( ( '+=' ) ) // InternalApplicationConfiguration.g:9732:3: ( '+=' ) { before(grammarAccess.getStringTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); // InternalApplicationConfiguration.g:9733:3: ( '+=' ) // InternalApplicationConfiguration.g:9734:4: '+=' { before(grammarAccess.getStringTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); match(input,53,FOLLOW_2); after(grammarAccess.getStringTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); } after(grammarAccess.getStringTypeScopeAccess().getSetsNewPlusSignEqualsSignKeyword_2_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__SetsNewAssignment_2_0" // $ANTLR start "rule__StringTypeScope__SetsSumAssignment_2_1" // InternalApplicationConfiguration.g:9745:1: rule__StringTypeScope__SetsSumAssignment_2_1 : ( ( '=' ) ) ; public final void rule__StringTypeScope__SetsSumAssignment_2_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9749:1: ( ( ( '=' ) ) ) // InternalApplicationConfiguration.g:9750:2: ( ( '=' ) ) { // InternalApplicationConfiguration.g:9750:2: ( ( '=' ) ) // InternalApplicationConfiguration.g:9751:3: ( '=' ) { before(grammarAccess.getStringTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); // InternalApplicationConfiguration.g:9752:3: ( '=' ) // InternalApplicationConfiguration.g:9753:4: '=' { before(grammarAccess.getStringTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); match(input,22,FOLLOW_2); after(grammarAccess.getStringTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); } after(grammarAccess.getStringTypeScopeAccess().getSetsSumEqualsSignKeyword_2_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__SetsSumAssignment_2_1" // $ANTLR start "rule__StringTypeScope__NumberAssignment_3_0" // InternalApplicationConfiguration.g:9764:1: rule__StringTypeScope__NumberAssignment_3_0 : ( ruleExactNumber ) ; public final void rule__StringTypeScope__NumberAssignment_3_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9768:1: ( ( ruleExactNumber ) ) // InternalApplicationConfiguration.g:9769:2: ( ruleExactNumber ) { // InternalApplicationConfiguration.g:9769:2: ( ruleExactNumber ) // InternalApplicationConfiguration.g:9770:3: ruleExactNumber { before(grammarAccess.getStringTypeScopeAccess().getNumberExactNumberParserRuleCall_3_0_0()); pushFollow(FOLLOW_2); ruleExactNumber(); state._fsp--; after(grammarAccess.getStringTypeScopeAccess().getNumberExactNumberParserRuleCall_3_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__NumberAssignment_3_0" // $ANTLR start "rule__StringTypeScope__NumberAssignment_3_1" // InternalApplicationConfiguration.g:9779:1: rule__StringTypeScope__NumberAssignment_3_1 : ( ruleIntervallNumber ) ; public final void rule__StringTypeScope__NumberAssignment_3_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9783:1: ( ( ruleIntervallNumber ) ) // InternalApplicationConfiguration.g:9784:2: ( ruleIntervallNumber ) { // InternalApplicationConfiguration.g:9784:2: ( ruleIntervallNumber ) // InternalApplicationConfiguration.g:9785:3: ruleIntervallNumber { before(grammarAccess.getStringTypeScopeAccess().getNumberIntervallNumberParserRuleCall_3_1_0()); pushFollow(FOLLOW_2); ruleIntervallNumber(); state._fsp--; after(grammarAccess.getStringTypeScopeAccess().getNumberIntervallNumberParserRuleCall_3_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__NumberAssignment_3_1" // $ANTLR start "rule__StringTypeScope__NumberAssignment_3_2" // InternalApplicationConfiguration.g:9794:1: rule__StringTypeScope__NumberAssignment_3_2 : ( ruleStringEnumeration ) ; public final void rule__StringTypeScope__NumberAssignment_3_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9798:1: ( ( ruleStringEnumeration ) ) // InternalApplicationConfiguration.g:9799:2: ( ruleStringEnumeration ) { // InternalApplicationConfiguration.g:9799:2: ( ruleStringEnumeration ) // InternalApplicationConfiguration.g:9800:3: ruleStringEnumeration { before(grammarAccess.getStringTypeScopeAccess().getNumberStringEnumerationParserRuleCall_3_2_0()); pushFollow(FOLLOW_2); ruleStringEnumeration(); state._fsp--; after(grammarAccess.getStringTypeScopeAccess().getNumberStringEnumerationParserRuleCall_3_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringTypeScope__NumberAssignment_3_2" // $ANTLR start "rule__ClassReference__ElementAssignment_1" // InternalApplicationConfiguration.g:9809:1: rule__ClassReference__ElementAssignment_1 : ( ruleMetamodelElement ) ; public final void rule__ClassReference__ElementAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9813:1: ( ( ruleMetamodelElement ) ) // InternalApplicationConfiguration.g:9814:2: ( ruleMetamodelElement ) { // InternalApplicationConfiguration.g:9814:2: ( ruleMetamodelElement ) // InternalApplicationConfiguration.g:9815:3: ruleMetamodelElement { before(grammarAccess.getClassReferenceAccess().getElementMetamodelElementParserRuleCall_1_0()); pushFollow(FOLLOW_2); ruleMetamodelElement(); state._fsp--; after(grammarAccess.getClassReferenceAccess().getElementMetamodelElementParserRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ClassReference__ElementAssignment_1" // $ANTLR start "rule__ExactNumber__ExactNumberAssignment_0" // InternalApplicationConfiguration.g:9824:1: rule__ExactNumber__ExactNumberAssignment_0 : ( RULE_INT ) ; public final void rule__ExactNumber__ExactNumberAssignment_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9828:1: ( ( RULE_INT ) ) // InternalApplicationConfiguration.g:9829:2: ( RULE_INT ) { // InternalApplicationConfiguration.g:9829:2: ( RULE_INT ) // InternalApplicationConfiguration.g:9830:3: RULE_INT { before(grammarAccess.getExactNumberAccess().getExactNumberINTTerminalRuleCall_0_0()); match(input,RULE_INT,FOLLOW_2); after(grammarAccess.getExactNumberAccess().getExactNumberINTTerminalRuleCall_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ExactNumber__ExactNumberAssignment_0" // $ANTLR start "rule__ExactNumber__ExactUnlimitedAssignment_1" // InternalApplicationConfiguration.g:9839:1: rule__ExactNumber__ExactUnlimitedAssignment_1 : ( ( '*' ) ) ; public final void rule__ExactNumber__ExactUnlimitedAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9843:1: ( ( ( '*' ) ) ) // InternalApplicationConfiguration.g:9844:2: ( ( '*' ) ) { // InternalApplicationConfiguration.g:9844:2: ( ( '*' ) ) // InternalApplicationConfiguration.g:9845:3: ( '*' ) { before(grammarAccess.getExactNumberAccess().getExactUnlimitedAsteriskKeyword_1_0()); // InternalApplicationConfiguration.g:9846:3: ( '*' ) // InternalApplicationConfiguration.g:9847:4: '*' { before(grammarAccess.getExactNumberAccess().getExactUnlimitedAsteriskKeyword_1_0()); match(input,54,FOLLOW_2); after(grammarAccess.getExactNumberAccess().getExactUnlimitedAsteriskKeyword_1_0()); } after(grammarAccess.getExactNumberAccess().getExactUnlimitedAsteriskKeyword_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ExactNumber__ExactUnlimitedAssignment_1" // $ANTLR start "rule__IntervallNumber__MinAssignment_0" // InternalApplicationConfiguration.g:9858:1: rule__IntervallNumber__MinAssignment_0 : ( RULE_INT ) ; public final void rule__IntervallNumber__MinAssignment_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9862:1: ( ( RULE_INT ) ) // InternalApplicationConfiguration.g:9863:2: ( RULE_INT ) { // InternalApplicationConfiguration.g:9863:2: ( RULE_INT ) // InternalApplicationConfiguration.g:9864:3: RULE_INT { before(grammarAccess.getIntervallNumberAccess().getMinINTTerminalRuleCall_0_0()); match(input,RULE_INT,FOLLOW_2); after(grammarAccess.getIntervallNumberAccess().getMinINTTerminalRuleCall_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntervallNumber__MinAssignment_0" // $ANTLR start "rule__IntervallNumber__MaxNumberAssignment_2_0" // InternalApplicationConfiguration.g:9873:1: rule__IntervallNumber__MaxNumberAssignment_2_0 : ( RULE_INT ) ; public final void rule__IntervallNumber__MaxNumberAssignment_2_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9877:1: ( ( RULE_INT ) ) // InternalApplicationConfiguration.g:9878:2: ( RULE_INT ) { // InternalApplicationConfiguration.g:9878:2: ( RULE_INT ) // InternalApplicationConfiguration.g:9879:3: RULE_INT { before(grammarAccess.getIntervallNumberAccess().getMaxNumberINTTerminalRuleCall_2_0_0()); match(input,RULE_INT,FOLLOW_2); after(grammarAccess.getIntervallNumberAccess().getMaxNumberINTTerminalRuleCall_2_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntervallNumber__MaxNumberAssignment_2_0" // $ANTLR start "rule__IntervallNumber__MaxUnlimitedAssignment_2_1" // InternalApplicationConfiguration.g:9888:1: rule__IntervallNumber__MaxUnlimitedAssignment_2_1 : ( ( '*' ) ) ; public final void rule__IntervallNumber__MaxUnlimitedAssignment_2_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9892:1: ( ( ( '*' ) ) ) // InternalApplicationConfiguration.g:9893:2: ( ( '*' ) ) { // InternalApplicationConfiguration.g:9893:2: ( ( '*' ) ) // InternalApplicationConfiguration.g:9894:3: ( '*' ) { before(grammarAccess.getIntervallNumberAccess().getMaxUnlimitedAsteriskKeyword_2_1_0()); // InternalApplicationConfiguration.g:9895:3: ( '*' ) // InternalApplicationConfiguration.g:9896:4: '*' { before(grammarAccess.getIntervallNumberAccess().getMaxUnlimitedAsteriskKeyword_2_1_0()); match(input,54,FOLLOW_2); after(grammarAccess.getIntervallNumberAccess().getMaxUnlimitedAsteriskKeyword_2_1_0()); } after(grammarAccess.getIntervallNumberAccess().getMaxUnlimitedAsteriskKeyword_2_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntervallNumber__MaxUnlimitedAssignment_2_1" // $ANTLR start "rule__IntEnumberation__EntryAssignment_2_0" // InternalApplicationConfiguration.g:9907:1: rule__IntEnumberation__EntryAssignment_2_0 : ( RULE_INT ) ; public final void rule__IntEnumberation__EntryAssignment_2_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9911:1: ( ( RULE_INT ) ) // InternalApplicationConfiguration.g:9912:2: ( RULE_INT ) { // InternalApplicationConfiguration.g:9912:2: ( RULE_INT ) // InternalApplicationConfiguration.g:9913:3: RULE_INT { before(grammarAccess.getIntEnumberationAccess().getEntryINTTerminalRuleCall_2_0_0()); match(input,RULE_INT,FOLLOW_2); after(grammarAccess.getIntEnumberationAccess().getEntryINTTerminalRuleCall_2_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__EntryAssignment_2_0" // $ANTLR start "rule__IntEnumberation__EntryAssignment_2_1_1" // InternalApplicationConfiguration.g:9922:1: rule__IntEnumberation__EntryAssignment_2_1_1 : ( RULE_INT ) ; public final void rule__IntEnumberation__EntryAssignment_2_1_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9926:1: ( ( RULE_INT ) ) // InternalApplicationConfiguration.g:9927:2: ( RULE_INT ) { // InternalApplicationConfiguration.g:9927:2: ( RULE_INT ) // InternalApplicationConfiguration.g:9928:3: RULE_INT { before(grammarAccess.getIntEnumberationAccess().getEntryINTTerminalRuleCall_2_1_1_0()); match(input,RULE_INT,FOLLOW_2); after(grammarAccess.getIntEnumberationAccess().getEntryINTTerminalRuleCall_2_1_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__IntEnumberation__EntryAssignment_2_1_1" // $ANTLR start "rule__RealEnumeration__EntryAssignment_2_0" // InternalApplicationConfiguration.g:9937:1: rule__RealEnumeration__EntryAssignment_2_0 : ( RULE_INT ) ; public final void rule__RealEnumeration__EntryAssignment_2_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9941:1: ( ( RULE_INT ) ) // InternalApplicationConfiguration.g:9942:2: ( RULE_INT ) { // InternalApplicationConfiguration.g:9942:2: ( RULE_INT ) // InternalApplicationConfiguration.g:9943:3: RULE_INT { before(grammarAccess.getRealEnumerationAccess().getEntryINTTerminalRuleCall_2_0_0()); match(input,RULE_INT,FOLLOW_2); after(grammarAccess.getRealEnumerationAccess().getEntryINTTerminalRuleCall_2_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__EntryAssignment_2_0" // $ANTLR start "rule__RealEnumeration__EntryAssignment_2_1_1" // InternalApplicationConfiguration.g:9952:1: rule__RealEnumeration__EntryAssignment_2_1_1 : ( RULE_INT ) ; public final void rule__RealEnumeration__EntryAssignment_2_1_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9956:1: ( ( RULE_INT ) ) // InternalApplicationConfiguration.g:9957:2: ( RULE_INT ) { // InternalApplicationConfiguration.g:9957:2: ( RULE_INT ) // InternalApplicationConfiguration.g:9958:3: RULE_INT { before(grammarAccess.getRealEnumerationAccess().getEntryINTTerminalRuleCall_2_1_1_0()); match(input,RULE_INT,FOLLOW_2); after(grammarAccess.getRealEnumerationAccess().getEntryINTTerminalRuleCall_2_1_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__RealEnumeration__EntryAssignment_2_1_1" // $ANTLR start "rule__StringEnumeration__EntryAssignment_2_0" // InternalApplicationConfiguration.g:9967:1: rule__StringEnumeration__EntryAssignment_2_0 : ( RULE_STRING ) ; public final void rule__StringEnumeration__EntryAssignment_2_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9971:1: ( ( RULE_STRING ) ) // InternalApplicationConfiguration.g:9972:2: ( RULE_STRING ) { // InternalApplicationConfiguration.g:9972:2: ( RULE_STRING ) // InternalApplicationConfiguration.g:9973:3: RULE_STRING { before(grammarAccess.getStringEnumerationAccess().getEntrySTRINGTerminalRuleCall_2_0_0()); match(input,RULE_STRING,FOLLOW_2); after(grammarAccess.getStringEnumerationAccess().getEntrySTRINGTerminalRuleCall_2_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__EntryAssignment_2_0" // $ANTLR start "rule__StringEnumeration__EntryAssignment_2_1_1" // InternalApplicationConfiguration.g:9982:1: rule__StringEnumeration__EntryAssignment_2_1_1 : ( RULE_STRING ) ; public final void rule__StringEnumeration__EntryAssignment_2_1_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:9986:1: ( ( RULE_STRING ) ) // InternalApplicationConfiguration.g:9987:2: ( RULE_STRING ) { // InternalApplicationConfiguration.g:9987:2: ( RULE_STRING ) // InternalApplicationConfiguration.g:9988:3: RULE_STRING { before(grammarAccess.getStringEnumerationAccess().getEntrySTRINGTerminalRuleCall_2_1_1_0()); match(input,RULE_STRING,FOLLOW_2); after(grammarAccess.getStringEnumerationAccess().getEntrySTRINGTerminalRuleCall_2_1_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__StringEnumeration__EntryAssignment_2_1_1" // $ANTLR start "rule__ScopeDeclaration__NameAssignment_1" // InternalApplicationConfiguration.g:9997:1: rule__ScopeDeclaration__NameAssignment_1 : ( RULE_ID ) ; public final void rule__ScopeDeclaration__NameAssignment_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10001:1: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:10002:2: ( RULE_ID ) { // InternalApplicationConfiguration.g:10002:2: ( RULE_ID ) // InternalApplicationConfiguration.g:10003:3: RULE_ID { before(grammarAccess.getScopeDeclarationAccess().getNameIDTerminalRuleCall_1_0()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getScopeDeclarationAccess().getNameIDTerminalRuleCall_1_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeDeclaration__NameAssignment_1" // $ANTLR start "rule__ScopeDeclaration__SpecificationAssignment_2" // InternalApplicationConfiguration.g:10012:1: rule__ScopeDeclaration__SpecificationAssignment_2 : ( ruleScopeSpecification ) ; public final void rule__ScopeDeclaration__SpecificationAssignment_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10016:1: ( ( ruleScopeSpecification ) ) // InternalApplicationConfiguration.g:10017:2: ( ruleScopeSpecification ) { // InternalApplicationConfiguration.g:10017:2: ( ruleScopeSpecification ) // InternalApplicationConfiguration.g:10018:3: ruleScopeSpecification { before(grammarAccess.getScopeDeclarationAccess().getSpecificationScopeSpecificationParserRuleCall_2_0()); pushFollow(FOLLOW_2); ruleScopeSpecification(); state._fsp--; after(grammarAccess.getScopeDeclarationAccess().getSpecificationScopeSpecificationParserRuleCall_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeDeclaration__SpecificationAssignment_2" // $ANTLR start "rule__ScopeReference__ReferredAssignment" // InternalApplicationConfiguration.g:10027:1: rule__ScopeReference__ReferredAssignment : ( ( RULE_ID ) ) ; public final void rule__ScopeReference__ReferredAssignment() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10031:1: ( ( ( RULE_ID ) ) ) // InternalApplicationConfiguration.g:10032:2: ( ( RULE_ID ) ) { // InternalApplicationConfiguration.g:10032:2: ( ( RULE_ID ) ) // InternalApplicationConfiguration.g:10033:3: ( RULE_ID ) { before(grammarAccess.getScopeReferenceAccess().getReferredScopeDeclarationCrossReference_0()); // InternalApplicationConfiguration.g:10034:3: ( RULE_ID ) // InternalApplicationConfiguration.g:10035:4: RULE_ID { before(grammarAccess.getScopeReferenceAccess().getReferredScopeDeclarationIDTerminalRuleCall_0_1()); match(input,RULE_ID,FOLLOW_2); after(grammarAccess.getScopeReferenceAccess().getReferredScopeDeclarationIDTerminalRuleCall_0_1()); } after(grammarAccess.getScopeReferenceAccess().getReferredScopeDeclarationCrossReference_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__ScopeReference__ReferredAssignment" // $ANTLR start "rule__GenerationTask__MetamodelAssignment_3_0_2" // InternalApplicationConfiguration.g:10046:1: rule__GenerationTask__MetamodelAssignment_3_0_2 : ( ruleMetamodel ) ; public final void rule__GenerationTask__MetamodelAssignment_3_0_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10050:1: ( ( ruleMetamodel ) ) // InternalApplicationConfiguration.g:10051:2: ( ruleMetamodel ) { // InternalApplicationConfiguration.g:10051:2: ( ruleMetamodel ) // InternalApplicationConfiguration.g:10052:3: ruleMetamodel { before(grammarAccess.getGenerationTaskAccess().getMetamodelMetamodelParserRuleCall_3_0_2_0()); pushFollow(FOLLOW_2); ruleMetamodel(); state._fsp--; after(grammarAccess.getGenerationTaskAccess().getMetamodelMetamodelParserRuleCall_3_0_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__MetamodelAssignment_3_0_2" // $ANTLR start "rule__GenerationTask__PartialModelAssignment_3_1_2" // InternalApplicationConfiguration.g:10061:1: rule__GenerationTask__PartialModelAssignment_3_1_2 : ( rulePartialModel ) ; public final void rule__GenerationTask__PartialModelAssignment_3_1_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10065:1: ( ( rulePartialModel ) ) // InternalApplicationConfiguration.g:10066:2: ( rulePartialModel ) { // InternalApplicationConfiguration.g:10066:2: ( rulePartialModel ) // InternalApplicationConfiguration.g:10067:3: rulePartialModel { before(grammarAccess.getGenerationTaskAccess().getPartialModelPartialModelParserRuleCall_3_1_2_0()); pushFollow(FOLLOW_2); rulePartialModel(); state._fsp--; after(grammarAccess.getGenerationTaskAccess().getPartialModelPartialModelParserRuleCall_3_1_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__PartialModelAssignment_3_1_2" // $ANTLR start "rule__GenerationTask__PatternsAssignment_3_2_2" // InternalApplicationConfiguration.g:10076:1: rule__GenerationTask__PatternsAssignment_3_2_2 : ( ruleGraphPattern ) ; public final void rule__GenerationTask__PatternsAssignment_3_2_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10080:1: ( ( ruleGraphPattern ) ) // InternalApplicationConfiguration.g:10081:2: ( ruleGraphPattern ) { // InternalApplicationConfiguration.g:10081:2: ( ruleGraphPattern ) // InternalApplicationConfiguration.g:10082:3: ruleGraphPattern { before(grammarAccess.getGenerationTaskAccess().getPatternsGraphPatternParserRuleCall_3_2_2_0()); pushFollow(FOLLOW_2); ruleGraphPattern(); state._fsp--; after(grammarAccess.getGenerationTaskAccess().getPatternsGraphPatternParserRuleCall_3_2_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__PatternsAssignment_3_2_2" // $ANTLR start "rule__GenerationTask__ScopeAssignment_3_3_2" // InternalApplicationConfiguration.g:10091:1: rule__GenerationTask__ScopeAssignment_3_3_2 : ( ruleScope ) ; public final void rule__GenerationTask__ScopeAssignment_3_3_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10095:1: ( ( ruleScope ) ) // InternalApplicationConfiguration.g:10096:2: ( ruleScope ) { // InternalApplicationConfiguration.g:10096:2: ( ruleScope ) // InternalApplicationConfiguration.g:10097:3: ruleScope { before(grammarAccess.getGenerationTaskAccess().getScopeScopeParserRuleCall_3_3_2_0()); pushFollow(FOLLOW_2); ruleScope(); state._fsp--; after(grammarAccess.getGenerationTaskAccess().getScopeScopeParserRuleCall_3_3_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__ScopeAssignment_3_3_2" // $ANTLR start "rule__GenerationTask__NumberSpecifiedAssignment_3_4_0" // InternalApplicationConfiguration.g:10106:1: rule__GenerationTask__NumberSpecifiedAssignment_3_4_0 : ( ( 'number' ) ) ; public final void rule__GenerationTask__NumberSpecifiedAssignment_3_4_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10110:1: ( ( ( 'number' ) ) ) // InternalApplicationConfiguration.g:10111:2: ( ( 'number' ) ) { // InternalApplicationConfiguration.g:10111:2: ( ( 'number' ) ) // InternalApplicationConfiguration.g:10112:3: ( 'number' ) { before(grammarAccess.getGenerationTaskAccess().getNumberSpecifiedNumberKeyword_3_4_0_0()); // InternalApplicationConfiguration.g:10113:3: ( 'number' ) // InternalApplicationConfiguration.g:10114:4: 'number' { before(grammarAccess.getGenerationTaskAccess().getNumberSpecifiedNumberKeyword_3_4_0_0()); match(input,55,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getNumberSpecifiedNumberKeyword_3_4_0_0()); } after(grammarAccess.getGenerationTaskAccess().getNumberSpecifiedNumberKeyword_3_4_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__NumberSpecifiedAssignment_3_4_0" // $ANTLR start "rule__GenerationTask__NumberAssignment_3_4_2" // InternalApplicationConfiguration.g:10125:1: rule__GenerationTask__NumberAssignment_3_4_2 : ( RULE_INT ) ; public final void rule__GenerationTask__NumberAssignment_3_4_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10129:1: ( ( RULE_INT ) ) // InternalApplicationConfiguration.g:10130:2: ( RULE_INT ) { // InternalApplicationConfiguration.g:10130:2: ( RULE_INT ) // InternalApplicationConfiguration.g:10131:3: RULE_INT { before(grammarAccess.getGenerationTaskAccess().getNumberINTTerminalRuleCall_3_4_2_0()); match(input,RULE_INT,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getNumberINTTerminalRuleCall_3_4_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__NumberAssignment_3_4_2" // $ANTLR start "rule__GenerationTask__RunSpecifiedAssignment_3_5_0" // InternalApplicationConfiguration.g:10140:1: rule__GenerationTask__RunSpecifiedAssignment_3_5_0 : ( ( 'runs' ) ) ; public final void rule__GenerationTask__RunSpecifiedAssignment_3_5_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10144:1: ( ( ( 'runs' ) ) ) // InternalApplicationConfiguration.g:10145:2: ( ( 'runs' ) ) { // InternalApplicationConfiguration.g:10145:2: ( ( 'runs' ) ) // InternalApplicationConfiguration.g:10146:3: ( 'runs' ) { before(grammarAccess.getGenerationTaskAccess().getRunSpecifiedRunsKeyword_3_5_0_0()); // InternalApplicationConfiguration.g:10147:3: ( 'runs' ) // InternalApplicationConfiguration.g:10148:4: 'runs' { before(grammarAccess.getGenerationTaskAccess().getRunSpecifiedRunsKeyword_3_5_0_0()); match(input,56,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getRunSpecifiedRunsKeyword_3_5_0_0()); } after(grammarAccess.getGenerationTaskAccess().getRunSpecifiedRunsKeyword_3_5_0_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__RunSpecifiedAssignment_3_5_0" // $ANTLR start "rule__GenerationTask__RunsAssignment_3_5_2" // InternalApplicationConfiguration.g:10159:1: rule__GenerationTask__RunsAssignment_3_5_2 : ( RULE_INT ) ; public final void rule__GenerationTask__RunsAssignment_3_5_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10163:1: ( ( RULE_INT ) ) // InternalApplicationConfiguration.g:10164:2: ( RULE_INT ) { // InternalApplicationConfiguration.g:10164:2: ( RULE_INT ) // InternalApplicationConfiguration.g:10165:3: RULE_INT { before(grammarAccess.getGenerationTaskAccess().getRunsINTTerminalRuleCall_3_5_2_0()); match(input,RULE_INT,FOLLOW_2); after(grammarAccess.getGenerationTaskAccess().getRunsINTTerminalRuleCall_3_5_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__RunsAssignment_3_5_2" // $ANTLR start "rule__GenerationTask__SolverAssignment_3_6_2" // InternalApplicationConfiguration.g:10174:1: rule__GenerationTask__SolverAssignment_3_6_2 : ( ruleSolver ) ; public final void rule__GenerationTask__SolverAssignment_3_6_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10178:1: ( ( ruleSolver ) ) // InternalApplicationConfiguration.g:10179:2: ( ruleSolver ) { // InternalApplicationConfiguration.g:10179:2: ( ruleSolver ) // InternalApplicationConfiguration.g:10180:3: ruleSolver { before(grammarAccess.getGenerationTaskAccess().getSolverSolverEnumRuleCall_3_6_2_0()); pushFollow(FOLLOW_2); ruleSolver(); state._fsp--; after(grammarAccess.getGenerationTaskAccess().getSolverSolverEnumRuleCall_3_6_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__SolverAssignment_3_6_2" // $ANTLR start "rule__GenerationTask__ConfigAssignment_3_7_2" // InternalApplicationConfiguration.g:10189:1: rule__GenerationTask__ConfigAssignment_3_7_2 : ( ruleConfig ) ; public final void rule__GenerationTask__ConfigAssignment_3_7_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10193:1: ( ( ruleConfig ) ) // InternalApplicationConfiguration.g:10194:2: ( ruleConfig ) { // InternalApplicationConfiguration.g:10194:2: ( ruleConfig ) // InternalApplicationConfiguration.g:10195:3: ruleConfig { before(grammarAccess.getGenerationTaskAccess().getConfigConfigParserRuleCall_3_7_2_0()); pushFollow(FOLLOW_2); ruleConfig(); state._fsp--; after(grammarAccess.getGenerationTaskAccess().getConfigConfigParserRuleCall_3_7_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__ConfigAssignment_3_7_2" // $ANTLR start "rule__GenerationTask__DebugFolderAssignment_3_8_2" // InternalApplicationConfiguration.g:10204:1: rule__GenerationTask__DebugFolderAssignment_3_8_2 : ( ruleFile ) ; public final void rule__GenerationTask__DebugFolderAssignment_3_8_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10208:1: ( ( ruleFile ) ) // InternalApplicationConfiguration.g:10209:2: ( ruleFile ) { // InternalApplicationConfiguration.g:10209:2: ( ruleFile ) // InternalApplicationConfiguration.g:10210:3: ruleFile { before(grammarAccess.getGenerationTaskAccess().getDebugFolderFileParserRuleCall_3_8_2_0()); pushFollow(FOLLOW_2); ruleFile(); state._fsp--; after(grammarAccess.getGenerationTaskAccess().getDebugFolderFileParserRuleCall_3_8_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__DebugFolderAssignment_3_8_2" // $ANTLR start "rule__GenerationTask__TargetLogFileAssignment_3_9_2" // InternalApplicationConfiguration.g:10219:1: rule__GenerationTask__TargetLogFileAssignment_3_9_2 : ( ruleFile ) ; public final void rule__GenerationTask__TargetLogFileAssignment_3_9_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10223:1: ( ( ruleFile ) ) // InternalApplicationConfiguration.g:10224:2: ( ruleFile ) { // InternalApplicationConfiguration.g:10224:2: ( ruleFile ) // InternalApplicationConfiguration.g:10225:3: ruleFile { before(grammarAccess.getGenerationTaskAccess().getTargetLogFileFileParserRuleCall_3_9_2_0()); pushFollow(FOLLOW_2); ruleFile(); state._fsp--; after(grammarAccess.getGenerationTaskAccess().getTargetLogFileFileParserRuleCall_3_9_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__TargetLogFileAssignment_3_9_2" // $ANTLR start "rule__GenerationTask__TargetStatisticsFileAssignment_3_10_2" // InternalApplicationConfiguration.g:10234:1: rule__GenerationTask__TargetStatisticsFileAssignment_3_10_2 : ( ruleFile ) ; public final void rule__GenerationTask__TargetStatisticsFileAssignment_3_10_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10238:1: ( ( ruleFile ) ) // InternalApplicationConfiguration.g:10239:2: ( ruleFile ) { // InternalApplicationConfiguration.g:10239:2: ( ruleFile ) // InternalApplicationConfiguration.g:10240:3: ruleFile { before(grammarAccess.getGenerationTaskAccess().getTargetStatisticsFileFileParserRuleCall_3_10_2_0()); pushFollow(FOLLOW_2); ruleFile(); state._fsp--; after(grammarAccess.getGenerationTaskAccess().getTargetStatisticsFileFileParserRuleCall_3_10_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__TargetStatisticsFileAssignment_3_10_2" // $ANTLR start "rule__GenerationTask__TagetFolderAssignment_3_11_2" // InternalApplicationConfiguration.g:10249:1: rule__GenerationTask__TagetFolderAssignment_3_11_2 : ( ruleFile ) ; public final void rule__GenerationTask__TagetFolderAssignment_3_11_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalApplicationConfiguration.g:10253:1: ( ( ruleFile ) ) // InternalApplicationConfiguration.g:10254:2: ( ruleFile ) { // InternalApplicationConfiguration.g:10254:2: ( ruleFile ) // InternalApplicationConfiguration.g:10255:3: ruleFile { before(grammarAccess.getGenerationTaskAccess().getTagetFolderFileParserRuleCall_3_11_2_0()); pushFollow(FOLLOW_2); ruleFile(); state._fsp--; after(grammarAccess.getGenerationTaskAccess().getTagetFolderFileParserRuleCall_3_11_2_0()); } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; } // $ANTLR end "rule__GenerationTask__TagetFolderAssignment_3_11_2" // Delegated rules protected DFA54 dfa54 = new DFA54(this); protected DFA55 dfa55 = new DFA55(this); protected DFA56 dfa56 = new DFA56(this); protected DFA57 dfa57 = new DFA57(this); protected DFA58 dfa58 = new DFA58(this); protected DFA59 dfa59 = new DFA59(this); protected DFA60 dfa60 = new DFA60(this); protected DFA61 dfa61 = new DFA61(this); protected DFA62 dfa62 = new DFA62(this); protected DFA63 dfa63 = new DFA63(this); protected DFA64 dfa64 = new DFA64(this); protected DFA65 dfa65 = new DFA65(this); protected DFA66 dfa66 = new DFA66(this); static final String dfa_1s = "\16\uffff"; static final String dfa_2s = "\1\30\15\uffff"; static final String dfa_3s = "\1\70\15\uffff"; static final String dfa_4s = "\1\uffff\14\1\1\2"; static final String dfa_5s = "\1\0\15\uffff}>"; static final String[] dfa_6s = { "\1\15\4\uffff\1\1\2\uffff\1\3\1\10\13\uffff\1\4\1\uffff\1\2\1\7\1\11\1\12\1\13\1\14\2\uffff\1\5\1\6", "", "", "", "", "", "", "", "", "", "", "", "", "" }; static final short[] dfa_1 = DFA.unpackEncodedString(dfa_1s); static final char[] dfa_2 = DFA.unpackEncodedStringToUnsignedChars(dfa_2s); static final char[] dfa_3 = DFA.unpackEncodedStringToUnsignedChars(dfa_3s); static final short[] dfa_4 = DFA.unpackEncodedString(dfa_4s); static final short[] dfa_5 = DFA.unpackEncodedString(dfa_5s); static final short[][] dfa_6 = unpackEncodedStringArray(dfa_6s); class DFA54 extends DFA { public DFA54(BaseRecognizer recognizer) { this.recognizer = recognizer; this.decisionNumber = 54; this.eot = dfa_1; this.eof = dfa_1; this.min = dfa_2; this.max = dfa_3; this.accept = dfa_4; this.special = dfa_5; this.transition = dfa_6; } public String getDescription() { return "8196:2: ( rule__GenerationTask__UnorderedGroup_3__0 )?"; } public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { TokenStream input = (TokenStream)_input; int _s = s; switch ( s ) { case 0 : int LA54_0 = input.LA(1); int index54_0 = input.index(); input.rewind(); s = -1; if ( LA54_0 == 29 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0) ) {s = 1;} else if ( LA54_0 == 47 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1) ) {s = 2;} else if ( LA54_0 == 32 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2) ) {s = 3;} else if ( LA54_0 == 45 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3) ) {s = 4;} else if ( LA54_0 == 55 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4) ) {s = 5;} else if ( LA54_0 == 56 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5) ) {s = 6;} else if ( LA54_0 == 48 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6) ) {s = 7;} else if ( LA54_0 == 33 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7) ) {s = 8;} else if ( LA54_0 == 49 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8) ) {s = 9;} else if ( LA54_0 == 50 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9) ) {s = 10;} else if ( LA54_0 == 51 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10) ) {s = 11;} else if ( LA54_0 == 52 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11) ) {s = 12;} else if ( (LA54_0==24) ) {s = 13;} input.seek(index54_0); if ( s>=0 ) return s; break; } NoViableAltException nvae = new NoViableAltException(getDescription(), 54, _s, input); error(nvae); throw nvae; } } static final String dfa_7s = "\15\uffff"; static final String dfa_8s = "\1\35\14\uffff"; static final String dfa_9s = "\1\70\14\uffff"; static final String dfa_10s = "\1\uffff\1\1\1\2\1\3\1\4\1\5\1\6\1\7\1\10\1\11\1\12\1\13\1\14"; static final String dfa_11s = "\1\0\14\uffff}>"; static final String[] dfa_12s = { "\1\1\2\uffff\1\3\1\10\13\uffff\1\4\1\uffff\1\2\1\7\1\11\1\12\1\13\1\14\2\uffff\1\5\1\6", "", "", "", "", "", "", "", "", "", "", "", "" }; static final short[] dfa_7 = DFA.unpackEncodedString(dfa_7s); static final char[] dfa_8 = DFA.unpackEncodedStringToUnsignedChars(dfa_8s); static final char[] dfa_9 = DFA.unpackEncodedStringToUnsignedChars(dfa_9s); static final short[] dfa_10 = DFA.unpackEncodedString(dfa_10s); static final short[] dfa_11 = DFA.unpackEncodedString(dfa_11s); static final short[][] dfa_12 = unpackEncodedStringArray(dfa_12s); class DFA55 extends DFA { public DFA55(BaseRecognizer recognizer) { this.recognizer = recognizer; this.decisionNumber = 55; this.eot = dfa_7; this.eof = dfa_7; this.min = dfa_8; this.max = dfa_9; this.accept = dfa_10; this.special = dfa_11; this.transition = dfa_12; } public String getDescription() { return "8210:3: ( ({...}? => ( ( ( rule__GenerationTask__Group_3_0__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_1__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_2__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_3__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_4__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_5__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_6__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_7__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_8__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_9__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_10__0 ) ) ) ) | ({...}? => ( ( ( rule__GenerationTask__Group_3_11__0 ) ) ) ) )"; } public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { TokenStream input = (TokenStream)_input; int _s = s; switch ( s ) { case 0 : int LA55_0 = input.LA(1); int index55_0 = input.index(); input.rewind(); s = -1; if ( LA55_0 == 29 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0) ) {s = 1;} else if ( LA55_0 == 47 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1) ) {s = 2;} else if ( LA55_0 == 32 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2) ) {s = 3;} else if ( LA55_0 == 45 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3) ) {s = 4;} else if ( LA55_0 == 55 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4) ) {s = 5;} else if ( LA55_0 == 56 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5) ) {s = 6;} else if ( LA55_0 == 48 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6) ) {s = 7;} else if ( LA55_0 == 33 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7) ) {s = 8;} else if ( LA55_0 == 49 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8) ) {s = 9;} else if ( LA55_0 == 50 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9) ) {s = 10;} else if ( LA55_0 == 51 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10) ) {s = 11;} else if ( LA55_0 == 52 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11) ) {s = 12;} input.seek(index55_0); if ( s>=0 ) return s; break; } NoViableAltException nvae = new NoViableAltException(getDescription(), 55, _s, input); error(nvae); throw nvae; } } class DFA56 extends DFA { public DFA56(BaseRecognizer recognizer) { this.recognizer = recognizer; this.decisionNumber = 56; this.eot = dfa_1; this.eof = dfa_1; this.min = dfa_2; this.max = dfa_3; this.accept = dfa_4; this.special = dfa_5; this.transition = dfa_6; } public String getDescription() { return "8405:2: ( rule__GenerationTask__UnorderedGroup_3__1 )?"; } public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { TokenStream input = (TokenStream)_input; int _s = s; switch ( s ) { case 0 : int LA56_0 = input.LA(1); int index56_0 = input.index(); input.rewind(); s = -1; if ( LA56_0 == 29 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0) ) {s = 1;} else if ( LA56_0 == 47 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1) ) {s = 2;} else if ( LA56_0 == 32 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2) ) {s = 3;} else if ( LA56_0 == 45 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3) ) {s = 4;} else if ( LA56_0 == 55 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4) ) {s = 5;} else if ( LA56_0 == 56 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5) ) {s = 6;} else if ( LA56_0 == 48 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6) ) {s = 7;} else if ( LA56_0 == 33 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7) ) {s = 8;} else if ( LA56_0 == 49 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8) ) {s = 9;} else if ( LA56_0 == 50 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9) ) {s = 10;} else if ( LA56_0 == 51 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10) ) {s = 11;} else if ( LA56_0 == 52 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11) ) {s = 12;} else if ( (LA56_0==24) ) {s = 13;} input.seek(index56_0); if ( s>=0 ) return s; break; } NoViableAltException nvae = new NoViableAltException(getDescription(), 56, _s, input); error(nvae); throw nvae; } } class DFA57 extends DFA { public DFA57(BaseRecognizer recognizer) { this.recognizer = recognizer; this.decisionNumber = 57; this.eot = dfa_1; this.eof = dfa_1; this.min = dfa_2; this.max = dfa_3; this.accept = dfa_4; this.special = dfa_5; this.transition = dfa_6; } public String getDescription() { return "8417:2: ( rule__GenerationTask__UnorderedGroup_3__2 )?"; } public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { TokenStream input = (TokenStream)_input; int _s = s; switch ( s ) { case 0 : int LA57_0 = input.LA(1); int index57_0 = input.index(); input.rewind(); s = -1; if ( LA57_0 == 29 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0) ) {s = 1;} else if ( LA57_0 == 47 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1) ) {s = 2;} else if ( LA57_0 == 32 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2) ) {s = 3;} else if ( LA57_0 == 45 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3) ) {s = 4;} else if ( LA57_0 == 55 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4) ) {s = 5;} else if ( LA57_0 == 56 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5) ) {s = 6;} else if ( LA57_0 == 48 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6) ) {s = 7;} else if ( LA57_0 == 33 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7) ) {s = 8;} else if ( LA57_0 == 49 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8) ) {s = 9;} else if ( LA57_0 == 50 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9) ) {s = 10;} else if ( LA57_0 == 51 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10) ) {s = 11;} else if ( LA57_0 == 52 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11) ) {s = 12;} else if ( (LA57_0==24) ) {s = 13;} input.seek(index57_0); if ( s>=0 ) return s; break; } NoViableAltException nvae = new NoViableAltException(getDescription(), 57, _s, input); error(nvae); throw nvae; } } class DFA58 extends DFA { public DFA58(BaseRecognizer recognizer) { this.recognizer = recognizer; this.decisionNumber = 58; this.eot = dfa_1; this.eof = dfa_1; this.min = dfa_2; this.max = dfa_3; this.accept = dfa_4; this.special = dfa_5; this.transition = dfa_6; } public String getDescription() { return "8429:2: ( rule__GenerationTask__UnorderedGroup_3__3 )?"; } public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { TokenStream input = (TokenStream)_input; int _s = s; switch ( s ) { case 0 : int LA58_0 = input.LA(1); int index58_0 = input.index(); input.rewind(); s = -1; if ( LA58_0 == 29 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0) ) {s = 1;} else if ( LA58_0 == 47 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1) ) {s = 2;} else if ( LA58_0 == 32 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2) ) {s = 3;} else if ( LA58_0 == 45 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3) ) {s = 4;} else if ( LA58_0 == 55 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4) ) {s = 5;} else if ( LA58_0 == 56 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5) ) {s = 6;} else if ( LA58_0 == 48 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6) ) {s = 7;} else if ( LA58_0 == 33 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7) ) {s = 8;} else if ( LA58_0 == 49 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8) ) {s = 9;} else if ( LA58_0 == 50 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9) ) {s = 10;} else if ( LA58_0 == 51 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10) ) {s = 11;} else if ( LA58_0 == 52 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11) ) {s = 12;} else if ( (LA58_0==24) ) {s = 13;} input.seek(index58_0); if ( s>=0 ) return s; break; } NoViableAltException nvae = new NoViableAltException(getDescription(), 58, _s, input); error(nvae); throw nvae; } } class DFA59 extends DFA { public DFA59(BaseRecognizer recognizer) { this.recognizer = recognizer; this.decisionNumber = 59; this.eot = dfa_1; this.eof = dfa_1; this.min = dfa_2; this.max = dfa_3; this.accept = dfa_4; this.special = dfa_5; this.transition = dfa_6; } public String getDescription() { return "8441:2: ( rule__GenerationTask__UnorderedGroup_3__4 )?"; } public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { TokenStream input = (TokenStream)_input; int _s = s; switch ( s ) { case 0 : int LA59_0 = input.LA(1); int index59_0 = input.index(); input.rewind(); s = -1; if ( LA59_0 == 29 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0) ) {s = 1;} else if ( LA59_0 == 47 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1) ) {s = 2;} else if ( LA59_0 == 32 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2) ) {s = 3;} else if ( LA59_0 == 45 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3) ) {s = 4;} else if ( LA59_0 == 55 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4) ) {s = 5;} else if ( LA59_0 == 56 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5) ) {s = 6;} else if ( LA59_0 == 48 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6) ) {s = 7;} else if ( LA59_0 == 33 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7) ) {s = 8;} else if ( LA59_0 == 49 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8) ) {s = 9;} else if ( LA59_0 == 50 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9) ) {s = 10;} else if ( LA59_0 == 51 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10) ) {s = 11;} else if ( LA59_0 == 52 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11) ) {s = 12;} else if ( (LA59_0==24) ) {s = 13;} input.seek(index59_0); if ( s>=0 ) return s; break; } NoViableAltException nvae = new NoViableAltException(getDescription(), 59, _s, input); error(nvae); throw nvae; } } class DFA60 extends DFA { public DFA60(BaseRecognizer recognizer) { this.recognizer = recognizer; this.decisionNumber = 60; this.eot = dfa_1; this.eof = dfa_1; this.min = dfa_2; this.max = dfa_3; this.accept = dfa_4; this.special = dfa_5; this.transition = dfa_6; } public String getDescription() { return "8453:2: ( rule__GenerationTask__UnorderedGroup_3__5 )?"; } public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { TokenStream input = (TokenStream)_input; int _s = s; switch ( s ) { case 0 : int LA60_0 = input.LA(1); int index60_0 = input.index(); input.rewind(); s = -1; if ( LA60_0 == 29 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0) ) {s = 1;} else if ( LA60_0 == 47 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1) ) {s = 2;} else if ( LA60_0 == 32 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2) ) {s = 3;} else if ( LA60_0 == 45 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3) ) {s = 4;} else if ( LA60_0 == 55 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4) ) {s = 5;} else if ( LA60_0 == 56 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5) ) {s = 6;} else if ( LA60_0 == 48 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6) ) {s = 7;} else if ( LA60_0 == 33 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7) ) {s = 8;} else if ( LA60_0 == 49 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8) ) {s = 9;} else if ( LA60_0 == 50 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9) ) {s = 10;} else if ( LA60_0 == 51 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10) ) {s = 11;} else if ( LA60_0 == 52 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11) ) {s = 12;} else if ( (LA60_0==24) ) {s = 13;} input.seek(index60_0); if ( s>=0 ) return s; break; } NoViableAltException nvae = new NoViableAltException(getDescription(), 60, _s, input); error(nvae); throw nvae; } } class DFA61 extends DFA { public DFA61(BaseRecognizer recognizer) { this.recognizer = recognizer; this.decisionNumber = 61; this.eot = dfa_1; this.eof = dfa_1; this.min = dfa_2; this.max = dfa_3; this.accept = dfa_4; this.special = dfa_5; this.transition = dfa_6; } public String getDescription() { return "8465:2: ( rule__GenerationTask__UnorderedGroup_3__6 )?"; } public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { TokenStream input = (TokenStream)_input; int _s = s; switch ( s ) { case 0 : int LA61_0 = input.LA(1); int index61_0 = input.index(); input.rewind(); s = -1; if ( LA61_0 == 29 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0) ) {s = 1;} else if ( LA61_0 == 47 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1) ) {s = 2;} else if ( LA61_0 == 32 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2) ) {s = 3;} else if ( LA61_0 == 45 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3) ) {s = 4;} else if ( LA61_0 == 55 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4) ) {s = 5;} else if ( LA61_0 == 56 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5) ) {s = 6;} else if ( LA61_0 == 48 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6) ) {s = 7;} else if ( LA61_0 == 33 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7) ) {s = 8;} else if ( LA61_0 == 49 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8) ) {s = 9;} else if ( LA61_0 == 50 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9) ) {s = 10;} else if ( LA61_0 == 51 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10) ) {s = 11;} else if ( LA61_0 == 52 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11) ) {s = 12;} else if ( (LA61_0==24) ) {s = 13;} input.seek(index61_0); if ( s>=0 ) return s; break; } NoViableAltException nvae = new NoViableAltException(getDescription(), 61, _s, input); error(nvae); throw nvae; } } class DFA62 extends DFA { public DFA62(BaseRecognizer recognizer) { this.recognizer = recognizer; this.decisionNumber = 62; this.eot = dfa_1; this.eof = dfa_1; this.min = dfa_2; this.max = dfa_3; this.accept = dfa_4; this.special = dfa_5; this.transition = dfa_6; } public String getDescription() { return "8477:2: ( rule__GenerationTask__UnorderedGroup_3__7 )?"; } public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { TokenStream input = (TokenStream)_input; int _s = s; switch ( s ) { case 0 : int LA62_0 = input.LA(1); int index62_0 = input.index(); input.rewind(); s = -1; if ( LA62_0 == 29 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0) ) {s = 1;} else if ( LA62_0 == 47 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1) ) {s = 2;} else if ( LA62_0 == 32 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2) ) {s = 3;} else if ( LA62_0 == 45 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3) ) {s = 4;} else if ( LA62_0 == 55 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4) ) {s = 5;} else if ( LA62_0 == 56 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5) ) {s = 6;} else if ( LA62_0 == 48 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6) ) {s = 7;} else if ( LA62_0 == 33 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7) ) {s = 8;} else if ( LA62_0 == 49 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8) ) {s = 9;} else if ( LA62_0 == 50 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9) ) {s = 10;} else if ( LA62_0 == 51 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10) ) {s = 11;} else if ( LA62_0 == 52 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11) ) {s = 12;} else if ( (LA62_0==24) ) {s = 13;} input.seek(index62_0); if ( s>=0 ) return s; break; } NoViableAltException nvae = new NoViableAltException(getDescription(), 62, _s, input); error(nvae); throw nvae; } } class DFA63 extends DFA { public DFA63(BaseRecognizer recognizer) { this.recognizer = recognizer; this.decisionNumber = 63; this.eot = dfa_1; this.eof = dfa_1; this.min = dfa_2; this.max = dfa_3; this.accept = dfa_4; this.special = dfa_5; this.transition = dfa_6; } public String getDescription() { return "8489:2: ( rule__GenerationTask__UnorderedGroup_3__8 )?"; } public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { TokenStream input = (TokenStream)_input; int _s = s; switch ( s ) { case 0 : int LA63_0 = input.LA(1); int index63_0 = input.index(); input.rewind(); s = -1; if ( LA63_0 == 29 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0) ) {s = 1;} else if ( LA63_0 == 47 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1) ) {s = 2;} else if ( LA63_0 == 32 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2) ) {s = 3;} else if ( LA63_0 == 45 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3) ) {s = 4;} else if ( LA63_0 == 55 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4) ) {s = 5;} else if ( LA63_0 == 56 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5) ) {s = 6;} else if ( LA63_0 == 48 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6) ) {s = 7;} else if ( LA63_0 == 33 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7) ) {s = 8;} else if ( LA63_0 == 49 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8) ) {s = 9;} else if ( LA63_0 == 50 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9) ) {s = 10;} else if ( LA63_0 == 51 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10) ) {s = 11;} else if ( LA63_0 == 52 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11) ) {s = 12;} else if ( (LA63_0==24) ) {s = 13;} input.seek(index63_0); if ( s>=0 ) return s; break; } NoViableAltException nvae = new NoViableAltException(getDescription(), 63, _s, input); error(nvae); throw nvae; } } class DFA64 extends DFA { public DFA64(BaseRecognizer recognizer) { this.recognizer = recognizer; this.decisionNumber = 64; this.eot = dfa_1; this.eof = dfa_1; this.min = dfa_2; this.max = dfa_3; this.accept = dfa_4; this.special = dfa_5; this.transition = dfa_6; } public String getDescription() { return "8501:2: ( rule__GenerationTask__UnorderedGroup_3__9 )?"; } public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { TokenStream input = (TokenStream)_input; int _s = s; switch ( s ) { case 0 : int LA64_0 = input.LA(1); int index64_0 = input.index(); input.rewind(); s = -1; if ( LA64_0 == 29 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0) ) {s = 1;} else if ( LA64_0 == 47 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1) ) {s = 2;} else if ( LA64_0 == 32 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2) ) {s = 3;} else if ( LA64_0 == 45 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3) ) {s = 4;} else if ( LA64_0 == 55 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4) ) {s = 5;} else if ( LA64_0 == 56 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5) ) {s = 6;} else if ( LA64_0 == 48 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6) ) {s = 7;} else if ( LA64_0 == 33 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7) ) {s = 8;} else if ( LA64_0 == 49 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8) ) {s = 9;} else if ( LA64_0 == 50 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9) ) {s = 10;} else if ( LA64_0 == 51 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10) ) {s = 11;} else if ( LA64_0 == 52 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11) ) {s = 12;} else if ( (LA64_0==24) ) {s = 13;} input.seek(index64_0); if ( s>=0 ) return s; break; } NoViableAltException nvae = new NoViableAltException(getDescription(), 64, _s, input); error(nvae); throw nvae; } } class DFA65 extends DFA { public DFA65(BaseRecognizer recognizer) { this.recognizer = recognizer; this.decisionNumber = 65; this.eot = dfa_1; this.eof = dfa_1; this.min = dfa_2; this.max = dfa_3; this.accept = dfa_4; this.special = dfa_5; this.transition = dfa_6; } public String getDescription() { return "8513:2: ( rule__GenerationTask__UnorderedGroup_3__10 )?"; } public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { TokenStream input = (TokenStream)_input; int _s = s; switch ( s ) { case 0 : int LA65_0 = input.LA(1); int index65_0 = input.index(); input.rewind(); s = -1; if ( LA65_0 == 29 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0) ) {s = 1;} else if ( LA65_0 == 47 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1) ) {s = 2;} else if ( LA65_0 == 32 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2) ) {s = 3;} else if ( LA65_0 == 45 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3) ) {s = 4;} else if ( LA65_0 == 55 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4) ) {s = 5;} else if ( LA65_0 == 56 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5) ) {s = 6;} else if ( LA65_0 == 48 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6) ) {s = 7;} else if ( LA65_0 == 33 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7) ) {s = 8;} else if ( LA65_0 == 49 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8) ) {s = 9;} else if ( LA65_0 == 50 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9) ) {s = 10;} else if ( LA65_0 == 51 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10) ) {s = 11;} else if ( LA65_0 == 52 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11) ) {s = 12;} else if ( (LA65_0==24) ) {s = 13;} input.seek(index65_0); if ( s>=0 ) return s; break; } NoViableAltException nvae = new NoViableAltException(getDescription(), 65, _s, input); error(nvae); throw nvae; } } class DFA66 extends DFA { public DFA66(BaseRecognizer recognizer) { this.recognizer = recognizer; this.decisionNumber = 66; this.eot = dfa_1; this.eof = dfa_1; this.min = dfa_2; this.max = dfa_3; this.accept = dfa_4; this.special = dfa_5; this.transition = dfa_6; } public String getDescription() { return "8525:2: ( rule__GenerationTask__UnorderedGroup_3__11 )?"; } public int specialStateTransition(int s, IntStream _input) throws NoViableAltException { TokenStream input = (TokenStream)_input; int _s = s; switch ( s ) { case 0 : int LA66_0 = input.LA(1); int index66_0 = input.index(); input.rewind(); s = -1; if ( LA66_0 == 29 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 0) ) {s = 1;} else if ( LA66_0 == 47 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 1) ) {s = 2;} else if ( LA66_0 == 32 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 2) ) {s = 3;} else if ( LA66_0 == 45 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 3) ) {s = 4;} else if ( LA66_0 == 55 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 4) ) {s = 5;} else if ( LA66_0 == 56 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 5) ) {s = 6;} else if ( LA66_0 == 48 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 6) ) {s = 7;} else if ( LA66_0 == 33 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 7) ) {s = 8;} else if ( LA66_0 == 49 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 8) ) {s = 9;} else if ( LA66_0 == 50 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 9) ) {s = 10;} else if ( LA66_0 == 51 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 10) ) {s = 11;} else if ( LA66_0 == 52 && getUnorderedGroupHelper().canSelect(grammarAccess.getGenerationTaskAccess().getUnorderedGroup_3(), 11) ) {s = 12;} else if ( (LA66_0==24) ) {s = 13;} input.seek(index66_0); if ( s>=0 ) return s; break; } NoViableAltException nvae = new NoViableAltException(getDescription(), 66, _s, input); error(nvae); throw nvae; } } public static final BitSet FOLLOW_1 = new BitSet(new long[]{0x0000000000000000L}); public static final BitSet FOLLOW_2 = new BitSet(new long[]{0x0000000000000002L}); public static final BitSet FOLLOW_3 = new BitSet(new long[]{0x00006003A0200000L}); public static final BitSet FOLLOW_4 = new BitSet(new long[]{0x0000000000040002L}); public static final BitSet FOLLOW_5 = new BitSet(new long[]{0x00006003A0200002L}); public static final BitSet FOLLOW_6 = new BitSet(new long[]{0x0000000000020000L}); public static final BitSet FOLLOW_7 = new BitSet(new long[]{0x0000000000020002L}); public static final BitSet FOLLOW_8 = new BitSet(new long[]{0x0000000000000010L}); public static final BitSet FOLLOW_9 = new BitSet(new long[]{0x0000000000080000L}); public static final BitSet FOLLOW_10 = new BitSet(new long[]{0x0000000000000020L}); public static final BitSet FOLLOW_11 = new BitSet(new long[]{0x0000000000100000L}); public static final BitSet FOLLOW_12 = new BitSet(new long[]{0x0000000000400000L}); public static final BitSet FOLLOW_13 = new BitSet(new long[]{0x0000000004000010L}); public static final BitSet FOLLOW_14 = new BitSet(new long[]{0x0000000003000000L}); public static final BitSet FOLLOW_15 = new BitSet(new long[]{0x0000000002000002L}); public static final BitSet FOLLOW_16 = new BitSet(new long[]{0x0000000008000000L}); public static final BitSet FOLLOW_17 = new BitSet(new long[]{0x0000000000800000L}); public static final BitSet FOLLOW_18 = new BitSet(new long[]{0x0000000010000000L}); public static final BitSet FOLLOW_19 = new BitSet(new long[]{0x0000000040000030L}); public static final BitSet FOLLOW_20 = new BitSet(new long[]{0x0000000000000030L}); public static final BitSet FOLLOW_21 = new BitSet(new long[]{0x0000001C01000020L}); public static final BitSet FOLLOW_22 = new BitSet(new long[]{0x0000000002000000L}); public static final BitSet FOLLOW_23 = new BitSet(new long[]{0x0000001C00000020L}); public static final BitSet FOLLOW_24 = new BitSet(new long[]{0x0000000000003800L}); public static final BitSet FOLLOW_25 = new BitSet(new long[]{0x0000000000000040L}); public static final BitSet FOLLOW_26 = new BitSet(new long[]{0x0000002001000000L}); public static final BitSet FOLLOW_27 = new BitSet(new long[]{0x0000002000000000L}); public static final BitSet FOLLOW_28 = new BitSet(new long[]{0x0000004000000000L}); public static final BitSet FOLLOW_29 = new BitSet(new long[]{0x0020000000400000L}); public static final BitSet FOLLOW_30 = new BitSet(new long[]{0x0040000000000040L}); public static final BitSet FOLLOW_31 = new BitSet(new long[]{0x0000010000000000L}); public static final BitSet FOLLOW_32 = new BitSet(new long[]{0x0000020000000000L}); public static final BitSet FOLLOW_33 = new BitSet(new long[]{0x0040000000800040L}); public static final BitSet FOLLOW_34 = new BitSet(new long[]{0x0000040000000000L}); public static final BitSet FOLLOW_35 = new BitSet(new long[]{0x0000080000000000L}); public static final BitSet FOLLOW_36 = new BitSet(new long[]{0x0000008000000000L}); public static final BitSet FOLLOW_37 = new BitSet(new long[]{0x0000100000000000L}); public static final BitSet FOLLOW_38 = new BitSet(new long[]{0x0000000001000040L}); public static final BitSet FOLLOW_39 = new BitSet(new long[]{0x0000000001000020L}); public static final BitSet FOLLOW_40 = new BitSet(new long[]{0x019FA00320000000L}); public static final BitSet FOLLOW_41 = new BitSet(new long[]{0x0000000001000000L}); public static final BitSet FOLLOW_42 = new BitSet(new long[]{0x0000000000800010L}); public static final BitSet FOLLOW_43 = new BitSet(new long[]{0x000000000001C000L}); public static final BitSet FOLLOW_44 = new BitSet(new long[]{0x019FA00320000002L}); }