text
stringlengths 30
1.67M
|
---|
<s> package org . sqlproc . dsl . ui ; import org . eclipse . xtext . ui . DefaultUiModule ; import org . eclipse . ui . plugin . AbstractUIPlugin ; @ SuppressWarnings ( "<STR_LIT:all>" ) public abstract class AbstractProcessorDslUiModule extends DefaultUiModule { public AbstractProcessorDslUiModule ( AbstractUIPlugin plugin ) { super ( plugin ) ; } public com . google . inject . Provider < org . eclipse . xtext . resource . containers . IAllContainersState > provideIAllContainersState ( ) { return org . eclipse . xtext . ui . shared . Access . getJavaProjectsState ( ) ; } public Class < ? extends org . eclipse . xtext . ui . editor . contentassist . IProposalConflictHelper > bindIProposalConflictHelper ( ) { return org . eclipse . xtext . ui . editor . contentassist . antlr . AntlrProposalConflictHelper . class ; } public void configureHighlightingLexer ( com . google . inject . Binder binder ) { binder . bind ( org . eclipse . xtext . parser . antlr . Lexer . class ) . annotatedWith ( com . google . inject . name . Names . named ( org . eclipse . xtext . ui . LexerUIBindings . HIGHLIGHTING ) ) . to ( org . sqlproc . dsl . parser . antlr . internal . InternalProcessorDslLexer . class ) ; } public void configureHighlightingTokenDefProvider ( com . google . inject . Binder binder ) { binder . bind ( org . eclipse . xtext . parser . antlr . ITokenDefProvider . class ) . annotatedWith ( com . google . inject . name . Names . named ( org . eclipse . xtext . ui . LexerUIBindings . HIGHLIGHTING ) ) . to ( org . eclipse . xtext . parser . antlr . AntlrTokenDefProvider . class ) ; } public Class < ? extends org . eclipse . xtext . ui . refactoring . IDependentElementsCalculator > bindIDependentElementsCalculator ( ) { return org . eclipse . xtext . ui . refactoring . impl . DefaultDependentElementsCalculator . class ; } public void configureIResourceDescriptionsBuilderScope ( com . google . inject . Binder binder ) { binder . bind ( org . eclipse . xtext . resource . IResourceDescriptions . class ) . annotatedWith ( com . google . inject . name . Names . named ( org . eclipse . xtext . resource . impl . ResourceDescriptionsProvider . NAMED_BUILDER_SCOPE ) ) . to ( org . eclipse . xtext . builder . clustering . CurrentDescriptions . ResourceSetAware . class ) ; } public Class < ? extends org . eclipse . xtext . ui . editor . IXtextEditorCallback > bindIXtextEditorCallback ( ) { return org . eclipse . xtext . builder . nature . NatureAddingEditorCallback . class ; } public void configureIResourceDescriptionsPersisted ( com . google . inject . Binder binder ) { binder . bind ( org . eclipse . xtext . resource . IResourceDescriptions . class ) . annotatedWith ( com . google . inject . name . Names . named ( org . eclipse . xtext . builder . impl . PersistentDataAwareDirtyResource . PERSISTED_DESCRIPTIONS ) ) . to ( org . eclipse . xtext . builder . builderState . IBuilderState . class ) ; } public Class < ? extends org . eclipse . xtext . ui . editor . DocumentBasedDirtyResource > bindDocumentBasedDirtyResource ( ) { return org . eclipse . xtext . builder . impl . PersistentDataAwareDirtyResource . class ; } public Class < ? extends org . eclipse . xtext . builder . IXtextBuilderParticipant > bindIXtextBuilderParticipant ( ) { return org . eclipse . xtext . builder . BuilderParticipant . class ; } public org . eclipse . core . resources . IWorkspaceRoot bindIWorkspaceRootToInstance ( ) { return org . eclipse . core . resources . ResourcesPlugin . getWorkspace ( ) . getRoot ( ) ; } public void configureBuilderPreferenceStoreInitializer ( com . google . inject . Binder binder ) { binder . bind ( org . eclipse . xtext . ui . editor . preferences . IPreferenceStoreInitializer . class ) . annotatedWith ( com . google . inject . name . Names . named ( "<STR_LIT>" ) ) . to ( org . eclipse . xtext . builder . preferences . BuilderPreferenceAccess . Initializer . class ) ; } public Class < ? extends org . eclipse . jface . viewers . ILabelProvider > bindILabelProvider ( ) { return org . sqlproc . dsl . ui . labeling . ProcessorDslLabelProvider . class ; } public void configureResourceUIServiceLabelProvider ( com . google . inject . Binder binder ) { binder . bind ( org . eclipse . jface . viewers . ILabelProvider . class ) . annotatedWith ( org . eclipse . xtext . ui . resource . ResourceServiceDescriptionLabelProvider . class ) . to ( org . sqlproc . dsl . ui . labeling . ProcessorDslDescriptionLabelProvider . class ) ; } public Class < ? extends org . eclipse . xtext . ui . editor . outline . IOutlineTreeProvider > bindIOutlineTreeProvider ( ) { return org . sqlproc . dsl . ui . outline . ProcessorDslOutlineTreeProvider . class ; } public Class < ? extends org . eclipse . xtext . ui . editor . outline . impl . IOutlineTreeStructureProvider > bindIOutlineTreeStructureProvider ( ) { return org . sqlproc . dsl . ui . outline . ProcessorDslOutlineTreeProvider . class ; } public Class < ? extends org . eclipse . xtext . ui . editor . quickfix . IssueResolutionProvider > bindIssueResolutionProvider ( ) { return org . sqlproc . dsl . ui . quickfix . ProcessorDslQuickfixProvider . class ; } public Class < ? extends org . eclipse . xtext . ui . editor . contentassist . IContentProposalProvider > bindIContentProposalProvider ( ) { return org . sqlproc . dsl . ui . contentassist . ProcessorDslProposalProvider . class ; } public Class < ? extends org . eclipse . xtext . ui . editor . contentassist . ContentAssistContext . Factory > bindContentAssistContext$Factory ( ) { return org . eclipse . xtext . ui . editor . contentassist . antlr . ParserBasedContentAssistContextFactory . class ; } public Class < ? extends org . eclipse . xtext . ui . editor . contentassist . antlr . IContentAssistParser > bindIContentAssistParser ( ) { return org . sqlproc . dsl . ui . contentassist . antlr . ProcessorDslParser . class ; } public void configureContentAssistLexerProvider ( com . google . inject . Binder binder ) { binder . bind ( org . sqlproc . dsl . ui . contentassist . antlr . internal . InternalProcessorDslLexer . class ) . toProvider ( org . eclipse . xtext . parser . antlr . LexerProvider . create ( org . sqlproc . dsl . ui . contentassist . antlr . internal . InternalProcessorDslLexer . class ) ) ; } public void configureContentAssistLexer ( com . google . inject . Binder binder ) { binder . bind ( org . eclipse . xtext . ui . editor . contentassist . antlr . internal . Lexer . class ) . annotatedWith ( com . google . inject . name . Names . named ( org . eclipse . xtext . ui . LexerUIBindings . CONTENT_ASSIST ) ) . to ( org . sqlproc . dsl . ui . contentassist . antlr . internal . InternalProcessorDslLexer . class ) ; } public Class < ? extends org . eclipse . xtext . ui . refactoring . IRenameStrategy > bindIRenameStrategy ( ) { return org . eclipse . xtext . ui . refactoring . impl . DefaultRenameStrategy . class ; } public Class < ? extends org . eclipse . xtext . ui . refactoring . IReferenceUpdater > bindIReferenceUpdater ( ) { return org . eclipse . xtext . ui . refactoring . impl . DefaultReferenceUpdater . class ; } public void configureIPreferenceStoreInitializer ( com . google . inject . Binder binder ) { binder . bind ( org . eclipse . xtext . ui . editor . preferences . IPreferenceStoreInitializer . class ) . annotatedWith ( com . google . inject . name . Names . named ( "<STR_LIT>" ) ) . to ( org . eclipse . xtext . ui . refactoring . ui . RefactoringPreferences . Initializer . class ) ; } public Class < ? extends org . eclipse . xtext . ui . refactoring . IRenameRefactoringProvider > bindIRenameRefactoringProvider ( ) { return org . eclipse . xtext . ui . refactoring . impl . DefaultRenameRefactoringProvider . class ; } public Class < ? extends org . eclipse . xtext . ui . refactoring . ui . IRenameSupport . Factory > bindIRenameSupport$Factory ( ) { return org . eclipse . xtext . ui . refactoring . ui . DefaultRenameSupport . Factory . class ; } public Class < ? extends org . eclipse . xtext . ui . refactoring . ui . IRenameElementHandler > bindIRenameElementHandler ( ) { return org . eclipse . xtext . ui . refactoring . ui . DefaultRenameElementHandler . class ; } public java . lang . ClassLoader bindClassLoaderToInstance ( ) { return getClass ( ) . getClassLoader ( ) ; } public Class < ? extends org . eclipse . xtext . common . types . access . IJvmTypeProvider . Factory > bindIJvmTypeProvider$Factory ( ) { return org . eclipse . xtext . common . types . access . jdt . JdtTypeProviderFactory . class ; } public Class < ? extends org . eclipse . xtext . common . types . xtext . AbstractTypeScopeProvider > bindAbstractTypeScopeProvider ( ) { return org . eclipse . xtext . common . types . xtext . ui . JdtBasedSimpleTypeScopeProvider . class ; } public Class < ? extends org . eclipse . xtext . common . types . xtext . ui . ITypesProposalProvider > bindITypesProposalProvider ( ) { return org . eclipse . xtext . common . types . xtext . ui . JdtTypesProposalProvider . class ; } public Class < ? extends org . eclipse . xtext . common . types . access . jdt . IJavaProjectProvider > bindIJavaProjectProvider ( ) { return org . eclipse . xtext . common . types . xtext . ui . XtextResourceSetBasedProjectProvider . class ; } public Class < ? extends org . eclipse . xtext . ui . editor . hyperlinking . IHyperlinkHelper > bindIHyperlinkHelper ( ) { return org . eclipse . xtext . common . types . xtext . ui . TypeAwareHyperlinkHelper . class ; } public Class < ? extends org . eclipse . xtext . ui . editor . contentassist . PrefixMatcher > bindPrefixMatcher ( ) { return org . eclipse . xtext . ui . editor . contentassist . FQNPrefixMatcher . class ; } public Class < ? extends org . eclipse . xtext . ui . editor . contentassist . AbstractJavaBasedContentProposalProvider . ReferenceProposalCreator > bindAbstractJavaBasedContentProposalProvider$ReferenceProposalCreator ( ) { return org . eclipse . xtext . common . types . xtext . ui . TypeAwareReferenceProposalCreator . class ; } public Class < ? extends org . eclipse . xtext . ui . editor . IValidationJobScheduler > bindIValidationJobScheduler ( ) { return org . eclipse . xtext . common . types . xtext . ui . JdtValidationJobScheduler . class ; } public Class < ? extends org . eclipse . xtext . ui . refactoring . impl . RefactoringResourceSetProvider > bindRefactoringResourceSetProvider ( ) { return org . eclipse . xtext . common . types . ui . refactoring . JvmRefactoringResourceSetProvider . class ; } public Class < ? extends org . eclipse . xtext . common . types . ui . query . IJavaSearchParticipation > bindIJavaSearchParticipation ( ) { return org . eclipse . xtext . common . types . ui . query . IJavaSearchParticipation . Yes . class ; } public com . google . inject . Provider < org . eclipse . xtext . ui . codetemplates . ui . preferences . TemplatesLanguageConfiguration > provideTemplatesLanguageConfiguration ( ) { return org . eclipse . xtext . ui . codetemplates . ui . AccessibleCodetemplatesActivator . getTemplatesLanguageConfigurationProvider ( ) ; } public com . google . inject . Provider < org . eclipse . xtext . ui . codetemplates . ui . registry . LanguageRegistry > provideLanguageRegistry ( ) { return org . eclipse . xtext . ui . codetemplates . ui . AccessibleCodetemplatesActivator . getLanguageRegistry ( ) ; } @ org . eclipse . xtext . service . SingletonBinding ( eager = true ) public Class < ? extends org . eclipse . xtext . ui . codetemplates . ui . registry . LanguageRegistrar > bindLanguageRegistrar ( ) { return org . eclipse . xtext . ui . codetemplates . ui . registry . LanguageRegistrar . class ; } public Class < ? extends org . eclipse . xtext . ui . editor . templates . XtextTemplatePreferencePage > bindXtextTemplatePreferencePage ( ) { return org . eclipse . xtext . ui . codetemplates . ui . preferences . AdvancedTemplatesPreferencePage . class ; } public Class < ? extends org . eclipse . xtext . ui . codetemplates . ui . partialEditing . IPartialContentAssistParser > bindIPartialContentAssistParser ( ) { return org . sqlproc . dsl . ui . contentassist . antlr . PartialProcessorDslContentAssistParser . class ; } public Class < ? extends org . eclipse . compare . IViewerCreator > bindIViewerCreator ( ) { return org . eclipse . xtext . ui . compare . DefaultViewerCreator . class ; } } </s> |
<s> package org . sqlproc . dsl . ui . 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 . ui . editor . contentassist . antlr . internal . AbstractInternalContentAssistParser ; import org . eclipse . xtext . ui . editor . contentassist . antlr . internal . DFA ; import org . sqlproc . dsl . services . ProcessorDslGrammarAccess ; import org . antlr . runtime . * ; import java . util . Stack ; import java . util . List ; import java . util . ArrayList ; import java . util . Map ; import java . util . HashMap ; @ SuppressWarnings ( "<STR_LIT:all>" ) public class InternalProcessorDslParser extends AbstractInternalContentAssistParser { public static final String [ ] tokenNames = new String [ ] { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; public static final int RULE_OR = <NUM_LIT> ; public static final int RULE_PERCENT = <NUM_LIT> ; public static final int RULE_AND = <NUM_LIT> ; public static final int EOF = - <NUM_LIT:1> ; public static final int T__93 = <NUM_LIT> ; public static final int T__94 = <NUM_LIT> ; public static final int T__91 = <NUM_LIT> ; public static final int T__92 = <NUM_LIT> ; public static final int RULE_REST = <NUM_LIT:4> ; public static final int T__90 = <NUM_LIT> ; public static final int RULE_LPAREN = <NUM_LIT> ; public static final int RULE_IDENT_DOT = <NUM_LIT:5> ; public static final int T__99 = <NUM_LIT> ; public static final int T__98 = <NUM_LIT> ; public static final int T__97 = <NUM_LIT> ; public static final int T__96 = <NUM_LIT> ; public static final int T__95 = <NUM_LIT> ; public static final int RULE_BAND = <NUM_LIT> ; public static final int T__80 = <NUM_LIT> ; public static final int T__81 = <NUM_LIT> ; public static final int RULE_RBRACE = <NUM_LIT:16> ; public static final int T__82 = <NUM_LIT> ; public static final int T__83 = <NUM_LIT> ; public static final int RULE_COMMA = <NUM_LIT:10> ; public static final int RULE_HASH = <NUM_LIT> ; public static final int T__85 = <NUM_LIT> ; public static final int T__84 = <NUM_LIT> ; public static final int RULE_QUESTI = <NUM_LIT> ; public static final int T__87 = <NUM_LIT> ; public static final int T__86 = <NUM_LIT> ; public static final int T__89 = <NUM_LIT> ; public static final int T__88 = <NUM_LIT> ; public static final int RULE_ML_COMMENT = <NUM_LIT> ; public static final int RULE_ON_OFF = <NUM_LIT:31> ; public static final int RULE_MINUS = <NUM_LIT:11> ; public static final int RULE_STRING = <NUM_LIT:9> ; public static final int T__71 = <NUM_LIT> ; public static final int T__72 = <NUM_LIT> ; public static final int T__70 = <NUM_LIT> ; public static final int RULE_IDENT = <NUM_LIT:6> ; public static final int RULE_RPAREN = <NUM_LIT> ; public static final int T__76 = <NUM_LIT> ; public static final int T__75 = <NUM_LIT> ; public static final int T__74 = <NUM_LIT> ; public static final int T__73 = <NUM_LIT> ; public static final int T__79 = <NUM_LIT> ; public static final int T__78 = <NUM_LIT> ; public static final int RULE_AT = <NUM_LIT> ; public static final int T__77 = <NUM_LIT> ; public static final int T__68 = <NUM_LIT> ; public static final int T__69 = <NUM_LIT> ; public static final int T__66 = <NUM_LIT> ; public static final int T__67 = <NUM_LIT> ; public static final int T__64 = <NUM_LIT> ; public static final int T__65 = <NUM_LIT> ; public static final int T__62 = <NUM_LIT> ; public static final int T__63 = <NUM_LIT> ; public static final int RULE_SEMICOLON = <NUM_LIT> ; public static final int RULE_OPTION_TYPE = <NUM_LIT> ; public static final int T__61 = <NUM_LIT> ; public static final int T__60 = <NUM_LIT> ; public static final int RULE_NOT = <NUM_LIT> ; public static final int T__55 = <NUM_LIT> ; public static final int T__56 = <NUM_LIT> ; public static final int T__57 = <NUM_LIT> ; public static final int T__58 = <NUM_LIT> ; public static final int T__51 = <NUM_LIT> ; public static final int T__52 = <NUM_LIT> ; public static final int T__53 = <NUM_LIT> ; public static final int T__54 = <NUM_LIT> ; public static final int RULE_NUMBER = <NUM_LIT:7> ; public static final int T__59 = <NUM_LIT> ; public static final int T__103 = <NUM_LIT> ; public static final int T__104 = <NUM_LIT> ; public static final int T__105 = <NUM_LIT> ; public static final int T__106 = <NUM_LIT> ; public static final int RULE_LBRACE = <NUM_LIT:15> ; public static final int RULE_BOR = <NUM_LIT:20> ; public static final int T__50 = <NUM_LIT> ; public static final int T__42 = <NUM_LIT> ; public static final int T__43 = <NUM_LIT> ; public static final int T__40 = <NUM_LIT> ; public static final int T__41 = <NUM_LIT> ; public static final int T__46 = <NUM_LIT> ; public static final int T__47 = <NUM_LIT> ; public static final int T__44 = <NUM_LIT> ; public static final int T__45 = <NUM_LIT> ; public static final int RULE_CARET = <NUM_LIT> ; public static final int T__48 = <NUM_LIT> ; public static final int RULE_MORE_THAN = <NUM_LIT> ; public static final int T__49 = <NUM_LIT> ; public static final int RULE_STATEMEN_TYPE = <NUM_LIT:32> ; public static final int RULE_PLUS = <NUM_LIT:12> ; public static final int T__102 = <NUM_LIT> ; public static final int T__101 = <NUM_LIT> ; public static final int T__100 = <NUM_LIT:100> ; public static final int RULE_SL_COMMENT = <NUM_LIT> ; public static final int RULE_COLON = <NUM_LIT:8> ; public static final int RULE_ESC_CHAR = <NUM_LIT:30> ; public static final int T__39 = <NUM_LIT> ; public static final int RULE_EQUALS = <NUM_LIT:24> ; public static final int RULE_WS = <NUM_LIT> ; public static final int RULE_LESS_THAN = <NUM_LIT> ; public static final int RULE_MAPPING_TYPE = <NUM_LIT> ; public InternalProcessorDslParser ( TokenStream input ) { this ( input , new RecognizerSharedState ( ) ) ; } public InternalProcessorDslParser ( TokenStream input , RecognizerSharedState state ) { super ( input , state ) ; } public String [ ] getTokenNames ( ) { return InternalProcessorDslParser . tokenNames ; } public String getGrammarFileName ( ) { return "<STR_LIT>" ; } private ProcessorDslGrammarAccess grammarAccess ; public void setGrammarAccess ( ProcessorDslGrammarAccess grammarAccess ) { this . grammarAccess = grammarAccess ; } @ Override protected Grammar getGrammar ( ) { return grammarAccess . getGrammar ( ) ; } @ Override protected String getValueForTokenName ( String tokenName ) { return tokenName ; } public final void entryRuleArtifacts ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsRule ( ) ) ; } pushFollow ( FOLLOW_ruleArtifacts_in_entryRuleArtifacts67 ) ; ruleArtifacts ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleArtifacts74 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleArtifacts ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__Group__0_in_ruleArtifacts100 ) ; rule__Artifacts__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleSqlTypeAssignement ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlTypeAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleSqlTypeAssignement_in_entryRuleSqlTypeAssignement127 ) ; ruleSqlTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlTypeAssignementRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleSqlTypeAssignement134 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleSqlTypeAssignement ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlTypeAssignementAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlTypeAssignement__Group__0_in_ruleSqlTypeAssignement160 ) ; rule__SqlTypeAssignement__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlTypeAssignementAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleColumnTypeAssignement ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnTypeAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleColumnTypeAssignement_in_entryRuleColumnTypeAssignement187 ) ; ruleColumnTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnTypeAssignementRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleColumnTypeAssignement194 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleColumnTypeAssignement ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnTypeAssignementAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__ColumnTypeAssignement__Group__0_in_ruleColumnTypeAssignement220 ) ; rule__ColumnTypeAssignement__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnTypeAssignementAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleShowColumnTypeAssignement ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getShowColumnTypeAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleShowColumnTypeAssignement_in_entryRuleShowColumnTypeAssignement247 ) ; ruleShowColumnTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getShowColumnTypeAssignementRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleShowColumnTypeAssignement254 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleShowColumnTypeAssignement ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__ShowColumnTypeAssignement__Group__0_in_ruleShowColumnTypeAssignement280 ) ; rule__ShowColumnTypeAssignement__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleTableAssignement ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleTableAssignement_in_entryRuleTableAssignement307 ) ; ruleTableAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableAssignementRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleTableAssignement314 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleTableAssignement ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableAssignementAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__TableAssignement__Group__0_in_ruleTableAssignement340 ) ; rule__TableAssignement__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableAssignementAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleJoinTableAssignement ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getJoinTableAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleJoinTableAssignement_in_entryRuleJoinTableAssignement367 ) ; ruleJoinTableAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getJoinTableAssignementRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleJoinTableAssignement374 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleJoinTableAssignement ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getJoinTableAssignementAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__JoinTableAssignement__Group__0_in_ruleJoinTableAssignement400 ) ; rule__JoinTableAssignement__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getJoinTableAssignementAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleColumnAssignement ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleColumnAssignement_in_entryRuleColumnAssignement427 ) ; ruleColumnAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAssignementRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleColumnAssignement434 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleColumnAssignement ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAssignementAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__ColumnAssignement__Group__0_in_ruleColumnAssignement460 ) ; rule__ColumnAssignement__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAssignementAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleImportAssignement ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleImportAssignement_in_entryRuleImportAssignement487 ) ; ruleImportAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportAssignementRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleImportAssignement494 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleImportAssignement ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportAssignementAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__ImportAssignement__Group__0_in_ruleImportAssignement520 ) ; rule__ImportAssignement__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportAssignementAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleExportAssignement ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExportAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleExportAssignement_in_entryRuleExportAssignement547 ) ; ruleExportAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExportAssignementRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleExportAssignement554 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleExportAssignement ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExportAssignementAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__ExportAssignement__Group__0_in_ruleExportAssignement580 ) ; rule__ExportAssignement__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExportAssignementAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleInheritanceAssignement ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getInheritanceAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleInheritanceAssignement_in_entryRuleInheritanceAssignement607 ) ; ruleInheritanceAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getInheritanceAssignementRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleInheritanceAssignement614 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleInheritanceAssignement ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getInheritanceAssignementAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__InheritanceAssignement__Group__0_in_ruleInheritanceAssignement640 ) ; rule__InheritanceAssignement__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getInheritanceAssignementAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleManyToManyAssignement ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getManyToManyAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleManyToManyAssignement_in_entryRuleManyToManyAssignement667 ) ; ruleManyToManyAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getManyToManyAssignementRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleManyToManyAssignement674 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleManyToManyAssignement ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getManyToManyAssignementAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__ManyToManyAssignement__Group__0_in_ruleManyToManyAssignement700 ) ; rule__ManyToManyAssignement__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getManyToManyAssignementAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleProperty ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyRule ( ) ) ; } pushFollow ( FOLLOW_ruleProperty_in_entryRuleProperty727 ) ; ruleProperty ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleProperty734 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleProperty ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__Group__0_in_ruleProperty760 ) ; rule__Property__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleDatabaseProperty ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyRule ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseProperty_in_entryRuleDatabaseProperty787 ) ; ruleDatabaseProperty ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleDatabaseProperty794 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleDatabaseProperty ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__Alternatives_in_ruleDatabaseProperty820 ) ; rule__DatabaseProperty__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getAlternatives ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRulePojogenProperty ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyRule ( ) ) ; } pushFollow ( FOLLOW_rulePojogenProperty_in_entryRulePojogenProperty847 ) ; rulePojogenProperty ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojogenProperty854 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void rulePojogenProperty ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Alternatives_in_rulePojogenProperty880 ) ; rule__PojogenProperty__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getAlternatives ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRulePropertyValue ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueRule ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_entryRulePropertyValue907 ) ; rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePropertyValue914 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void rulePropertyValue ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__PropertyValue__Group__0_in_rulePropertyValue940 ) ; rule__PropertyValue__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRulePojoDefinition ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoDefinitionRule ( ) ) ; } pushFollow ( FOLLOW_rulePojoDefinition_in_entryRulePojoDefinition972 ) ; rulePojoDefinition ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoDefinitionRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoDefinition979 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void rulePojoDefinition ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoDefinitionAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoDefinition__Group__0_in_rulePojoDefinition1009 ) ; rule__PojoDefinition__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoDefinitionAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRulePojoUsage ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoUsageRule ( ) ) ; } pushFollow ( FOLLOW_rulePojoUsage_in_entryRulePojoUsage1036 ) ; rulePojoUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoUsageRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoUsage1043 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void rulePojoUsage ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoUsageAccess ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoUsage__Alternatives_in_rulePojoUsage1069 ) ; rule__PojoUsage__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoUsageAccess ( ) . getAlternatives ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleColumnUsage ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageRule ( ) ) ; } pushFollow ( FOLLOW_ruleColumnUsage_in_entryRuleColumnUsage1101 ) ; ruleColumnUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleColumnUsage1108 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void ruleColumnUsage ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__ColumnUsage__Group__0_in_ruleColumnUsage1138 ) ; rule__ColumnUsage__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRuleIdentifierUsage ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageRule ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifierUsage_in_entryRuleIdentifierUsage1170 ) ; ruleIdentifierUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIdentifierUsage1177 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void ruleIdentifierUsage ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__IdentifierUsage__Group__0_in_ruleIdentifierUsage1207 ) ; rule__IdentifierUsage__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRuleConstantUsage ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageRule ( ) ) ; } pushFollow ( FOLLOW_ruleConstantUsage_in_entryRuleConstantUsage1239 ) ; ruleConstantUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleConstantUsage1246 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void ruleConstantUsage ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__ConstantUsage__Group__0_in_ruleConstantUsage1276 ) ; rule__ConstantUsage__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRuleMappingUsage ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageRule ( ) ) ; } pushFollow ( FOLLOW_ruleMappingUsage_in_entryRuleMappingUsage1308 ) ; ruleMappingUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMappingUsage1315 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void ruleMappingUsage ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingUsage__Group__0_in_ruleMappingUsage1345 ) ; rule__MappingUsage__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRulePojoUsageExt ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoUsageExtRule ( ) ) ; } pushFollow ( FOLLOW_rulePojoUsageExt_in_entryRulePojoUsageExt1372 ) ; rulePojoUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoUsageExtRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoUsageExt1379 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void rulePojoUsageExt ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoUsageExtAccess ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoUsageExt__Alternatives_in_rulePojoUsageExt1405 ) ; rule__PojoUsageExt__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoUsageExtAccess ( ) . getAlternatives ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleColumnUsageExt ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageExtRule ( ) ) ; } pushFollow ( FOLLOW_ruleColumnUsageExt_in_entryRuleColumnUsageExt1437 ) ; ruleColumnUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageExtRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleColumnUsageExt1444 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void ruleColumnUsageExt ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageExtAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__ColumnUsageExt__Group__0_in_ruleColumnUsageExt1474 ) ; rule__ColumnUsageExt__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageExtAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRuleIdentifierUsageExt ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageExtRule ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifierUsageExt_in_entryRuleIdentifierUsageExt1506 ) ; ruleIdentifierUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageExtRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIdentifierUsageExt1513 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void ruleIdentifierUsageExt ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageExtAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__IdentifierUsageExt__Group__0_in_ruleIdentifierUsageExt1543 ) ; rule__IdentifierUsageExt__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageExtAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRuleConstantUsageExt ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageExtRule ( ) ) ; } pushFollow ( FOLLOW_ruleConstantUsageExt_in_entryRuleConstantUsageExt1575 ) ; ruleConstantUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageExtRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleConstantUsageExt1582 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void ruleConstantUsageExt ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageExtAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__ConstantUsageExt__Group__0_in_ruleConstantUsageExt1612 ) ; rule__ConstantUsageExt__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageExtAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRuleMappingUsageExt ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageExtRule ( ) ) ; } pushFollow ( FOLLOW_ruleMappingUsageExt_in_entryRuleMappingUsageExt1644 ) ; ruleMappingUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageExtRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMappingUsageExt1651 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void ruleMappingUsageExt ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageExtAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingUsageExt__Group__0_in_ruleMappingUsageExt1681 ) ; rule__MappingUsageExt__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageExtAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRuleTableDefinition ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableDefinitionRule ( ) ) ; } pushFollow ( FOLLOW_ruleTableDefinition_in_entryRuleTableDefinition1713 ) ; ruleTableDefinition ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableDefinitionRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleTableDefinition1720 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void ruleTableDefinition ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableDefinitionAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__TableDefinition__Group__0_in_ruleTableDefinition1750 ) ; rule__TableDefinition__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableDefinitionAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRuleTableUsage ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableUsageRule ( ) ) ; } pushFollow ( FOLLOW_ruleTableUsage_in_entryRuleTableUsage1782 ) ; ruleTableUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableUsageRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleTableUsage1789 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void ruleTableUsage ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableUsageAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__TableUsage__Group__0_in_ruleTableUsage1819 ) ; rule__TableUsage__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableUsageAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRuleMetaStatement ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementRule ( ) ) ; } pushFollow ( FOLLOW_ruleMetaStatement_in_entryRuleMetaStatement1846 ) ; ruleMetaStatement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMetaStatement1853 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleMetaStatement ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaStatement__Group__0_in_ruleMetaStatement1879 ) ; rule__MetaStatement__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleSql ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlRule ( ) ) ; } pushFollow ( FOLLOW_ruleSql_in_entryRuleSql1906 ) ; ruleSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleSql1913 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleSql ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlAccess ( ) . getSqlsAssignment ( ) ) ; } { pushFollow ( FOLLOW_rule__Sql__SqlsAssignment_in_ruleSql1941 ) ; rule__Sql__SqlsAssignment ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlAccess ( ) . getSqlsAssignment ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlAccess ( ) . getSqlsAssignment ( ) ) ; } loop1 : do { int alt1 = <NUM_LIT:2> ; int LA1_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA1_0 >= RULE_REST && LA1_0 <= RULE_WS ) ) ) { alt1 = <NUM_LIT:1> ; } switch ( alt1 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Sql__SqlsAssignment_in_ruleSql1953 ) ; rule__Sql__SqlsAssignment ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop1 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlAccess ( ) . getSqlsAssignment ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleSqlFragment ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentRule ( ) ) ; } pushFollow ( FOLLOW_ruleSqlFragment_in_entryRuleSqlFragment1983 ) ; ruleSqlFragment ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleSqlFragment1990 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleSqlFragment ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__Alternatives_in_ruleSqlFragment2016 ) ; rule__SqlFragment__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getAlternatives ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleSqlValue ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueRule ( ) ) ; } pushFollow ( FOLLOW_ruleSqlValue_in_entryRuleSqlValue2043 ) ; ruleSqlValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleSqlValue2050 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleSqlValue ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlValue__Group__0_in_ruleSqlValue2076 ) ; rule__SqlValue__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleMetaSql ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlRule ( ) ) ; } pushFollow ( FOLLOW_ruleMetaSql_in_entryRuleMetaSql2103 ) ; ruleMetaSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMetaSql2110 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleMetaSql ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__Alternatives_in_ruleMetaSql2136 ) ; rule__MetaSql__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getAlternatives ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleIfSql ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlRule ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_entryRuleIfSql2163 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfSql2170 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleIfSql ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlAccess ( ) . getSqlsAssignment ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSql__SqlsAssignment_in_ruleIfSql2198 ) ; rule__IfSql__SqlsAssignment ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlAccess ( ) . getSqlsAssignment ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlAccess ( ) . getSqlsAssignment ( ) ) ; } loop2 : do { int alt2 = <NUM_LIT:2> ; int LA2_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA2_0 >= RULE_REST && LA2_0 <= RULE_LBRACE ) || ( LA2_0 >= RULE_QUESTI && LA2_0 <= RULE_BAND ) || ( LA2_0 >= RULE_HASH && LA2_0 <= RULE_SEMICOLON ) ) ) { alt2 = <NUM_LIT:1> ; } switch ( alt2 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfSql__SqlsAssignment_in_ruleIfSql2210 ) ; rule__IfSql__SqlsAssignment ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop2 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlAccess ( ) . getSqlsAssignment ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleIfSqlFragment ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentRule ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlFragment_in_entryRuleIfSqlFragment2240 ) ; ruleIfSqlFragment ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfSqlFragment2247 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleIfSqlFragment ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__Alternatives_in_ruleIfSqlFragment2273 ) ; rule__IfSqlFragment__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getAlternatives ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleIfSqlValue ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueRule ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlValue_in_entryRuleIfSqlValue2300 ) ; ruleIfSqlValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfSqlValue2307 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleIfSqlValue ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlValue__Group__0_in_ruleIfSqlValue2333 ) ; rule__IfSqlValue__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleIfMetaSql ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlRule ( ) ) ; } pushFollow ( FOLLOW_ruleIfMetaSql_in_entryRuleIfMetaSql2360 ) ; ruleIfMetaSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfMetaSql2367 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleIfMetaSql ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__Alternatives_in_ruleIfMetaSql2393 ) ; rule__IfMetaSql__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getAlternatives ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleIfSqlCond ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlCondRule ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlCond_in_entryRuleIfSqlCond2420 ) ; ruleIfSqlCond ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfSqlCond2427 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleIfSqlCond ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlCondAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlCond__Group__0_in_ruleIfSqlCond2453 ) ; rule__IfSqlCond__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleIfSqlBool ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolRule ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlBool_in_entryRuleIfSqlBool2480 ) ; ruleIfSqlBool ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfSqlBool2487 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleIfSqlBool ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlBool__Alternatives_in_ruleIfSqlBool2513 ) ; rule__IfSqlBool__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getAlternatives ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleOrdSql ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlRule ( ) ) ; } pushFollow ( FOLLOW_ruleOrdSql_in_entryRuleOrdSql2540 ) ; ruleOrdSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleOrdSql2547 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleOrdSql ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlAccess ( ) . getSqlsAssignment ( ) ) ; } { pushFollow ( FOLLOW_rule__OrdSql__SqlsAssignment_in_ruleOrdSql2575 ) ; rule__OrdSql__SqlsAssignment ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlAccess ( ) . getSqlsAssignment ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlAccess ( ) . getSqlsAssignment ( ) ) ; } loop3 : do { int alt3 = <NUM_LIT:2> ; int LA3_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA3_0 >= RULE_REST && LA3_0 <= RULE_LBRACE ) || ( LA3_0 >= RULE_QUESTI && LA3_0 <= RULE_SEMICOLON ) ) ) { alt3 = <NUM_LIT:1> ; } switch ( alt3 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__OrdSql__SqlsAssignment_in_ruleOrdSql2587 ) ; rule__OrdSql__SqlsAssignment ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop3 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlAccess ( ) . getSqlsAssignment ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleOrdSql2 ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Rule ( ) ) ; } pushFollow ( FOLLOW_ruleOrdSql2_in_entryRuleOrdSql22617 ) ; ruleOrdSql2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Rule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleOrdSql22624 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleOrdSql2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Access ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__OrdSql2__Alternatives_in_ruleOrdSql22650 ) ; rule__OrdSql2__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Access ( ) . getAlternatives ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleOrdSqlValue ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueRule ( ) ) ; } pushFollow ( FOLLOW_ruleOrdSqlValue_in_entryRuleOrdSqlValue2677 ) ; ruleOrdSqlValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleOrdSqlValue2684 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleOrdSqlValue ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__OrdSqlValue__Group__0_in_ruleOrdSqlValue2710 ) ; rule__OrdSqlValue__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleColumn ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnRule ( ) ) ; } pushFollow ( FOLLOW_ruleColumn_in_entryRuleColumn2737 ) ; ruleColumn ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleColumn2744 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleColumn ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__Column__Group__0_in_ruleColumn2770 ) ; rule__Column__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleConstant ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantRule ( ) ) ; } pushFollow ( FOLLOW_ruleConstant_in_entryRuleConstant2797 ) ; ruleConstant ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleConstant2804 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleConstant ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__Constant__Group__0_in_ruleConstant2830 ) ; rule__Constant__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleIdentifier ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierRule ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifier_in_entryRuleIdentifier2857 ) ; ruleIdentifier ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIdentifier2864 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleIdentifier ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__Identifier__Group__0_in_ruleIdentifier2890 ) ; rule__Identifier__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleDatabaseColumn ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabaseColumnRule ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseColumn_in_entryRuleDatabaseColumn2917 ) ; ruleDatabaseColumn ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabaseColumnRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleDatabaseColumn2924 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleDatabaseColumn ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabaseColumnAccess ( ) . getNameAssignment ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseColumn__NameAssignment_in_ruleDatabaseColumn2950 ) ; rule__DatabaseColumn__NameAssignment ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabaseColumnAccess ( ) . getNameAssignment ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleDatabaseTable ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabaseTableRule ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseTable_in_entryRuleDatabaseTable2977 ) ; ruleDatabaseTable ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabaseTableRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleDatabaseTable2984 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleDatabaseTable ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabaseTableAccess ( ) . getNameAssignment ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseTable__NameAssignment_in_ruleDatabaseTable3010 ) ; rule__DatabaseTable__NameAssignment ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabaseTableAccess ( ) . getNameAssignment ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleMappingRule ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleRule ( ) ) ; } pushFollow ( FOLLOW_ruleMappingRule_in_entryRuleMappingRule3037 ) ; ruleMappingRule ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMappingRule3044 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleMappingRule ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingRule__Group__0_in_ruleMappingRule3070 ) ; rule__MappingRule__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleMapping ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRule ( ) ) ; } pushFollow ( FOLLOW_ruleMapping_in_entryRuleMapping3097 ) ; ruleMapping ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMapping3104 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleMapping ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__Mapping__Group__0_in_ruleMapping3130 ) ; rule__Mapping__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleMappingItem ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingItemRule ( ) ) ; } pushFollow ( FOLLOW_ruleMappingItem_in_entryRuleMappingItem3157 ) ; ruleMappingItem ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingItemRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMappingItem3164 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleMappingItem ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingItemAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingItem__Group__0_in_ruleMappingItem3190 ) ; rule__MappingItem__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingItemAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleMappingColumn ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingColumnRule ( ) ) ; } pushFollow ( FOLLOW_ruleMappingColumn_in_entryRuleMappingColumn3217 ) ; ruleMappingColumn ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingColumnRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMappingColumn3224 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleMappingColumn ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingColumnAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingColumn__Group__0_in_ruleMappingColumn3250 ) ; rule__MappingColumn__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingColumnAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleOptionalFeature ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureRule ( ) ) ; } pushFollow ( FOLLOW_ruleOptionalFeature_in_entryRuleOptionalFeature3277 ) ; ruleOptionalFeature ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleOptionalFeature3284 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleOptionalFeature ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__OptionalFeature__Group__0_in_ruleOptionalFeature3310 ) ; rule__OptionalFeature__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleFeatureValue ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueRule ( ) ) ; } pushFollow ( FOLLOW_ruleFeatureValue_in_entryRuleFeatureValue3337 ) ; ruleFeatureValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleFeatureValue3344 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleFeatureValue ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__FeatureValue__Alternatives_in_ruleFeatureValue3372 ) ; rule__FeatureValue__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getAlternatives ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getAlternatives ( ) ) ; } loop4 : do { int alt4 = <NUM_LIT:2> ; int LA4_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA4_0 >= RULE_REST && LA4_0 <= RULE_WS ) ) ) { alt4 = <NUM_LIT:1> ; } switch ( alt4 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__FeatureValue__Alternatives_in_ruleFeatureValue3384 ) ; rule__FeatureValue__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop4 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getAlternatives ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRulePojoType ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeRule ( ) ) ; } pushFollow ( FOLLOW_rulePojoType_in_entryRulePojoType3414 ) ; rulePojoType ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoType3421 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void rulePojoType ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoType__Group__0_in_rulePojoType3447 ) ; rule__PojoType__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRulePackageDeclaration ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationRule ( ) ) ; } pushFollow ( FOLLOW_rulePackageDeclaration_in_entryRulePackageDeclaration3479 ) ; rulePackageDeclaration ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePackageDeclaration3486 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void rulePackageDeclaration ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__PackageDeclaration__Group__0_in_rulePackageDeclaration3516 ) ; rule__PackageDeclaration__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRuleAbstractPojoEntity ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getAbstractPojoEntityRule ( ) ) ; } pushFollow ( FOLLOW_ruleAbstractPojoEntity_in_entryRuleAbstractPojoEntity3548 ) ; ruleAbstractPojoEntity ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getAbstractPojoEntityRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleAbstractPojoEntity3555 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void ruleAbstractPojoEntity ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getAbstractPojoEntityAccess ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__AbstractPojoEntity__Alternatives_in_ruleAbstractPojoEntity3585 ) ; rule__AbstractPojoEntity__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getAbstractPojoEntityAccess ( ) . getAlternatives ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRuleImport ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportRule ( ) ) ; } pushFollow ( FOLLOW_ruleImport_in_entryRuleImport3617 ) ; ruleImport ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleImport3624 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void ruleImport ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__Import__Group__0_in_ruleImport3654 ) ; rule__Import__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRuleImplements ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImplementsRule ( ) ) ; } pushFollow ( FOLLOW_ruleImplements_in_entryRuleImplements3686 ) ; ruleImplements ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImplementsRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleImplements3693 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void ruleImplements ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImplementsAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__Implements__Group__0_in_ruleImplements3723 ) ; rule__Implements__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImplementsAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRuleExtends ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExtendsRule ( ) ) ; } pushFollow ( FOLLOW_ruleExtends_in_entryRuleExtends3755 ) ; ruleExtends ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExtendsRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleExtends3762 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void ruleExtends ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExtendsAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__Extends__Group__0_in_ruleExtends3792 ) ; rule__Extends__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExtendsAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRulePojoEntityModifier1 ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier1Rule ( ) ) ; } pushFollow ( FOLLOW_rulePojoEntityModifier1_in_entryRulePojoEntityModifier13819 ) ; rulePojoEntityModifier1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier1Rule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoEntityModifier13826 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void rulePojoEntityModifier1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier1Access ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoEntityModifier1__Alternatives_in_rulePojoEntityModifier13852 ) ; rule__PojoEntityModifier1__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier1Access ( ) . getAlternatives ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRulePojoEntityModifier2 ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Rule ( ) ) ; } pushFollow ( FOLLOW_rulePojoEntityModifier2_in_entryRulePojoEntityModifier23879 ) ; rulePojoEntityModifier2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Rule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoEntityModifier23886 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void rulePojoEntityModifier2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoEntityModifier2__Alternatives_in_rulePojoEntityModifier23912 ) ; rule__PojoEntityModifier2__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getAlternatives ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRulePojoEntity ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityRule ( ) ) ; } pushFollow ( FOLLOW_rulePojoEntity_in_entryRulePojoEntity3944 ) ; rulePojoEntity ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoEntity3951 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void rulePojoEntity ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoEntity__Group__0_in_rulePojoEntity3981 ) ; rule__PojoEntity__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRulePojoPropertyModifier ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyModifierRule ( ) ) ; } pushFollow ( FOLLOW_rulePojoPropertyModifier_in_entryRulePojoPropertyModifier4008 ) ; rulePojoPropertyModifier ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyModifierRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoPropertyModifier4015 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void rulePojoPropertyModifier ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyModifierAccess ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoPropertyModifier__Alternatives_in_rulePojoPropertyModifier4041 ) ; rule__PojoPropertyModifier__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyModifierAccess ( ) . getAlternatives ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRulePojoProperty ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyRule ( ) ) ; } pushFollow ( FOLLOW_rulePojoProperty_in_entryRulePojoProperty4073 ) ; rulePojoProperty ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoProperty4080 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { myHiddenTokenState . restore ( ) ; } return ; } public final void rulePojoProperty ( ) throws RecognitionException { HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__Group__0_in_rulePojoProperty4110 ) ; rule__PojoProperty__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; myHiddenTokenState . restore ( ) ; } return ; } public final void entryRuleQualifiedNameWithWildcard ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getQualifiedNameWithWildcardRule ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedNameWithWildcard_in_entryRuleQualifiedNameWithWildcard4137 ) ; ruleQualifiedNameWithWildcard ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getQualifiedNameWithWildcardRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleQualifiedNameWithWildcard4144 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleQualifiedNameWithWildcard ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getQualifiedNameWithWildcardAccess ( ) . getGroup ( ) ) ; } { pushFollow ( FOLLOW_rule__QualifiedNameWithWildcard__Group__0_in_ruleQualifiedNameWithWildcard4170 ) ; rule__QualifiedNameWithWildcard__Group__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getQualifiedNameWithWildcardAccess ( ) . getGroup ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void entryRuleQualifiedName ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getQualifiedNameRule ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName4197 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getQualifiedNameRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleQualifiedName4204 ) ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { } return ; } public final void ruleQualifiedName ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getQualifiedNameAccess ( ) . getAlternatives ( ) ) ; } { pushFollow ( FOLLOW_rule__QualifiedName__Alternatives_in_ruleQualifiedName4230 ) ; rule__QualifiedName__Alternatives ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getQualifiedNameAccess ( ) . getAlternatives ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Alternatives_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt5 = <NUM_LIT:10> ; alt5 = dfa5 . predict ( input ) ; switch ( alt5 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__Group_1_0__0_in_rule__Artifacts__Alternatives_14266 ) ; rule__Artifacts__Group_1_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__Group_1_1__0_in_rule__Artifacts__Alternatives_14284 ) ; rule__Artifacts__Group_1_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__Group_1_2__0_in_rule__Artifacts__Alternatives_14302 ) ; rule__Artifacts__Group_1_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__Group_1_3__0_in_rule__Artifacts__Alternatives_14320 ) ; rule__Artifacts__Group_1_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_4 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__Group_1_4__0_in_rule__Artifacts__Alternatives_14338 ) ; rule__Artifacts__Group_1_4__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_5 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__Group_1_5__0_in_rule__Artifacts__Alternatives_14356 ) ; rule__Artifacts__Group_1_5__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_5 ( ) ) ; } } } break ; case <NUM_LIT:7> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_6 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__Group_1_6__0_in_rule__Artifacts__Alternatives_14374 ) ; rule__Artifacts__Group_1_6__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_6 ( ) ) ; } } } break ; case <NUM_LIT:8> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_7 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__Group_1_7__0_in_rule__Artifacts__Alternatives_14392 ) ; rule__Artifacts__Group_1_7__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_7 ( ) ) ; } } } break ; case <NUM_LIT:9> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_8 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__Group_1_8__0_in_rule__Artifacts__Alternatives_14410 ) ; rule__Artifacts__Group_1_8__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_8 ( ) ) ; } } } break ; case <NUM_LIT:10> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_9 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__Group_1_9__0_in_rule__Artifacts__Alternatives_14428 ) ; rule__Artifacts__Group_1_9__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_9 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Alternatives_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt6 = <NUM_LIT:4> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt6 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt6 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt6 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt6 = <NUM_LIT:4> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:6> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt6 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__NameAssignment_0_0_in_rule__Property__Alternatives_04461 ) ; rule__Property__NameAssignment_0_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__NameAssignment_0_1_in_rule__Property__Alternatives_04479 ) ; rule__Property__NameAssignment_0_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getGroup_0_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__Group_0_2__0_in_rule__Property__Alternatives_04497 ) ; rule__Property__Group_0_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getGroup_0_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getGroup_0_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__Group_0_3__0_in_rule__Property__Alternatives_04515 ) ; rule__Property__Group_0_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getGroup_0_3 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt7 = <NUM_LIT:7> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt7 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt7 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt7 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt7 = <NUM_LIT:4> ; } break ; case <NUM_LIT> : { alt7 = <NUM_LIT:5> ; } break ; case <NUM_LIT> : { alt7 = <NUM_LIT:6> ; } break ; case <NUM_LIT> : { alt7 = <NUM_LIT:7> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:7> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt7 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__NameAssignment_0_in_rule__DatabaseProperty__Alternatives4548 ) ; rule__DatabaseProperty__NameAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__NameAssignment_1_in_rule__DatabaseProperty__Alternatives4566 ) ; rule__DatabaseProperty__NameAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getGroup_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_2__0_in_rule__DatabaseProperty__Alternatives4584 ) ; rule__DatabaseProperty__Group_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getGroup_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getGroup_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_3__0_in_rule__DatabaseProperty__Alternatives4602 ) ; rule__DatabaseProperty__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getGroup_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getGroup_4 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_4__0_in_rule__DatabaseProperty__Alternatives4620 ) ; rule__DatabaseProperty__Group_4__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getGroup_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getGroup_5 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_5__0_in_rule__DatabaseProperty__Alternatives4638 ) ; rule__DatabaseProperty__Group_5__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getGroup_5 ( ) ) ; } } } break ; case <NUM_LIT:7> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getGroup_6 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_6__0_in_rule__DatabaseProperty__Alternatives4656 ) ; rule__DatabaseProperty__Group_6__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getGroup_6 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt8 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt8 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT:4> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT:5> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT:6> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT:7> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT:8> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT:9> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT:10> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT:11> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT:12> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT:15> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT:16> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT:20> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT> ; } break ; case <NUM_LIT:100> : { alt8 = <NUM_LIT> ; } break ; case <NUM_LIT> : { alt8 = <NUM_LIT> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:8> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt8 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_0__0_in_rule__PojogenProperty__Alternatives4689 ) ; rule__PojogenProperty__Group_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_1__0_in_rule__PojogenProperty__Alternatives4707 ) ; rule__PojogenProperty__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_2__0_in_rule__PojogenProperty__Alternatives4725 ) ; rule__PojogenProperty__Group_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_3__0_in_rule__PojogenProperty__Alternatives4743 ) ; rule__PojogenProperty__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_4 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_4__0_in_rule__PojogenProperty__Alternatives4761 ) ; rule__PojogenProperty__Group_4__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_5 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_5__0_in_rule__PojogenProperty__Alternatives4779 ) ; rule__PojogenProperty__Group_5__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_5 ( ) ) ; } } } break ; case <NUM_LIT:7> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_6 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_6__0_in_rule__PojogenProperty__Alternatives4797 ) ; rule__PojogenProperty__Group_6__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_6 ( ) ) ; } } } break ; case <NUM_LIT:8> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_7 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_7__0_in_rule__PojogenProperty__Alternatives4815 ) ; rule__PojogenProperty__Group_7__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_7 ( ) ) ; } } } break ; case <NUM_LIT:9> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_8 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_8__0_in_rule__PojogenProperty__Alternatives4833 ) ; rule__PojogenProperty__Group_8__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_8 ( ) ) ; } } } break ; case <NUM_LIT:10> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_9 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_9__0_in_rule__PojogenProperty__Alternatives4851 ) ; rule__PojogenProperty__Group_9__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_9 ( ) ) ; } } } break ; case <NUM_LIT:11> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_10 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_10__0_in_rule__PojogenProperty__Alternatives4869 ) ; rule__PojogenProperty__Group_10__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_10 ( ) ) ; } } } break ; case <NUM_LIT:12> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_11 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_11__0_in_rule__PojogenProperty__Alternatives4887 ) ; rule__PojogenProperty__Group_11__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_11 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_12 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_12__0_in_rule__PojogenProperty__Alternatives4905 ) ; rule__PojogenProperty__Group_12__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_12 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_13 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_13__0_in_rule__PojogenProperty__Alternatives4923 ) ; rule__PojogenProperty__Group_13__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_13 ( ) ) ; } } } break ; case <NUM_LIT:15> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_14 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_14__0_in_rule__PojogenProperty__Alternatives4941 ) ; rule__PojogenProperty__Group_14__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_14 ( ) ) ; } } } break ; case <NUM_LIT:16> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_15 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_15__0_in_rule__PojogenProperty__Alternatives4959 ) ; rule__PojogenProperty__Group_15__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_15 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_16 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_16__0_in_rule__PojogenProperty__Alternatives4977 ) ; rule__PojogenProperty__Group_16__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_16 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_17 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_17__0_in_rule__PojogenProperty__Alternatives4995 ) ; rule__PojogenProperty__Group_17__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_17 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_18 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_18__0_in_rule__PojogenProperty__Alternatives5013 ) ; rule__PojogenProperty__Group_18__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_18 ( ) ) ; } } } break ; case <NUM_LIT:20> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_19 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_19__0_in_rule__PojogenProperty__Alternatives5031 ) ; rule__PojogenProperty__Group_19__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_19 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_20 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_20__0_in_rule__PojogenProperty__Alternatives5049 ) ; rule__PojogenProperty__Group_20__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_20 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_21 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_21__0_in_rule__PojogenProperty__Alternatives5067 ) ; rule__PojogenProperty__Group_21__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_21 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_22 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_22__0_in_rule__PojogenProperty__Alternatives5085 ) ; rule__PojogenProperty__Group_22__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_22 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PropertyValue__Alternatives_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt9 = <NUM_LIT:31> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt9 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt9 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt9 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt9 = <NUM_LIT:4> ; } break ; case RULE_COLON : { alt9 = <NUM_LIT:5> ; } break ; case RULE_STRING : { alt9 = <NUM_LIT:6> ; } break ; case RULE_COMMA : { alt9 = <NUM_LIT:7> ; } break ; case RULE_MINUS : { alt9 = <NUM_LIT:8> ; } break ; case RULE_PLUS : { alt9 = <NUM_LIT:9> ; } break ; case RULE_LPAREN : { alt9 = <NUM_LIT:10> ; } break ; case RULE_RPAREN : { alt9 = <NUM_LIT:11> ; } break ; case RULE_LBRACE : { alt9 = <NUM_LIT:12> ; } break ; case RULE_RBRACE : { alt9 = <NUM_LIT> ; } break ; case RULE_QUESTI : { alt9 = <NUM_LIT> ; } break ; case RULE_NOT : { alt9 = <NUM_LIT:15> ; } break ; case RULE_BAND : { alt9 = <NUM_LIT:16> ; } break ; case RULE_BOR : { alt9 = <NUM_LIT> ; } break ; case RULE_HASH : { alt9 = <NUM_LIT> ; } break ; case RULE_AT : { alt9 = <NUM_LIT> ; } break ; case RULE_CARET : { alt9 = <NUM_LIT:20> ; } break ; case RULE_EQUALS : { alt9 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt9 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt9 = <NUM_LIT> ; } break ; case RULE_PERCENT : { alt9 = <NUM_LIT:24> ; } break ; case RULE_AND : { alt9 = <NUM_LIT> ; } break ; case RULE_OR : { alt9 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt9 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt9 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt9 = <NUM_LIT> ; } break ; case RULE_MAPPING_TYPE : { alt9 = <NUM_LIT:30> ; } break ; case RULE_OPTION_TYPE : { alt9 = <NUM_LIT:31> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:9> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt9 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getRESTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_REST , FOLLOW_RULE_REST_in_rule__PropertyValue__Alternatives_05118 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getRESTTerminalRuleCall_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__PropertyValue__Alternatives_05135 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getIDENTTerminalRuleCall_0_2 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PropertyValue__Alternatives_05152 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getIDENTTerminalRuleCall_0_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getNUMBERTerminalRuleCall_0_3 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__PropertyValue__Alternatives_05169 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getNUMBERTerminalRuleCall_0_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getCOLONTerminalRuleCall_0_4 ( ) ) ; } match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rule__PropertyValue__Alternatives_05186 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getCOLONTerminalRuleCall_0_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getSTRINGTerminalRuleCall_0_5 ( ) ) ; } match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_rule__PropertyValue__Alternatives_05203 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getSTRINGTerminalRuleCall_0_5 ( ) ) ; } } } break ; case <NUM_LIT:7> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getCOMMATerminalRuleCall_0_6 ( ) ) ; } match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_rule__PropertyValue__Alternatives_05220 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getCOMMATerminalRuleCall_0_6 ( ) ) ; } } } break ; case <NUM_LIT:8> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getMINUSTerminalRuleCall_0_7 ( ) ) ; } match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_rule__PropertyValue__Alternatives_05237 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getMINUSTerminalRuleCall_0_7 ( ) ) ; } } } break ; case <NUM_LIT:9> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getPLUSTerminalRuleCall_0_8 ( ) ) ; } match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_rule__PropertyValue__Alternatives_05254 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getPLUSTerminalRuleCall_0_8 ( ) ) ; } } } break ; case <NUM_LIT:10> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getLPARENTerminalRuleCall_0_9 ( ) ) ; } match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rule__PropertyValue__Alternatives_05271 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getLPARENTerminalRuleCall_0_9 ( ) ) ; } } } break ; case <NUM_LIT:11> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getRPARENTerminalRuleCall_0_10 ( ) ) ; } match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rule__PropertyValue__Alternatives_05288 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getRPARENTerminalRuleCall_0_10 ( ) ) ; } } } break ; case <NUM_LIT:12> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getLBRACETerminalRuleCall_0_11 ( ) ) ; } match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_rule__PropertyValue__Alternatives_05305 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getLBRACETerminalRuleCall_0_11 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getRBRACETerminalRuleCall_0_12 ( ) ) ; } match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_rule__PropertyValue__Alternatives_05322 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getRBRACETerminalRuleCall_0_12 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getQUESTITerminalRuleCall_0_13 ( ) ) ; } match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_rule__PropertyValue__Alternatives_05339 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getQUESTITerminalRuleCall_0_13 ( ) ) ; } } } break ; case <NUM_LIT:15> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getNOTTerminalRuleCall_0_14 ( ) ) ; } match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_rule__PropertyValue__Alternatives_05356 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getNOTTerminalRuleCall_0_14 ( ) ) ; } } } break ; case <NUM_LIT:16> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getBANDTerminalRuleCall_0_15 ( ) ) ; } match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_rule__PropertyValue__Alternatives_05373 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getBANDTerminalRuleCall_0_15 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getBORTerminalRuleCall_0_16 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__PropertyValue__Alternatives_05390 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getBORTerminalRuleCall_0_16 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getHASHTerminalRuleCall_0_17 ( ) ) ; } match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_rule__PropertyValue__Alternatives_05407 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getHASHTerminalRuleCall_0_17 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getATTerminalRuleCall_0_18 ( ) ) ; } match ( input , RULE_AT , FOLLOW_RULE_AT_in_rule__PropertyValue__Alternatives_05424 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getATTerminalRuleCall_0_18 ( ) ) ; } } } break ; case <NUM_LIT:20> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getCARETTerminalRuleCall_0_19 ( ) ) ; } match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__PropertyValue__Alternatives_05441 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getCARETTerminalRuleCall_0_19 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getEQUALSTerminalRuleCall_0_20 ( ) ) ; } match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rule__PropertyValue__Alternatives_05458 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getEQUALSTerminalRuleCall_0_20 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getLESS_THANTerminalRuleCall_0_21 ( ) ) ; } match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rule__PropertyValue__Alternatives_05475 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getLESS_THANTerminalRuleCall_0_21 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getMORE_THANTerminalRuleCall_0_22 ( ) ) ; } match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rule__PropertyValue__Alternatives_05492 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getMORE_THANTerminalRuleCall_0_22 ( ) ) ; } } } break ; case <NUM_LIT:24> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getPERCENTTerminalRuleCall_0_23 ( ) ) ; } match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_rule__PropertyValue__Alternatives_05509 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getPERCENTTerminalRuleCall_0_23 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getANDTerminalRuleCall_0_24 ( ) ) ; } match ( input , RULE_AND , FOLLOW_RULE_AND_in_rule__PropertyValue__Alternatives_05526 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getANDTerminalRuleCall_0_24 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getORTerminalRuleCall_0_25 ( ) ) ; } match ( input , RULE_OR , FOLLOW_RULE_OR_in_rule__PropertyValue__Alternatives_05543 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getORTerminalRuleCall_0_25 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getESC_CHARTerminalRuleCall_0_26 ( ) ) ; } match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_rule__PropertyValue__Alternatives_05560 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getESC_CHARTerminalRuleCall_0_26 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getON_OFFTerminalRuleCall_0_27 ( ) ) ; } match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_rule__PropertyValue__Alternatives_05577 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getON_OFFTerminalRuleCall_0_27 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_0_28 ( ) ) ; } match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_rule__PropertyValue__Alternatives_05594 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_0_28 ( ) ) ; } } } break ; case <NUM_LIT:30> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_0_29 ( ) ) ; } match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_rule__PropertyValue__Alternatives_05611 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_0_29 ( ) ) ; } } } break ; case <NUM_LIT:31> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getOPTION_TYPETerminalRuleCall_0_30 ( ) ) ; } match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_rule__PropertyValue__Alternatives_05628 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getOPTION_TYPETerminalRuleCall_0_30 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PropertyValue__Alternatives_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt10 = <NUM_LIT:32> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt10 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt10 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt10 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt10 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt10 = <NUM_LIT:5> ; } break ; case RULE_COLON : { alt10 = <NUM_LIT:6> ; } break ; case RULE_STRING : { alt10 = <NUM_LIT:7> ; } break ; case RULE_COMMA : { alt10 = <NUM_LIT:8> ; } break ; case RULE_MINUS : { alt10 = <NUM_LIT:9> ; } break ; case RULE_PLUS : { alt10 = <NUM_LIT:10> ; } break ; case RULE_LPAREN : { alt10 = <NUM_LIT:11> ; } break ; case RULE_RPAREN : { alt10 = <NUM_LIT:12> ; } break ; case RULE_LBRACE : { alt10 = <NUM_LIT> ; } break ; case RULE_RBRACE : { alt10 = <NUM_LIT> ; } break ; case RULE_QUESTI : { alt10 = <NUM_LIT:15> ; } break ; case RULE_NOT : { alt10 = <NUM_LIT:16> ; } break ; case RULE_BAND : { alt10 = <NUM_LIT> ; } break ; case RULE_BOR : { alt10 = <NUM_LIT> ; } break ; case RULE_HASH : { alt10 = <NUM_LIT> ; } break ; case RULE_AT : { alt10 = <NUM_LIT:20> ; } break ; case RULE_CARET : { alt10 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt10 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt10 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt10 = <NUM_LIT:24> ; } break ; case RULE_PERCENT : { alt10 = <NUM_LIT> ; } break ; case RULE_AND : { alt10 = <NUM_LIT> ; } break ; case RULE_OR : { alt10 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt10 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt10 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt10 = <NUM_LIT:30> ; } break ; case RULE_MAPPING_TYPE : { alt10 = <NUM_LIT:31> ; } break ; case RULE_OPTION_TYPE : { alt10 = <NUM_LIT:32> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:10> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt10 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getRESTTerminalRuleCall_1_0_0 ( ) ) ; } match ( input , RULE_REST , FOLLOW_RULE_REST_in_rule__PropertyValue__Alternatives_1_05660 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getRESTTerminalRuleCall_1_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__PropertyValue__Alternatives_1_05677 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getIDENTTerminalRuleCall_1_0_2 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PropertyValue__Alternatives_1_05694 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getIDENTTerminalRuleCall_1_0_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getNUMBERTerminalRuleCall_1_0_3 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__PropertyValue__Alternatives_1_05711 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getNUMBERTerminalRuleCall_1_0_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getWSTerminalRuleCall_1_0_4 ( ) ) ; } match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PropertyValue__Alternatives_1_05728 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getWSTerminalRuleCall_1_0_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getCOLONTerminalRuleCall_1_0_5 ( ) ) ; } match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rule__PropertyValue__Alternatives_1_05745 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getCOLONTerminalRuleCall_1_0_5 ( ) ) ; } } } break ; case <NUM_LIT:7> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getSTRINGTerminalRuleCall_1_0_6 ( ) ) ; } match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_rule__PropertyValue__Alternatives_1_05762 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getSTRINGTerminalRuleCall_1_0_6 ( ) ) ; } } } break ; case <NUM_LIT:8> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getCOMMATerminalRuleCall_1_0_7 ( ) ) ; } match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_rule__PropertyValue__Alternatives_1_05779 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getCOMMATerminalRuleCall_1_0_7 ( ) ) ; } } } break ; case <NUM_LIT:9> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getMINUSTerminalRuleCall_1_0_8 ( ) ) ; } match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_rule__PropertyValue__Alternatives_1_05796 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getMINUSTerminalRuleCall_1_0_8 ( ) ) ; } } } break ; case <NUM_LIT:10> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getPLUSTerminalRuleCall_1_0_9 ( ) ) ; } match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_rule__PropertyValue__Alternatives_1_05813 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getPLUSTerminalRuleCall_1_0_9 ( ) ) ; } } } break ; case <NUM_LIT:11> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getLPARENTerminalRuleCall_1_0_10 ( ) ) ; } match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rule__PropertyValue__Alternatives_1_05830 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getLPARENTerminalRuleCall_1_0_10 ( ) ) ; } } } break ; case <NUM_LIT:12> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getRPARENTerminalRuleCall_1_0_11 ( ) ) ; } match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rule__PropertyValue__Alternatives_1_05847 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getRPARENTerminalRuleCall_1_0_11 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getLBRACETerminalRuleCall_1_0_12 ( ) ) ; } match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_rule__PropertyValue__Alternatives_1_05864 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getLBRACETerminalRuleCall_1_0_12 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getRBRACETerminalRuleCall_1_0_13 ( ) ) ; } match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_rule__PropertyValue__Alternatives_1_05881 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getRBRACETerminalRuleCall_1_0_13 ( ) ) ; } } } break ; case <NUM_LIT:15> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getQUESTITerminalRuleCall_1_0_14 ( ) ) ; } match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_rule__PropertyValue__Alternatives_1_05898 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getQUESTITerminalRuleCall_1_0_14 ( ) ) ; } } } break ; case <NUM_LIT:16> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getNOTTerminalRuleCall_1_0_15 ( ) ) ; } match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_rule__PropertyValue__Alternatives_1_05915 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getNOTTerminalRuleCall_1_0_15 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getBANDTerminalRuleCall_1_0_16 ( ) ) ; } match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_rule__PropertyValue__Alternatives_1_05932 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getBANDTerminalRuleCall_1_0_16 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getBORTerminalRuleCall_1_0_17 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__PropertyValue__Alternatives_1_05949 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getBORTerminalRuleCall_1_0_17 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getHASHTerminalRuleCall_1_0_18 ( ) ) ; } match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_rule__PropertyValue__Alternatives_1_05966 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getHASHTerminalRuleCall_1_0_18 ( ) ) ; } } } break ; case <NUM_LIT:20> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getATTerminalRuleCall_1_0_19 ( ) ) ; } match ( input , RULE_AT , FOLLOW_RULE_AT_in_rule__PropertyValue__Alternatives_1_05983 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getATTerminalRuleCall_1_0_19 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getCARETTerminalRuleCall_1_0_20 ( ) ) ; } match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__PropertyValue__Alternatives_1_06000 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getCARETTerminalRuleCall_1_0_20 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getEQUALSTerminalRuleCall_1_0_21 ( ) ) ; } match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rule__PropertyValue__Alternatives_1_06017 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getEQUALSTerminalRuleCall_1_0_21 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getLESS_THANTerminalRuleCall_1_0_22 ( ) ) ; } match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rule__PropertyValue__Alternatives_1_06034 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getLESS_THANTerminalRuleCall_1_0_22 ( ) ) ; } } } break ; case <NUM_LIT:24> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getMORE_THANTerminalRuleCall_1_0_23 ( ) ) ; } match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rule__PropertyValue__Alternatives_1_06051 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getMORE_THANTerminalRuleCall_1_0_23 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getPERCENTTerminalRuleCall_1_0_24 ( ) ) ; } match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_rule__PropertyValue__Alternatives_1_06068 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getPERCENTTerminalRuleCall_1_0_24 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getANDTerminalRuleCall_1_0_25 ( ) ) ; } match ( input , RULE_AND , FOLLOW_RULE_AND_in_rule__PropertyValue__Alternatives_1_06085 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getANDTerminalRuleCall_1_0_25 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getORTerminalRuleCall_1_0_26 ( ) ) ; } match ( input , RULE_OR , FOLLOW_RULE_OR_in_rule__PropertyValue__Alternatives_1_06102 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getORTerminalRuleCall_1_0_26 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getESC_CHARTerminalRuleCall_1_0_27 ( ) ) ; } match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_rule__PropertyValue__Alternatives_1_06119 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getESC_CHARTerminalRuleCall_1_0_27 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getON_OFFTerminalRuleCall_1_0_28 ( ) ) ; } match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_rule__PropertyValue__Alternatives_1_06136 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getON_OFFTerminalRuleCall_1_0_28 ( ) ) ; } } } break ; case <NUM_LIT:30> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_1_0_29 ( ) ) ; } match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_rule__PropertyValue__Alternatives_1_06153 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_1_0_29 ( ) ) ; } } } break ; case <NUM_LIT:31> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_1_0_30 ( ) ) ; } match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_rule__PropertyValue__Alternatives_1_06170 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_1_0_30 ( ) ) ; } } } break ; case <NUM_LIT:32> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getOPTION_TYPETerminalRuleCall_1_0_31 ( ) ) ; } match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_rule__PropertyValue__Alternatives_1_06187 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getOPTION_TYPETerminalRuleCall_1_0_31 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoDefinition__ClassAlternatives_2_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt11 = <NUM_LIT:2> ; int LA11_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA11_0 == RULE_IDENT ) ) { alt11 = <NUM_LIT:1> ; } else if ( ( LA11_0 == RULE_IDENT_DOT ) ) { alt11 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:11> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt11 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoDefinitionAccess ( ) . getClassIDENTTerminalRuleCall_2_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojoDefinition__ClassAlternatives_2_06219 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoDefinitionAccess ( ) . getClassIDENTTerminalRuleCall_2_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoDefinitionAccess ( ) . getClassIDENT_DOTTerminalRuleCall_2_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__PojoDefinition__ClassAlternatives_2_06236 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoDefinitionAccess ( ) . getClassIDENT_DOTTerminalRuleCall_2_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoUsage__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt12 = <NUM_LIT:4> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt12 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt12 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt12 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt12 = <NUM_LIT:4> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:12> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt12 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoUsageAccess ( ) . getColumnUsageParserRuleCall_0 ( ) ) ; } pushFollow ( FOLLOW_ruleColumnUsage_in_rule__PojoUsage__Alternatives6268 ) ; ruleColumnUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoUsageAccess ( ) . getColumnUsageParserRuleCall_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoUsageAccess ( ) . getIdentifierUsageParserRuleCall_1 ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifierUsage_in_rule__PojoUsage__Alternatives6285 ) ; ruleIdentifierUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoUsageAccess ( ) . getIdentifierUsageParserRuleCall_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoUsageAccess ( ) . getConstantUsageParserRuleCall_2 ( ) ) ; } pushFollow ( FOLLOW_ruleConstantUsage_in_rule__PojoUsage__Alternatives6302 ) ; ruleConstantUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoUsageAccess ( ) . getConstantUsageParserRuleCall_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoUsageAccess ( ) . getMappingUsageParserRuleCall_3 ( ) ) ; } pushFollow ( FOLLOW_ruleMappingUsage_in_rule__PojoUsage__Alternatives6319 ) ; ruleMappingUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoUsageAccess ( ) . getMappingUsageParserRuleCall_3 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoUsageExt__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt13 = <NUM_LIT:4> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt13 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt13 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt13 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt13 = <NUM_LIT:4> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt13 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoUsageExtAccess ( ) . getColumnUsageExtParserRuleCall_0 ( ) ) ; } pushFollow ( FOLLOW_ruleColumnUsageExt_in_rule__PojoUsageExt__Alternatives6351 ) ; ruleColumnUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoUsageExtAccess ( ) . getColumnUsageExtParserRuleCall_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoUsageExtAccess ( ) . getIdentifierUsageExtParserRuleCall_1 ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifierUsageExt_in_rule__PojoUsageExt__Alternatives6368 ) ; ruleIdentifierUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoUsageExtAccess ( ) . getIdentifierUsageExtParserRuleCall_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoUsageExtAccess ( ) . getConstantUsageExtParserRuleCall_2 ( ) ) ; } pushFollow ( FOLLOW_ruleConstantUsageExt_in_rule__PojoUsageExt__Alternatives6385 ) ; ruleConstantUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoUsageExtAccess ( ) . getConstantUsageExtParserRuleCall_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoUsageExtAccess ( ) . getMappingUsageExtParserRuleCall_3 ( ) ) ; } pushFollow ( FOLLOW_ruleMappingUsageExt_in_rule__PojoUsageExt__Alternatives6402 ) ; ruleMappingUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoUsageExtAccess ( ) . getMappingUsageExtParserRuleCall_3 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt14 = <NUM_LIT:6> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : case RULE_IDENT_DOT : case RULE_IDENT : case RULE_NUMBER : case RULE_COMMA : case RULE_MINUS : case RULE_PLUS : case RULE_LPAREN : case RULE_RPAREN : case RULE_RBRACE : case RULE_QUESTI : case RULE_NOT : case RULE_BAND : case RULE_BOR : case RULE_HASH : case RULE_CARET : case RULE_EQUALS : case RULE_LESS_THAN : case RULE_MORE_THAN : case RULE_AND : case RULE_OR : case RULE_ESC_CHAR : case RULE_ON_OFF : case RULE_STATEMEN_TYPE : case RULE_MAPPING_TYPE : case RULE_OPTION_TYPE : case RULE_WS : { alt14 = <NUM_LIT:1> ; } break ; case RULE_AT : { alt14 = <NUM_LIT:2> ; } break ; case RULE_STRING : { alt14 = <NUM_LIT:3> ; } break ; case RULE_COLON : { alt14 = <NUM_LIT:4> ; } break ; case RULE_LBRACE : { alt14 = <NUM_LIT:5> ; } break ; case RULE_PERCENT : { alt14 = <NUM_LIT:6> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt14 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getValueAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__ValueAssignment_0_in_rule__SqlFragment__Alternatives6434 ) ; rule__SqlFragment__ValueAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getValueAssignment_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__Group_1__0_in_rule__SqlFragment__Alternatives6452 ) ; rule__SqlFragment__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__Group_2__0_in_rule__SqlFragment__Alternatives6470 ) ; rule__SqlFragment__Group_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__Group_3__0_in_rule__SqlFragment__Alternatives6488 ) ; rule__SqlFragment__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_4 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__Group_4__0_in_rule__SqlFragment__Alternatives6506 ) ; rule__SqlFragment__Group_4__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_5 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__Group_5__0_in_rule__SqlFragment__Alternatives6524 ) ; rule__SqlFragment__Group_5__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_5 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Alternatives_5_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt15 = <NUM_LIT:2> ; int LA15_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA15_0 == RULE_PERCENT ) ) { alt15 = <NUM_LIT:1> ; } else if ( ( ( LA15_0 >= RULE_IDENT_DOT && LA15_0 <= RULE_IDENT ) ) ) { alt15 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:15> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt15 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_5_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__Group_5_1_0__0_in_rule__SqlFragment__Alternatives_5_16557 ) ; rule__SqlFragment__Group_5_1_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_5_1_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getDbcolAssignment_5_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__DbcolAssignment_5_1_1_in_rule__SqlFragment__Alternatives_5_16575 ) ; rule__SqlFragment__DbcolAssignment_5_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getDbcolAssignment_5_1_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlValue__Alternatives_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt16 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt16 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt16 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt16 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt16 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt16 = <NUM_LIT:5> ; } break ; case RULE_COMMA : { alt16 = <NUM_LIT:6> ; } break ; case RULE_MINUS : { alt16 = <NUM_LIT:7> ; } break ; case RULE_PLUS : { alt16 = <NUM_LIT:8> ; } break ; case RULE_LPAREN : { alt16 = <NUM_LIT:9> ; } break ; case RULE_RPAREN : { alt16 = <NUM_LIT:10> ; } break ; case RULE_RBRACE : { alt16 = <NUM_LIT:11> ; } break ; case RULE_QUESTI : { alt16 = <NUM_LIT:12> ; } break ; case RULE_NOT : { alt16 = <NUM_LIT> ; } break ; case RULE_BAND : { alt16 = <NUM_LIT> ; } break ; case RULE_BOR : { alt16 = <NUM_LIT:15> ; } break ; case RULE_HASH : { alt16 = <NUM_LIT:16> ; } break ; case RULE_CARET : { alt16 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt16 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt16 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt16 = <NUM_LIT:20> ; } break ; case RULE_AND : { alt16 = <NUM_LIT> ; } break ; case RULE_OR : { alt16 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt16 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt16 = <NUM_LIT:24> ; } break ; case RULE_STATEMEN_TYPE : { alt16 = <NUM_LIT> ; } break ; case RULE_MAPPING_TYPE : { alt16 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt16 = <NUM_LIT> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:16> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt16 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getRESTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_REST , FOLLOW_RULE_REST_in_rule__SqlValue__Alternatives_06608 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getRESTTerminalRuleCall_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__SqlValue__Alternatives_06625 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getIDENTTerminalRuleCall_0_2 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__SqlValue__Alternatives_06642 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getIDENTTerminalRuleCall_0_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getNUMBERTerminalRuleCall_0_3 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__SqlValue__Alternatives_06659 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getNUMBERTerminalRuleCall_0_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getWSTerminalRuleCall_0_4 ( ) ) ; } match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__SqlValue__Alternatives_06676 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getWSTerminalRuleCall_0_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getCOMMATerminalRuleCall_0_5 ( ) ) ; } match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_rule__SqlValue__Alternatives_06693 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getCOMMATerminalRuleCall_0_5 ( ) ) ; } } } break ; case <NUM_LIT:7> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getMINUSTerminalRuleCall_0_6 ( ) ) ; } match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_rule__SqlValue__Alternatives_06710 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getMINUSTerminalRuleCall_0_6 ( ) ) ; } } } break ; case <NUM_LIT:8> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getPLUSTerminalRuleCall_0_7 ( ) ) ; } match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_rule__SqlValue__Alternatives_06727 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getPLUSTerminalRuleCall_0_7 ( ) ) ; } } } break ; case <NUM_LIT:9> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getLPARENTerminalRuleCall_0_8 ( ) ) ; } match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rule__SqlValue__Alternatives_06744 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getLPARENTerminalRuleCall_0_8 ( ) ) ; } } } break ; case <NUM_LIT:10> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getRPARENTerminalRuleCall_0_9 ( ) ) ; } match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rule__SqlValue__Alternatives_06761 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getRPARENTerminalRuleCall_0_9 ( ) ) ; } } } break ; case <NUM_LIT:11> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getRBRACETerminalRuleCall_0_10 ( ) ) ; } match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_rule__SqlValue__Alternatives_06778 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getRBRACETerminalRuleCall_0_10 ( ) ) ; } } } break ; case <NUM_LIT:12> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getQUESTITerminalRuleCall_0_11 ( ) ) ; } match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_rule__SqlValue__Alternatives_06795 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getQUESTITerminalRuleCall_0_11 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getNOTTerminalRuleCall_0_12 ( ) ) ; } match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_rule__SqlValue__Alternatives_06812 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getNOTTerminalRuleCall_0_12 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getBANDTerminalRuleCall_0_13 ( ) ) ; } match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_rule__SqlValue__Alternatives_06829 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getBANDTerminalRuleCall_0_13 ( ) ) ; } } } break ; case <NUM_LIT:15> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getBORTerminalRuleCall_0_14 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__SqlValue__Alternatives_06846 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getBORTerminalRuleCall_0_14 ( ) ) ; } } } break ; case <NUM_LIT:16> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getHASHTerminalRuleCall_0_15 ( ) ) ; } match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_rule__SqlValue__Alternatives_06863 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getHASHTerminalRuleCall_0_15 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getCARETTerminalRuleCall_0_16 ( ) ) ; } match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__SqlValue__Alternatives_06880 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getCARETTerminalRuleCall_0_16 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getEQUALSTerminalRuleCall_0_17 ( ) ) ; } match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rule__SqlValue__Alternatives_06897 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getEQUALSTerminalRuleCall_0_17 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_0_18 ( ) ) ; } match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rule__SqlValue__Alternatives_06914 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_0_18 ( ) ) ; } } } break ; case <NUM_LIT:20> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_0_19 ( ) ) ; } match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rule__SqlValue__Alternatives_06931 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_0_19 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getANDTerminalRuleCall_0_20 ( ) ) ; } match ( input , RULE_AND , FOLLOW_RULE_AND_in_rule__SqlValue__Alternatives_06948 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getANDTerminalRuleCall_0_20 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getORTerminalRuleCall_0_21 ( ) ) ; } match ( input , RULE_OR , FOLLOW_RULE_OR_in_rule__SqlValue__Alternatives_06965 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getORTerminalRuleCall_0_21 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_0_22 ( ) ) ; } match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_rule__SqlValue__Alternatives_06982 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_0_22 ( ) ) ; } } } break ; case <NUM_LIT:24> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getON_OFFTerminalRuleCall_0_23 ( ) ) ; } match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_rule__SqlValue__Alternatives_06999 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getON_OFFTerminalRuleCall_0_23 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_0_24 ( ) ) ; } match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_rule__SqlValue__Alternatives_07016 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_0_24 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_0_25 ( ) ) ; } match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_rule__SqlValue__Alternatives_07033 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_0_25 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_0_26 ( ) ) ; } match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_rule__SqlValue__Alternatives_07050 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_0_26 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlValue__Alternatives_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt17 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt17 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt17 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt17 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt17 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt17 = <NUM_LIT:5> ; } break ; case RULE_COMMA : { alt17 = <NUM_LIT:6> ; } break ; case RULE_MINUS : { alt17 = <NUM_LIT:7> ; } break ; case RULE_PLUS : { alt17 = <NUM_LIT:8> ; } break ; case RULE_LPAREN : { alt17 = <NUM_LIT:9> ; } break ; case RULE_RPAREN : { alt17 = <NUM_LIT:10> ; } break ; case RULE_RBRACE : { alt17 = <NUM_LIT:11> ; } break ; case RULE_QUESTI : { alt17 = <NUM_LIT:12> ; } break ; case RULE_NOT : { alt17 = <NUM_LIT> ; } break ; case RULE_BAND : { alt17 = <NUM_LIT> ; } break ; case RULE_BOR : { alt17 = <NUM_LIT:15> ; } break ; case RULE_HASH : { alt17 = <NUM_LIT:16> ; } break ; case RULE_CARET : { alt17 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt17 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt17 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt17 = <NUM_LIT:20> ; } break ; case RULE_AND : { alt17 = <NUM_LIT> ; } break ; case RULE_OR : { alt17 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt17 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt17 = <NUM_LIT:24> ; } break ; case RULE_STATEMEN_TYPE : { alt17 = <NUM_LIT> ; } break ; case RULE_MAPPING_TYPE : { alt17 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt17 = <NUM_LIT> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt17 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getRESTTerminalRuleCall_1_0_0 ( ) ) ; } match ( input , RULE_REST , FOLLOW_RULE_REST_in_rule__SqlValue__Alternatives_1_07082 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getRESTTerminalRuleCall_1_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__SqlValue__Alternatives_1_07099 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getIDENTTerminalRuleCall_1_0_2 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__SqlValue__Alternatives_1_07116 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getIDENTTerminalRuleCall_1_0_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getNUMBERTerminalRuleCall_1_0_3 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__SqlValue__Alternatives_1_07133 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getNUMBERTerminalRuleCall_1_0_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getWSTerminalRuleCall_1_0_4 ( ) ) ; } match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__SqlValue__Alternatives_1_07150 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getWSTerminalRuleCall_1_0_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getCOMMATerminalRuleCall_1_0_5 ( ) ) ; } match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_rule__SqlValue__Alternatives_1_07167 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getCOMMATerminalRuleCall_1_0_5 ( ) ) ; } } } break ; case <NUM_LIT:7> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getMINUSTerminalRuleCall_1_0_6 ( ) ) ; } match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_rule__SqlValue__Alternatives_1_07184 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getMINUSTerminalRuleCall_1_0_6 ( ) ) ; } } } break ; case <NUM_LIT:8> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getPLUSTerminalRuleCall_1_0_7 ( ) ) ; } match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_rule__SqlValue__Alternatives_1_07201 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getPLUSTerminalRuleCall_1_0_7 ( ) ) ; } } } break ; case <NUM_LIT:9> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getLPARENTerminalRuleCall_1_0_8 ( ) ) ; } match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rule__SqlValue__Alternatives_1_07218 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getLPARENTerminalRuleCall_1_0_8 ( ) ) ; } } } break ; case <NUM_LIT:10> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getRPARENTerminalRuleCall_1_0_9 ( ) ) ; } match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rule__SqlValue__Alternatives_1_07235 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getRPARENTerminalRuleCall_1_0_9 ( ) ) ; } } } break ; case <NUM_LIT:11> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getRBRACETerminalRuleCall_1_0_10 ( ) ) ; } match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_rule__SqlValue__Alternatives_1_07252 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getRBRACETerminalRuleCall_1_0_10 ( ) ) ; } } } break ; case <NUM_LIT:12> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getQUESTITerminalRuleCall_1_0_11 ( ) ) ; } match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_rule__SqlValue__Alternatives_1_07269 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getQUESTITerminalRuleCall_1_0_11 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getNOTTerminalRuleCall_1_0_12 ( ) ) ; } match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_rule__SqlValue__Alternatives_1_07286 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getNOTTerminalRuleCall_1_0_12 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getBANDTerminalRuleCall_1_0_13 ( ) ) ; } match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_rule__SqlValue__Alternatives_1_07303 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getBANDTerminalRuleCall_1_0_13 ( ) ) ; } } } break ; case <NUM_LIT:15> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getBORTerminalRuleCall_1_0_14 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__SqlValue__Alternatives_1_07320 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getBORTerminalRuleCall_1_0_14 ( ) ) ; } } } break ; case <NUM_LIT:16> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getHASHTerminalRuleCall_1_0_15 ( ) ) ; } match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_rule__SqlValue__Alternatives_1_07337 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getHASHTerminalRuleCall_1_0_15 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getCARETTerminalRuleCall_1_0_16 ( ) ) ; } match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__SqlValue__Alternatives_1_07354 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getCARETTerminalRuleCall_1_0_16 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getEQUALSTerminalRuleCall_1_0_17 ( ) ) ; } match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rule__SqlValue__Alternatives_1_07371 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getEQUALSTerminalRuleCall_1_0_17 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_1_0_18 ( ) ) ; } match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rule__SqlValue__Alternatives_1_07388 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_1_0_18 ( ) ) ; } } } break ; case <NUM_LIT:20> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_1_0_19 ( ) ) ; } match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rule__SqlValue__Alternatives_1_07405 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_1_0_19 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getANDTerminalRuleCall_1_0_20 ( ) ) ; } match ( input , RULE_AND , FOLLOW_RULE_AND_in_rule__SqlValue__Alternatives_1_07422 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getANDTerminalRuleCall_1_0_20 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getORTerminalRuleCall_1_0_21 ( ) ) ; } match ( input , RULE_OR , FOLLOW_RULE_OR_in_rule__SqlValue__Alternatives_1_07439 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getORTerminalRuleCall_1_0_21 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_1_0_22 ( ) ) ; } match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_rule__SqlValue__Alternatives_1_07456 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_1_0_22 ( ) ) ; } } } break ; case <NUM_LIT:24> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getON_OFFTerminalRuleCall_1_0_23 ( ) ) ; } match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_rule__SqlValue__Alternatives_1_07473 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getON_OFFTerminalRuleCall_1_0_23 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_1_0_24 ( ) ) ; } match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_rule__SqlValue__Alternatives_1_07490 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_1_0_24 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_1_0_25 ( ) ) ; } match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_rule__SqlValue__Alternatives_1_07507 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_1_0_25 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_1_0_26 ( ) ) ; } match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_rule__SqlValue__Alternatives_1_07524 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_1_0_26 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt18 = <NUM_LIT:6> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_WS : { alt18 = <NUM_LIT:1> ; } break ; case RULE_QUESTI : { alt18 = <NUM_LIT:2> ; } break ; case RULE_BAND : { alt18 = <NUM_LIT:3> ; } break ; case RULE_BOR : { alt18 = <NUM_LIT:4> ; } break ; case RULE_EQUALS : { alt18 = <NUM_LIT:5> ; } break ; case RULE_HASH : { alt18 = <NUM_LIT:6> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt18 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getGroup_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__Group_0__0_in_rule__MetaSql__Alternatives7556 ) ; rule__MetaSql__Group_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getGroup_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getGroup_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__Group_1__0_in_rule__MetaSql__Alternatives7574 ) ; rule__MetaSql__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getGroup_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getGroup_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__Group_2__0_in_rule__MetaSql__Alternatives7592 ) ; rule__MetaSql__Group_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getGroup_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getGroup_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__Group_3__0_in_rule__MetaSql__Alternatives7610 ) ; rule__MetaSql__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getGroup_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getGroup_4 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__Group_4__0_in_rule__MetaSql__Alternatives7628 ) ; rule__MetaSql__Group_4__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getGroup_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getGroup_5 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__Group_5__0_in_rule__MetaSql__Alternatives7646 ) ; rule__MetaSql__Group_5__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getGroup_5 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt19 = <NUM_LIT:6> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : case RULE_IDENT_DOT : case RULE_IDENT : case RULE_NUMBER : case RULE_COMMA : case RULE_MINUS : case RULE_PLUS : case RULE_LPAREN : case RULE_RPAREN : case RULE_QUESTI : case RULE_NOT : case RULE_BAND : case RULE_HASH : case RULE_CARET : case RULE_EQUALS : case RULE_LESS_THAN : case RULE_MORE_THAN : case RULE_AND : case RULE_OR : case RULE_ESC_CHAR : case RULE_ON_OFF : case RULE_STATEMEN_TYPE : case RULE_MAPPING_TYPE : case RULE_OPTION_TYPE : case RULE_WS : case RULE_SEMICOLON : { alt19 = <NUM_LIT:1> ; } break ; case RULE_AT : { alt19 = <NUM_LIT:2> ; } break ; case RULE_STRING : { alt19 = <NUM_LIT:3> ; } break ; case RULE_COLON : { alt19 = <NUM_LIT:4> ; } break ; case RULE_PERCENT : { alt19 = <NUM_LIT:5> ; } break ; case RULE_LBRACE : { alt19 = <NUM_LIT:6> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt19 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getValueAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__ValueAssignment_0_in_rule__IfSqlFragment__Alternatives7679 ) ; rule__IfSqlFragment__ValueAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getValueAssignment_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_1__0_in_rule__IfSqlFragment__Alternatives7697 ) ; rule__IfSqlFragment__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_2__0_in_rule__IfSqlFragment__Alternatives7715 ) ; rule__IfSqlFragment__Group_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_3__0_in_rule__IfSqlFragment__Alternatives7733 ) ; rule__IfSqlFragment__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_4 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_4__0_in_rule__IfSqlFragment__Alternatives7751 ) ; rule__IfSqlFragment__Group_4__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_5 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_5__0_in_rule__IfSqlFragment__Alternatives7769 ) ; rule__IfSqlFragment__Group_5__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_5 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Alternatives_4_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt20 = <NUM_LIT:2> ; int LA20_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA20_0 == RULE_PERCENT ) ) { alt20 = <NUM_LIT:1> ; } else if ( ( ( LA20_0 >= RULE_IDENT_DOT && LA20_0 <= RULE_IDENT ) ) ) { alt20 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:20> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt20 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_4_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_4_1_0__0_in_rule__IfSqlFragment__Alternatives_4_17802 ) ; rule__IfSqlFragment__Group_4_1_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_4_1_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getDbcolAssignment_4_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__DbcolAssignment_4_1_1_in_rule__IfSqlFragment__Alternatives_4_17820 ) ; rule__IfSqlFragment__DbcolAssignment_4_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getDbcolAssignment_4_1_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlValue__Alternatives_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt21 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt21 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt21 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt21 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt21 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt21 = <NUM_LIT:5> ; } break ; case RULE_SEMICOLON : { alt21 = <NUM_LIT:6> ; } break ; case RULE_COMMA : { alt21 = <NUM_LIT:7> ; } break ; case RULE_MINUS : { alt21 = <NUM_LIT:8> ; } break ; case RULE_PLUS : { alt21 = <NUM_LIT:9> ; } break ; case RULE_LPAREN : { alt21 = <NUM_LIT:10> ; } break ; case RULE_RPAREN : { alt21 = <NUM_LIT:11> ; } break ; case RULE_QUESTI : { alt21 = <NUM_LIT:12> ; } break ; case RULE_NOT : { alt21 = <NUM_LIT> ; } break ; case RULE_BAND : { alt21 = <NUM_LIT> ; } break ; case RULE_HASH : { alt21 = <NUM_LIT:15> ; } break ; case RULE_CARET : { alt21 = <NUM_LIT:16> ; } break ; case RULE_EQUALS : { alt21 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt21 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt21 = <NUM_LIT> ; } break ; case RULE_AND : { alt21 = <NUM_LIT:20> ; } break ; case RULE_OR : { alt21 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt21 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt21 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt21 = <NUM_LIT:24> ; } break ; case RULE_MAPPING_TYPE : { alt21 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt21 = <NUM_LIT> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt21 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getRESTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_REST , FOLLOW_RULE_REST_in_rule__IfSqlValue__Alternatives_07853 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getRESTTerminalRuleCall_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__IfSqlValue__Alternatives_07870 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getIDENTTerminalRuleCall_0_2 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__IfSqlValue__Alternatives_07887 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getIDENTTerminalRuleCall_0_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getNUMBERTerminalRuleCall_0_3 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__IfSqlValue__Alternatives_07904 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getNUMBERTerminalRuleCall_0_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getWSTerminalRuleCall_0_4 ( ) ) ; } match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__IfSqlValue__Alternatives_07921 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getWSTerminalRuleCall_0_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getSEMICOLONTerminalRuleCall_0_5 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__IfSqlValue__Alternatives_07938 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getSEMICOLONTerminalRuleCall_0_5 ( ) ) ; } } } break ; case <NUM_LIT:7> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getCOMMATerminalRuleCall_0_6 ( ) ) ; } match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_rule__IfSqlValue__Alternatives_07955 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getCOMMATerminalRuleCall_0_6 ( ) ) ; } } } break ; case <NUM_LIT:8> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getMINUSTerminalRuleCall_0_7 ( ) ) ; } match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_rule__IfSqlValue__Alternatives_07972 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getMINUSTerminalRuleCall_0_7 ( ) ) ; } } } break ; case <NUM_LIT:9> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getPLUSTerminalRuleCall_0_8 ( ) ) ; } match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_rule__IfSqlValue__Alternatives_07989 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getPLUSTerminalRuleCall_0_8 ( ) ) ; } } } break ; case <NUM_LIT:10> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getLPARENTerminalRuleCall_0_9 ( ) ) ; } match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rule__IfSqlValue__Alternatives_08006 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getLPARENTerminalRuleCall_0_9 ( ) ) ; } } } break ; case <NUM_LIT:11> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getRPARENTerminalRuleCall_0_10 ( ) ) ; } match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rule__IfSqlValue__Alternatives_08023 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getRPARENTerminalRuleCall_0_10 ( ) ) ; } } } break ; case <NUM_LIT:12> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getQUESTITerminalRuleCall_0_11 ( ) ) ; } match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_rule__IfSqlValue__Alternatives_08040 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getQUESTITerminalRuleCall_0_11 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getNOTTerminalRuleCall_0_12 ( ) ) ; } match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_rule__IfSqlValue__Alternatives_08057 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getNOTTerminalRuleCall_0_12 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getBANDTerminalRuleCall_0_13 ( ) ) ; } match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_rule__IfSqlValue__Alternatives_08074 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getBANDTerminalRuleCall_0_13 ( ) ) ; } } } break ; case <NUM_LIT:15> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getHASHTerminalRuleCall_0_14 ( ) ) ; } match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_rule__IfSqlValue__Alternatives_08091 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getHASHTerminalRuleCall_0_14 ( ) ) ; } } } break ; case <NUM_LIT:16> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getCARETTerminalRuleCall_0_15 ( ) ) ; } match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__IfSqlValue__Alternatives_08108 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getCARETTerminalRuleCall_0_15 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getEQUALSTerminalRuleCall_0_16 ( ) ) ; } match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rule__IfSqlValue__Alternatives_08125 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getEQUALSTerminalRuleCall_0_16 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_0_17 ( ) ) ; } match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rule__IfSqlValue__Alternatives_08142 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_0_17 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_0_18 ( ) ) ; } match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rule__IfSqlValue__Alternatives_08159 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_0_18 ( ) ) ; } } } break ; case <NUM_LIT:20> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getANDTerminalRuleCall_0_19 ( ) ) ; } match ( input , RULE_AND , FOLLOW_RULE_AND_in_rule__IfSqlValue__Alternatives_08176 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getANDTerminalRuleCall_0_19 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getORTerminalRuleCall_0_20 ( ) ) ; } match ( input , RULE_OR , FOLLOW_RULE_OR_in_rule__IfSqlValue__Alternatives_08193 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getORTerminalRuleCall_0_20 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_0_21 ( ) ) ; } match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_rule__IfSqlValue__Alternatives_08210 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_0_21 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getON_OFFTerminalRuleCall_0_22 ( ) ) ; } match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_rule__IfSqlValue__Alternatives_08227 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getON_OFFTerminalRuleCall_0_22 ( ) ) ; } } } break ; case <NUM_LIT:24> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_0_23 ( ) ) ; } match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_rule__IfSqlValue__Alternatives_08244 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_0_23 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_0_24 ( ) ) ; } match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_rule__IfSqlValue__Alternatives_08261 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_0_24 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_0_25 ( ) ) ; } match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_rule__IfSqlValue__Alternatives_08278 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_0_25 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlValue__Alternatives_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt22 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt22 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt22 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt22 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt22 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt22 = <NUM_LIT:5> ; } break ; case RULE_SEMICOLON : { alt22 = <NUM_LIT:6> ; } break ; case RULE_COMMA : { alt22 = <NUM_LIT:7> ; } break ; case RULE_MINUS : { alt22 = <NUM_LIT:8> ; } break ; case RULE_PLUS : { alt22 = <NUM_LIT:9> ; } break ; case RULE_LPAREN : { alt22 = <NUM_LIT:10> ; } break ; case RULE_RPAREN : { alt22 = <NUM_LIT:11> ; } break ; case RULE_QUESTI : { alt22 = <NUM_LIT:12> ; } break ; case RULE_NOT : { alt22 = <NUM_LIT> ; } break ; case RULE_BAND : { alt22 = <NUM_LIT> ; } break ; case RULE_HASH : { alt22 = <NUM_LIT:15> ; } break ; case RULE_CARET : { alt22 = <NUM_LIT:16> ; } break ; case RULE_EQUALS : { alt22 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt22 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt22 = <NUM_LIT> ; } break ; case RULE_AND : { alt22 = <NUM_LIT:20> ; } break ; case RULE_OR : { alt22 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt22 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt22 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt22 = <NUM_LIT:24> ; } break ; case RULE_MAPPING_TYPE : { alt22 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt22 = <NUM_LIT> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt22 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getRESTTerminalRuleCall_1_0_0 ( ) ) ; } match ( input , RULE_REST , FOLLOW_RULE_REST_in_rule__IfSqlValue__Alternatives_1_08310 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getRESTTerminalRuleCall_1_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__IfSqlValue__Alternatives_1_08327 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getIDENTTerminalRuleCall_1_0_2 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__IfSqlValue__Alternatives_1_08344 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getIDENTTerminalRuleCall_1_0_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getNUMBERTerminalRuleCall_1_0_3 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__IfSqlValue__Alternatives_1_08361 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getNUMBERTerminalRuleCall_1_0_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getWSTerminalRuleCall_1_0_4 ( ) ) ; } match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__IfSqlValue__Alternatives_1_08378 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getWSTerminalRuleCall_1_0_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getSEMICOLONTerminalRuleCall_1_0_5 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__IfSqlValue__Alternatives_1_08395 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getSEMICOLONTerminalRuleCall_1_0_5 ( ) ) ; } } } break ; case <NUM_LIT:7> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getCOMMATerminalRuleCall_1_0_6 ( ) ) ; } match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_rule__IfSqlValue__Alternatives_1_08412 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getCOMMATerminalRuleCall_1_0_6 ( ) ) ; } } } break ; case <NUM_LIT:8> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getMINUSTerminalRuleCall_1_0_7 ( ) ) ; } match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_rule__IfSqlValue__Alternatives_1_08429 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getMINUSTerminalRuleCall_1_0_7 ( ) ) ; } } } break ; case <NUM_LIT:9> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getPLUSTerminalRuleCall_1_0_8 ( ) ) ; } match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_rule__IfSqlValue__Alternatives_1_08446 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getPLUSTerminalRuleCall_1_0_8 ( ) ) ; } } } break ; case <NUM_LIT:10> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getLPARENTerminalRuleCall_1_0_9 ( ) ) ; } match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rule__IfSqlValue__Alternatives_1_08463 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getLPARENTerminalRuleCall_1_0_9 ( ) ) ; } } } break ; case <NUM_LIT:11> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getRPARENTerminalRuleCall_1_0_10 ( ) ) ; } match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rule__IfSqlValue__Alternatives_1_08480 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getRPARENTerminalRuleCall_1_0_10 ( ) ) ; } } } break ; case <NUM_LIT:12> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getQUESTITerminalRuleCall_1_0_11 ( ) ) ; } match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_rule__IfSqlValue__Alternatives_1_08497 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getQUESTITerminalRuleCall_1_0_11 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getNOTTerminalRuleCall_1_0_12 ( ) ) ; } match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_rule__IfSqlValue__Alternatives_1_08514 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getNOTTerminalRuleCall_1_0_12 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getBANDTerminalRuleCall_1_0_13 ( ) ) ; } match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_rule__IfSqlValue__Alternatives_1_08531 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getBANDTerminalRuleCall_1_0_13 ( ) ) ; } } } break ; case <NUM_LIT:15> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getHASHTerminalRuleCall_1_0_14 ( ) ) ; } match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_rule__IfSqlValue__Alternatives_1_08548 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getHASHTerminalRuleCall_1_0_14 ( ) ) ; } } } break ; case <NUM_LIT:16> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getCARETTerminalRuleCall_1_0_15 ( ) ) ; } match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__IfSqlValue__Alternatives_1_08565 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getCARETTerminalRuleCall_1_0_15 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getEQUALSTerminalRuleCall_1_0_16 ( ) ) ; } match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rule__IfSqlValue__Alternatives_1_08582 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getEQUALSTerminalRuleCall_1_0_16 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_1_0_17 ( ) ) ; } match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rule__IfSqlValue__Alternatives_1_08599 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_1_0_17 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_1_0_18 ( ) ) ; } match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rule__IfSqlValue__Alternatives_1_08616 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_1_0_18 ( ) ) ; } } } break ; case <NUM_LIT:20> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getANDTerminalRuleCall_1_0_19 ( ) ) ; } match ( input , RULE_AND , FOLLOW_RULE_AND_in_rule__IfSqlValue__Alternatives_1_08633 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getANDTerminalRuleCall_1_0_19 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getORTerminalRuleCall_1_0_20 ( ) ) ; } match ( input , RULE_OR , FOLLOW_RULE_OR_in_rule__IfSqlValue__Alternatives_1_08650 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getORTerminalRuleCall_1_0_20 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_1_0_21 ( ) ) ; } match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_rule__IfSqlValue__Alternatives_1_08667 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_1_0_21 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getON_OFFTerminalRuleCall_1_0_22 ( ) ) ; } match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_rule__IfSqlValue__Alternatives_1_08684 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getON_OFFTerminalRuleCall_1_0_22 ( ) ) ; } } } break ; case <NUM_LIT:24> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_1_0_23 ( ) ) ; } match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_rule__IfSqlValue__Alternatives_1_08701 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_1_0_23 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_1_0_24 ( ) ) ; } match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_rule__IfSqlValue__Alternatives_1_08718 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_1_0_24 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_1_0_25 ( ) ) ; } match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_rule__IfSqlValue__Alternatives_1_08735 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_1_0_25 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt23 = <NUM_LIT:4> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_WS : { alt23 = <NUM_LIT:1> ; } break ; case RULE_QUESTI : { alt23 = <NUM_LIT:2> ; } break ; case RULE_BAND : { alt23 = <NUM_LIT:3> ; } break ; case RULE_BOR : { alt23 = <NUM_LIT:4> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt23 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__Group_0__0_in_rule__IfMetaSql__Alternatives8767 ) ; rule__IfMetaSql__Group_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__Group_1__0_in_rule__IfMetaSql__Alternatives8785 ) ; rule__IfMetaSql__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__Group_2__0_in_rule__IfMetaSql__Alternatives8803 ) ; rule__IfMetaSql__Group_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__Group_3__0_in_rule__IfMetaSql__Alternatives8821 ) ; rule__IfMetaSql__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_3 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__OperAlternatives_3_0_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt24 = <NUM_LIT:2> ; int LA24_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA24_0 == RULE_AND ) ) { alt24 = <NUM_LIT:1> ; } else if ( ( LA24_0 == RULE_OR ) ) { alt24 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:24> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt24 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlCondAccess ( ) . getOperANDTerminalRuleCall_3_0_0_0 ( ) ) ; } match ( input , RULE_AND , FOLLOW_RULE_AND_in_rule__IfSqlCond__OperAlternatives_3_0_08854 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondAccess ( ) . getOperANDTerminalRuleCall_3_0_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlCondAccess ( ) . getOperORTerminalRuleCall_3_0_0_1 ( ) ) ; } match ( input , RULE_OR , FOLLOW_RULE_OR_in_rule__IfSqlCond__OperAlternatives_3_0_08871 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondAccess ( ) . getOperORTerminalRuleCall_3_0_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt25 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_NOT : { switch ( input . LA ( <NUM_LIT:2> ) ) { case RULE_COLON : { alt25 = <NUM_LIT:2> ; } break ; case RULE_STRING : { alt25 = <NUM_LIT:1> ; } break ; case RULE_LPAREN : { alt25 = <NUM_LIT:3> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:1> , input ) ; throw nvae ; } } break ; case RULE_STRING : { alt25 = <NUM_LIT:1> ; } break ; case RULE_COLON : { alt25 = <NUM_LIT:2> ; } break ; case RULE_LPAREN : { alt25 = <NUM_LIT:3> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt25 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getGroup_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlBool__Group_0__0_in_rule__IfSqlBool__Alternatives8903 ) ; rule__IfSqlBool__Group_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getGroup_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getGroup_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlBool__Group_1__0_in_rule__IfSqlBool__Alternatives8921 ) ; rule__IfSqlBool__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getGroup_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getGroup_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlBool__Group_2__0_in_rule__IfSqlBool__Alternatives8939 ) ; rule__IfSqlBool__Group_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getGroup_2 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt26 = <NUM_LIT:4> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : case RULE_IDENT_DOT : case RULE_IDENT : case RULE_NUMBER : case RULE_COMMA : case RULE_MINUS : case RULE_PLUS : case RULE_LPAREN : case RULE_RPAREN : case RULE_LBRACE : case RULE_QUESTI : case RULE_NOT : case RULE_BAND : case RULE_BOR : case RULE_HASH : case RULE_AT : case RULE_CARET : case RULE_EQUALS : case RULE_LESS_THAN : case RULE_MORE_THAN : case RULE_AND : case RULE_OR : case RULE_ESC_CHAR : case RULE_ON_OFF : case RULE_STATEMEN_TYPE : case RULE_MAPPING_TYPE : case RULE_OPTION_TYPE : case RULE_WS : case RULE_SEMICOLON : { alt26 = <NUM_LIT:1> ; } break ; case RULE_STRING : { alt26 = <NUM_LIT:2> ; } break ; case RULE_COLON : { alt26 = <NUM_LIT:3> ; } break ; case RULE_PERCENT : { alt26 = <NUM_LIT:4> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt26 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Access ( ) . getValueAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__OrdSql2__ValueAssignment_0_in_rule__OrdSql2__Alternatives8972 ) ; rule__OrdSql2__ValueAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Access ( ) . getValueAssignment_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Access ( ) . getGroup_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__OrdSql2__Group_1__0_in_rule__OrdSql2__Alternatives8990 ) ; rule__OrdSql2__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Access ( ) . getGroup_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Access ( ) . getGroup_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__OrdSql2__Group_2__0_in_rule__OrdSql2__Alternatives9008 ) ; rule__OrdSql2__Group_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Access ( ) . getGroup_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Access ( ) . getGroup_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__OrdSql2__Group_3__0_in_rule__OrdSql2__Alternatives9026 ) ; rule__OrdSql2__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Access ( ) . getGroup_3 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSqlValue__Alternatives_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt27 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt27 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt27 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt27 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt27 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt27 = <NUM_LIT:5> ; } break ; case RULE_SEMICOLON : { alt27 = <NUM_LIT:6> ; } break ; case RULE_COMMA : { alt27 = <NUM_LIT:7> ; } break ; case RULE_MINUS : { alt27 = <NUM_LIT:8> ; } break ; case RULE_PLUS : { alt27 = <NUM_LIT:9> ; } break ; case RULE_LPAREN : { alt27 = <NUM_LIT:10> ; } break ; case RULE_RPAREN : { alt27 = <NUM_LIT:11> ; } break ; case RULE_LBRACE : { alt27 = <NUM_LIT:12> ; } break ; case RULE_QUESTI : { alt27 = <NUM_LIT> ; } break ; case RULE_NOT : { alt27 = <NUM_LIT> ; } break ; case RULE_BAND : { alt27 = <NUM_LIT:15> ; } break ; case RULE_BOR : { alt27 = <NUM_LIT:16> ; } break ; case RULE_HASH : { alt27 = <NUM_LIT> ; } break ; case RULE_AT : { alt27 = <NUM_LIT> ; } break ; case RULE_CARET : { alt27 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt27 = <NUM_LIT:20> ; } break ; case RULE_LESS_THAN : { alt27 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt27 = <NUM_LIT> ; } break ; case RULE_AND : { alt27 = <NUM_LIT> ; } break ; case RULE_OR : { alt27 = <NUM_LIT:24> ; } break ; case RULE_ESC_CHAR : { alt27 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt27 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt27 = <NUM_LIT> ; } break ; case RULE_MAPPING_TYPE : { alt27 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt27 = <NUM_LIT> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt27 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getRESTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_REST , FOLLOW_RULE_REST_in_rule__OrdSqlValue__Alternatives_09059 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getRESTTerminalRuleCall_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__OrdSqlValue__Alternatives_09076 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getIDENTTerminalRuleCall_0_2 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__OrdSqlValue__Alternatives_09093 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getIDENTTerminalRuleCall_0_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getNUMBERTerminalRuleCall_0_3 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__OrdSqlValue__Alternatives_09110 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getNUMBERTerminalRuleCall_0_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getWSTerminalRuleCall_0_4 ( ) ) ; } match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__OrdSqlValue__Alternatives_09127 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getWSTerminalRuleCall_0_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getSEMICOLONTerminalRuleCall_0_5 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__OrdSqlValue__Alternatives_09144 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getSEMICOLONTerminalRuleCall_0_5 ( ) ) ; } } } break ; case <NUM_LIT:7> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getCOMMATerminalRuleCall_0_6 ( ) ) ; } match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_rule__OrdSqlValue__Alternatives_09161 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getCOMMATerminalRuleCall_0_6 ( ) ) ; } } } break ; case <NUM_LIT:8> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getMINUSTerminalRuleCall_0_7 ( ) ) ; } match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_rule__OrdSqlValue__Alternatives_09178 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getMINUSTerminalRuleCall_0_7 ( ) ) ; } } } break ; case <NUM_LIT:9> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getPLUSTerminalRuleCall_0_8 ( ) ) ; } match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_rule__OrdSqlValue__Alternatives_09195 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getPLUSTerminalRuleCall_0_8 ( ) ) ; } } } break ; case <NUM_LIT:10> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getLPARENTerminalRuleCall_0_9 ( ) ) ; } match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rule__OrdSqlValue__Alternatives_09212 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getLPARENTerminalRuleCall_0_9 ( ) ) ; } } } break ; case <NUM_LIT:11> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getRPARENTerminalRuleCall_0_10 ( ) ) ; } match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rule__OrdSqlValue__Alternatives_09229 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getRPARENTerminalRuleCall_0_10 ( ) ) ; } } } break ; case <NUM_LIT:12> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getLBRACETerminalRuleCall_0_11 ( ) ) ; } match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_rule__OrdSqlValue__Alternatives_09246 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getLBRACETerminalRuleCall_0_11 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getQUESTITerminalRuleCall_0_12 ( ) ) ; } match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_rule__OrdSqlValue__Alternatives_09263 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getQUESTITerminalRuleCall_0_12 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getNOTTerminalRuleCall_0_13 ( ) ) ; } match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_rule__OrdSqlValue__Alternatives_09280 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getNOTTerminalRuleCall_0_13 ( ) ) ; } } } break ; case <NUM_LIT:15> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getBANDTerminalRuleCall_0_14 ( ) ) ; } match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_rule__OrdSqlValue__Alternatives_09297 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getBANDTerminalRuleCall_0_14 ( ) ) ; } } } break ; case <NUM_LIT:16> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getBORTerminalRuleCall_0_15 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__OrdSqlValue__Alternatives_09314 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getBORTerminalRuleCall_0_15 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getHASHTerminalRuleCall_0_16 ( ) ) ; } match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_rule__OrdSqlValue__Alternatives_09331 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getHASHTerminalRuleCall_0_16 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getATTerminalRuleCall_0_17 ( ) ) ; } match ( input , RULE_AT , FOLLOW_RULE_AT_in_rule__OrdSqlValue__Alternatives_09348 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getATTerminalRuleCall_0_17 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getCARETTerminalRuleCall_0_18 ( ) ) ; } match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__OrdSqlValue__Alternatives_09365 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getCARETTerminalRuleCall_0_18 ( ) ) ; } } } break ; case <NUM_LIT:20> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getEQUALSTerminalRuleCall_0_19 ( ) ) ; } match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rule__OrdSqlValue__Alternatives_09382 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getEQUALSTerminalRuleCall_0_19 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_0_20 ( ) ) ; } match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rule__OrdSqlValue__Alternatives_09399 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_0_20 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_0_21 ( ) ) ; } match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rule__OrdSqlValue__Alternatives_09416 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_0_21 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getANDTerminalRuleCall_0_22 ( ) ) ; } match ( input , RULE_AND , FOLLOW_RULE_AND_in_rule__OrdSqlValue__Alternatives_09433 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getANDTerminalRuleCall_0_22 ( ) ) ; } } } break ; case <NUM_LIT:24> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getORTerminalRuleCall_0_23 ( ) ) ; } match ( input , RULE_OR , FOLLOW_RULE_OR_in_rule__OrdSqlValue__Alternatives_09450 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getORTerminalRuleCall_0_23 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_0_24 ( ) ) ; } match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_rule__OrdSqlValue__Alternatives_09467 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_0_24 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getON_OFFTerminalRuleCall_0_25 ( ) ) ; } match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_rule__OrdSqlValue__Alternatives_09484 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getON_OFFTerminalRuleCall_0_25 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_0_26 ( ) ) ; } match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_rule__OrdSqlValue__Alternatives_09501 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_0_26 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_0_27 ( ) ) ; } match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_rule__OrdSqlValue__Alternatives_09518 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_0_27 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_0_28 ( ) ) ; } match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_rule__OrdSqlValue__Alternatives_09535 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_0_28 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSqlValue__Alternatives_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt28 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt28 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt28 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt28 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt28 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt28 = <NUM_LIT:5> ; } break ; case RULE_SEMICOLON : { alt28 = <NUM_LIT:6> ; } break ; case RULE_COMMA : { alt28 = <NUM_LIT:7> ; } break ; case RULE_MINUS : { alt28 = <NUM_LIT:8> ; } break ; case RULE_PLUS : { alt28 = <NUM_LIT:9> ; } break ; case RULE_LPAREN : { alt28 = <NUM_LIT:10> ; } break ; case RULE_RPAREN : { alt28 = <NUM_LIT:11> ; } break ; case RULE_LBRACE : { alt28 = <NUM_LIT:12> ; } break ; case RULE_QUESTI : { alt28 = <NUM_LIT> ; } break ; case RULE_NOT : { alt28 = <NUM_LIT> ; } break ; case RULE_BAND : { alt28 = <NUM_LIT:15> ; } break ; case RULE_BOR : { alt28 = <NUM_LIT:16> ; } break ; case RULE_HASH : { alt28 = <NUM_LIT> ; } break ; case RULE_AT : { alt28 = <NUM_LIT> ; } break ; case RULE_CARET : { alt28 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt28 = <NUM_LIT:20> ; } break ; case RULE_LESS_THAN : { alt28 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt28 = <NUM_LIT> ; } break ; case RULE_AND : { alt28 = <NUM_LIT> ; } break ; case RULE_OR : { alt28 = <NUM_LIT:24> ; } break ; case RULE_ESC_CHAR : { alt28 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt28 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt28 = <NUM_LIT> ; } break ; case RULE_MAPPING_TYPE : { alt28 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt28 = <NUM_LIT> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt28 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getRESTTerminalRuleCall_1_0_0 ( ) ) ; } match ( input , RULE_REST , FOLLOW_RULE_REST_in_rule__OrdSqlValue__Alternatives_1_09567 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getRESTTerminalRuleCall_1_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__OrdSqlValue__Alternatives_1_09584 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getIDENTTerminalRuleCall_1_0_2 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__OrdSqlValue__Alternatives_1_09601 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getIDENTTerminalRuleCall_1_0_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getNUMBERTerminalRuleCall_1_0_3 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__OrdSqlValue__Alternatives_1_09618 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getNUMBERTerminalRuleCall_1_0_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getWSTerminalRuleCall_1_0_4 ( ) ) ; } match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__OrdSqlValue__Alternatives_1_09635 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getWSTerminalRuleCall_1_0_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getSEMICOLONTerminalRuleCall_1_0_5 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__OrdSqlValue__Alternatives_1_09652 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getSEMICOLONTerminalRuleCall_1_0_5 ( ) ) ; } } } break ; case <NUM_LIT:7> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getCOMMATerminalRuleCall_1_0_6 ( ) ) ; } match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_rule__OrdSqlValue__Alternatives_1_09669 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getCOMMATerminalRuleCall_1_0_6 ( ) ) ; } } } break ; case <NUM_LIT:8> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getMINUSTerminalRuleCall_1_0_7 ( ) ) ; } match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_rule__OrdSqlValue__Alternatives_1_09686 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getMINUSTerminalRuleCall_1_0_7 ( ) ) ; } } } break ; case <NUM_LIT:9> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getPLUSTerminalRuleCall_1_0_8 ( ) ) ; } match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_rule__OrdSqlValue__Alternatives_1_09703 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getPLUSTerminalRuleCall_1_0_8 ( ) ) ; } } } break ; case <NUM_LIT:10> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getLPARENTerminalRuleCall_1_0_9 ( ) ) ; } match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rule__OrdSqlValue__Alternatives_1_09720 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getLPARENTerminalRuleCall_1_0_9 ( ) ) ; } } } break ; case <NUM_LIT:11> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getRPARENTerminalRuleCall_1_0_10 ( ) ) ; } match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rule__OrdSqlValue__Alternatives_1_09737 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getRPARENTerminalRuleCall_1_0_10 ( ) ) ; } } } break ; case <NUM_LIT:12> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getLBRACETerminalRuleCall_1_0_11 ( ) ) ; } match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_rule__OrdSqlValue__Alternatives_1_09754 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getLBRACETerminalRuleCall_1_0_11 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getQUESTITerminalRuleCall_1_0_12 ( ) ) ; } match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_rule__OrdSqlValue__Alternatives_1_09771 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getQUESTITerminalRuleCall_1_0_12 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getNOTTerminalRuleCall_1_0_13 ( ) ) ; } match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_rule__OrdSqlValue__Alternatives_1_09788 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getNOTTerminalRuleCall_1_0_13 ( ) ) ; } } } break ; case <NUM_LIT:15> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getBANDTerminalRuleCall_1_0_14 ( ) ) ; } match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_rule__OrdSqlValue__Alternatives_1_09805 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getBANDTerminalRuleCall_1_0_14 ( ) ) ; } } } break ; case <NUM_LIT:16> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getBORTerminalRuleCall_1_0_15 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__OrdSqlValue__Alternatives_1_09822 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getBORTerminalRuleCall_1_0_15 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getHASHTerminalRuleCall_1_0_16 ( ) ) ; } match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_rule__OrdSqlValue__Alternatives_1_09839 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getHASHTerminalRuleCall_1_0_16 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getATTerminalRuleCall_1_0_17 ( ) ) ; } match ( input , RULE_AT , FOLLOW_RULE_AT_in_rule__OrdSqlValue__Alternatives_1_09856 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getATTerminalRuleCall_1_0_17 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getCARETTerminalRuleCall_1_0_18 ( ) ) ; } match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__OrdSqlValue__Alternatives_1_09873 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getCARETTerminalRuleCall_1_0_18 ( ) ) ; } } } break ; case <NUM_LIT:20> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getEQUALSTerminalRuleCall_1_0_19 ( ) ) ; } match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rule__OrdSqlValue__Alternatives_1_09890 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getEQUALSTerminalRuleCall_1_0_19 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_1_0_20 ( ) ) ; } match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rule__OrdSqlValue__Alternatives_1_09907 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_1_0_20 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_1_0_21 ( ) ) ; } match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rule__OrdSqlValue__Alternatives_1_09924 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_1_0_21 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getANDTerminalRuleCall_1_0_22 ( ) ) ; } match ( input , RULE_AND , FOLLOW_RULE_AND_in_rule__OrdSqlValue__Alternatives_1_09941 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getANDTerminalRuleCall_1_0_22 ( ) ) ; } } } break ; case <NUM_LIT:24> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getORTerminalRuleCall_1_0_23 ( ) ) ; } match ( input , RULE_OR , FOLLOW_RULE_OR_in_rule__OrdSqlValue__Alternatives_1_09958 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getORTerminalRuleCall_1_0_23 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_1_0_24 ( ) ) ; } match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_rule__OrdSqlValue__Alternatives_1_09975 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_1_0_24 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getON_OFFTerminalRuleCall_1_0_25 ( ) ) ; } match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_rule__OrdSqlValue__Alternatives_1_09992 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getON_OFFTerminalRuleCall_1_0_25 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_1_0_26 ( ) ) ; } match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_rule__OrdSqlValue__Alternatives_1_010009 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_1_0_26 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_1_0_27 ( ) ) ; } match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_rule__OrdSqlValue__Alternatives_1_010026 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_1_0_27 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_1_0_28 ( ) ) ; } match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_rule__OrdSqlValue__Alternatives_1_010043 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_1_0_28 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__NameAlternatives_0_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt29 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_IDENT : { alt29 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt29 = <NUM_LIT:2> ; } break ; case RULE_NUMBER : { alt29 = <NUM_LIT:3> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt29 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getNameIDENTTerminalRuleCall_0_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__Column__NameAlternatives_0_010075 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getNameIDENTTerminalRuleCall_0_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getNameIDENT_DOTTerminalRuleCall_0_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__Column__NameAlternatives_0_010092 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getNameIDENT_DOTTerminalRuleCall_0_0_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getNameNUMBERTerminalRuleCall_0_0_2 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__Column__NameAlternatives_0_010109 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getNameNUMBERTerminalRuleCall_0_0_2 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__ValsAlternatives_1_2_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt30 = <NUM_LIT:2> ; int LA30_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA30_0 == RULE_IDENT ) ) { alt30 = <NUM_LIT:1> ; } else if ( ( LA30_0 == RULE_NUMBER ) ) { alt30 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:30> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt30 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getValsIDENTTerminalRuleCall_1_2_1_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__Column__ValsAlternatives_1_2_1_010141 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getValsIDENTTerminalRuleCall_1_2_1_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getValsNUMBERTerminalRuleCall_1_2_1_0_1 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__Column__ValsAlternatives_1_2_1_010158 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getValsNUMBERTerminalRuleCall_1_2_1_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__CaseAlternatives_0_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt31 = <NUM_LIT:2> ; int LA31_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA31_0 == RULE_PLUS ) ) { alt31 = <NUM_LIT:1> ; } else if ( ( LA31_0 == RULE_MINUS ) ) { alt31 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:31> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt31 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getCasePLUSTerminalRuleCall_0_0_0 ( ) ) ; } match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_rule__Constant__CaseAlternatives_0_010190 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getCasePLUSTerminalRuleCall_0_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getCaseMINUSTerminalRuleCall_0_0_1 ( ) ) ; } match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_rule__Constant__CaseAlternatives_0_010207 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getCaseMINUSTerminalRuleCall_0_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__NameAlternatives_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt32 = <NUM_LIT:2> ; int LA32_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA32_0 == RULE_IDENT ) ) { alt32 = <NUM_LIT:1> ; } else if ( ( LA32_0 == RULE_IDENT_DOT ) ) { alt32 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:32> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt32 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getNameIDENTTerminalRuleCall_1_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__Constant__NameAlternatives_1_010239 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getNameIDENTTerminalRuleCall_1_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getNameIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__Constant__NameAlternatives_1_010256 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getNameIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__ValsAlternatives_2_2_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt33 = <NUM_LIT:2> ; int LA33_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA33_0 == RULE_IDENT ) ) { alt33 = <NUM_LIT:1> ; } else if ( ( LA33_0 == RULE_NUMBER ) ) { alt33 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt33 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getValsIDENTTerminalRuleCall_2_2_1_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__Constant__ValsAlternatives_2_2_1_010288 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getValsIDENTTerminalRuleCall_2_2_1_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getValsNUMBERTerminalRuleCall_2_2_1_0_1 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__Constant__ValsAlternatives_2_2_1_010305 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getValsNUMBERTerminalRuleCall_2_2_1_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__ModeAlternatives_0_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt34 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_EQUALS : { alt34 = <NUM_LIT:1> ; } break ; case RULE_LESS_THAN : { alt34 = <NUM_LIT:2> ; } break ; case RULE_MORE_THAN : { alt34 = <NUM_LIT:3> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt34 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getModeEQUALSTerminalRuleCall_0_0_0 ( ) ) ; } match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rule__Identifier__ModeAlternatives_0_010337 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getModeEQUALSTerminalRuleCall_0_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getModeLESS_THANTerminalRuleCall_0_0_1 ( ) ) ; } match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rule__Identifier__ModeAlternatives_0_010354 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getModeLESS_THANTerminalRuleCall_0_0_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getModeMORE_THANTerminalRuleCall_0_0_2 ( ) ) ; } match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rule__Identifier__ModeAlternatives_0_010371 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getModeMORE_THANTerminalRuleCall_0_0_2 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__CaseAlternatives_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt35 = <NUM_LIT:2> ; int LA35_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA35_0 == RULE_PLUS ) ) { alt35 = <NUM_LIT:1> ; } else if ( ( LA35_0 == RULE_MINUS ) ) { alt35 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt35 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getCasePLUSTerminalRuleCall_1_0_0 ( ) ) ; } match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_rule__Identifier__CaseAlternatives_1_010403 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getCasePLUSTerminalRuleCall_1_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getCaseMINUSTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_rule__Identifier__CaseAlternatives_1_010420 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getCaseMINUSTerminalRuleCall_1_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__NameAlternatives_2_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt36 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_IDENT : { alt36 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt36 = <NUM_LIT:2> ; } break ; case RULE_NUMBER : { alt36 = <NUM_LIT:3> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt36 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getNameIDENTTerminalRuleCall_2_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__Identifier__NameAlternatives_2_010452 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getNameIDENTTerminalRuleCall_2_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getNameIDENT_DOTTerminalRuleCall_2_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__Identifier__NameAlternatives_2_010469 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getNameIDENT_DOTTerminalRuleCall_2_0_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getNameNUMBERTerminalRuleCall_2_0_2 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__Identifier__NameAlternatives_2_010486 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getNameNUMBERTerminalRuleCall_2_0_2 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__ValsAlternatives_3_2_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt37 = <NUM_LIT:2> ; int LA37_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA37_0 == RULE_IDENT ) ) { alt37 = <NUM_LIT:1> ; } else if ( ( LA37_0 == RULE_NUMBER ) ) { alt37 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt37 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getValsIDENTTerminalRuleCall_3_2_1_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__Identifier__ValsAlternatives_3_2_1_010518 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getValsIDENTTerminalRuleCall_3_2_1_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getValsNUMBERTerminalRuleCall_3_2_1_0_1 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__Identifier__ValsAlternatives_3_2_1_010535 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getValsNUMBERTerminalRuleCall_3_2_1_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseColumn__NameAlternatives_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt38 = <NUM_LIT:2> ; int LA38_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA38_0 == RULE_IDENT ) ) { alt38 = <NUM_LIT:1> ; } else if ( ( LA38_0 == RULE_IDENT_DOT ) ) { alt38 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt38 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabaseColumnAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__DatabaseColumn__NameAlternatives_010567 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabaseColumnAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabaseColumnAccess ( ) . getNameIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__DatabaseColumn__NameAlternatives_010584 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabaseColumnAccess ( ) . getNameIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseTable__NameAlternatives_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt39 = <NUM_LIT:2> ; int LA39_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA39_0 == RULE_IDENT ) ) { alt39 = <NUM_LIT:1> ; } else if ( ( LA39_0 == RULE_IDENT_DOT ) ) { alt39 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt39 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabaseTableAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__DatabaseTable__NameAlternatives_010616 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabaseTableAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabaseTableAccess ( ) . getNameIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__DatabaseTable__NameAlternatives_010633 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabaseTableAccess ( ) . getNameIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__ColAlternatives_0_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt40 = <NUM_LIT:2> ; int LA40_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA40_0 == RULE_IDENT ) ) { alt40 = <NUM_LIT:1> ; } else if ( ( LA40_0 == RULE_NUMBER ) ) { alt40 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt40 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingItemAccess ( ) . getColIDENTTerminalRuleCall_0_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MappingItem__ColAlternatives_0_010665 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingItemAccess ( ) . getColIDENTTerminalRuleCall_0_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingItemAccess ( ) . getColNUMBERTerminalRuleCall_0_0_1 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__MappingItem__ColAlternatives_0_010682 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingItemAccess ( ) . getColNUMBERTerminalRuleCall_0_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingColumn__NameAlternatives_0_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt41 = <NUM_LIT:2> ; int LA41_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA41_0 == RULE_IDENT ) ) { alt41 = <NUM_LIT:1> ; } else if ( ( LA41_0 == RULE_IDENT_DOT ) ) { alt41 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt41 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingColumnAccess ( ) . getNameIDENTTerminalRuleCall_0_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MappingColumn__NameAlternatives_0_010714 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingColumnAccess ( ) . getNameIDENTTerminalRuleCall_0_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingColumnAccess ( ) . getNameIDENT_DOTTerminalRuleCall_0_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__MappingColumn__NameAlternatives_0_010731 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingColumnAccess ( ) . getNameIDENT_DOTTerminalRuleCall_0_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingColumn__ValsAlternatives_1_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt42 = <NUM_LIT:2> ; int LA42_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA42_0 == RULE_IDENT ) ) { alt42 = <NUM_LIT:1> ; } else if ( ( LA42_0 == RULE_NUMBER ) ) { alt42 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt42 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingColumnAccess ( ) . getValsIDENTTerminalRuleCall_1_1_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MappingColumn__ValsAlternatives_1_1_010763 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingColumnAccess ( ) . getValsIDENTTerminalRuleCall_1_1_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingColumnAccess ( ) . getValsNUMBERTerminalRuleCall_1_1_0_1 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__MappingColumn__ValsAlternatives_1_1_010780 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingColumnAccess ( ) . getValsNUMBERTerminalRuleCall_1_1_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__FeatureValue__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt43 = <NUM_LIT:32> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt43 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt43 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt43 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt43 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt43 = <NUM_LIT:5> ; } break ; case RULE_COLON : { alt43 = <NUM_LIT:6> ; } break ; case RULE_STRING : { alt43 = <NUM_LIT:7> ; } break ; case RULE_COMMA : { alt43 = <NUM_LIT:8> ; } break ; case RULE_MINUS : { alt43 = <NUM_LIT:9> ; } break ; case RULE_PLUS : { alt43 = <NUM_LIT:10> ; } break ; case RULE_LPAREN : { alt43 = <NUM_LIT:11> ; } break ; case RULE_RPAREN : { alt43 = <NUM_LIT:12> ; } break ; case RULE_LBRACE : { alt43 = <NUM_LIT> ; } break ; case RULE_RBRACE : { alt43 = <NUM_LIT> ; } break ; case RULE_QUESTI : { alt43 = <NUM_LIT:15> ; } break ; case RULE_NOT : { alt43 = <NUM_LIT:16> ; } break ; case RULE_BAND : { alt43 = <NUM_LIT> ; } break ; case RULE_BOR : { alt43 = <NUM_LIT> ; } break ; case RULE_HASH : { alt43 = <NUM_LIT> ; } break ; case RULE_AT : { alt43 = <NUM_LIT:20> ; } break ; case RULE_CARET : { alt43 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt43 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt43 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt43 = <NUM_LIT:24> ; } break ; case RULE_PERCENT : { alt43 = <NUM_LIT> ; } break ; case RULE_AND : { alt43 = <NUM_LIT> ; } break ; case RULE_OR : { alt43 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt43 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt43 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt43 = <NUM_LIT:30> ; } break ; case RULE_MAPPING_TYPE : { alt43 = <NUM_LIT:31> ; } break ; case RULE_OPTION_TYPE : { alt43 = <NUM_LIT:32> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt43 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getRESTTerminalRuleCall_0 ( ) ) ; } match ( input , RULE_REST , FOLLOW_RULE_REST_in_rule__FeatureValue__Alternatives10812 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getRESTTerminalRuleCall_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getIDENT_DOTTerminalRuleCall_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__FeatureValue__Alternatives10829 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getIDENT_DOTTerminalRuleCall_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getIDENTTerminalRuleCall_2 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__FeatureValue__Alternatives10846 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getIDENTTerminalRuleCall_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getNUMBERTerminalRuleCall_3 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__FeatureValue__Alternatives10863 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getNUMBERTerminalRuleCall_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getWSTerminalRuleCall_4 ( ) ) ; } match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__FeatureValue__Alternatives10880 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getWSTerminalRuleCall_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getCOLONTerminalRuleCall_5 ( ) ) ; } match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rule__FeatureValue__Alternatives10897 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getCOLONTerminalRuleCall_5 ( ) ) ; } } } break ; case <NUM_LIT:7> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getSTRINGTerminalRuleCall_6 ( ) ) ; } match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_rule__FeatureValue__Alternatives10914 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getSTRINGTerminalRuleCall_6 ( ) ) ; } } } break ; case <NUM_LIT:8> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getCOMMATerminalRuleCall_7 ( ) ) ; } match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_rule__FeatureValue__Alternatives10931 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getCOMMATerminalRuleCall_7 ( ) ) ; } } } break ; case <NUM_LIT:9> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getMINUSTerminalRuleCall_8 ( ) ) ; } match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_rule__FeatureValue__Alternatives10948 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getMINUSTerminalRuleCall_8 ( ) ) ; } } } break ; case <NUM_LIT:10> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getPLUSTerminalRuleCall_9 ( ) ) ; } match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_rule__FeatureValue__Alternatives10965 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getPLUSTerminalRuleCall_9 ( ) ) ; } } } break ; case <NUM_LIT:11> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getLPARENTerminalRuleCall_10 ( ) ) ; } match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rule__FeatureValue__Alternatives10982 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getLPARENTerminalRuleCall_10 ( ) ) ; } } } break ; case <NUM_LIT:12> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getRPARENTerminalRuleCall_11 ( ) ) ; } match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rule__FeatureValue__Alternatives10999 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getRPARENTerminalRuleCall_11 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getLBRACETerminalRuleCall_12 ( ) ) ; } match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_rule__FeatureValue__Alternatives11016 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getLBRACETerminalRuleCall_12 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getRBRACETerminalRuleCall_13 ( ) ) ; } match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_rule__FeatureValue__Alternatives11033 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getRBRACETerminalRuleCall_13 ( ) ) ; } } } break ; case <NUM_LIT:15> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getQUESTITerminalRuleCall_14 ( ) ) ; } match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_rule__FeatureValue__Alternatives11050 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getQUESTITerminalRuleCall_14 ( ) ) ; } } } break ; case <NUM_LIT:16> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getNOTTerminalRuleCall_15 ( ) ) ; } match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_rule__FeatureValue__Alternatives11067 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getNOTTerminalRuleCall_15 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getBANDTerminalRuleCall_16 ( ) ) ; } match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_rule__FeatureValue__Alternatives11084 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getBANDTerminalRuleCall_16 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getBORTerminalRuleCall_17 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__FeatureValue__Alternatives11101 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getBORTerminalRuleCall_17 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getHASHTerminalRuleCall_18 ( ) ) ; } match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_rule__FeatureValue__Alternatives11118 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getHASHTerminalRuleCall_18 ( ) ) ; } } } break ; case <NUM_LIT:20> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getATTerminalRuleCall_19 ( ) ) ; } match ( input , RULE_AT , FOLLOW_RULE_AT_in_rule__FeatureValue__Alternatives11135 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getATTerminalRuleCall_19 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getCARETTerminalRuleCall_20 ( ) ) ; } match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__FeatureValue__Alternatives11152 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getCARETTerminalRuleCall_20 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getEQUALSTerminalRuleCall_21 ( ) ) ; } match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rule__FeatureValue__Alternatives11169 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getEQUALSTerminalRuleCall_21 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getLESS_THANTerminalRuleCall_22 ( ) ) ; } match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rule__FeatureValue__Alternatives11186 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getLESS_THANTerminalRuleCall_22 ( ) ) ; } } } break ; case <NUM_LIT:24> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getMORE_THANTerminalRuleCall_23 ( ) ) ; } match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rule__FeatureValue__Alternatives11203 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getMORE_THANTerminalRuleCall_23 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getPERCENTTerminalRuleCall_24 ( ) ) ; } match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_rule__FeatureValue__Alternatives11220 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getPERCENTTerminalRuleCall_24 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getANDTerminalRuleCall_25 ( ) ) ; } match ( input , RULE_AND , FOLLOW_RULE_AND_in_rule__FeatureValue__Alternatives11237 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getANDTerminalRuleCall_25 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getORTerminalRuleCall_26 ( ) ) ; } match ( input , RULE_OR , FOLLOW_RULE_OR_in_rule__FeatureValue__Alternatives11254 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getORTerminalRuleCall_26 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getESC_CHARTerminalRuleCall_27 ( ) ) ; } match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_rule__FeatureValue__Alternatives11271 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getESC_CHARTerminalRuleCall_27 ( ) ) ; } } } break ; case <NUM_LIT> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getON_OFFTerminalRuleCall_28 ( ) ) ; } match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_rule__FeatureValue__Alternatives11288 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getON_OFFTerminalRuleCall_28 ( ) ) ; } } } break ; case <NUM_LIT:30> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_29 ( ) ) ; } match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_rule__FeatureValue__Alternatives11305 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_29 ( ) ) ; } } } break ; case <NUM_LIT:31> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_30 ( ) ) ; } match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_rule__FeatureValue__Alternatives11322 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_30 ( ) ) ; } } } break ; case <NUM_LIT:32> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getFeatureValueAccess ( ) . getOPTION_TYPETerminalRuleCall_31 ( ) ) ; } match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_rule__FeatureValue__Alternatives11339 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueAccess ( ) . getOPTION_TYPETerminalRuleCall_31 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Alternatives_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt44 = <NUM_LIT:2> ; int LA44_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA44_0 >= <NUM_LIT> && LA44_0 <= <NUM_LIT> ) ) ) { alt44 = <NUM_LIT:1> ; } else if ( ( LA44_0 == RULE_COLON ) ) { alt44 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt44 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getNativeAssignment_0_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoType__NativeAssignment_0_0_in_rule__PojoType__Alternatives_011371 ) ; rule__PojoType__NativeAssignment_0_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getNativeAssignment_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getGroup_0_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoType__Group_0_1__0_in_rule__PojoType__Alternatives_011389 ) ; rule__PojoType__Group_0_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getGroup_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__NativeAlternatives_0_0_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt45 = <NUM_LIT:8> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt45 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt45 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt45 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt45 = <NUM_LIT:4> ; } break ; case <NUM_LIT> : { alt45 = <NUM_LIT:5> ; } break ; case <NUM_LIT> : { alt45 = <NUM_LIT:6> ; } break ; case <NUM_LIT> : { alt45 = <NUM_LIT:7> ; } break ; case <NUM_LIT> : { alt45 = <NUM_LIT:8> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt45 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getNative_charKeyword_0_0_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_39_in_rule__PojoType__NativeAlternatives_0_0_011423 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getNative_charKeyword_0_0_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getNative_byteKeyword_0_0_0_1 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_40_in_rule__PojoType__NativeAlternatives_0_0_011443 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getNative_byteKeyword_0_0_0_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getNative_shortKeyword_0_0_0_2 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_41_in_rule__PojoType__NativeAlternatives_0_0_011463 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getNative_shortKeyword_0_0_0_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getNative_intKeyword_0_0_0_3 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_42_in_rule__PojoType__NativeAlternatives_0_0_011483 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getNative_intKeyword_0_0_0_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getNative_longKeyword_0_0_0_4 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_43_in_rule__PojoType__NativeAlternatives_0_0_011503 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getNative_longKeyword_0_0_0_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getNative_floatKeyword_0_0_0_5 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_44_in_rule__PojoType__NativeAlternatives_0_0_011523 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getNative_floatKeyword_0_0_0_5 ( ) ) ; } } } break ; case <NUM_LIT:7> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getNative_doubleKeyword_0_0_0_6 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_45_in_rule__PojoType__NativeAlternatives_0_0_011543 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getNative_doubleKeyword_0_0_0_6 ( ) ) ; } } } break ; case <NUM_LIT:8> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getNative_booleanKeyword_0_0_0_7 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_46_in_rule__PojoType__NativeAlternatives_0_0_011563 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getNative_booleanKeyword_0_0_0_7 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Alternatives_0_1_0_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt46 = <NUM_LIT:2> ; int LA46_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA46_0 == RULE_COLON ) ) { alt46 = <NUM_LIT:1> ; } else if ( ( ( LA46_0 >= RULE_IDENT_DOT && LA46_0 <= RULE_IDENT ) ) ) { alt46 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt46 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getGroup_0_1_0_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoType__Group_0_1_0_1_0__0_in_rule__PojoType__Alternatives_0_1_0_111597 ) ; rule__PojoType__Group_0_1_0_1_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getGroup_0_1_0_1_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getTypeAssignment_0_1_0_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoType__TypeAssignment_0_1_0_1_1_in_rule__PojoType__Alternatives_0_1_0_111615 ) ; rule__PojoType__TypeAssignment_0_1_0_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getTypeAssignment_0_1_0_1_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Alternatives_0_1_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt47 = <NUM_LIT:2> ; int LA47_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA47_0 == RULE_COLON ) ) { alt47 = <NUM_LIT:1> ; } else if ( ( ( LA47_0 >= RULE_IDENT_DOT && LA47_0 <= RULE_IDENT ) ) ) { alt47 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt47 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getGroup_0_1_1_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoType__Group_0_1_1_1_0__0_in_rule__PojoType__Alternatives_0_1_1_111648 ) ; rule__PojoType__Group_0_1_1_1_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getGroup_0_1_1_1_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getGtypeAssignment_0_1_1_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoType__GtypeAssignment_0_1_1_1_1_in_rule__PojoType__Alternatives_0_1_1_111666 ) ; rule__PojoType__GtypeAssignment_0_1_1_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getGtypeAssignment_0_1_1_1_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__NameAlternatives_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt48 = <NUM_LIT:2> ; int LA48_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA48_0 == RULE_IDENT ) ) { alt48 = <NUM_LIT:1> ; } else if ( ( LA48_0 == RULE_IDENT_DOT ) ) { alt48 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt48 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getNameIDENTTerminalRuleCall_1_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PackageDeclaration__NameAlternatives_1_011699 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getNameIDENTTerminalRuleCall_1_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getNameIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__PackageDeclaration__NameAlternatives_1_011716 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getNameIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__SuffixAlternatives_2_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt49 = <NUM_LIT:2> ; int LA49_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA49_0 == RULE_IDENT ) ) { alt49 = <NUM_LIT:1> ; } else if ( ( LA49_0 == RULE_NUMBER ) ) { alt49 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt49 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getSuffixIDENTTerminalRuleCall_2_1_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PackageDeclaration__SuffixAlternatives_2_1_011748 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getSuffixIDENTTerminalRuleCall_2_1_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getSuffixNUMBERTerminalRuleCall_2_1_0_1 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__PackageDeclaration__SuffixAlternatives_2_1_011765 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getSuffixNUMBERTerminalRuleCall_2_1_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__AbstractPojoEntity__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt50 = <NUM_LIT:5> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt50 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : case <NUM_LIT> : case <NUM_LIT> : { alt50 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt50 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt50 = <NUM_LIT:4> ; } break ; case <NUM_LIT> : { alt50 = <NUM_LIT:5> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt50 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getAbstractPojoEntityAccess ( ) . getPackageDeclarationParserRuleCall_0 ( ) ) ; } pushFollow ( FOLLOW_rulePackageDeclaration_in_rule__AbstractPojoEntity__Alternatives11797 ) ; rulePackageDeclaration ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getAbstractPojoEntityAccess ( ) . getPackageDeclarationParserRuleCall_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getAbstractPojoEntityAccess ( ) . getPojoEntityParserRuleCall_1 ( ) ) ; } pushFollow ( FOLLOW_rulePojoEntity_in_rule__AbstractPojoEntity__Alternatives11814 ) ; rulePojoEntity ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getAbstractPojoEntityAccess ( ) . getPojoEntityParserRuleCall_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getAbstractPojoEntityAccess ( ) . getImportParserRuleCall_2 ( ) ) ; } pushFollow ( FOLLOW_ruleImport_in_rule__AbstractPojoEntity__Alternatives11831 ) ; ruleImport ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getAbstractPojoEntityAccess ( ) . getImportParserRuleCall_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getAbstractPojoEntityAccess ( ) . getImplementsParserRuleCall_3 ( ) ) ; } pushFollow ( FOLLOW_ruleImplements_in_rule__AbstractPojoEntity__Alternatives11848 ) ; ruleImplements ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getAbstractPojoEntityAccess ( ) . getImplementsParserRuleCall_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getAbstractPojoEntityAccess ( ) . getExtendsParserRuleCall_4 ( ) ) ; } pushFollow ( FOLLOW_ruleExtends_in_rule__AbstractPojoEntity__Alternatives11865 ) ; ruleExtends ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getAbstractPojoEntityAccess ( ) . getExtendsParserRuleCall_4 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier1__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt51 = <NUM_LIT:2> ; int LA51_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA51_0 == <NUM_LIT> ) ) { alt51 = <NUM_LIT:1> ; } else if ( ( LA51_0 == <NUM_LIT> ) ) { alt51 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt51 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier1Access ( ) . getFinalAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoEntityModifier1__FinalAssignment_0_in_rule__PojoEntityModifier1__Alternatives11897 ) ; rule__PojoEntityModifier1__FinalAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier1Access ( ) . getFinalAssignment_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier1Access ( ) . getAbstractAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoEntityModifier1__AbstractAssignment_1_in_rule__PojoEntityModifier1__Alternatives11915 ) ; rule__PojoEntityModifier1__AbstractAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier1Access ( ) . getAbstractAssignment_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt52 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt52 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt52 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt52 = <NUM_LIT:3> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt52 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getGroup_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoEntityModifier2__Group_0__0_in_rule__PojoEntityModifier2__Alternatives11948 ) ; rule__PojoEntityModifier2__Group_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getGroup_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getGroup_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoEntityModifier2__Group_1__0_in_rule__PojoEntityModifier2__Alternatives11966 ) ; rule__PojoEntityModifier2__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getGroup_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getGroup_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoEntityModifier2__Group_2__0_in_rule__PojoEntityModifier2__Alternatives11984 ) ; rule__PojoEntityModifier2__Group_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getGroup_2 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__DiscriminatorAlternatives_1_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt53 = <NUM_LIT:2> ; int LA53_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA53_0 == RULE_IDENT ) ) { alt53 = <NUM_LIT:1> ; } else if ( ( LA53_0 == RULE_NUMBER ) ) { alt53 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt53 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getDiscriminatorIDENTTerminalRuleCall_1_1_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojoEntityModifier2__DiscriminatorAlternatives_1_1_012017 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getDiscriminatorIDENTTerminalRuleCall_1_1_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getDiscriminatorNUMBERTerminalRuleCall_1_1_0_1 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__PojoEntityModifier2__DiscriminatorAlternatives_1_1_012034 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getDiscriminatorNUMBERTerminalRuleCall_1_1_0_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoPropertyModifier__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt54 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt54 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt54 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt54 = <NUM_LIT:3> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt54 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyModifierAccess ( ) . getRequiredAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoPropertyModifier__RequiredAssignment_0_in_rule__PojoPropertyModifier__Alternatives12066 ) ; rule__PojoPropertyModifier__RequiredAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyModifierAccess ( ) . getRequiredAssignment_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyModifierAccess ( ) . getDiscriminatorAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoPropertyModifier__DiscriminatorAssignment_1_in_rule__PojoPropertyModifier__Alternatives12084 ) ; rule__PojoPropertyModifier__DiscriminatorAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyModifierAccess ( ) . getDiscriminatorAssignment_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyModifierAccess ( ) . getPrimaryKeyAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoPropertyModifier__PrimaryKeyAssignment_2_in_rule__PojoPropertyModifier__Alternatives12102 ) ; rule__PojoPropertyModifier__PrimaryKeyAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyModifierAccess ( ) . getPrimaryKeyAssignment_2 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Alternatives_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt55 = <NUM_LIT:2> ; int LA55_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA55_0 >= <NUM_LIT> && LA55_0 <= <NUM_LIT> ) ) ) { alt55 = <NUM_LIT:1> ; } else if ( ( LA55_0 == RULE_COLON ) ) { alt55 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt55 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getNativeAssignment_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__NativeAssignment_1_0_in_rule__PojoProperty__Alternatives_112135 ) ; rule__PojoProperty__NativeAssignment_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getNativeAssignment_1_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1__0_in_rule__PojoProperty__Alternatives_112153 ) ; rule__PojoProperty__Group_1_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__NativeAlternatives_1_0_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt56 = <NUM_LIT:8> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt56 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt56 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt56 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt56 = <NUM_LIT:4> ; } break ; case <NUM_LIT> : { alt56 = <NUM_LIT:5> ; } break ; case <NUM_LIT> : { alt56 = <NUM_LIT:6> ; } break ; case <NUM_LIT> : { alt56 = <NUM_LIT:7> ; } break ; case <NUM_LIT> : { alt56 = <NUM_LIT:8> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt56 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getNative_charKeyword_1_0_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_39_in_rule__PojoProperty__NativeAlternatives_1_0_012187 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getNative_charKeyword_1_0_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getNative_byteKeyword_1_0_0_1 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_40_in_rule__PojoProperty__NativeAlternatives_1_0_012207 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getNative_byteKeyword_1_0_0_1 ( ) ) ; } } } break ; case <NUM_LIT:3> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getNative_shortKeyword_1_0_0_2 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_41_in_rule__PojoProperty__NativeAlternatives_1_0_012227 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getNative_shortKeyword_1_0_0_2 ( ) ) ; } } } break ; case <NUM_LIT:4> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getNative_intKeyword_1_0_0_3 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_42_in_rule__PojoProperty__NativeAlternatives_1_0_012247 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getNative_intKeyword_1_0_0_3 ( ) ) ; } } } break ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getNative_longKeyword_1_0_0_4 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_43_in_rule__PojoProperty__NativeAlternatives_1_0_012267 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getNative_longKeyword_1_0_0_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getNative_floatKeyword_1_0_0_5 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_44_in_rule__PojoProperty__NativeAlternatives_1_0_012287 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getNative_floatKeyword_1_0_0_5 ( ) ) ; } } } break ; case <NUM_LIT:7> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getNative_doubleKeyword_1_0_0_6 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_45_in_rule__PojoProperty__NativeAlternatives_1_0_012307 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getNative_doubleKeyword_1_0_0_6 ( ) ) ; } } } break ; case <NUM_LIT:8> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getNative_booleanKeyword_1_0_0_7 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_46_in_rule__PojoProperty__NativeAlternatives_1_0_012327 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getNative_booleanKeyword_1_0_0_7 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Alternatives_1_1_0_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt57 = <NUM_LIT:2> ; int LA57_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA57_0 == RULE_COLON ) ) { alt57 = <NUM_LIT:1> ; } else if ( ( ( LA57_0 >= RULE_IDENT_DOT && LA57_0 <= RULE_IDENT ) ) ) { alt57 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt57 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1_0_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_0_1_0__0_in_rule__PojoProperty__Alternatives_1_1_0_112361 ) ; rule__PojoProperty__Group_1_1_0_1_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1_0_1_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getTypeAssignment_1_1_0_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__TypeAssignment_1_1_0_1_1_in_rule__PojoProperty__Alternatives_1_1_0_112379 ) ; rule__PojoProperty__TypeAssignment_1_1_0_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getTypeAssignment_1_1_0_1_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Alternatives_1_1_0_1_0_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt58 = <NUM_LIT:2> ; int LA58_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA58_0 == RULE_COLON ) ) { alt58 = <NUM_LIT:1> ; } else if ( ( LA58_0 == RULE_IDENT ) ) { alt58 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt58 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1_0_1_0_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_0_1_0_1_0__0_in_rule__PojoProperty__Alternatives_1_1_0_1_0_112412 ) ; rule__PojoProperty__Group_1_1_0_1_0_1_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1_0_1_0_1_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getRefAssignment_1_1_0_1_0_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__RefAssignment_1_1_0_1_0_1_1_in_rule__PojoProperty__Alternatives_1_1_0_1_0_112430 ) ; rule__PojoProperty__RefAssignment_1_1_0_1_0_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getRefAssignment_1_1_0_1_0_1_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Alternatives_1_1_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt59 = <NUM_LIT:2> ; int LA59_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA59_0 == RULE_COLON ) ) { alt59 = <NUM_LIT:1> ; } else if ( ( ( LA59_0 >= RULE_IDENT_DOT && LA59_0 <= RULE_IDENT ) ) ) { alt59 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt59 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1_1_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_1_1_0__0_in_rule__PojoProperty__Alternatives_1_1_1_112463 ) ; rule__PojoProperty__Group_1_1_1_1_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1_1_1_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getGtypeAssignment_1_1_1_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__GtypeAssignment_1_1_1_1_1_in_rule__PojoProperty__Alternatives_1_1_1_112481 ) ; rule__PojoProperty__GtypeAssignment_1_1_1_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getGtypeAssignment_1_1_1_1_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__QualifiedName__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt60 = <NUM_LIT:2> ; int LA60_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA60_0 == RULE_IDENT ) ) { alt60 = <NUM_LIT:1> ; } else if ( ( LA60_0 == RULE_IDENT_DOT ) ) { alt60 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt60 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getQualifiedNameAccess ( ) . getIDENTTerminalRuleCall_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__QualifiedName__Alternatives12514 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getQualifiedNameAccess ( ) . getIDENTTerminalRuleCall_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getQualifiedNameAccess ( ) . getIDENT_DOTTerminalRuleCall_1 ( ) ) ; } match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rule__QualifiedName__Alternatives12531 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getQualifiedNameAccess ( ) . getIDENT_DOTTerminalRuleCall_1 ( ) ) ; } } } break ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group__0__Impl_in_rule__Artifacts__Group__012561 ) ; rule__Artifacts__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Artifacts__Group__1_in_rule__Artifacts__Group__012564 ) ; rule__Artifacts__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_0 ( ) ) ; } loop61 : do { int alt61 = <NUM_LIT:2> ; int LA61_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA61_0 == RULE_WS ) ) { alt61 = <NUM_LIT:1> ; } switch ( alt61 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group__0__Impl12592 ) ; if ( state . failed ) return ; } break ; default : break loop61 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group__1__Impl_in_rule__Artifacts__Group__112623 ) ; rule__Artifacts__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getAlternatives_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__Alternatives_1_in_rule__Artifacts__Group__1__Impl12652 ) ; rule__Artifacts__Alternatives_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getAlternatives_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getAlternatives_1 ( ) ) ; } loop62 : do { int alt62 = <NUM_LIT:2> ; int LA62_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA62_0 == RULE_IDENT || ( LA62_0 >= <NUM_LIT> && LA62_0 <= <NUM_LIT> ) || LA62_0 == <NUM_LIT> || ( LA62_0 >= <NUM_LIT> && LA62_0 <= <NUM_LIT> ) ) ) { alt62 = <NUM_LIT:1> ; } switch ( alt62 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Artifacts__Alternatives_1_in_rule__Artifacts__Group__1__Impl12664 ) ; rule__Artifacts__Alternatives_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop62 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getAlternatives_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_0__0__Impl_in_rule__Artifacts__Group_1_0__012701 ) ; rule__Artifacts__Group_1_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Artifacts__Group_1_0__1_in_rule__Artifacts__Group_1_0__012704 ) ; rule__Artifacts__Group_1_0__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getFeaturesAssignment_1_0_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__FeaturesAssignment_1_0_0_in_rule__Artifacts__Group_1_0__0__Impl12731 ) ; rule__Artifacts__FeaturesAssignment_1_0_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getFeaturesAssignment_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_0__1__Impl_in_rule__Artifacts__Group_1_0__112761 ) ; rule__Artifacts__Group_1_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_0_1 ( ) ) ; } loop63 : do { int alt63 = <NUM_LIT:2> ; int LA63_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA63_0 == RULE_WS ) ) { alt63 = <NUM_LIT:1> ; } switch ( alt63 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_0__1__Impl12789 ) ; if ( state . failed ) return ; } break ; default : break loop63 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_0_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_1__0__Impl_in_rule__Artifacts__Group_1_1__012824 ) ; rule__Artifacts__Group_1_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Artifacts__Group_1_1__1_in_rule__Artifacts__Group_1_1__012827 ) ; rule__Artifacts__Group_1_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getStatementsAssignment_1_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__StatementsAssignment_1_1_0_in_rule__Artifacts__Group_1_1__0__Impl12854 ) ; rule__Artifacts__StatementsAssignment_1_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getStatementsAssignment_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_1__1__Impl_in_rule__Artifacts__Group_1_1__112884 ) ; rule__Artifacts__Group_1_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_1_1 ( ) ) ; } loop64 : do { int alt64 = <NUM_LIT:2> ; int LA64_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA64_0 == RULE_WS ) ) { alt64 = <NUM_LIT:1> ; } switch ( alt64 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_1__1__Impl12912 ) ; if ( state . failed ) return ; } break ; default : break loop64 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_2__0__Impl_in_rule__Artifacts__Group_1_2__012947 ) ; rule__Artifacts__Group_1_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Artifacts__Group_1_2__1_in_rule__Artifacts__Group_1_2__012950 ) ; rule__Artifacts__Group_1_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getMappingsAssignment_1_2_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__MappingsAssignment_1_2_0_in_rule__Artifacts__Group_1_2__0__Impl12977 ) ; rule__Artifacts__MappingsAssignment_1_2_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getMappingsAssignment_1_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_2__1__Impl_in_rule__Artifacts__Group_1_2__113007 ) ; rule__Artifacts__Group_1_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_2_1 ( ) ) ; } loop65 : do { int alt65 = <NUM_LIT:2> ; int LA65_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA65_0 == RULE_WS ) ) { alt65 = <NUM_LIT:1> ; } switch ( alt65 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_2__1__Impl13035 ) ; if ( state . failed ) return ; } break ; default : break loop65 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_3__0__Impl_in_rule__Artifacts__Group_1_3__013070 ) ; rule__Artifacts__Group_1_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Artifacts__Group_1_3__1_in_rule__Artifacts__Group_1_3__013073 ) ; rule__Artifacts__Group_1_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getPojosAssignment_1_3_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__PojosAssignment_1_3_0_in_rule__Artifacts__Group_1_3__0__Impl13100 ) ; rule__Artifacts__PojosAssignment_1_3_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getPojosAssignment_1_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_3__1__Impl_in_rule__Artifacts__Group_1_3__113130 ) ; rule__Artifacts__Group_1_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_3_1 ( ) ) ; } loop66 : do { int alt66 = <NUM_LIT:2> ; int LA66_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA66_0 == RULE_WS ) ) { alt66 = <NUM_LIT:1> ; } switch ( alt66 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_3__1__Impl13158 ) ; if ( state . failed ) return ; } break ; default : break loop66 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_4__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_4__0__Impl_in_rule__Artifacts__Group_1_4__013193 ) ; rule__Artifacts__Group_1_4__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Artifacts__Group_1_4__1_in_rule__Artifacts__Group_1_4__013196 ) ; rule__Artifacts__Group_1_4__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_4__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getUsagesAssignment_1_4_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__UsagesAssignment_1_4_0_in_rule__Artifacts__Group_1_4__0__Impl13223 ) ; rule__Artifacts__UsagesAssignment_1_4_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getUsagesAssignment_1_4_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_4__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_4__1__Impl_in_rule__Artifacts__Group_1_4__113253 ) ; rule__Artifacts__Group_1_4__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_4__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_4_1 ( ) ) ; } loop67 : do { int alt67 = <NUM_LIT:2> ; int LA67_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA67_0 == RULE_WS ) ) { alt67 = <NUM_LIT:1> ; } switch ( alt67 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_4__1__Impl13281 ) ; if ( state . failed ) return ; } break ; default : break loop67 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_4_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_5__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_5__0__Impl_in_rule__Artifacts__Group_1_5__013316 ) ; rule__Artifacts__Group_1_5__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Artifacts__Group_1_5__1_in_rule__Artifacts__Group_1_5__013319 ) ; rule__Artifacts__Group_1_5__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_5__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getPropertiesAssignment_1_5_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__PropertiesAssignment_1_5_0_in_rule__Artifacts__Group_1_5__0__Impl13346 ) ; rule__Artifacts__PropertiesAssignment_1_5_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getPropertiesAssignment_1_5_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_5__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_5__1__Impl_in_rule__Artifacts__Group_1_5__113376 ) ; rule__Artifacts__Group_1_5__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_5__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_5_1 ( ) ) ; } loop68 : do { int alt68 = <NUM_LIT:2> ; int LA68_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA68_0 == RULE_WS ) ) { alt68 = <NUM_LIT:1> ; } switch ( alt68 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_5__1__Impl13404 ) ; if ( state . failed ) return ; } break ; default : break loop68 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_5_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_6__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_6__0__Impl_in_rule__Artifacts__Group_1_6__013439 ) ; rule__Artifacts__Group_1_6__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Artifacts__Group_1_6__1_in_rule__Artifacts__Group_1_6__013442 ) ; rule__Artifacts__Group_1_6__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_6__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getTablesAssignment_1_6_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__TablesAssignment_1_6_0_in_rule__Artifacts__Group_1_6__0__Impl13469 ) ; rule__Artifacts__TablesAssignment_1_6_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getTablesAssignment_1_6_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_6__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_6__1__Impl_in_rule__Artifacts__Group_1_6__113499 ) ; rule__Artifacts__Group_1_6__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_6__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_6_1 ( ) ) ; } loop69 : do { int alt69 = <NUM_LIT:2> ; int LA69_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA69_0 == RULE_WS ) ) { alt69 = <NUM_LIT:1> ; } switch ( alt69 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_6__1__Impl13527 ) ; if ( state . failed ) return ; } break ; default : break loop69 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_6_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_7__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_7__0__Impl_in_rule__Artifacts__Group_1_7__013562 ) ; rule__Artifacts__Group_1_7__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Artifacts__Group_1_7__1_in_rule__Artifacts__Group_1_7__013565 ) ; rule__Artifacts__Group_1_7__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_7__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getTableUsagesAssignment_1_7_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__TableUsagesAssignment_1_7_0_in_rule__Artifacts__Group_1_7__0__Impl13592 ) ; rule__Artifacts__TableUsagesAssignment_1_7_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getTableUsagesAssignment_1_7_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_7__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_7__1__Impl_in_rule__Artifacts__Group_1_7__113622 ) ; rule__Artifacts__Group_1_7__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_7__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_7_1 ( ) ) ; } loop70 : do { int alt70 = <NUM_LIT:2> ; int LA70_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA70_0 == RULE_WS ) ) { alt70 = <NUM_LIT:1> ; } switch ( alt70 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_7__1__Impl13650 ) ; if ( state . failed ) return ; } break ; default : break loop70 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_7_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_8__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_8__0__Impl_in_rule__Artifacts__Group_1_8__013685 ) ; rule__Artifacts__Group_1_8__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Artifacts__Group_1_8__1_in_rule__Artifacts__Group_1_8__013688 ) ; rule__Artifacts__Group_1_8__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_8__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getPojoPackagesAssignment_1_8_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__PojoPackagesAssignment_1_8_0_in_rule__Artifacts__Group_1_8__0__Impl13715 ) ; rule__Artifacts__PojoPackagesAssignment_1_8_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getPojoPackagesAssignment_1_8_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_8__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_8__1__Impl_in_rule__Artifacts__Group_1_8__113745 ) ; rule__Artifacts__Group_1_8__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_8__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_8_1 ( ) ) ; } loop71 : do { int alt71 = <NUM_LIT:2> ; int LA71_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA71_0 == RULE_WS ) ) { alt71 = <NUM_LIT:1> ; } switch ( alt71 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_8__1__Impl13773 ) ; if ( state . failed ) return ; } break ; default : break loop71 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_8_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_9__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_9__0__Impl_in_rule__Artifacts__Group_1_9__013808 ) ; rule__Artifacts__Group_1_9__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Artifacts__Group_1_9__1_in_rule__Artifacts__Group_1_9__013811 ) ; rule__Artifacts__Group_1_9__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_9__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getUsagesExtAssignment_1_9_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Artifacts__UsagesExtAssignment_1_9_0_in_rule__Artifacts__Group_1_9__0__Impl13838 ) ; rule__Artifacts__UsagesExtAssignment_1_9_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getUsagesExtAssignment_1_9_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_9__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group_1_9__1__Impl_in_rule__Artifacts__Group_1_9__113868 ) ; rule__Artifacts__Group_1_9__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__Group_1_9__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_9_1 ( ) ) ; } loop72 : do { int alt72 = <NUM_LIT:2> ; int LA72_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA72_0 == RULE_WS ) ) { alt72 = <NUM_LIT:1> ; } switch ( alt72 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_9__1__Impl13896 ) ; if ( state . failed ) return ; } break ; default : break loop72 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_9_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlTypeAssignement__Group__0__Impl_in_rule__SqlTypeAssignement__Group__013931 ) ; rule__SqlTypeAssignement__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlTypeAssignement__Group__1_in_rule__SqlTypeAssignement__Group__013934 ) ; rule__SqlTypeAssignement__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlTypeAssignementAccess ( ) . getTypeNameAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlTypeAssignement__TypeNameAssignment_0_in_rule__SqlTypeAssignement__Group__0__Impl13961 ) ; rule__SqlTypeAssignement__TypeNameAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlTypeAssignementAccess ( ) . getTypeNameAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlTypeAssignement__Group__1__Impl_in_rule__SqlTypeAssignement__Group__113991 ) ; rule__SqlTypeAssignement__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlTypeAssignement__Group__2_in_rule__SqlTypeAssignement__Group__113994 ) ; rule__SqlTypeAssignement__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlTypeAssignementAccess ( ) . getGroup_1 ( ) ) ; } int alt73 = <NUM_LIT:2> ; int LA73_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA73_0 == RULE_LPAREN ) ) { alt73 = <NUM_LIT:1> ; } switch ( alt73 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__SqlTypeAssignement__Group_1__0_in_rule__SqlTypeAssignement__Group__1__Impl14021 ) ; rule__SqlTypeAssignement__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlTypeAssignementAccess ( ) . getGroup_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlTypeAssignement__Group__2__Impl_in_rule__SqlTypeAssignement__Group__214052 ) ; rule__SqlTypeAssignement__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlTypeAssignement__Group__3_in_rule__SqlTypeAssignement__Group__214055 ) ; rule__SqlTypeAssignement__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlTypeAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_2 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_47_in_rule__SqlTypeAssignement__Group__2__Impl14083 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlTypeAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlTypeAssignement__Group__3__Impl_in_rule__SqlTypeAssignement__Group__314114 ) ; rule__SqlTypeAssignement__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlTypeAssignementAccess ( ) . getTypeAssignment_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlTypeAssignement__TypeAssignment_3_in_rule__SqlTypeAssignement__Group__3__Impl14141 ) ; rule__SqlTypeAssignement__TypeAssignment_3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlTypeAssignementAccess ( ) . getTypeAssignment_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlTypeAssignement__Group_1__0__Impl_in_rule__SqlTypeAssignement__Group_1__014179 ) ; rule__SqlTypeAssignement__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlTypeAssignement__Group_1__1_in_rule__SqlTypeAssignement__Group_1__014182 ) ; rule__SqlTypeAssignement__Group_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlTypeAssignementAccess ( ) . getLPARENTerminalRuleCall_1_0 ( ) ) ; } match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rule__SqlTypeAssignement__Group_1__0__Impl14209 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlTypeAssignementAccess ( ) . getLPARENTerminalRuleCall_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__Group_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlTypeAssignement__Group_1__1__Impl_in_rule__SqlTypeAssignement__Group_1__114238 ) ; rule__SqlTypeAssignement__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlTypeAssignement__Group_1__2_in_rule__SqlTypeAssignement__Group_1__114241 ) ; rule__SqlTypeAssignement__Group_1__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__Group_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlTypeAssignementAccess ( ) . getSizeAssignment_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlTypeAssignement__SizeAssignment_1_1_in_rule__SqlTypeAssignement__Group_1__1__Impl14268 ) ; rule__SqlTypeAssignement__SizeAssignment_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlTypeAssignementAccess ( ) . getSizeAssignment_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__Group_1__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlTypeAssignement__Group_1__2__Impl_in_rule__SqlTypeAssignement__Group_1__214298 ) ; rule__SqlTypeAssignement__Group_1__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__Group_1__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlTypeAssignementAccess ( ) . getRPARENTerminalRuleCall_1_2 ( ) ) ; } match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rule__SqlTypeAssignement__Group_1__2__Impl14325 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlTypeAssignementAccess ( ) . getRPARENTerminalRuleCall_1_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnTypeAssignement__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ColumnTypeAssignement__Group__0__Impl_in_rule__ColumnTypeAssignement__Group__014360 ) ; rule__ColumnTypeAssignement__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ColumnTypeAssignement__Group__1_in_rule__ColumnTypeAssignement__Group__014363 ) ; rule__ColumnTypeAssignement__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnTypeAssignement__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnTypeAssignementAccess ( ) . getDbColumnAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__ColumnTypeAssignement__DbColumnAssignment_0_in_rule__ColumnTypeAssignement__Group__0__Impl14390 ) ; rule__ColumnTypeAssignement__DbColumnAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnTypeAssignementAccess ( ) . getDbColumnAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnTypeAssignement__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ColumnTypeAssignement__Group__1__Impl_in_rule__ColumnTypeAssignement__Group__114420 ) ; rule__ColumnTypeAssignement__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ColumnTypeAssignement__Group__2_in_rule__ColumnTypeAssignement__Group__114423 ) ; rule__ColumnTypeAssignement__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnTypeAssignement__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnTypeAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_47_in_rule__ColumnTypeAssignement__Group__1__Impl14451 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnTypeAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnTypeAssignement__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ColumnTypeAssignement__Group__2__Impl_in_rule__ColumnTypeAssignement__Group__214482 ) ; rule__ColumnTypeAssignement__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnTypeAssignement__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnTypeAssignementAccess ( ) . getTypeAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__ColumnTypeAssignement__TypeAssignment_2_in_rule__ColumnTypeAssignement__Group__2__Impl14509 ) ; rule__ColumnTypeAssignement__TypeAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnTypeAssignementAccess ( ) . getTypeAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ShowColumnTypeAssignement__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ShowColumnTypeAssignement__Group__0__Impl_in_rule__ShowColumnTypeAssignement__Group__014545 ) ; rule__ShowColumnTypeAssignement__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ShowColumnTypeAssignement__Group__1_in_rule__ShowColumnTypeAssignement__Group__014548 ) ; rule__ShowColumnTypeAssignement__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ShowColumnTypeAssignement__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getDbColumnAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__ShowColumnTypeAssignement__DbColumnAssignment_0_in_rule__ShowColumnTypeAssignement__Group__0__Impl14575 ) ; rule__ShowColumnTypeAssignement__DbColumnAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getDbColumnAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ShowColumnTypeAssignement__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ShowColumnTypeAssignement__Group__1__Impl_in_rule__ShowColumnTypeAssignement__Group__114605 ) ; rule__ShowColumnTypeAssignement__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ShowColumnTypeAssignement__Group__2_in_rule__ShowColumnTypeAssignement__Group__114608 ) ; rule__ShowColumnTypeAssignement__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ShowColumnTypeAssignement__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_47_in_rule__ShowColumnTypeAssignement__Group__1__Impl14636 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ShowColumnTypeAssignement__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ShowColumnTypeAssignement__Group__2__Impl_in_rule__ShowColumnTypeAssignement__Group__214667 ) ; rule__ShowColumnTypeAssignement__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ShowColumnTypeAssignement__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getTypeAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__ShowColumnTypeAssignement__TypeAssignment_2_in_rule__ShowColumnTypeAssignement__Group__2__Impl14694 ) ; rule__ShowColumnTypeAssignement__TypeAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getTypeAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableAssignement__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__TableAssignement__Group__0__Impl_in_rule__TableAssignement__Group__014730 ) ; rule__TableAssignement__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableAssignement__Group__1_in_rule__TableAssignement__Group__014733 ) ; rule__TableAssignement__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableAssignement__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableAssignementAccess ( ) . getDbTableAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__TableAssignement__DbTableAssignment_0_in_rule__TableAssignement__Group__0__Impl14760 ) ; rule__TableAssignement__DbTableAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableAssignementAccess ( ) . getDbTableAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableAssignement__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__TableAssignement__Group__1__Impl_in_rule__TableAssignement__Group__114790 ) ; rule__TableAssignement__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableAssignement__Group__2_in_rule__TableAssignement__Group__114793 ) ; rule__TableAssignement__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableAssignement__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_47_in_rule__TableAssignement__Group__1__Impl14821 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableAssignement__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__TableAssignement__Group__2__Impl_in_rule__TableAssignement__Group__214852 ) ; rule__TableAssignement__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableAssignement__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableAssignementAccess ( ) . getNewNameAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__TableAssignement__NewNameAssignment_2_in_rule__TableAssignement__Group__2__Impl14879 ) ; rule__TableAssignement__NewNameAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableAssignementAccess ( ) . getNewNameAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__JoinTableAssignement__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__JoinTableAssignement__Group__0__Impl_in_rule__JoinTableAssignement__Group__014915 ) ; rule__JoinTableAssignement__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__JoinTableAssignement__Group__1_in_rule__JoinTableAssignement__Group__014918 ) ; rule__JoinTableAssignement__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__JoinTableAssignement__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getJoinTableAssignementAccess ( ) . getDbTableAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__JoinTableAssignement__DbTableAssignment_0_in_rule__JoinTableAssignement__Group__0__Impl14945 ) ; rule__JoinTableAssignement__DbTableAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getJoinTableAssignementAccess ( ) . getDbTableAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__JoinTableAssignement__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__JoinTableAssignement__Group__1__Impl_in_rule__JoinTableAssignement__Group__114975 ) ; rule__JoinTableAssignement__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__JoinTableAssignement__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getJoinTableAssignementAccess ( ) . getGroup_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__JoinTableAssignement__Group_1__0_in_rule__JoinTableAssignement__Group__1__Impl15004 ) ; rule__JoinTableAssignement__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getJoinTableAssignementAccess ( ) . getGroup_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getJoinTableAssignementAccess ( ) . getGroup_1 ( ) ) ; } loop74 : do { int alt74 = <NUM_LIT:2> ; int LA74_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA74_0 == <NUM_LIT> ) ) { alt74 = <NUM_LIT:1> ; } switch ( alt74 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__JoinTableAssignement__Group_1__0_in_rule__JoinTableAssignement__Group__1__Impl15016 ) ; rule__JoinTableAssignement__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop74 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getJoinTableAssignementAccess ( ) . getGroup_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__JoinTableAssignement__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__JoinTableAssignement__Group_1__0__Impl_in_rule__JoinTableAssignement__Group_1__015053 ) ; rule__JoinTableAssignement__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__JoinTableAssignement__Group_1__1_in_rule__JoinTableAssignement__Group_1__015056 ) ; rule__JoinTableAssignement__Group_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__JoinTableAssignement__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getJoinTableAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_47_in_rule__JoinTableAssignement__Group_1__0__Impl15084 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getJoinTableAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__JoinTableAssignement__Group_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__JoinTableAssignement__Group_1__1__Impl_in_rule__JoinTableAssignement__Group_1__115115 ) ; rule__JoinTableAssignement__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__JoinTableAssignement__Group_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getJoinTableAssignementAccess ( ) . getDbTablesAssignment_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__JoinTableAssignement__DbTablesAssignment_1_1_in_rule__JoinTableAssignement__Group_1__1__Impl15142 ) ; rule__JoinTableAssignement__DbTablesAssignment_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getJoinTableAssignementAccess ( ) . getDbTablesAssignment_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnAssignement__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ColumnAssignement__Group__0__Impl_in_rule__ColumnAssignement__Group__015176 ) ; rule__ColumnAssignement__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ColumnAssignement__Group__1_in_rule__ColumnAssignement__Group__015179 ) ; rule__ColumnAssignement__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnAssignement__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAssignementAccess ( ) . getDbColumnAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__ColumnAssignement__DbColumnAssignment_0_in_rule__ColumnAssignement__Group__0__Impl15206 ) ; rule__ColumnAssignement__DbColumnAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAssignementAccess ( ) . getDbColumnAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnAssignement__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ColumnAssignement__Group__1__Impl_in_rule__ColumnAssignement__Group__115236 ) ; rule__ColumnAssignement__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ColumnAssignement__Group__2_in_rule__ColumnAssignement__Group__115239 ) ; rule__ColumnAssignement__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnAssignement__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_47_in_rule__ColumnAssignement__Group__1__Impl15267 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnAssignement__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ColumnAssignement__Group__2__Impl_in_rule__ColumnAssignement__Group__215298 ) ; rule__ColumnAssignement__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnAssignement__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAssignementAccess ( ) . getNewNameAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__ColumnAssignement__NewNameAssignment_2_in_rule__ColumnAssignement__Group__2__Impl15325 ) ; rule__ColumnAssignement__NewNameAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAssignementAccess ( ) . getNewNameAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ImportAssignement__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ImportAssignement__Group__0__Impl_in_rule__ImportAssignement__Group__015361 ) ; rule__ImportAssignement__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ImportAssignement__Group__1_in_rule__ImportAssignement__Group__015364 ) ; rule__ImportAssignement__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ImportAssignement__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportAssignementAccess ( ) . getDbColumnAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__ImportAssignement__DbColumnAssignment_0_in_rule__ImportAssignement__Group__0__Impl15391 ) ; rule__ImportAssignement__DbColumnAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportAssignementAccess ( ) . getDbColumnAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ImportAssignement__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ImportAssignement__Group__1__Impl_in_rule__ImportAssignement__Group__115421 ) ; rule__ImportAssignement__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ImportAssignement__Group__2_in_rule__ImportAssignement__Group__115424 ) ; rule__ImportAssignement__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ImportAssignement__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_47_in_rule__ImportAssignement__Group__1__Impl15452 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ImportAssignement__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ImportAssignement__Group__2__Impl_in_rule__ImportAssignement__Group__215483 ) ; rule__ImportAssignement__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ImportAssignement__Group__3_in_rule__ImportAssignement__Group__215486 ) ; rule__ImportAssignement__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ImportAssignement__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportAssignementAccess ( ) . getPkTableAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__ImportAssignement__PkTableAssignment_2_in_rule__ImportAssignement__Group__2__Impl15513 ) ; rule__ImportAssignement__PkTableAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportAssignementAccess ( ) . getPkTableAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ImportAssignement__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ImportAssignement__Group__3__Impl_in_rule__ImportAssignement__Group__315543 ) ; rule__ImportAssignement__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ImportAssignement__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportAssignementAccess ( ) . getGroup_3 ( ) ) ; } int alt75 = <NUM_LIT:2> ; int LA75_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA75_0 == <NUM_LIT> ) ) { alt75 = <NUM_LIT:1> ; } switch ( alt75 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__ImportAssignement__Group_3__0_in_rule__ImportAssignement__Group__3__Impl15570 ) ; rule__ImportAssignement__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportAssignementAccess ( ) . getGroup_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ImportAssignement__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ImportAssignement__Group_3__0__Impl_in_rule__ImportAssignement__Group_3__015609 ) ; rule__ImportAssignement__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ImportAssignement__Group_3__1_in_rule__ImportAssignement__Group_3__015612 ) ; rule__ImportAssignement__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ImportAssignement__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_3_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_47_in_rule__ImportAssignement__Group_3__0__Impl15640 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ImportAssignement__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ImportAssignement__Group_3__1__Impl_in_rule__ImportAssignement__Group_3__115671 ) ; rule__ImportAssignement__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ImportAssignement__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportAssignementAccess ( ) . getPkColumnAssignment_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__ImportAssignement__PkColumnAssignment_3_1_in_rule__ImportAssignement__Group_3__1__Impl15698 ) ; rule__ImportAssignement__PkColumnAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportAssignementAccess ( ) . getPkColumnAssignment_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ExportAssignement__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ExportAssignement__Group__0__Impl_in_rule__ExportAssignement__Group__015732 ) ; rule__ExportAssignement__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ExportAssignement__Group__1_in_rule__ExportAssignement__Group__015735 ) ; rule__ExportAssignement__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ExportAssignement__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExportAssignementAccess ( ) . getDbColumnAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__ExportAssignement__DbColumnAssignment_0_in_rule__ExportAssignement__Group__0__Impl15762 ) ; rule__ExportAssignement__DbColumnAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExportAssignementAccess ( ) . getDbColumnAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ExportAssignement__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ExportAssignement__Group__1__Impl_in_rule__ExportAssignement__Group__115792 ) ; rule__ExportAssignement__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ExportAssignement__Group__2_in_rule__ExportAssignement__Group__115795 ) ; rule__ExportAssignement__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ExportAssignement__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExportAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_47_in_rule__ExportAssignement__Group__1__Impl15823 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExportAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ExportAssignement__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ExportAssignement__Group__2__Impl_in_rule__ExportAssignement__Group__215854 ) ; rule__ExportAssignement__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ExportAssignement__Group__3_in_rule__ExportAssignement__Group__215857 ) ; rule__ExportAssignement__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ExportAssignement__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExportAssignementAccess ( ) . getFkTableAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__ExportAssignement__FkTableAssignment_2_in_rule__ExportAssignement__Group__2__Impl15884 ) ; rule__ExportAssignement__FkTableAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExportAssignementAccess ( ) . getFkTableAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ExportAssignement__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ExportAssignement__Group__3__Impl_in_rule__ExportAssignement__Group__315914 ) ; rule__ExportAssignement__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ExportAssignement__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExportAssignementAccess ( ) . getGroup_3 ( ) ) ; } int alt76 = <NUM_LIT:2> ; int LA76_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA76_0 == <NUM_LIT> ) ) { alt76 = <NUM_LIT:1> ; } switch ( alt76 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__ExportAssignement__Group_3__0_in_rule__ExportAssignement__Group__3__Impl15941 ) ; rule__ExportAssignement__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExportAssignementAccess ( ) . getGroup_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ExportAssignement__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ExportAssignement__Group_3__0__Impl_in_rule__ExportAssignement__Group_3__015980 ) ; rule__ExportAssignement__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ExportAssignement__Group_3__1_in_rule__ExportAssignement__Group_3__015983 ) ; rule__ExportAssignement__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ExportAssignement__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExportAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_3_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_47_in_rule__ExportAssignement__Group_3__0__Impl16011 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExportAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ExportAssignement__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ExportAssignement__Group_3__1__Impl_in_rule__ExportAssignement__Group_3__116042 ) ; rule__ExportAssignement__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ExportAssignement__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExportAssignementAccess ( ) . getFkColumnAssignment_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__ExportAssignement__FkColumnAssignment_3_1_in_rule__ExportAssignement__Group_3__1__Impl16069 ) ; rule__ExportAssignement__FkColumnAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExportAssignementAccess ( ) . getFkColumnAssignment_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__InheritanceAssignement__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__InheritanceAssignement__Group__0__Impl_in_rule__InheritanceAssignement__Group__016103 ) ; rule__InheritanceAssignement__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__InheritanceAssignement__Group__1_in_rule__InheritanceAssignement__Group__016106 ) ; rule__InheritanceAssignement__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__InheritanceAssignement__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getInheritanceAssignementAccess ( ) . getDiscriminatorAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__InheritanceAssignement__DiscriminatorAssignment_0_in_rule__InheritanceAssignement__Group__0__Impl16133 ) ; rule__InheritanceAssignement__DiscriminatorAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getInheritanceAssignementAccess ( ) . getDiscriminatorAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__InheritanceAssignement__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__InheritanceAssignement__Group__1__Impl_in_rule__InheritanceAssignement__Group__116163 ) ; rule__InheritanceAssignement__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__InheritanceAssignement__Group__2_in_rule__InheritanceAssignement__Group__116166 ) ; rule__InheritanceAssignement__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__InheritanceAssignement__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getInheritanceAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_47_in_rule__InheritanceAssignement__Group__1__Impl16194 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getInheritanceAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__InheritanceAssignement__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__InheritanceAssignement__Group__2__Impl_in_rule__InheritanceAssignement__Group__216225 ) ; rule__InheritanceAssignement__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__InheritanceAssignement__Group__3_in_rule__InheritanceAssignement__Group__216228 ) ; rule__InheritanceAssignement__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__InheritanceAssignement__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getInheritanceAssignementAccess ( ) . getDbTableAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__InheritanceAssignement__DbTableAssignment_2_in_rule__InheritanceAssignement__Group__2__Impl16255 ) ; rule__InheritanceAssignement__DbTableAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getInheritanceAssignementAccess ( ) . getDbTableAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__InheritanceAssignement__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__InheritanceAssignement__Group__3__Impl_in_rule__InheritanceAssignement__Group__316285 ) ; rule__InheritanceAssignement__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__InheritanceAssignement__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getInheritanceAssignementAccess ( ) . getGroup_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__InheritanceAssignement__Group_3__0_in_rule__InheritanceAssignement__Group__3__Impl16314 ) ; rule__InheritanceAssignement__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getInheritanceAssignementAccess ( ) . getGroup_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getInheritanceAssignementAccess ( ) . getGroup_3 ( ) ) ; } loop77 : do { int alt77 = <NUM_LIT:2> ; int LA77_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA77_0 == <NUM_LIT> ) ) { alt77 = <NUM_LIT:1> ; } switch ( alt77 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__InheritanceAssignement__Group_3__0_in_rule__InheritanceAssignement__Group__3__Impl16326 ) ; rule__InheritanceAssignement__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop77 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getInheritanceAssignementAccess ( ) . getGroup_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__InheritanceAssignement__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__InheritanceAssignement__Group_3__0__Impl_in_rule__InheritanceAssignement__Group_3__016367 ) ; rule__InheritanceAssignement__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__InheritanceAssignement__Group_3__1_in_rule__InheritanceAssignement__Group_3__016370 ) ; rule__InheritanceAssignement__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__InheritanceAssignement__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getInheritanceAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_3_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_47_in_rule__InheritanceAssignement__Group_3__0__Impl16398 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getInheritanceAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__InheritanceAssignement__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__InheritanceAssignement__Group_3__1__Impl_in_rule__InheritanceAssignement__Group_3__116429 ) ; rule__InheritanceAssignement__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__InheritanceAssignement__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getInheritanceAssignementAccess ( ) . getDbColumnsAssignment_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__InheritanceAssignement__DbColumnsAssignment_3_1_in_rule__InheritanceAssignement__Group_3__1__Impl16456 ) ; rule__InheritanceAssignement__DbColumnsAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getInheritanceAssignementAccess ( ) . getDbColumnsAssignment_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ManyToManyAssignement__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ManyToManyAssignement__Group__0__Impl_in_rule__ManyToManyAssignement__Group__016490 ) ; rule__ManyToManyAssignement__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ManyToManyAssignement__Group__1_in_rule__ManyToManyAssignement__Group__016493 ) ; rule__ManyToManyAssignement__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ManyToManyAssignement__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getManyToManyAssignementAccess ( ) . getPkColumnAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__ManyToManyAssignement__PkColumnAssignment_0_in_rule__ManyToManyAssignement__Group__0__Impl16520 ) ; rule__ManyToManyAssignement__PkColumnAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getManyToManyAssignementAccess ( ) . getPkColumnAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ManyToManyAssignement__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ManyToManyAssignement__Group__1__Impl_in_rule__ManyToManyAssignement__Group__116550 ) ; rule__ManyToManyAssignement__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ManyToManyAssignement__Group__2_in_rule__ManyToManyAssignement__Group__116553 ) ; rule__ManyToManyAssignement__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ManyToManyAssignement__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getManyToManyAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_47_in_rule__ManyToManyAssignement__Group__1__Impl16581 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getManyToManyAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ManyToManyAssignement__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ManyToManyAssignement__Group__2__Impl_in_rule__ManyToManyAssignement__Group__216612 ) ; rule__ManyToManyAssignement__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ManyToManyAssignement__Group__3_in_rule__ManyToManyAssignement__Group__216615 ) ; rule__ManyToManyAssignement__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ManyToManyAssignement__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getManyToManyAssignementAccess ( ) . getPkTableAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__ManyToManyAssignement__PkTableAssignment_2_in_rule__ManyToManyAssignement__Group__2__Impl16642 ) ; rule__ManyToManyAssignement__PkTableAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getManyToManyAssignementAccess ( ) . getPkTableAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ManyToManyAssignement__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ManyToManyAssignement__Group__3__Impl_in_rule__ManyToManyAssignement__Group__316672 ) ; rule__ManyToManyAssignement__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ManyToManyAssignement__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getManyToManyAssignementAccess ( ) . getGroup_3 ( ) ) ; } int alt78 = <NUM_LIT:2> ; int LA78_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA78_0 == <NUM_LIT> ) ) { alt78 = <NUM_LIT:1> ; } switch ( alt78 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__ManyToManyAssignement__Group_3__0_in_rule__ManyToManyAssignement__Group__3__Impl16699 ) ; rule__ManyToManyAssignement__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getManyToManyAssignementAccess ( ) . getGroup_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ManyToManyAssignement__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ManyToManyAssignement__Group_3__0__Impl_in_rule__ManyToManyAssignement__Group_3__016738 ) ; rule__ManyToManyAssignement__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ManyToManyAssignement__Group_3__1_in_rule__ManyToManyAssignement__Group_3__016741 ) ; rule__ManyToManyAssignement__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ManyToManyAssignement__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getManyToManyAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_3_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_47_in_rule__ManyToManyAssignement__Group_3__0__Impl16769 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getManyToManyAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ManyToManyAssignement__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ManyToManyAssignement__Group_3__1__Impl_in_rule__ManyToManyAssignement__Group_3__116800 ) ; rule__ManyToManyAssignement__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ManyToManyAssignement__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getManyToManyAssignementAccess ( ) . getFkColumnAssignment_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__ManyToManyAssignement__FkColumnAssignment_3_1_in_rule__ManyToManyAssignement__Group_3__1__Impl16827 ) ; rule__ManyToManyAssignement__FkColumnAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getManyToManyAssignementAccess ( ) . getFkColumnAssignment_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group__0__Impl_in_rule__Property__Group__016861 ) ; rule__Property__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group__1_in_rule__Property__Group__016864 ) ; rule__Property__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getAlternatives_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__Alternatives_0_in_rule__Property__Group__0__Impl16891 ) ; rule__Property__Alternatives_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getAlternatives_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group__1__Impl_in_rule__Property__Group__116921 ) ; rule__Property__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getSEMICOLONTerminalRuleCall_1 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__Property__Group__1__Impl16948 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getSEMICOLONTerminalRuleCall_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_2__0__Impl_in_rule__Property__Group_0_2__016981 ) ; rule__Property__Group_0_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group_0_2__1_in_rule__Property__Group_0_2__016984 ) ; rule__Property__Group_0_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_2_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__NameAssignment_0_2_0_in_rule__Property__Group_0_2__0__Impl17011 ) ; rule__Property__NameAssignment_0_2_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_2__1__Impl_in_rule__Property__Group_0_2__117041 ) ; rule__Property__Group_0_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDatabaseAssignment_0_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__DatabaseAssignment_0_2_1_in_rule__Property__Group_0_2__1__Impl17068 ) ; rule__Property__DatabaseAssignment_0_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDatabaseAssignment_0_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_3__0__Impl_in_rule__Property__Group_0_3__017102 ) ; rule__Property__Group_0_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group_0_3__1_in_rule__Property__Group_0_3__017105 ) ; rule__Property__Group_0_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_3_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__NameAssignment_0_3_0_in_rule__Property__Group_0_3__0__Impl17132 ) ; rule__Property__NameAssignment_0_3_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_3__1__Impl_in_rule__Property__Group_0_3__117162 ) ; rule__Property__Group_0_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getPojogenAssignment_0_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__PojogenAssignment_0_3_1_in_rule__Property__Group_0_3__1__Impl17189 ) ; rule__Property__PojogenAssignment_0_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getPojogenAssignment_0_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_2__0__Impl_in_rule__DatabaseProperty__Group_2__017223 ) ; rule__DatabaseProperty__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__DatabaseProperty__Group_2__1_in_rule__DatabaseProperty__Group_2__017226 ) ; rule__DatabaseProperty__Group_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_2_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__NameAssignment_2_0_in_rule__DatabaseProperty__Group_2__0__Impl17253 ) ; rule__DatabaseProperty__NameAssignment_2_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_2__1__Impl_in_rule__DatabaseProperty__Group_2__117283 ) ; rule__DatabaseProperty__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__DatabaseProperty__Group_2__2_in_rule__DatabaseProperty__Group_2__117286 ) ; rule__DatabaseProperty__Group_2__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_2_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_2__1__Impl17316 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_2_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_2_1 ( ) ) ; } loop79 : do { int alt79 = <NUM_LIT:2> ; int LA79_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA79_0 == RULE_WS ) ) { alt79 = <NUM_LIT:1> ; } switch ( alt79 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_2__1__Impl17329 ) ; if ( state . failed ) return ; } break ; default : break loop79 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_2_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_2__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_2__2__Impl_in_rule__DatabaseProperty__Group_2__217362 ) ; rule__DatabaseProperty__Group_2__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_2__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getDbUrlAssignment_2_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__DbUrlAssignment_2_2_in_rule__DatabaseProperty__Group_2__2__Impl17389 ) ; rule__DatabaseProperty__DbUrlAssignment_2_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getDbUrlAssignment_2_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_3__0__Impl_in_rule__DatabaseProperty__Group_3__017425 ) ; rule__DatabaseProperty__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__DatabaseProperty__Group_3__1_in_rule__DatabaseProperty__Group_3__017428 ) ; rule__DatabaseProperty__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_3_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__NameAssignment_3_0_in_rule__DatabaseProperty__Group_3__0__Impl17455 ) ; rule__DatabaseProperty__NameAssignment_3_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_3__1__Impl_in_rule__DatabaseProperty__Group_3__117485 ) ; rule__DatabaseProperty__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__DatabaseProperty__Group_3__2_in_rule__DatabaseProperty__Group_3__117488 ) ; rule__DatabaseProperty__Group_3__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_3_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_3__1__Impl17518 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_3_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_3_1 ( ) ) ; } loop80 : do { int alt80 = <NUM_LIT:2> ; int LA80_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA80_0 == RULE_WS ) ) { alt80 = <NUM_LIT:1> ; } switch ( alt80 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_3__1__Impl17531 ) ; if ( state . failed ) return ; } break ; default : break loop80 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_3_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_3__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_3__2__Impl_in_rule__DatabaseProperty__Group_3__217564 ) ; rule__DatabaseProperty__Group_3__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_3__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getDbUsernameAssignment_3_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__DbUsernameAssignment_3_2_in_rule__DatabaseProperty__Group_3__2__Impl17591 ) ; rule__DatabaseProperty__DbUsernameAssignment_3_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getDbUsernameAssignment_3_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_4__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_4__0__Impl_in_rule__DatabaseProperty__Group_4__017627 ) ; rule__DatabaseProperty__Group_4__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__DatabaseProperty__Group_4__1_in_rule__DatabaseProperty__Group_4__017630 ) ; rule__DatabaseProperty__Group_4__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_4__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_4_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__NameAssignment_4_0_in_rule__DatabaseProperty__Group_4__0__Impl17657 ) ; rule__DatabaseProperty__NameAssignment_4_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_4_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_4__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_4__1__Impl_in_rule__DatabaseProperty__Group_4__117687 ) ; rule__DatabaseProperty__Group_4__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__DatabaseProperty__Group_4__2_in_rule__DatabaseProperty__Group_4__117690 ) ; rule__DatabaseProperty__Group_4__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_4__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_4_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_4__1__Impl17720 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_4_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_4_1 ( ) ) ; } loop81 : do { int alt81 = <NUM_LIT:2> ; int LA81_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA81_0 == RULE_WS ) ) { alt81 = <NUM_LIT:1> ; } switch ( alt81 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_4__1__Impl17733 ) ; if ( state . failed ) return ; } break ; default : break loop81 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_4_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_4__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_4__2__Impl_in_rule__DatabaseProperty__Group_4__217766 ) ; rule__DatabaseProperty__Group_4__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_4__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getDbPasswordAssignment_4_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__DbPasswordAssignment_4_2_in_rule__DatabaseProperty__Group_4__2__Impl17793 ) ; rule__DatabaseProperty__DbPasswordAssignment_4_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getDbPasswordAssignment_4_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_5__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_5__0__Impl_in_rule__DatabaseProperty__Group_5__017829 ) ; rule__DatabaseProperty__Group_5__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__DatabaseProperty__Group_5__1_in_rule__DatabaseProperty__Group_5__017832 ) ; rule__DatabaseProperty__Group_5__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_5__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_5_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__NameAssignment_5_0_in_rule__DatabaseProperty__Group_5__0__Impl17859 ) ; rule__DatabaseProperty__NameAssignment_5_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_5_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_5__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_5__1__Impl_in_rule__DatabaseProperty__Group_5__117889 ) ; rule__DatabaseProperty__Group_5__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__DatabaseProperty__Group_5__2_in_rule__DatabaseProperty__Group_5__117892 ) ; rule__DatabaseProperty__Group_5__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_5__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_5_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_5__1__Impl17922 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_5_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_5_1 ( ) ) ; } loop82 : do { int alt82 = <NUM_LIT:2> ; int LA82_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA82_0 == RULE_WS ) ) { alt82 = <NUM_LIT:1> ; } switch ( alt82 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_5__1__Impl17935 ) ; if ( state . failed ) return ; } break ; default : break loop82 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_5_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_5__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_5__2__Impl_in_rule__DatabaseProperty__Group_5__217968 ) ; rule__DatabaseProperty__Group_5__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_5__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getDbSchemaAssignment_5_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__DbSchemaAssignment_5_2_in_rule__DatabaseProperty__Group_5__2__Impl17995 ) ; rule__DatabaseProperty__DbSchemaAssignment_5_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getDbSchemaAssignment_5_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_6__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_6__0__Impl_in_rule__DatabaseProperty__Group_6__018031 ) ; rule__DatabaseProperty__Group_6__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__DatabaseProperty__Group_6__1_in_rule__DatabaseProperty__Group_6__018034 ) ; rule__DatabaseProperty__Group_6__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_6__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_6_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__NameAssignment_6_0_in_rule__DatabaseProperty__Group_6__0__Impl18061 ) ; rule__DatabaseProperty__NameAssignment_6_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_6_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_6__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_6__1__Impl_in_rule__DatabaseProperty__Group_6__118091 ) ; rule__DatabaseProperty__Group_6__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__DatabaseProperty__Group_6__2_in_rule__DatabaseProperty__Group_6__118094 ) ; rule__DatabaseProperty__Group_6__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_6__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_6_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_6__1__Impl18124 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_6_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_6_1 ( ) ) ; } loop83 : do { int alt83 = <NUM_LIT:2> ; int LA83_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA83_0 == RULE_WS ) ) { alt83 = <NUM_LIT:1> ; } switch ( alt83 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_6__1__Impl18137 ) ; if ( state . failed ) return ; } break ; default : break loop83 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_6_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_6__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__DatabaseProperty__Group_6__2__Impl_in_rule__DatabaseProperty__Group_6__218170 ) ; rule__DatabaseProperty__Group_6__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__Group_6__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getDbDriverAssignment_6_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseProperty__DbDriverAssignment_6_2_in_rule__DatabaseProperty__Group_6__2__Impl18197 ) ; rule__DatabaseProperty__DbDriverAssignment_6_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getDbDriverAssignment_6_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_0__0__Impl_in_rule__PojogenProperty__Group_0__018233 ) ; rule__PojogenProperty__Group_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_0__1_in_rule__PojogenProperty__Group_0__018236 ) ; rule__PojogenProperty__Group_0__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_0_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_0_0_in_rule__PojogenProperty__Group_0__0__Impl18263 ) ; rule__PojogenProperty__NameAssignment_0_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_0__1__Impl_in_rule__PojogenProperty__Group_0__118293 ) ; rule__PojogenProperty__Group_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_0_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_0_1__0_in_rule__PojogenProperty__Group_0__1__Impl18322 ) ; rule__PojogenProperty__Group_0_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_0_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_0_1 ( ) ) ; } loop84 : do { int alt84 = <NUM_LIT:2> ; int LA84_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA84_0 == RULE_WS ) ) { alt84 = <NUM_LIT:1> ; } switch ( alt84 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_0_1__0_in_rule__PojogenProperty__Group_0__1__Impl18334 ) ; rule__PojogenProperty__Group_0_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop84 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_0_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_0_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_0_1__0__Impl_in_rule__PojogenProperty__Group_0_1__018371 ) ; rule__PojogenProperty__Group_0_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_0_1__1_in_rule__PojogenProperty__Group_0_1__018374 ) ; rule__PojogenProperty__Group_0_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_0_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_0_1_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_0_1__0__Impl18404 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_0_1_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_0_1_0 ( ) ) ; } loop85 : do { int alt85 = <NUM_LIT:2> ; int LA85_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA85_0 == RULE_WS ) ) { alt85 = <NUM_LIT:1> ; } switch ( alt85 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_0_1__0__Impl18417 ) ; if ( state . failed ) return ; } break ; default : break loop85 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_0_1_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_0_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_0_1__1__Impl_in_rule__PojogenProperty__Group_0_1__118450 ) ; rule__PojogenProperty__Group_0_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_0_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getSqlTypesAssignment_0_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__SqlTypesAssignment_0_1_1_in_rule__PojogenProperty__Group_0_1__1__Impl18477 ) ; rule__PojogenProperty__SqlTypesAssignment_0_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getSqlTypesAssignment_0_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_1__0__Impl_in_rule__PojogenProperty__Group_1__018511 ) ; rule__PojogenProperty__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_1__1_in_rule__PojogenProperty__Group_1__018514 ) ; rule__PojogenProperty__Group_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_1_0_in_rule__PojogenProperty__Group_1__0__Impl18541 ) ; rule__PojogenProperty__NameAssignment_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_1__1__Impl_in_rule__PojogenProperty__Group_1__118571 ) ; rule__PojogenProperty__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_1__2_in_rule__PojogenProperty__Group_1__118574 ) ; rule__PojogenProperty__Group_1__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_1_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_1__1__Impl18604 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_1_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_1_1 ( ) ) ; } loop86 : do { int alt86 = <NUM_LIT:2> ; int LA86_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA86_0 == RULE_WS ) ) { alt86 = <NUM_LIT:1> ; } switch ( alt86 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_1__1__Impl18617 ) ; if ( state . failed ) return ; } break ; default : break loop86 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_1_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_1__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_1__2__Impl_in_rule__PojogenProperty__Group_1__218650 ) ; rule__PojogenProperty__Group_1__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_1__3_in_rule__PojogenProperty__Group_1__218653 ) ; rule__PojogenProperty__Group_1__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_1__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_1_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTableAssignment_1_2_in_rule__PojogenProperty__Group_1__2__Impl18680 ) ; rule__PojogenProperty__DbTableAssignment_1_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_1_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_1__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_1__3__Impl_in_rule__PojogenProperty__Group_1__318710 ) ; rule__PojogenProperty__Group_1__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_1__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_1_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_1_3__0_in_rule__PojogenProperty__Group_1__3__Impl18739 ) ; rule__PojogenProperty__Group_1_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_1_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_1_3 ( ) ) ; } loop87 : do { int alt87 = <NUM_LIT:2> ; int LA87_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA87_0 == RULE_WS ) ) { alt87 = <NUM_LIT:1> ; } switch ( alt87 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_1_3__0_in_rule__PojogenProperty__Group_1__3__Impl18751 ) ; rule__PojogenProperty__Group_1_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop87 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_1_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_1_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_1_3__0__Impl_in_rule__PojogenProperty__Group_1_3__018792 ) ; rule__PojogenProperty__Group_1_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_1_3__1_in_rule__PojogenProperty__Group_1_3__018795 ) ; rule__PojogenProperty__Group_1_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_1_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_1_3_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_1_3__0__Impl18825 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_1_3_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_1_3_0 ( ) ) ; } loop88 : do { int alt88 = <NUM_LIT:2> ; int LA88_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA88_0 == RULE_WS ) ) { alt88 = <NUM_LIT:1> ; } switch ( alt88 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_1_3__0__Impl18838 ) ; if ( state . failed ) return ; } break ; default : break loop88 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_1_3_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_1_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_1_3__1__Impl_in_rule__PojogenProperty__Group_1_3__118871 ) ; rule__PojogenProperty__Group_1_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_1_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getSqlTypesAssignment_1_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__SqlTypesAssignment_1_3_1_in_rule__PojogenProperty__Group_1_3__1__Impl18898 ) ; rule__PojogenProperty__SqlTypesAssignment_1_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getSqlTypesAssignment_1_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_2__0__Impl_in_rule__PojogenProperty__Group_2__018932 ) ; rule__PojogenProperty__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_2__1_in_rule__PojogenProperty__Group_2__018935 ) ; rule__PojogenProperty__Group_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_2_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_2_0_in_rule__PojogenProperty__Group_2__0__Impl18962 ) ; rule__PojogenProperty__NameAssignment_2_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_2__1__Impl_in_rule__PojogenProperty__Group_2__118992 ) ; rule__PojogenProperty__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_2__2_in_rule__PojogenProperty__Group_2__118995 ) ; rule__PojogenProperty__Group_2__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_2_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_2__1__Impl19025 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_2_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_2_1 ( ) ) ; } loop89 : do { int alt89 = <NUM_LIT:2> ; int LA89_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA89_0 == RULE_WS ) ) { alt89 = <NUM_LIT:1> ; } switch ( alt89 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_2__1__Impl19038 ) ; if ( state . failed ) return ; } break ; default : break loop89 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_2_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_2__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_2__2__Impl_in_rule__PojogenProperty__Group_2__219071 ) ; rule__PojogenProperty__Group_2__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_2__3_in_rule__PojogenProperty__Group_2__219074 ) ; rule__PojogenProperty__Group_2__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_2__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_2_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTableAssignment_2_2_in_rule__PojogenProperty__Group_2__2__Impl19101 ) ; rule__PojogenProperty__DbTableAssignment_2_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_2_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_2__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_2__3__Impl_in_rule__PojogenProperty__Group_2__319131 ) ; rule__PojogenProperty__Group_2__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_2__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_2_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_2_3__0_in_rule__PojogenProperty__Group_2__3__Impl19160 ) ; rule__PojogenProperty__Group_2_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_2_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_2_3 ( ) ) ; } loop90 : do { int alt90 = <NUM_LIT:2> ; int LA90_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA90_0 == RULE_WS ) ) { alt90 = <NUM_LIT:1> ; } switch ( alt90 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_2_3__0_in_rule__PojogenProperty__Group_2__3__Impl19172 ) ; rule__PojogenProperty__Group_2_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop90 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_2_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_2_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_2_3__0__Impl_in_rule__PojogenProperty__Group_2_3__019213 ) ; rule__PojogenProperty__Group_2_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_2_3__1_in_rule__PojogenProperty__Group_2_3__019216 ) ; rule__PojogenProperty__Group_2_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_2_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_2_3_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_2_3__0__Impl19246 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_2_3_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_2_3_0 ( ) ) ; } loop91 : do { int alt91 = <NUM_LIT:2> ; int LA91_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA91_0 == RULE_WS ) ) { alt91 = <NUM_LIT:1> ; } switch ( alt91 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_2_3__0__Impl19259 ) ; if ( state . failed ) return ; } break ; default : break loop91 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_2_3_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_2_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_2_3__1__Impl_in_rule__PojogenProperty__Group_2_3__119292 ) ; rule__PojogenProperty__Group_2_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_2_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypesAssignment_2_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__ColumnTypesAssignment_2_3_1_in_rule__PojogenProperty__Group_2_3__1__Impl19319 ) ; rule__PojogenProperty__ColumnTypesAssignment_2_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypesAssignment_2_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_3__0__Impl_in_rule__PojogenProperty__Group_3__019353 ) ; rule__PojogenProperty__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_3__1_in_rule__PojogenProperty__Group_3__019356 ) ; rule__PojogenProperty__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_3_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_3_0_in_rule__PojogenProperty__Group_3__0__Impl19383 ) ; rule__PojogenProperty__NameAssignment_3_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_3__1__Impl_in_rule__PojogenProperty__Group_3__119413 ) ; rule__PojogenProperty__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_3__2_in_rule__PojogenProperty__Group_3__119416 ) ; rule__PojogenProperty__Group_3__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_3_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_3__1__Impl19446 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_3_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_3_1 ( ) ) ; } loop92 : do { int alt92 = <NUM_LIT:2> ; int LA92_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA92_0 == RULE_WS ) ) { alt92 = <NUM_LIT:1> ; } switch ( alt92 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_3__1__Impl19459 ) ; if ( state . failed ) return ; } break ; default : break loop92 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_3_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_3__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_3__2__Impl_in_rule__PojogenProperty__Group_3__219492 ) ; rule__PojogenProperty__Group_3__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_3__3_in_rule__PojogenProperty__Group_3__219495 ) ; rule__PojogenProperty__Group_3__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_3__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_3_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTableAssignment_3_2_in_rule__PojogenProperty__Group_3__2__Impl19522 ) ; rule__PojogenProperty__DbTableAssignment_3_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_3_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_3__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_3__3__Impl_in_rule__PojogenProperty__Group_3__319552 ) ; rule__PojogenProperty__Group_3__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_3__4_in_rule__PojogenProperty__Group_3__319555 ) ; rule__PojogenProperty__Group_3__4 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_3__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_3_3 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_3__3__Impl19585 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_3_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_3_3 ( ) ) ; } loop93 : do { int alt93 = <NUM_LIT:2> ; int LA93_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA93_0 == RULE_WS ) ) { alt93 = <NUM_LIT:1> ; } switch ( alt93 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_3__3__Impl19598 ) ; if ( state . failed ) return ; } break ; default : break loop93 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_3_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_3__4 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_3__4__Impl_in_rule__PojogenProperty__Group_3__419631 ) ; rule__PojogenProperty__Group_3__4__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_3__4__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypeAssignment_3_4 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__ColumnTypeAssignment_3_4_in_rule__PojogenProperty__Group_3__4__Impl19658 ) ; rule__PojogenProperty__ColumnTypeAssignment_3_4 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypeAssignment_3_4 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_4__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_4__0__Impl_in_rule__PojogenProperty__Group_4__019698 ) ; rule__PojogenProperty__Group_4__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_4__1_in_rule__PojogenProperty__Group_4__019701 ) ; rule__PojogenProperty__Group_4__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_4__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_4_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_4_0_in_rule__PojogenProperty__Group_4__0__Impl19728 ) ; rule__PojogenProperty__NameAssignment_4_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_4_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_4__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_4__1__Impl_in_rule__PojogenProperty__Group_4__119758 ) ; rule__PojogenProperty__Group_4__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_4__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_4_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_4_1__0_in_rule__PojogenProperty__Group_4__1__Impl19787 ) ; rule__PojogenProperty__Group_4_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_4_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_4_1 ( ) ) ; } loop94 : do { int alt94 = <NUM_LIT:2> ; int LA94_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA94_0 == RULE_WS ) ) { alt94 = <NUM_LIT:1> ; } switch ( alt94 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_4_1__0_in_rule__PojogenProperty__Group_4__1__Impl19799 ) ; rule__PojogenProperty__Group_4_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop94 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_4_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_4_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_4_1__0__Impl_in_rule__PojogenProperty__Group_4_1__019836 ) ; rule__PojogenProperty__Group_4_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_4_1__1_in_rule__PojogenProperty__Group_4_1__019839 ) ; rule__PojogenProperty__Group_4_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_4_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_4_1_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_4_1__0__Impl19869 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_4_1_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_4_1_0 ( ) ) ; } loop95 : do { int alt95 = <NUM_LIT:2> ; int LA95_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA95_0 == RULE_WS ) ) { alt95 = <NUM_LIT:1> ; } switch ( alt95 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_4_1__0__Impl19882 ) ; if ( state . failed ) return ; } break ; default : break loop95 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_4_1_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_4_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_4_1__1__Impl_in_rule__PojogenProperty__Group_4_1__119915 ) ; rule__PojogenProperty__Group_4_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_4_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTablesAssignment_4_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTablesAssignment_4_1_1_in_rule__PojogenProperty__Group_4_1__1__Impl19942 ) ; rule__PojogenProperty__DbTablesAssignment_4_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTablesAssignment_4_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_5__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_5__0__Impl_in_rule__PojogenProperty__Group_5__019976 ) ; rule__PojogenProperty__Group_5__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_5__1_in_rule__PojogenProperty__Group_5__019979 ) ; rule__PojogenProperty__Group_5__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_5__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_5_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_5_0_in_rule__PojogenProperty__Group_5__0__Impl20006 ) ; rule__PojogenProperty__NameAssignment_5_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_5_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_5__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_5__1__Impl_in_rule__PojogenProperty__Group_5__120036 ) ; rule__PojogenProperty__Group_5__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_5__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_5_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_5_1__0_in_rule__PojogenProperty__Group_5__1__Impl20065 ) ; rule__PojogenProperty__Group_5_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_5_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_5_1 ( ) ) ; } loop96 : do { int alt96 = <NUM_LIT:2> ; int LA96_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA96_0 == RULE_WS ) ) { alt96 = <NUM_LIT:1> ; } switch ( alt96 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_5_1__0_in_rule__PojogenProperty__Group_5__1__Impl20077 ) ; rule__PojogenProperty__Group_5_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop96 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_5_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_5_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_5_1__0__Impl_in_rule__PojogenProperty__Group_5_1__020114 ) ; rule__PojogenProperty__Group_5_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_5_1__1_in_rule__PojogenProperty__Group_5_1__020117 ) ; rule__PojogenProperty__Group_5_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_5_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_5_1_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_5_1__0__Impl20147 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_5_1_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_5_1_0 ( ) ) ; } loop97 : do { int alt97 = <NUM_LIT:2> ; int LA97_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA97_0 == RULE_WS ) ) { alt97 = <NUM_LIT:1> ; } switch ( alt97 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_5_1__0__Impl20160 ) ; if ( state . failed ) return ; } break ; default : break loop97 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_5_1_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_5_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_5_1__1__Impl_in_rule__PojogenProperty__Group_5_1__120193 ) ; rule__PojogenProperty__Group_5_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_5_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTablesAssignment_5_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTablesAssignment_5_1_1_in_rule__PojogenProperty__Group_5_1__1__Impl20220 ) ; rule__PojogenProperty__DbTablesAssignment_5_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTablesAssignment_5_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_6__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_6__0__Impl_in_rule__PojogenProperty__Group_6__020254 ) ; rule__PojogenProperty__Group_6__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_6__1_in_rule__PojogenProperty__Group_6__020257 ) ; rule__PojogenProperty__Group_6__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_6__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_6_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_6_0_in_rule__PojogenProperty__Group_6__0__Impl20284 ) ; rule__PojogenProperty__NameAssignment_6_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_6_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_6__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_6__1__Impl_in_rule__PojogenProperty__Group_6__120314 ) ; rule__PojogenProperty__Group_6__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_6__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_6_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_6_1__0_in_rule__PojogenProperty__Group_6__1__Impl20343 ) ; rule__PojogenProperty__Group_6_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_6_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_6_1 ( ) ) ; } loop98 : do { int alt98 = <NUM_LIT:2> ; int LA98_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA98_0 == RULE_WS ) ) { alt98 = <NUM_LIT:1> ; } switch ( alt98 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_6_1__0_in_rule__PojogenProperty__Group_6__1__Impl20355 ) ; rule__PojogenProperty__Group_6_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop98 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_6_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_6_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_6_1__0__Impl_in_rule__PojogenProperty__Group_6_1__020392 ) ; rule__PojogenProperty__Group_6_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_6_1__1_in_rule__PojogenProperty__Group_6_1__020395 ) ; rule__PojogenProperty__Group_6_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_6_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_6_1_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_6_1__0__Impl20425 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_6_1_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_6_1_0 ( ) ) ; } loop99 : do { int alt99 = <NUM_LIT:2> ; int LA99_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA99_0 == RULE_WS ) ) { alt99 = <NUM_LIT:1> ; } switch ( alt99 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_6_1__0__Impl20438 ) ; if ( state . failed ) return ; } break ; default : break loop99 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_6_1_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_6_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_6_1__1__Impl_in_rule__PojogenProperty__Group_6_1__120471 ) ; rule__PojogenProperty__Group_6_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_6_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getJoinTablesAssignment_6_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__JoinTablesAssignment_6_1_1_in_rule__PojogenProperty__Group_6_1__1__Impl20498 ) ; rule__PojogenProperty__JoinTablesAssignment_6_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getJoinTablesAssignment_6_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_7__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_7__0__Impl_in_rule__PojogenProperty__Group_7__020532 ) ; rule__PojogenProperty__Group_7__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_7__1_in_rule__PojogenProperty__Group_7__020535 ) ; rule__PojogenProperty__Group_7__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_7__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_7_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_7_0_in_rule__PojogenProperty__Group_7__0__Impl20562 ) ; rule__PojogenProperty__NameAssignment_7_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_7_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_7__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_7__1__Impl_in_rule__PojogenProperty__Group_7__120592 ) ; rule__PojogenProperty__Group_7__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_7__2_in_rule__PojogenProperty__Group_7__120595 ) ; rule__PojogenProperty__Group_7__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_7__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_7_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_7__1__Impl20625 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_7_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_7_1 ( ) ) ; } loop100 : do { int alt100 = <NUM_LIT:2> ; int LA100_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA100_0 == RULE_WS ) ) { alt100 = <NUM_LIT:1> ; } switch ( alt100 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_7__1__Impl20638 ) ; if ( state . failed ) return ; } break ; default : break loop100 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_7_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_7__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_7__2__Impl_in_rule__PojogenProperty__Group_7__220671 ) ; rule__PojogenProperty__Group_7__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_7__3_in_rule__PojogenProperty__Group_7__220674 ) ; rule__PojogenProperty__Group_7__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_7__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_7_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTableAssignment_7_2_in_rule__PojogenProperty__Group_7__2__Impl20701 ) ; rule__PojogenProperty__DbTableAssignment_7_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_7_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_7__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_7__3__Impl_in_rule__PojogenProperty__Group_7__320731 ) ; rule__PojogenProperty__Group_7__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_7__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_7_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_7_3__0_in_rule__PojogenProperty__Group_7__3__Impl20760 ) ; rule__PojogenProperty__Group_7_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_7_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_7_3 ( ) ) ; } loop101 : do { int alt101 = <NUM_LIT:2> ; int LA101_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA101_0 == RULE_WS ) ) { alt101 = <NUM_LIT:1> ; } switch ( alt101 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_7_3__0_in_rule__PojogenProperty__Group_7__3__Impl20772 ) ; rule__PojogenProperty__Group_7_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop101 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_7_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_7_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_7_3__0__Impl_in_rule__PojogenProperty__Group_7_3__020813 ) ; rule__PojogenProperty__Group_7_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_7_3__1_in_rule__PojogenProperty__Group_7_3__020816 ) ; rule__PojogenProperty__Group_7_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_7_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_7_3_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_7_3__0__Impl20846 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_7_3_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_7_3_0 ( ) ) ; } loop102 : do { int alt102 = <NUM_LIT:2> ; int LA102_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA102_0 == RULE_WS ) ) { alt102 = <NUM_LIT:1> ; } switch ( alt102 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_7_3__0__Impl20859 ) ; if ( state . failed ) return ; } break ; default : break loop102 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_7_3_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_7_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_7_3__1__Impl_in_rule__PojogenProperty__Group_7_3__120892 ) ; rule__PojogenProperty__Group_7_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_7_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsAssignment_7_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbColumnsAssignment_7_3_1_in_rule__PojogenProperty__Group_7_3__1__Impl20919 ) ; rule__PojogenProperty__DbColumnsAssignment_7_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsAssignment_7_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_8__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_8__0__Impl_in_rule__PojogenProperty__Group_8__020953 ) ; rule__PojogenProperty__Group_8__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_8__1_in_rule__PojogenProperty__Group_8__020956 ) ; rule__PojogenProperty__Group_8__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_8__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_8_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_8_0_in_rule__PojogenProperty__Group_8__0__Impl20983 ) ; rule__PojogenProperty__NameAssignment_8_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_8_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_8__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_8__1__Impl_in_rule__PojogenProperty__Group_8__121013 ) ; rule__PojogenProperty__Group_8__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_8__2_in_rule__PojogenProperty__Group_8__121016 ) ; rule__PojogenProperty__Group_8__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_8__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_8_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_8__1__Impl21046 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_8_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_8_1 ( ) ) ; } loop103 : do { int alt103 = <NUM_LIT:2> ; int LA103_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA103_0 == RULE_WS ) ) { alt103 = <NUM_LIT:1> ; } switch ( alt103 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_8__1__Impl21059 ) ; if ( state . failed ) return ; } break ; default : break loop103 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_8_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_8__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_8__2__Impl_in_rule__PojogenProperty__Group_8__221092 ) ; rule__PojogenProperty__Group_8__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_8__3_in_rule__PojogenProperty__Group_8__221095 ) ; rule__PojogenProperty__Group_8__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_8__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_8_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTableAssignment_8_2_in_rule__PojogenProperty__Group_8__2__Impl21122 ) ; rule__PojogenProperty__DbTableAssignment_8_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_8_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_8__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_8__3__Impl_in_rule__PojogenProperty__Group_8__321152 ) ; rule__PojogenProperty__Group_8__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_8__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_8_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_8_3__0_in_rule__PojogenProperty__Group_8__3__Impl21181 ) ; rule__PojogenProperty__Group_8_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_8_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_8_3 ( ) ) ; } loop104 : do { int alt104 = <NUM_LIT:2> ; int LA104_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA104_0 == RULE_WS ) ) { alt104 = <NUM_LIT:1> ; } switch ( alt104 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_8_3__0_in_rule__PojogenProperty__Group_8__3__Impl21193 ) ; rule__PojogenProperty__Group_8_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop104 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_8_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_8_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_8_3__0__Impl_in_rule__PojogenProperty__Group_8_3__021234 ) ; rule__PojogenProperty__Group_8_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_8_3__1_in_rule__PojogenProperty__Group_8_3__021237 ) ; rule__PojogenProperty__Group_8_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_8_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_8_3_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_8_3__0__Impl21267 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_8_3_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_8_3_0 ( ) ) ; } loop105 : do { int alt105 = <NUM_LIT:2> ; int LA105_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA105_0 == RULE_WS ) ) { alt105 = <NUM_LIT:1> ; } switch ( alt105 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_8_3__0__Impl21280 ) ; if ( state . failed ) return ; } break ; default : break loop105 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_8_3_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_8_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_8_3__1__Impl_in_rule__PojogenProperty__Group_8_3__121313 ) ; rule__PojogenProperty__Group_8_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_8_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsAssignment_8_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbColumnsAssignment_8_3_1_in_rule__PojogenProperty__Group_8_3__1__Impl21340 ) ; rule__PojogenProperty__DbColumnsAssignment_8_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsAssignment_8_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_9__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_9__0__Impl_in_rule__PojogenProperty__Group_9__021374 ) ; rule__PojogenProperty__Group_9__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_9__1_in_rule__PojogenProperty__Group_9__021377 ) ; rule__PojogenProperty__Group_9__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_9__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_9_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_9_0_in_rule__PojogenProperty__Group_9__0__Impl21404 ) ; rule__PojogenProperty__NameAssignment_9_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_9_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_9__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_9__1__Impl_in_rule__PojogenProperty__Group_9__121434 ) ; rule__PojogenProperty__Group_9__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_9__2_in_rule__PojogenProperty__Group_9__121437 ) ; rule__PojogenProperty__Group_9__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_9__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_9_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_9__1__Impl21467 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_9_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_9_1 ( ) ) ; } loop106 : do { int alt106 = <NUM_LIT:2> ; int LA106_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA106_0 == RULE_WS ) ) { alt106 = <NUM_LIT:1> ; } switch ( alt106 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_9__1__Impl21480 ) ; if ( state . failed ) return ; } break ; default : break loop106 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_9_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_9__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_9__2__Impl_in_rule__PojogenProperty__Group_9__221513 ) ; rule__PojogenProperty__Group_9__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_9__3_in_rule__PojogenProperty__Group_9__221516 ) ; rule__PojogenProperty__Group_9__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_9__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_9_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTableAssignment_9_2_in_rule__PojogenProperty__Group_9__2__Impl21543 ) ; rule__PojogenProperty__DbTableAssignment_9_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_9_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_9__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_9__3__Impl_in_rule__PojogenProperty__Group_9__321573 ) ; rule__PojogenProperty__Group_9__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_9__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_9_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_9_3__0_in_rule__PojogenProperty__Group_9__3__Impl21602 ) ; rule__PojogenProperty__Group_9_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_9_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_9_3 ( ) ) ; } loop107 : do { int alt107 = <NUM_LIT:2> ; int LA107_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA107_0 == RULE_WS ) ) { alt107 = <NUM_LIT:1> ; } switch ( alt107 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_9_3__0_in_rule__PojogenProperty__Group_9__3__Impl21614 ) ; rule__PojogenProperty__Group_9_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop107 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_9_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_9_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_9_3__0__Impl_in_rule__PojogenProperty__Group_9_3__021655 ) ; rule__PojogenProperty__Group_9_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_9_3__1_in_rule__PojogenProperty__Group_9_3__021658 ) ; rule__PojogenProperty__Group_9_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_9_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_9_3_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_9_3__0__Impl21688 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_9_3_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_9_3_0 ( ) ) ; } loop108 : do { int alt108 = <NUM_LIT:2> ; int LA108_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA108_0 == RULE_WS ) ) { alt108 = <NUM_LIT:1> ; } switch ( alt108 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_9_3__0__Impl21701 ) ; if ( state . failed ) return ; } break ; default : break loop108 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_9_3_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_9_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_9_3__1__Impl_in_rule__PojogenProperty__Group_9_3__121734 ) ; rule__PojogenProperty__Group_9_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_9_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsAssignment_9_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbColumnsAssignment_9_3_1_in_rule__PojogenProperty__Group_9_3__1__Impl21761 ) ; rule__PojogenProperty__DbColumnsAssignment_9_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsAssignment_9_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_10__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_10__0__Impl_in_rule__PojogenProperty__Group_10__021795 ) ; rule__PojogenProperty__Group_10__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_10__1_in_rule__PojogenProperty__Group_10__021798 ) ; rule__PojogenProperty__Group_10__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_10__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_10_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_10_0_in_rule__PojogenProperty__Group_10__0__Impl21825 ) ; rule__PojogenProperty__NameAssignment_10_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_10_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_10__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_10__1__Impl_in_rule__PojogenProperty__Group_10__121855 ) ; rule__PojogenProperty__Group_10__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_10__2_in_rule__PojogenProperty__Group_10__121858 ) ; rule__PojogenProperty__Group_10__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_10__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_10_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_10__1__Impl21888 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_10_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_10_1 ( ) ) ; } loop109 : do { int alt109 = <NUM_LIT:2> ; int LA109_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA109_0 == RULE_WS ) ) { alt109 = <NUM_LIT:1> ; } switch ( alt109 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_10__1__Impl21901 ) ; if ( state . failed ) return ; } break ; default : break loop109 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_10_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_10__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_10__2__Impl_in_rule__PojogenProperty__Group_10__221934 ) ; rule__PojogenProperty__Group_10__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_10__3_in_rule__PojogenProperty__Group_10__221937 ) ; rule__PojogenProperty__Group_10__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_10__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_10_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTableAssignment_10_2_in_rule__PojogenProperty__Group_10__2__Impl21964 ) ; rule__PojogenProperty__DbTableAssignment_10_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_10_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_10__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_10__3__Impl_in_rule__PojogenProperty__Group_10__321994 ) ; rule__PojogenProperty__Group_10__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_10__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_10_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_10_3__0_in_rule__PojogenProperty__Group_10__3__Impl22023 ) ; rule__PojogenProperty__Group_10_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_10_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_10_3 ( ) ) ; } loop110 : do { int alt110 = <NUM_LIT:2> ; int LA110_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA110_0 == RULE_WS ) ) { alt110 = <NUM_LIT:1> ; } switch ( alt110 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_10_3__0_in_rule__PojogenProperty__Group_10__3__Impl22035 ) ; rule__PojogenProperty__Group_10_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop110 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_10_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_10_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_10_3__0__Impl_in_rule__PojogenProperty__Group_10_3__022076 ) ; rule__PojogenProperty__Group_10_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_10_3__1_in_rule__PojogenProperty__Group_10_3__022079 ) ; rule__PojogenProperty__Group_10_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_10_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_10_3_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_10_3__0__Impl22109 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_10_3_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_10_3_0 ( ) ) ; } loop111 : do { int alt111 = <NUM_LIT:2> ; int LA111_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA111_0 == RULE_WS ) ) { alt111 = <NUM_LIT:1> ; } switch ( alt111 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_10_3__0__Impl22122 ) ; if ( state . failed ) return ; } break ; default : break loop111 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_10_3_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_10_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_10_3__1__Impl_in_rule__PojogenProperty__Group_10_3__122155 ) ; rule__PojogenProperty__Group_10_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_10_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypesAssignment_10_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__ColumnTypesAssignment_10_3_1_in_rule__PojogenProperty__Group_10_3__1__Impl22182 ) ; rule__PojogenProperty__ColumnTypesAssignment_10_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypesAssignment_10_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_11__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_11__0__Impl_in_rule__PojogenProperty__Group_11__022216 ) ; rule__PojogenProperty__Group_11__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_11__1_in_rule__PojogenProperty__Group_11__022219 ) ; rule__PojogenProperty__Group_11__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_11__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_11_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_11_0_in_rule__PojogenProperty__Group_11__0__Impl22246 ) ; rule__PojogenProperty__NameAssignment_11_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_11_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_11__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_11__1__Impl_in_rule__PojogenProperty__Group_11__122276 ) ; rule__PojogenProperty__Group_11__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_11__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_11_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_11_1__0_in_rule__PojogenProperty__Group_11__1__Impl22305 ) ; rule__PojogenProperty__Group_11_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_11_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_11_1 ( ) ) ; } loop112 : do { int alt112 = <NUM_LIT:2> ; int LA112_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA112_0 == RULE_WS ) ) { alt112 = <NUM_LIT:1> ; } switch ( alt112 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_11_1__0_in_rule__PojogenProperty__Group_11__1__Impl22317 ) ; rule__PojogenProperty__Group_11_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop112 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_11_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_11_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_11_1__0__Impl_in_rule__PojogenProperty__Group_11_1__022354 ) ; rule__PojogenProperty__Group_11_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_11_1__1_in_rule__PojogenProperty__Group_11_1__022357 ) ; rule__PojogenProperty__Group_11_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_11_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_11_1_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_11_1__0__Impl22387 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_11_1_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_11_1_0 ( ) ) ; } loop113 : do { int alt113 = <NUM_LIT:2> ; int LA113_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA113_0 == RULE_WS ) ) { alt113 = <NUM_LIT:1> ; } switch ( alt113 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_11_1__0__Impl22400 ) ; if ( state . failed ) return ; } break ; default : break loop113 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_11_1_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_11_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_11_1__1__Impl_in_rule__PojogenProperty__Group_11_1__122433 ) ; rule__PojogenProperty__Group_11_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_11_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getTablesAssignment_11_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__TablesAssignment_11_1_1_in_rule__PojogenProperty__Group_11_1__1__Impl22460 ) ; rule__PojogenProperty__TablesAssignment_11_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getTablesAssignment_11_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_12__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_12__0__Impl_in_rule__PojogenProperty__Group_12__022494 ) ; rule__PojogenProperty__Group_12__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_12__1_in_rule__PojogenProperty__Group_12__022497 ) ; rule__PojogenProperty__Group_12__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_12__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_12_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_12_0_in_rule__PojogenProperty__Group_12__0__Impl22524 ) ; rule__PojogenProperty__NameAssignment_12_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_12_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_12__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_12__1__Impl_in_rule__PojogenProperty__Group_12__122554 ) ; rule__PojogenProperty__Group_12__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_12__2_in_rule__PojogenProperty__Group_12__122557 ) ; rule__PojogenProperty__Group_12__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_12__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_12_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_12__1__Impl22587 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_12_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_12_1 ( ) ) ; } loop114 : do { int alt114 = <NUM_LIT:2> ; int LA114_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA114_0 == RULE_WS ) ) { alt114 = <NUM_LIT:1> ; } switch ( alt114 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_12__1__Impl22600 ) ; if ( state . failed ) return ; } break ; default : break loop114 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_12_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_12__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_12__2__Impl_in_rule__PojogenProperty__Group_12__222633 ) ; rule__PojogenProperty__Group_12__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_12__3_in_rule__PojogenProperty__Group_12__222636 ) ; rule__PojogenProperty__Group_12__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_12__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_12_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTableAssignment_12_2_in_rule__PojogenProperty__Group_12__2__Impl22663 ) ; rule__PojogenProperty__DbTableAssignment_12_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_12_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_12__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_12__3__Impl_in_rule__PojogenProperty__Group_12__322693 ) ; rule__PojogenProperty__Group_12__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_12__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_12_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_12_3__0_in_rule__PojogenProperty__Group_12__3__Impl22722 ) ; rule__PojogenProperty__Group_12_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_12_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_12_3 ( ) ) ; } loop115 : do { int alt115 = <NUM_LIT:2> ; int LA115_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA115_0 == RULE_WS ) ) { alt115 = <NUM_LIT:1> ; } switch ( alt115 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_12_3__0_in_rule__PojogenProperty__Group_12__3__Impl22734 ) ; rule__PojogenProperty__Group_12_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop115 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_12_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_12_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_12_3__0__Impl_in_rule__PojogenProperty__Group_12_3__022775 ) ; rule__PojogenProperty__Group_12_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_12_3__1_in_rule__PojogenProperty__Group_12_3__022778 ) ; rule__PojogenProperty__Group_12_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_12_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_12_3_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_12_3__0__Impl22808 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_12_3_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_12_3_0 ( ) ) ; } loop116 : do { int alt116 = <NUM_LIT:2> ; int LA116_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA116_0 == RULE_WS ) ) { alt116 = <NUM_LIT:1> ; } switch ( alt116 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_12_3__0__Impl22821 ) ; if ( state . failed ) return ; } break ; default : break loop116 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_12_3_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_12_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_12_3__1__Impl_in_rule__PojogenProperty__Group_12_3__122854 ) ; rule__PojogenProperty__Group_12_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_12_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnsAssignment_12_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__ColumnsAssignment_12_3_1_in_rule__PojogenProperty__Group_12_3__1__Impl22881 ) ; rule__PojogenProperty__ColumnsAssignment_12_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnsAssignment_12_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_13__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_13__0__Impl_in_rule__PojogenProperty__Group_13__022915 ) ; rule__PojogenProperty__Group_13__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_13__1_in_rule__PojogenProperty__Group_13__022918 ) ; rule__PojogenProperty__Group_13__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_13__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_13_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_13_0_in_rule__PojogenProperty__Group_13__0__Impl22945 ) ; rule__PojogenProperty__NameAssignment_13_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_13_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_13__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_13__1__Impl_in_rule__PojogenProperty__Group_13__122975 ) ; rule__PojogenProperty__Group_13__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_13__2_in_rule__PojogenProperty__Group_13__122978 ) ; rule__PojogenProperty__Group_13__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_13__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_13_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_13__1__Impl23008 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_13_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_13_1 ( ) ) ; } loop117 : do { int alt117 = <NUM_LIT:2> ; int LA117_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA117_0 == RULE_WS ) ) { alt117 = <NUM_LIT:1> ; } switch ( alt117 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_13__1__Impl23021 ) ; if ( state . failed ) return ; } break ; default : break loop117 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_13_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_13__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_13__2__Impl_in_rule__PojogenProperty__Group_13__223054 ) ; rule__PojogenProperty__Group_13__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_13__3_in_rule__PojogenProperty__Group_13__223057 ) ; rule__PojogenProperty__Group_13__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_13__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_13_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTableAssignment_13_2_in_rule__PojogenProperty__Group_13__2__Impl23084 ) ; rule__PojogenProperty__DbTableAssignment_13_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_13_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_13__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_13__3__Impl_in_rule__PojogenProperty__Group_13__323114 ) ; rule__PojogenProperty__Group_13__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_13__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_13_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_13_3__0_in_rule__PojogenProperty__Group_13__3__Impl23143 ) ; rule__PojogenProperty__Group_13_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_13_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_13_3 ( ) ) ; } loop118 : do { int alt118 = <NUM_LIT:2> ; int LA118_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA118_0 == RULE_WS ) ) { alt118 = <NUM_LIT:1> ; } switch ( alt118 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_13_3__0_in_rule__PojogenProperty__Group_13__3__Impl23155 ) ; rule__PojogenProperty__Group_13_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop118 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_13_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_13_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_13_3__0__Impl_in_rule__PojogenProperty__Group_13_3__023196 ) ; rule__PojogenProperty__Group_13_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_13_3__1_in_rule__PojogenProperty__Group_13_3__023199 ) ; rule__PojogenProperty__Group_13_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_13_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_13_3_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_13_3__0__Impl23229 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_13_3_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_13_3_0 ( ) ) ; } loop119 : do { int alt119 = <NUM_LIT:2> ; int LA119_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA119_0 == RULE_WS ) ) { alt119 = <NUM_LIT:1> ; } switch ( alt119 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_13_3__0__Impl23242 ) ; if ( state . failed ) return ; } break ; default : break loop119 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_13_3_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_13_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_13_3__1__Impl_in_rule__PojogenProperty__Group_13_3__123275 ) ; rule__PojogenProperty__Group_13_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_13_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getExportsAssignment_13_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__ExportsAssignment_13_3_1_in_rule__PojogenProperty__Group_13_3__1__Impl23302 ) ; rule__PojogenProperty__ExportsAssignment_13_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getExportsAssignment_13_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_14__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_14__0__Impl_in_rule__PojogenProperty__Group_14__023336 ) ; rule__PojogenProperty__Group_14__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_14__1_in_rule__PojogenProperty__Group_14__023339 ) ; rule__PojogenProperty__Group_14__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_14__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_14_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_14_0_in_rule__PojogenProperty__Group_14__0__Impl23366 ) ; rule__PojogenProperty__NameAssignment_14_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_14_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_14__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_14__1__Impl_in_rule__PojogenProperty__Group_14__123396 ) ; rule__PojogenProperty__Group_14__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_14__2_in_rule__PojogenProperty__Group_14__123399 ) ; rule__PojogenProperty__Group_14__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_14__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_14_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_14__1__Impl23429 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_14_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_14_1 ( ) ) ; } loop120 : do { int alt120 = <NUM_LIT:2> ; int LA120_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA120_0 == RULE_WS ) ) { alt120 = <NUM_LIT:1> ; } switch ( alt120 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_14__1__Impl23442 ) ; if ( state . failed ) return ; } break ; default : break loop120 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_14_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_14__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_14__2__Impl_in_rule__PojogenProperty__Group_14__223475 ) ; rule__PojogenProperty__Group_14__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_14__3_in_rule__PojogenProperty__Group_14__223478 ) ; rule__PojogenProperty__Group_14__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_14__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_14_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTableAssignment_14_2_in_rule__PojogenProperty__Group_14__2__Impl23505 ) ; rule__PojogenProperty__DbTableAssignment_14_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_14_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_14__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_14__3__Impl_in_rule__PojogenProperty__Group_14__323535 ) ; rule__PojogenProperty__Group_14__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_14__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_14_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_14_3__0_in_rule__PojogenProperty__Group_14__3__Impl23564 ) ; rule__PojogenProperty__Group_14_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_14_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_14_3 ( ) ) ; } loop121 : do { int alt121 = <NUM_LIT:2> ; int LA121_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA121_0 == RULE_WS ) ) { alt121 = <NUM_LIT:1> ; } switch ( alt121 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_14_3__0_in_rule__PojogenProperty__Group_14__3__Impl23576 ) ; rule__PojogenProperty__Group_14_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop121 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_14_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_14_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_14_3__0__Impl_in_rule__PojogenProperty__Group_14_3__023617 ) ; rule__PojogenProperty__Group_14_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_14_3__1_in_rule__PojogenProperty__Group_14_3__023620 ) ; rule__PojogenProperty__Group_14_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_14_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_14_3_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_14_3__0__Impl23650 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_14_3_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_14_3_0 ( ) ) ; } loop122 : do { int alt122 = <NUM_LIT:2> ; int LA122_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA122_0 == RULE_WS ) ) { alt122 = <NUM_LIT:1> ; } switch ( alt122 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_14_3__0__Impl23663 ) ; if ( state . failed ) return ; } break ; default : break loop122 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_14_3_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_14_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_14_3__1__Impl_in_rule__PojogenProperty__Group_14_3__123696 ) ; rule__PojogenProperty__Group_14_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_14_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsAssignment_14_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__ImportsAssignment_14_3_1_in_rule__PojogenProperty__Group_14_3__1__Impl23723 ) ; rule__PojogenProperty__ImportsAssignment_14_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsAssignment_14_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_15__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_15__0__Impl_in_rule__PojogenProperty__Group_15__023757 ) ; rule__PojogenProperty__Group_15__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_15__1_in_rule__PojogenProperty__Group_15__023760 ) ; rule__PojogenProperty__Group_15__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_15__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_15_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_15_0_in_rule__PojogenProperty__Group_15__0__Impl23787 ) ; rule__PojogenProperty__NameAssignment_15_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_15_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_15__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_15__1__Impl_in_rule__PojogenProperty__Group_15__123817 ) ; rule__PojogenProperty__Group_15__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_15__2_in_rule__PojogenProperty__Group_15__123820 ) ; rule__PojogenProperty__Group_15__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_15__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_15_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_15__1__Impl23850 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_15_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_15_1 ( ) ) ; } loop123 : do { int alt123 = <NUM_LIT:2> ; int LA123_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA123_0 == RULE_WS ) ) { alt123 = <NUM_LIT:1> ; } switch ( alt123 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_15__1__Impl23863 ) ; if ( state . failed ) return ; } break ; default : break loop123 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_15_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_15__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_15__2__Impl_in_rule__PojogenProperty__Group_15__223896 ) ; rule__PojogenProperty__Group_15__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_15__3_in_rule__PojogenProperty__Group_15__223899 ) ; rule__PojogenProperty__Group_15__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_15__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_15_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTableAssignment_15_2_in_rule__PojogenProperty__Group_15__2__Impl23926 ) ; rule__PojogenProperty__DbTableAssignment_15_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_15_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_15__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_15__3__Impl_in_rule__PojogenProperty__Group_15__323956 ) ; rule__PojogenProperty__Group_15__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_15__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_15_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_15_3__0_in_rule__PojogenProperty__Group_15__3__Impl23985 ) ; rule__PojogenProperty__Group_15_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_15_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_15_3 ( ) ) ; } loop124 : do { int alt124 = <NUM_LIT:2> ; int LA124_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA124_0 == RULE_WS ) ) { alt124 = <NUM_LIT:1> ; } switch ( alt124 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_15_3__0_in_rule__PojogenProperty__Group_15__3__Impl23997 ) ; rule__PojogenProperty__Group_15_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop124 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_15_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_15_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_15_3__0__Impl_in_rule__PojogenProperty__Group_15_3__024038 ) ; rule__PojogenProperty__Group_15_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_15_3__1_in_rule__PojogenProperty__Group_15_3__024041 ) ; rule__PojogenProperty__Group_15_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_15_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_15_3_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_15_3__0__Impl24071 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_15_3_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_15_3_0 ( ) ) ; } loop125 : do { int alt125 = <NUM_LIT:2> ; int LA125_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA125_0 == RULE_WS ) ) { alt125 = <NUM_LIT:1> ; } switch ( alt125 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_15_3__0__Impl24084 ) ; if ( state . failed ) return ; } break ; default : break loop125 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_15_3_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_15_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_15_3__1__Impl_in_rule__PojogenProperty__Group_15_3__124117 ) ; rule__PojogenProperty__Group_15_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_15_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsAssignment_15_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__ImportsAssignment_15_3_1_in_rule__PojogenProperty__Group_15_3__1__Impl24144 ) ; rule__PojogenProperty__ImportsAssignment_15_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsAssignment_15_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_16__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_16__0__Impl_in_rule__PojogenProperty__Group_16__024178 ) ; rule__PojogenProperty__Group_16__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_16__1_in_rule__PojogenProperty__Group_16__024181 ) ; rule__PojogenProperty__Group_16__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_16__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_16_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_16_0_in_rule__PojogenProperty__Group_16__0__Impl24208 ) ; rule__PojogenProperty__NameAssignment_16_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_16_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_16__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_16__1__Impl_in_rule__PojogenProperty__Group_16__124238 ) ; rule__PojogenProperty__Group_16__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_16__2_in_rule__PojogenProperty__Group_16__124241 ) ; rule__PojogenProperty__Group_16__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_16__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_16_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_16__1__Impl24271 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_16_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_16_1 ( ) ) ; } loop126 : do { int alt126 = <NUM_LIT:2> ; int LA126_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA126_0 == RULE_WS ) ) { alt126 = <NUM_LIT:1> ; } switch ( alt126 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_16__1__Impl24284 ) ; if ( state . failed ) return ; } break ; default : break loop126 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_16_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_16__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_16__2__Impl_in_rule__PojogenProperty__Group_16__224317 ) ; rule__PojogenProperty__Group_16__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_16__3_in_rule__PojogenProperty__Group_16__224320 ) ; rule__PojogenProperty__Group_16__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_16__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_16_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTableAssignment_16_2_in_rule__PojogenProperty__Group_16__2__Impl24347 ) ; rule__PojogenProperty__DbTableAssignment_16_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_16_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_16__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_16__3__Impl_in_rule__PojogenProperty__Group_16__324377 ) ; rule__PojogenProperty__Group_16__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_16__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_16_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_16_3__0_in_rule__PojogenProperty__Group_16__3__Impl24406 ) ; rule__PojogenProperty__Group_16_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_16_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_16_3 ( ) ) ; } loop127 : do { int alt127 = <NUM_LIT:2> ; int LA127_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA127_0 == RULE_WS ) ) { alt127 = <NUM_LIT:1> ; } switch ( alt127 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_16_3__0_in_rule__PojogenProperty__Group_16__3__Impl24418 ) ; rule__PojogenProperty__Group_16_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop127 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_16_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_16_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_16_3__0__Impl_in_rule__PojogenProperty__Group_16_3__024459 ) ; rule__PojogenProperty__Group_16_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_16_3__1_in_rule__PojogenProperty__Group_16_3__024462 ) ; rule__PojogenProperty__Group_16_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_16_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_16_3_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_16_3__0__Impl24492 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_16_3_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_16_3_0 ( ) ) ; } loop128 : do { int alt128 = <NUM_LIT:2> ; int LA128_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA128_0 == RULE_WS ) ) { alt128 = <NUM_LIT:1> ; } switch ( alt128 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_16_3__0__Impl24505 ) ; if ( state . failed ) return ; } break ; default : break loop128 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_16_3_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_16_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_16_3__1__Impl_in_rule__PojogenProperty__Group_16_3__124538 ) ; rule__PojogenProperty__Group_16_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_16_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getExportsAssignment_16_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__ExportsAssignment_16_3_1_in_rule__PojogenProperty__Group_16_3__1__Impl24565 ) ; rule__PojogenProperty__ExportsAssignment_16_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getExportsAssignment_16_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_17__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_17__0__Impl_in_rule__PojogenProperty__Group_17__024599 ) ; rule__PojogenProperty__Group_17__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_17__1_in_rule__PojogenProperty__Group_17__024602 ) ; rule__PojogenProperty__Group_17__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_17__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_17_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_17_0_in_rule__PojogenProperty__Group_17__0__Impl24629 ) ; rule__PojogenProperty__NameAssignment_17_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_17_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_17__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_17__1__Impl_in_rule__PojogenProperty__Group_17__124659 ) ; rule__PojogenProperty__Group_17__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_17__2_in_rule__PojogenProperty__Group_17__124662 ) ; rule__PojogenProperty__Group_17__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_17__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_17_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_17__1__Impl24692 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_17_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_17_1 ( ) ) ; } loop129 : do { int alt129 = <NUM_LIT:2> ; int LA129_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA129_0 == RULE_WS ) ) { alt129 = <NUM_LIT:1> ; } switch ( alt129 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_17__1__Impl24705 ) ; if ( state . failed ) return ; } break ; default : break loop129 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_17_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_17__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_17__2__Impl_in_rule__PojogenProperty__Group_17__224738 ) ; rule__PojogenProperty__Group_17__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_17__3_in_rule__PojogenProperty__Group_17__224741 ) ; rule__PojogenProperty__Group_17__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_17__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_17_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTableAssignment_17_2_in_rule__PojogenProperty__Group_17__2__Impl24768 ) ; rule__PojogenProperty__DbTableAssignment_17_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_17_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_17__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_17__3__Impl_in_rule__PojogenProperty__Group_17__324798 ) ; rule__PojogenProperty__Group_17__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_17__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_17_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_17_3__0_in_rule__PojogenProperty__Group_17__3__Impl24827 ) ; rule__PojogenProperty__Group_17_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_17_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_17_3 ( ) ) ; } loop130 : do { int alt130 = <NUM_LIT:2> ; int LA130_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA130_0 == RULE_WS ) ) { alt130 = <NUM_LIT:1> ; } switch ( alt130 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_17_3__0_in_rule__PojogenProperty__Group_17__3__Impl24839 ) ; rule__PojogenProperty__Group_17_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop130 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_17_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_17_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_17_3__0__Impl_in_rule__PojogenProperty__Group_17_3__024880 ) ; rule__PojogenProperty__Group_17_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_17_3__1_in_rule__PojogenProperty__Group_17_3__024883 ) ; rule__PojogenProperty__Group_17_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_17_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_17_3_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_17_3__0__Impl24913 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_17_3_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_17_3_0 ( ) ) ; } loop131 : do { int alt131 = <NUM_LIT:2> ; int LA131_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA131_0 == RULE_WS ) ) { alt131 = <NUM_LIT:1> ; } switch ( alt131 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_17_3__0__Impl24926 ) ; if ( state . failed ) return ; } break ; default : break loop131 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_17_3_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_17_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_17_3__1__Impl_in_rule__PojogenProperty__Group_17_3__124959 ) ; rule__PojogenProperty__Group_17_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_17_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsAssignment_17_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__ImportsAssignment_17_3_1_in_rule__PojogenProperty__Group_17_3__1__Impl24986 ) ; rule__PojogenProperty__ImportsAssignment_17_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsAssignment_17_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_18__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_18__0__Impl_in_rule__PojogenProperty__Group_18__025020 ) ; rule__PojogenProperty__Group_18__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_18__1_in_rule__PojogenProperty__Group_18__025023 ) ; rule__PojogenProperty__Group_18__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_18__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_18_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_18_0_in_rule__PojogenProperty__Group_18__0__Impl25050 ) ; rule__PojogenProperty__NameAssignment_18_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_18_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_18__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_18__1__Impl_in_rule__PojogenProperty__Group_18__125080 ) ; rule__PojogenProperty__Group_18__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_18__2_in_rule__PojogenProperty__Group_18__125083 ) ; rule__PojogenProperty__Group_18__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_18__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_18_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_18__1__Impl25113 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_18_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_18_1 ( ) ) ; } loop132 : do { int alt132 = <NUM_LIT:2> ; int LA132_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA132_0 == RULE_WS ) ) { alt132 = <NUM_LIT:1> ; } switch ( alt132 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_18__1__Impl25126 ) ; if ( state . failed ) return ; } break ; default : break loop132 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_18_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_18__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_18__2__Impl_in_rule__PojogenProperty__Group_18__225159 ) ; rule__PojogenProperty__Group_18__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_18__3_in_rule__PojogenProperty__Group_18__225162 ) ; rule__PojogenProperty__Group_18__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_18__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_18_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTableAssignment_18_2_in_rule__PojogenProperty__Group_18__2__Impl25189 ) ; rule__PojogenProperty__DbTableAssignment_18_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_18_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_18__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_18__3__Impl_in_rule__PojogenProperty__Group_18__325219 ) ; rule__PojogenProperty__Group_18__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_18__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_18_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_18_3__0_in_rule__PojogenProperty__Group_18__3__Impl25248 ) ; rule__PojogenProperty__Group_18_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_18_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_18_3 ( ) ) ; } loop133 : do { int alt133 = <NUM_LIT:2> ; int LA133_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA133_0 == RULE_WS ) ) { alt133 = <NUM_LIT:1> ; } switch ( alt133 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_18_3__0_in_rule__PojogenProperty__Group_18__3__Impl25260 ) ; rule__PojogenProperty__Group_18_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop133 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_18_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_18_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_18_3__0__Impl_in_rule__PojogenProperty__Group_18_3__025301 ) ; rule__PojogenProperty__Group_18_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_18_3__1_in_rule__PojogenProperty__Group_18_3__025304 ) ; rule__PojogenProperty__Group_18_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_18_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_18_3_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_18_3__0__Impl25334 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_18_3_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_18_3_0 ( ) ) ; } loop134 : do { int alt134 = <NUM_LIT:2> ; int LA134_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA134_0 == RULE_WS ) ) { alt134 = <NUM_LIT:1> ; } switch ( alt134 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_18_3__0__Impl25347 ) ; if ( state . failed ) return ; } break ; default : break loop134 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_18_3_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_18_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_18_3__1__Impl_in_rule__PojogenProperty__Group_18_3__125380 ) ; rule__PojogenProperty__Group_18_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_18_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getMany2sAssignment_18_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Many2sAssignment_18_3_1_in_rule__PojogenProperty__Group_18_3__1__Impl25407 ) ; rule__PojogenProperty__Many2sAssignment_18_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getMany2sAssignment_18_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_19__0__Impl_in_rule__PojogenProperty__Group_19__025441 ) ; rule__PojogenProperty__Group_19__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_19__1_in_rule__PojogenProperty__Group_19__025444 ) ; rule__PojogenProperty__Group_19__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_19_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_19_0_in_rule__PojogenProperty__Group_19__0__Impl25471 ) ; rule__PojogenProperty__NameAssignment_19_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_19_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_19__1__Impl_in_rule__PojogenProperty__Group_19__125501 ) ; rule__PojogenProperty__Group_19__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_19__2_in_rule__PojogenProperty__Group_19__125504 ) ; rule__PojogenProperty__Group_19__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_19_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_19__1__Impl25534 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_19_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_19_1 ( ) ) ; } loop135 : do { int alt135 = <NUM_LIT:2> ; int LA135_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA135_0 == RULE_WS ) ) { alt135 = <NUM_LIT:1> ; } switch ( alt135 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_19__1__Impl25547 ) ; if ( state . failed ) return ; } break ; default : break loop135 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_19_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_19__2__Impl_in_rule__PojogenProperty__Group_19__225580 ) ; rule__PojogenProperty__Group_19__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_19__3_in_rule__PojogenProperty__Group_19__225583 ) ; rule__PojogenProperty__Group_19__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_19_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbTableAssignment_19_2_in_rule__PojogenProperty__Group_19__2__Impl25610 ) ; rule__PojogenProperty__DbTableAssignment_19_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_19_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_19__3__Impl_in_rule__PojogenProperty__Group_19__325640 ) ; rule__PojogenProperty__Group_19__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_19__4_in_rule__PojogenProperty__Group_19__325643 ) ; rule__PojogenProperty__Group_19__4 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_19_3 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_19__3__Impl25673 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_19_3 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_19_3 ( ) ) ; } loop136 : do { int alt136 = <NUM_LIT:2> ; int LA136_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA136_0 == RULE_WS ) ) { alt136 = <NUM_LIT:1> ; } switch ( alt136 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_19__3__Impl25686 ) ; if ( state . failed ) return ; } break ; default : break loop136 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_19_3 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19__4 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_19__4__Impl_in_rule__PojogenProperty__Group_19__425719 ) ; rule__PojogenProperty__Group_19__4__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_19__5_in_rule__PojogenProperty__Group_19__425722 ) ; rule__PojogenProperty__Group_19__5 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19__4__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnAssignment_19_4 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__DbColumnAssignment_19_4_in_rule__PojogenProperty__Group_19__4__Impl25749 ) ; rule__PojogenProperty__DbColumnAssignment_19_4 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnAssignment_19_4 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19__5 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_19__5__Impl_in_rule__PojogenProperty__Group_19__525779 ) ; rule__PojogenProperty__Group_19__5__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19__5__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_19_5 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_19_5__0_in_rule__PojogenProperty__Group_19__5__Impl25808 ) ; rule__PojogenProperty__Group_19_5__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_19_5 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_19_5 ( ) ) ; } loop137 : do { int alt137 = <NUM_LIT:2> ; int LA137_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA137_0 == RULE_WS ) ) { alt137 = <NUM_LIT:1> ; } switch ( alt137 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_19_5__0_in_rule__PojogenProperty__Group_19__5__Impl25820 ) ; rule__PojogenProperty__Group_19_5__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop137 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_19_5 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19_5__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_19_5__0__Impl_in_rule__PojogenProperty__Group_19_5__025865 ) ; rule__PojogenProperty__Group_19_5__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_19_5__1_in_rule__PojogenProperty__Group_19_5__025868 ) ; rule__PojogenProperty__Group_19_5__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19_5__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_19_5_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_19_5__0__Impl25898 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_19_5_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_19_5_0 ( ) ) ; } loop138 : do { int alt138 = <NUM_LIT:2> ; int LA138_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA138_0 == RULE_WS ) ) { alt138 = <NUM_LIT:1> ; } switch ( alt138 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_19_5__0__Impl25911 ) ; if ( state . failed ) return ; } break ; default : break loop138 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_19_5_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19_5__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_19_5__1__Impl_in_rule__PojogenProperty__Group_19_5__125944 ) ; rule__PojogenProperty__Group_19_5__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_19_5__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getInheritanceAssignment_19_5_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__InheritanceAssignment_19_5_1_in_rule__PojogenProperty__Group_19_5__1__Impl25971 ) ; rule__PojogenProperty__InheritanceAssignment_19_5_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getInheritanceAssignment_19_5_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_20__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_20__0__Impl_in_rule__PojogenProperty__Group_20__026005 ) ; rule__PojogenProperty__Group_20__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_20__1_in_rule__PojogenProperty__Group_20__026008 ) ; rule__PojogenProperty__Group_20__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_20__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_20_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_20_0_in_rule__PojogenProperty__Group_20__0__Impl26035 ) ; rule__PojogenProperty__NameAssignment_20_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_20_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_20__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_20__1__Impl_in_rule__PojogenProperty__Group_20__126065 ) ; rule__PojogenProperty__Group_20__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_20__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_20_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_20_1__0_in_rule__PojogenProperty__Group_20__1__Impl26094 ) ; rule__PojogenProperty__Group_20_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_20_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_20_1 ( ) ) ; } loop139 : do { int alt139 = <NUM_LIT:2> ; int LA139_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA139_0 == RULE_WS ) ) { alt139 = <NUM_LIT:1> ; } switch ( alt139 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_20_1__0_in_rule__PojogenProperty__Group_20__1__Impl26106 ) ; rule__PojogenProperty__Group_20_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop139 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_20_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_20_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_20_1__0__Impl_in_rule__PojogenProperty__Group_20_1__026143 ) ; rule__PojogenProperty__Group_20_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_20_1__1_in_rule__PojogenProperty__Group_20_1__026146 ) ; rule__PojogenProperty__Group_20_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_20_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_20_1_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_20_1__0__Impl26176 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_20_1_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_20_1_0 ( ) ) ; } loop140 : do { int alt140 = <NUM_LIT:2> ; int LA140_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA140_0 == RULE_WS ) ) { alt140 = <NUM_LIT:1> ; } switch ( alt140 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_20_1__0__Impl26189 ) ; if ( state . failed ) return ; } break ; default : break loop140 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_20_1_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_20_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_20_1__1__Impl_in_rule__PojogenProperty__Group_20_1__126222 ) ; rule__PojogenProperty__Group_20_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_20_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getMethodsAssignment_20_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__MethodsAssignment_20_1_1_in_rule__PojogenProperty__Group_20_1__1__Impl26249 ) ; rule__PojogenProperty__MethodsAssignment_20_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getMethodsAssignment_20_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_21__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_21__0__Impl_in_rule__PojogenProperty__Group_21__026283 ) ; rule__PojogenProperty__Group_21__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_21__1_in_rule__PojogenProperty__Group_21__026286 ) ; rule__PojogenProperty__Group_21__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_21__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_21_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_21_0_in_rule__PojogenProperty__Group_21__0__Impl26313 ) ; rule__PojogenProperty__NameAssignment_21_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_21_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_21__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_21__1__Impl_in_rule__PojogenProperty__Group_21__126343 ) ; rule__PojogenProperty__Group_21__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_21__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_21_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__Group_21_1__0_in_rule__PojogenProperty__Group_21__1__Impl26372 ) ; rule__PojogenProperty__Group_21_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_21_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_21_1 ( ) ) ; } loop141 : do { int alt141 = <NUM_LIT:2> ; int LA141_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA141_0 == RULE_WS ) ) { alt141 = <NUM_LIT:1> ; } switch ( alt141 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojogenProperty__Group_21_1__0_in_rule__PojogenProperty__Group_21__1__Impl26384 ) ; rule__PojogenProperty__Group_21_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop141 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_21_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_21_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_21_1__0__Impl_in_rule__PojogenProperty__Group_21_1__026421 ) ; rule__PojogenProperty__Group_21_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_21_1__1_in_rule__PojogenProperty__Group_21_1__026424 ) ; rule__PojogenProperty__Group_21_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_21_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_21_1_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_21_1__0__Impl26454 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_21_1_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_21_1_0 ( ) ) ; } loop142 : do { int alt142 = <NUM_LIT:2> ; int LA142_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA142_0 == RULE_WS ) ) { alt142 = <NUM_LIT:1> ; } switch ( alt142 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_21_1__0__Impl26467 ) ; if ( state . failed ) return ; } break ; default : break loop142 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_21_1_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_21_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_21_1__1__Impl_in_rule__PojogenProperty__Group_21_1__126500 ) ; rule__PojogenProperty__Group_21_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_21_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getToImplementsAssignment_21_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__ToImplementsAssignment_21_1_1_in_rule__PojogenProperty__Group_21_1__1__Impl26527 ) ; rule__PojogenProperty__ToImplementsAssignment_21_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getToImplementsAssignment_21_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_22__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_22__0__Impl_in_rule__PojogenProperty__Group_22__026561 ) ; rule__PojogenProperty__Group_22__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_22__1_in_rule__PojogenProperty__Group_22__026564 ) ; rule__PojogenProperty__Group_22__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_22__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_22_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__NameAssignment_22_0_in_rule__PojogenProperty__Group_22__0__Impl26591 ) ; rule__PojogenProperty__NameAssignment_22_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_22_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_22__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_22__1__Impl_in_rule__PojogenProperty__Group_22__126621 ) ; rule__PojogenProperty__Group_22__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojogenProperty__Group_22__2_in_rule__PojogenProperty__Group_22__126624 ) ; rule__PojogenProperty__Group_22__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_22__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_22_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_22__1__Impl26654 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_22_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_22_1 ( ) ) ; } loop143 : do { int alt143 = <NUM_LIT:2> ; int LA143_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA143_0 == RULE_WS ) ) { alt143 = <NUM_LIT:1> ; } switch ( alt143 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_22__1__Impl26667 ) ; if ( state . failed ) return ; } break ; default : break loop143 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_22_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_22__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojogenProperty__Group_22__2__Impl_in_rule__PojogenProperty__Group_22__226700 ) ; rule__PojogenProperty__Group_22__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Group_22__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getToExtendsAssignment_22_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojogenProperty__ToExtendsAssignment_22_2_in_rule__PojogenProperty__Group_22__2__Impl26727 ) ; rule__PojogenProperty__ToExtendsAssignment_22_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getToExtendsAssignment_22_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PropertyValue__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PropertyValue__Group__0__Impl_in_rule__PropertyValue__Group__026763 ) ; rule__PropertyValue__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PropertyValue__Group__1_in_rule__PropertyValue__Group__026766 ) ; rule__PropertyValue__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PropertyValue__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getAlternatives_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PropertyValue__Alternatives_0_in_rule__PropertyValue__Group__0__Impl26793 ) ; rule__PropertyValue__Alternatives_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getAlternatives_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PropertyValue__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PropertyValue__Group__1__Impl_in_rule__PropertyValue__Group__126823 ) ; rule__PropertyValue__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PropertyValue__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getGroup_1 ( ) ) ; } loop144 : do { int alt144 = <NUM_LIT:2> ; int LA144_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA144_0 >= RULE_REST && LA144_0 <= RULE_WS ) ) ) { alt144 = <NUM_LIT:1> ; } switch ( alt144 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PropertyValue__Group_1__0_in_rule__PropertyValue__Group__1__Impl26850 ) ; rule__PropertyValue__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop144 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getGroup_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PropertyValue__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PropertyValue__Group_1__0__Impl_in_rule__PropertyValue__Group_1__026885 ) ; rule__PropertyValue__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PropertyValue__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueAccess ( ) . getAlternatives_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PropertyValue__Alternatives_1_0_in_rule__PropertyValue__Group_1__0__Impl26912 ) ; rule__PropertyValue__Alternatives_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueAccess ( ) . getAlternatives_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoDefinition__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoDefinition__Group__0__Impl_in_rule__PojoDefinition__Group__026944 ) ; rule__PojoDefinition__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoDefinition__Group__1_in_rule__PojoDefinition__Group__026947 ) ; rule__PojoDefinition__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoDefinition__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoDefinitionAccess ( ) . getPojoKeyword_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_48_in_rule__PojoDefinition__Group__0__Impl26975 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoDefinitionAccess ( ) . getPojoKeyword_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoDefinition__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoDefinition__Group__1__Impl_in_rule__PojoDefinition__Group__127006 ) ; rule__PojoDefinition__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoDefinition__Group__2_in_rule__PojoDefinition__Group__127009 ) ; rule__PojoDefinition__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoDefinition__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoDefinitionAccess ( ) . getNameAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoDefinition__NameAssignment_1_in_rule__PojoDefinition__Group__1__Impl27036 ) ; rule__PojoDefinition__NameAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoDefinitionAccess ( ) . getNameAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoDefinition__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoDefinition__Group__2__Impl_in_rule__PojoDefinition__Group__227066 ) ; rule__PojoDefinition__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoDefinition__Group__3_in_rule__PojoDefinition__Group__227069 ) ; rule__PojoDefinition__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoDefinition__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoDefinitionAccess ( ) . getClassAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoDefinition__ClassAssignment_2_in_rule__PojoDefinition__Group__2__Impl27096 ) ; rule__PojoDefinition__ClassAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoDefinitionAccess ( ) . getClassAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoDefinition__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoDefinition__Group__3__Impl_in_rule__PojoDefinition__Group__327126 ) ; rule__PojoDefinition__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoDefinition__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoDefinitionAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__PojoDefinition__Group__3__Impl27153 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoDefinitionAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsage__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ColumnUsage__Group__0__Impl_in_rule__ColumnUsage__Group__027190 ) ; rule__ColumnUsage__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ColumnUsage__Group__1_in_rule__ColumnUsage__Group__027193 ) ; rule__ColumnUsage__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsage__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageAccess ( ) . getColKeyword_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_49_in_rule__ColumnUsage__Group__0__Impl27221 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageAccess ( ) . getColKeyword_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsage__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ColumnUsage__Group__1__Impl_in_rule__ColumnUsage__Group__127252 ) ; rule__ColumnUsage__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ColumnUsage__Group__2_in_rule__ColumnUsage__Group__127255 ) ; rule__ColumnUsage__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsage__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageAccess ( ) . getStatementAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__ColumnUsage__StatementAssignment_1_in_rule__ColumnUsage__Group__1__Impl27282 ) ; rule__ColumnUsage__StatementAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageAccess ( ) . getStatementAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsage__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ColumnUsage__Group__2__Impl_in_rule__ColumnUsage__Group__227312 ) ; rule__ColumnUsage__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ColumnUsage__Group__3_in_rule__ColumnUsage__Group__227315 ) ; rule__ColumnUsage__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsage__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageAccess ( ) . getPojoAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__ColumnUsage__PojoAssignment_2_in_rule__ColumnUsage__Group__2__Impl27342 ) ; rule__ColumnUsage__PojoAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageAccess ( ) . getPojoAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsage__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ColumnUsage__Group__3__Impl_in_rule__ColumnUsage__Group__327372 ) ; rule__ColumnUsage__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsage__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__ColumnUsage__Group__3__Impl27399 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsage__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IdentifierUsage__Group__0__Impl_in_rule__IdentifierUsage__Group__027436 ) ; rule__IdentifierUsage__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IdentifierUsage__Group__1_in_rule__IdentifierUsage__Group__027439 ) ; rule__IdentifierUsage__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsage__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageAccess ( ) . getIdentKeyword_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_50_in_rule__IdentifierUsage__Group__0__Impl27467 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageAccess ( ) . getIdentKeyword_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsage__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IdentifierUsage__Group__1__Impl_in_rule__IdentifierUsage__Group__127498 ) ; rule__IdentifierUsage__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IdentifierUsage__Group__2_in_rule__IdentifierUsage__Group__127501 ) ; rule__IdentifierUsage__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsage__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageAccess ( ) . getStatementAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IdentifierUsage__StatementAssignment_1_in_rule__IdentifierUsage__Group__1__Impl27528 ) ; rule__IdentifierUsage__StatementAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageAccess ( ) . getStatementAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsage__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IdentifierUsage__Group__2__Impl_in_rule__IdentifierUsage__Group__227558 ) ; rule__IdentifierUsage__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IdentifierUsage__Group__3_in_rule__IdentifierUsage__Group__227561 ) ; rule__IdentifierUsage__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsage__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageAccess ( ) . getPojoAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__IdentifierUsage__PojoAssignment_2_in_rule__IdentifierUsage__Group__2__Impl27588 ) ; rule__IdentifierUsage__PojoAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageAccess ( ) . getPojoAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsage__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IdentifierUsage__Group__3__Impl_in_rule__IdentifierUsage__Group__327618 ) ; rule__IdentifierUsage__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsage__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__IdentifierUsage__Group__3__Impl27645 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsage__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ConstantUsage__Group__0__Impl_in_rule__ConstantUsage__Group__027682 ) ; rule__ConstantUsage__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ConstantUsage__Group__1_in_rule__ConstantUsage__Group__027685 ) ; rule__ConstantUsage__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsage__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageAccess ( ) . getConstKeyword_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_51_in_rule__ConstantUsage__Group__0__Impl27713 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageAccess ( ) . getConstKeyword_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsage__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ConstantUsage__Group__1__Impl_in_rule__ConstantUsage__Group__127744 ) ; rule__ConstantUsage__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ConstantUsage__Group__2_in_rule__ConstantUsage__Group__127747 ) ; rule__ConstantUsage__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsage__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageAccess ( ) . getStatementAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__ConstantUsage__StatementAssignment_1_in_rule__ConstantUsage__Group__1__Impl27774 ) ; rule__ConstantUsage__StatementAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageAccess ( ) . getStatementAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsage__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ConstantUsage__Group__2__Impl_in_rule__ConstantUsage__Group__227804 ) ; rule__ConstantUsage__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ConstantUsage__Group__3_in_rule__ConstantUsage__Group__227807 ) ; rule__ConstantUsage__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsage__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageAccess ( ) . getPojoAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__ConstantUsage__PojoAssignment_2_in_rule__ConstantUsage__Group__2__Impl27834 ) ; rule__ConstantUsage__PojoAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageAccess ( ) . getPojoAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsage__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ConstantUsage__Group__3__Impl_in_rule__ConstantUsage__Group__327864 ) ; rule__ConstantUsage__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsage__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__ConstantUsage__Group__3__Impl27891 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsage__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingUsage__Group__0__Impl_in_rule__MappingUsage__Group__027928 ) ; rule__MappingUsage__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingUsage__Group__1_in_rule__MappingUsage__Group__027931 ) ; rule__MappingUsage__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsage__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageAccess ( ) . getOutKeyword_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_52_in_rule__MappingUsage__Group__0__Impl27959 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageAccess ( ) . getOutKeyword_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsage__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingUsage__Group__1__Impl_in_rule__MappingUsage__Group__127990 ) ; rule__MappingUsage__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingUsage__Group__2_in_rule__MappingUsage__Group__127993 ) ; rule__MappingUsage__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsage__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageAccess ( ) . getStatementAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingUsage__StatementAssignment_1_in_rule__MappingUsage__Group__1__Impl28020 ) ; rule__MappingUsage__StatementAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageAccess ( ) . getStatementAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsage__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingUsage__Group__2__Impl_in_rule__MappingUsage__Group__228050 ) ; rule__MappingUsage__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingUsage__Group__3_in_rule__MappingUsage__Group__228053 ) ; rule__MappingUsage__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsage__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageAccess ( ) . getPojoAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingUsage__PojoAssignment_2_in_rule__MappingUsage__Group__2__Impl28080 ) ; rule__MappingUsage__PojoAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageAccess ( ) . getPojoAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsage__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingUsage__Group__3__Impl_in_rule__MappingUsage__Group__328110 ) ; rule__MappingUsage__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsage__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__MappingUsage__Group__3__Impl28137 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsageExt__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ColumnUsageExt__Group__0__Impl_in_rule__ColumnUsageExt__Group__028174 ) ; rule__ColumnUsageExt__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ColumnUsageExt__Group__1_in_rule__ColumnUsageExt__Group__028177 ) ; rule__ColumnUsageExt__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsageExt__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageExtAccess ( ) . getColxKeyword_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_53_in_rule__ColumnUsageExt__Group__0__Impl28205 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageExtAccess ( ) . getColxKeyword_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsageExt__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ColumnUsageExt__Group__1__Impl_in_rule__ColumnUsageExt__Group__128236 ) ; rule__ColumnUsageExt__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ColumnUsageExt__Group__2_in_rule__ColumnUsageExt__Group__128239 ) ; rule__ColumnUsageExt__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsageExt__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageExtAccess ( ) . getStatementAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__ColumnUsageExt__StatementAssignment_1_in_rule__ColumnUsageExt__Group__1__Impl28266 ) ; rule__ColumnUsageExt__StatementAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageExtAccess ( ) . getStatementAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsageExt__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ColumnUsageExt__Group__2__Impl_in_rule__ColumnUsageExt__Group__228296 ) ; rule__ColumnUsageExt__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ColumnUsageExt__Group__3_in_rule__ColumnUsageExt__Group__228299 ) ; rule__ColumnUsageExt__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsageExt__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageExtAccess ( ) . getPojoAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__ColumnUsageExt__PojoAssignment_2_in_rule__ColumnUsageExt__Group__2__Impl28326 ) ; rule__ColumnUsageExt__PojoAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageExtAccess ( ) . getPojoAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsageExt__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ColumnUsageExt__Group__3__Impl_in_rule__ColumnUsageExt__Group__328356 ) ; rule__ColumnUsageExt__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsageExt__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageExtAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__ColumnUsageExt__Group__3__Impl28383 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageExtAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsageExt__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IdentifierUsageExt__Group__0__Impl_in_rule__IdentifierUsageExt__Group__028420 ) ; rule__IdentifierUsageExt__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IdentifierUsageExt__Group__1_in_rule__IdentifierUsageExt__Group__028423 ) ; rule__IdentifierUsageExt__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsageExt__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageExtAccess ( ) . getIdentxKeyword_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_54_in_rule__IdentifierUsageExt__Group__0__Impl28451 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageExtAccess ( ) . getIdentxKeyword_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsageExt__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IdentifierUsageExt__Group__1__Impl_in_rule__IdentifierUsageExt__Group__128482 ) ; rule__IdentifierUsageExt__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IdentifierUsageExt__Group__2_in_rule__IdentifierUsageExt__Group__128485 ) ; rule__IdentifierUsageExt__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsageExt__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageExtAccess ( ) . getStatementAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IdentifierUsageExt__StatementAssignment_1_in_rule__IdentifierUsageExt__Group__1__Impl28512 ) ; rule__IdentifierUsageExt__StatementAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageExtAccess ( ) . getStatementAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsageExt__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IdentifierUsageExt__Group__2__Impl_in_rule__IdentifierUsageExt__Group__228542 ) ; rule__IdentifierUsageExt__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IdentifierUsageExt__Group__3_in_rule__IdentifierUsageExt__Group__228545 ) ; rule__IdentifierUsageExt__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsageExt__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageExtAccess ( ) . getPojoAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__IdentifierUsageExt__PojoAssignment_2_in_rule__IdentifierUsageExt__Group__2__Impl28572 ) ; rule__IdentifierUsageExt__PojoAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageExtAccess ( ) . getPojoAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsageExt__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IdentifierUsageExt__Group__3__Impl_in_rule__IdentifierUsageExt__Group__328602 ) ; rule__IdentifierUsageExt__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsageExt__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageExtAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__IdentifierUsageExt__Group__3__Impl28629 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageExtAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsageExt__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ConstantUsageExt__Group__0__Impl_in_rule__ConstantUsageExt__Group__028666 ) ; rule__ConstantUsageExt__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ConstantUsageExt__Group__1_in_rule__ConstantUsageExt__Group__028669 ) ; rule__ConstantUsageExt__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsageExt__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageExtAccess ( ) . getConstxKeyword_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_55_in_rule__ConstantUsageExt__Group__0__Impl28697 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageExtAccess ( ) . getConstxKeyword_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsageExt__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ConstantUsageExt__Group__1__Impl_in_rule__ConstantUsageExt__Group__128728 ) ; rule__ConstantUsageExt__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ConstantUsageExt__Group__2_in_rule__ConstantUsageExt__Group__128731 ) ; rule__ConstantUsageExt__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsageExt__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageExtAccess ( ) . getStatementAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__ConstantUsageExt__StatementAssignment_1_in_rule__ConstantUsageExt__Group__1__Impl28758 ) ; rule__ConstantUsageExt__StatementAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageExtAccess ( ) . getStatementAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsageExt__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ConstantUsageExt__Group__2__Impl_in_rule__ConstantUsageExt__Group__228788 ) ; rule__ConstantUsageExt__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ConstantUsageExt__Group__3_in_rule__ConstantUsageExt__Group__228791 ) ; rule__ConstantUsageExt__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsageExt__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageExtAccess ( ) . getPojoAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__ConstantUsageExt__PojoAssignment_2_in_rule__ConstantUsageExt__Group__2__Impl28818 ) ; rule__ConstantUsageExt__PojoAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageExtAccess ( ) . getPojoAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsageExt__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__ConstantUsageExt__Group__3__Impl_in_rule__ConstantUsageExt__Group__328848 ) ; rule__ConstantUsageExt__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsageExt__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageExtAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__ConstantUsageExt__Group__3__Impl28875 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageExtAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsageExt__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingUsageExt__Group__0__Impl_in_rule__MappingUsageExt__Group__028912 ) ; rule__MappingUsageExt__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingUsageExt__Group__1_in_rule__MappingUsageExt__Group__028915 ) ; rule__MappingUsageExt__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsageExt__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageExtAccess ( ) . getOutxKeyword_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_56_in_rule__MappingUsageExt__Group__0__Impl28943 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageExtAccess ( ) . getOutxKeyword_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsageExt__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingUsageExt__Group__1__Impl_in_rule__MappingUsageExt__Group__128974 ) ; rule__MappingUsageExt__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingUsageExt__Group__2_in_rule__MappingUsageExt__Group__128977 ) ; rule__MappingUsageExt__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsageExt__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageExtAccess ( ) . getStatementAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingUsageExt__StatementAssignment_1_in_rule__MappingUsageExt__Group__1__Impl29004 ) ; rule__MappingUsageExt__StatementAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageExtAccess ( ) . getStatementAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsageExt__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingUsageExt__Group__2__Impl_in_rule__MappingUsageExt__Group__229034 ) ; rule__MappingUsageExt__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingUsageExt__Group__3_in_rule__MappingUsageExt__Group__229037 ) ; rule__MappingUsageExt__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsageExt__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageExtAccess ( ) . getPojoAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingUsageExt__PojoAssignment_2_in_rule__MappingUsageExt__Group__2__Impl29064 ) ; rule__MappingUsageExt__PojoAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageExtAccess ( ) . getPojoAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsageExt__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingUsageExt__Group__3__Impl_in_rule__MappingUsageExt__Group__329094 ) ; rule__MappingUsageExt__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsageExt__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageExtAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__MappingUsageExt__Group__3__Impl29121 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageExtAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableDefinition__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__TableDefinition__Group__0__Impl_in_rule__TableDefinition__Group__029158 ) ; rule__TableDefinition__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableDefinition__Group__1_in_rule__TableDefinition__Group__029161 ) ; rule__TableDefinition__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableDefinition__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableDefinitionAccess ( ) . getTableKeyword_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_57_in_rule__TableDefinition__Group__0__Impl29189 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableDefinitionAccess ( ) . getTableKeyword_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableDefinition__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__TableDefinition__Group__1__Impl_in_rule__TableDefinition__Group__129220 ) ; rule__TableDefinition__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableDefinition__Group__2_in_rule__TableDefinition__Group__129223 ) ; rule__TableDefinition__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableDefinition__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableDefinitionAccess ( ) . getNameAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__TableDefinition__NameAssignment_1_in_rule__TableDefinition__Group__1__Impl29250 ) ; rule__TableDefinition__NameAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableDefinitionAccess ( ) . getNameAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableDefinition__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__TableDefinition__Group__2__Impl_in_rule__TableDefinition__Group__229280 ) ; rule__TableDefinition__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableDefinition__Group__3_in_rule__TableDefinition__Group__229283 ) ; rule__TableDefinition__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableDefinition__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableDefinitionAccess ( ) . getTableAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__TableDefinition__TableAssignment_2_in_rule__TableDefinition__Group__2__Impl29310 ) ; rule__TableDefinition__TableAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableDefinitionAccess ( ) . getTableAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableDefinition__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__TableDefinition__Group__3__Impl_in_rule__TableDefinition__Group__329340 ) ; rule__TableDefinition__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableDefinition__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableDefinitionAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__TableDefinition__Group__3__Impl29367 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableDefinitionAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__TableUsage__Group__0__Impl_in_rule__TableUsage__Group__029404 ) ; rule__TableUsage__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableUsage__Group__1_in_rule__TableUsage__Group__029407 ) ; rule__TableUsage__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableUsageAccess ( ) . getDbcolKeyword_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_58_in_rule__TableUsage__Group__0__Impl29435 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableUsageAccess ( ) . getDbcolKeyword_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__TableUsage__Group__1__Impl_in_rule__TableUsage__Group__129466 ) ; rule__TableUsage__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableUsage__Group__2_in_rule__TableUsage__Group__129469 ) ; rule__TableUsage__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableUsageAccess ( ) . getStatementAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__TableUsage__StatementAssignment_1_in_rule__TableUsage__Group__1__Impl29496 ) ; rule__TableUsage__StatementAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableUsageAccess ( ) . getStatementAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__TableUsage__Group__2__Impl_in_rule__TableUsage__Group__229526 ) ; rule__TableUsage__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableUsage__Group__3_in_rule__TableUsage__Group__229529 ) ; rule__TableUsage__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableUsageAccess ( ) . getTableAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__TableUsage__TableAssignment_2_in_rule__TableUsage__Group__2__Impl29556 ) ; rule__TableUsage__TableAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableUsageAccess ( ) . getTableAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__TableUsage__Group__3__Impl_in_rule__TableUsage__Group__329586 ) ; rule__TableUsage__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableUsage__Group__4_in_rule__TableUsage__Group__329589 ) ; rule__TableUsage__Group__4 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableUsageAccess ( ) . getGroup_3 ( ) ) ; } int alt145 = <NUM_LIT:2> ; int LA145_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA145_0 == <NUM_LIT> ) ) { alt145 = <NUM_LIT:1> ; } switch ( alt145 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__TableUsage__Group_3__0_in_rule__TableUsage__Group__3__Impl29616 ) ; rule__TableUsage__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableUsageAccess ( ) . getGroup_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__Group__4 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__TableUsage__Group__4__Impl_in_rule__TableUsage__Group__429647 ) ; rule__TableUsage__Group__4__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__Group__4__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableUsageAccess ( ) . getSEMICOLONTerminalRuleCall_4 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__TableUsage__Group__4__Impl29674 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableUsageAccess ( ) . getSEMICOLONTerminalRuleCall_4 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__TableUsage__Group_3__0__Impl_in_rule__TableUsage__Group_3__029713 ) ; rule__TableUsage__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableUsage__Group_3__1_in_rule__TableUsage__Group_3__029716 ) ; rule__TableUsage__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableUsageAccess ( ) . getPrefixKeyword_3_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_59_in_rule__TableUsage__Group_3__0__Impl29744 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableUsageAccess ( ) . getPrefixKeyword_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__TableUsage__Group_3__1__Impl_in_rule__TableUsage__Group_3__129775 ) ; rule__TableUsage__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableUsageAccess ( ) . getPrefixAssignment_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__TableUsage__PrefixAssignment_3_1_in_rule__TableUsage__Group_3__1__Impl29802 ) ; rule__TableUsage__PrefixAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableUsageAccess ( ) . getPrefixAssignment_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaStatement__Group__0__Impl_in_rule__MetaStatement__Group__029836 ) ; rule__MetaStatement__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group__1_in_rule__MetaStatement__Group__029839 ) ; rule__MetaStatement__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementAccess ( ) . getNameAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaStatement__NameAssignment_0_in_rule__MetaStatement__Group__0__Impl29866 ) ; rule__MetaStatement__NameAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementAccess ( ) . getNameAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaStatement__Group__1__Impl_in_rule__MetaStatement__Group__129896 ) ; rule__MetaStatement__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group__2_in_rule__MetaStatement__Group__129899 ) ; rule__MetaStatement__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementAccess ( ) . getLPARENTerminalRuleCall_1 ( ) ) ; } match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rule__MetaStatement__Group__1__Impl29926 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementAccess ( ) . getLPARENTerminalRuleCall_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaStatement__Group__2__Impl_in_rule__MetaStatement__Group__229955 ) ; rule__MetaStatement__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group__3_in_rule__MetaStatement__Group__229958 ) ; rule__MetaStatement__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementAccess ( ) . getTypeAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaStatement__TypeAssignment_2_in_rule__MetaStatement__Group__2__Impl29985 ) ; rule__MetaStatement__TypeAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementAccess ( ) . getTypeAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaStatement__Group__3__Impl_in_rule__MetaStatement__Group__330015 ) ; rule__MetaStatement__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group__4_in_rule__MetaStatement__Group__330018 ) ; rule__MetaStatement__Group__4 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementAccess ( ) . getGroup_3 ( ) ) ; } loop146 : do { int alt146 = <NUM_LIT:2> ; int LA146_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA146_0 == RULE_COMMA ) ) { alt146 = <NUM_LIT:1> ; } switch ( alt146 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MetaStatement__Group_3__0_in_rule__MetaStatement__Group__3__Impl30045 ) ; rule__MetaStatement__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop146 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementAccess ( ) . getGroup_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__4 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaStatement__Group__4__Impl_in_rule__MetaStatement__Group__430076 ) ; rule__MetaStatement__Group__4__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group__5_in_rule__MetaStatement__Group__430079 ) ; rule__MetaStatement__Group__5 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__4__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementAccess ( ) . getRPARENTerminalRuleCall_4 ( ) ) ; } match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rule__MetaStatement__Group__4__Impl30106 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementAccess ( ) . getRPARENTerminalRuleCall_4 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__5 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaStatement__Group__5__Impl_in_rule__MetaStatement__Group__530135 ) ; rule__MetaStatement__Group__5__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group__6_in_rule__MetaStatement__Group__530138 ) ; rule__MetaStatement__Group__6 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__5__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementAccess ( ) . getEQUALSTerminalRuleCall_5 ( ) ) ; } match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rule__MetaStatement__Group__5__Impl30165 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementAccess ( ) . getEQUALSTerminalRuleCall_5 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__6 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaStatement__Group__6__Impl_in_rule__MetaStatement__Group__630194 ) ; rule__MetaStatement__Group__6__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group__7_in_rule__MetaStatement__Group__630197 ) ; rule__MetaStatement__Group__7 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__6__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementAccess ( ) . getStatementAssignment_6 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaStatement__StatementAssignment_6_in_rule__MetaStatement__Group__6__Impl30224 ) ; rule__MetaStatement__StatementAssignment_6 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementAccess ( ) . getStatementAssignment_6 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__7 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaStatement__Group__7__Impl_in_rule__MetaStatement__Group__730254 ) ; rule__MetaStatement__Group__7__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group__7__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementAccess ( ) . getSEMICOLONTerminalRuleCall_7 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__MetaStatement__Group__7__Impl30281 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementAccess ( ) . getSEMICOLONTerminalRuleCall_7 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaStatement__Group_3__0__Impl_in_rule__MetaStatement__Group_3__030326 ) ; rule__MetaStatement__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group_3__1_in_rule__MetaStatement__Group_3__030329 ) ; rule__MetaStatement__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementAccess ( ) . getCOMMATerminalRuleCall_3_0 ( ) ) ; } match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_rule__MetaStatement__Group_3__0__Impl30356 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementAccess ( ) . getCOMMATerminalRuleCall_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaStatement__Group_3__1__Impl_in_rule__MetaStatement__Group_3__130385 ) ; rule__MetaStatement__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementAccess ( ) . getFiltersAssignment_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaStatement__FiltersAssignment_3_1_in_rule__MetaStatement__Group_3__1__Impl30412 ) ; rule__MetaStatement__FiltersAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementAccess ( ) . getFiltersAssignment_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlFragment__Group_1__0__Impl_in_rule__SqlFragment__Group_1__030446 ) ; rule__SqlFragment__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlFragment__Group_1__1_in_rule__SqlFragment__Group_1__030449 ) ; rule__SqlFragment__Group_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getATTerminalRuleCall_1_0 ( ) ) ; } match ( input , RULE_AT , FOLLOW_RULE_AT_in_rule__SqlFragment__Group_1__0__Impl30476 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getATTerminalRuleCall_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlFragment__Group_1__1__Impl_in_rule__SqlFragment__Group_1__130505 ) ; rule__SqlFragment__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getColAssignment_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__ColAssignment_1_1_in_rule__SqlFragment__Group_1__1__Impl30532 ) ; rule__SqlFragment__ColAssignment_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getColAssignment_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlFragment__Group_2__0__Impl_in_rule__SqlFragment__Group_2__030566 ) ; rule__SqlFragment__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlFragment__Group_2__1_in_rule__SqlFragment__Group_2__030569 ) ; rule__SqlFragment__Group_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getSTRINGTerminalRuleCall_2_0 ( ) ) ; } match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_rule__SqlFragment__Group_2__0__Impl30596 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getSTRINGTerminalRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlFragment__Group_2__1__Impl_in_rule__SqlFragment__Group_2__130625 ) ; rule__SqlFragment__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getCnstAssignment_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__CnstAssignment_2_1_in_rule__SqlFragment__Group_2__1__Impl30652 ) ; rule__SqlFragment__CnstAssignment_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getCnstAssignment_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlFragment__Group_3__0__Impl_in_rule__SqlFragment__Group_3__030686 ) ; rule__SqlFragment__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlFragment__Group_3__1_in_rule__SqlFragment__Group_3__030689 ) ; rule__SqlFragment__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getCOLONTerminalRuleCall_3_0 ( ) ) ; } match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rule__SqlFragment__Group_3__0__Impl30716 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getCOLONTerminalRuleCall_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlFragment__Group_3__1__Impl_in_rule__SqlFragment__Group_3__130745 ) ; rule__SqlFragment__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getIdentAssignment_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__IdentAssignment_3_1_in_rule__SqlFragment__Group_3__1__Impl30772 ) ; rule__SqlFragment__IdentAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getIdentAssignment_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_4__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlFragment__Group_4__0__Impl_in_rule__SqlFragment__Group_4__030806 ) ; rule__SqlFragment__Group_4__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlFragment__Group_4__1_in_rule__SqlFragment__Group_4__030809 ) ; rule__SqlFragment__Group_4__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_4__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getLBRACETerminalRuleCall_4_0 ( ) ) ; } match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_rule__SqlFragment__Group_4__0__Impl30836 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getLBRACETerminalRuleCall_4_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_4__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlFragment__Group_4__1__Impl_in_rule__SqlFragment__Group_4__130865 ) ; rule__SqlFragment__Group_4__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlFragment__Group_4__2_in_rule__SqlFragment__Group_4__130868 ) ; rule__SqlFragment__Group_4__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_4__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getMetaAssignment_4_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__MetaAssignment_4_1_in_rule__SqlFragment__Group_4__1__Impl30895 ) ; rule__SqlFragment__MetaAssignment_4_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getMetaAssignment_4_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_4__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlFragment__Group_4__2__Impl_in_rule__SqlFragment__Group_4__230925 ) ; rule__SqlFragment__Group_4__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_4__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getRBRACETerminalRuleCall_4_2 ( ) ) ; } match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_rule__SqlFragment__Group_4__2__Impl30952 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getRBRACETerminalRuleCall_4_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_5__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlFragment__Group_5__0__Impl_in_rule__SqlFragment__Group_5__030987 ) ; rule__SqlFragment__Group_5__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlFragment__Group_5__1_in_rule__SqlFragment__Group_5__030990 ) ; rule__SqlFragment__Group_5__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_5__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getPERCENTTerminalRuleCall_5_0 ( ) ) ; } match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_rule__SqlFragment__Group_5__0__Impl31017 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getPERCENTTerminalRuleCall_5_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_5__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlFragment__Group_5__1__Impl_in_rule__SqlFragment__Group_5__131046 ) ; rule__SqlFragment__Group_5__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_5__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getAlternatives_5_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__Alternatives_5_1_in_rule__SqlFragment__Group_5__1__Impl31073 ) ; rule__SqlFragment__Alternatives_5_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getAlternatives_5_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_5_1_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlFragment__Group_5_1_0__0__Impl_in_rule__SqlFragment__Group_5_1_0__031107 ) ; rule__SqlFragment__Group_5_1_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlFragment__Group_5_1_0__1_in_rule__SqlFragment__Group_5_1_0__031110 ) ; rule__SqlFragment__Group_5_1_0__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_5_1_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getPERCENTTerminalRuleCall_5_1_0_0 ( ) ) ; } match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_rule__SqlFragment__Group_5_1_0__0__Impl31137 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getPERCENTTerminalRuleCall_5_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_5_1_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlFragment__Group_5_1_0__1__Impl_in_rule__SqlFragment__Group_5_1_0__131166 ) ; rule__SqlFragment__Group_5_1_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__Group_5_1_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getDbtabAssignment_5_1_0_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__DbtabAssignment_5_1_0_1_in_rule__SqlFragment__Group_5_1_0__1__Impl31193 ) ; rule__SqlFragment__DbtabAssignment_5_1_0_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getDbtabAssignment_5_1_0_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlValue__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlValue__Group__0__Impl_in_rule__SqlValue__Group__031227 ) ; rule__SqlValue__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlValue__Group__1_in_rule__SqlValue__Group__031230 ) ; rule__SqlValue__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlValue__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getAlternatives_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlValue__Alternatives_0_in_rule__SqlValue__Group__0__Impl31257 ) ; rule__SqlValue__Alternatives_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getAlternatives_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlValue__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlValue__Group__1__Impl_in_rule__SqlValue__Group__131287 ) ; rule__SqlValue__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlValue__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getGroup_1 ( ) ) ; } loop147 : do { int alt147 = <NUM_LIT:2> ; alt147 = dfa147 . predict ( input ) ; switch ( alt147 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__SqlValue__Group_1__0_in_rule__SqlValue__Group__1__Impl31314 ) ; rule__SqlValue__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop147 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getGroup_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlValue__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__SqlValue__Group_1__0__Impl_in_rule__SqlValue__Group_1__031349 ) ; rule__SqlValue__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlValue__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlValueAccess ( ) . getAlternatives_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlValue__Alternatives_1_0_in_rule__SqlValue__Group_1__0__Impl31376 ) ; rule__SqlValue__Alternatives_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueAccess ( ) . getAlternatives_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_0__0__Impl_in_rule__MetaSql__Group_0__031408 ) ; rule__MetaSql__Group_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_0__1_in_rule__MetaSql__Group_0__031411 ) ; rule__MetaSql__Group_0__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getWSTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__MetaSql__Group_0__0__Impl31438 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getWSTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_0__1__Impl_in_rule__MetaSql__Group_0__131467 ) ; rule__MetaSql__Group_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_0__2_in_rule__MetaSql__Group_0__131470 ) ; rule__MetaSql__Group_0__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_0_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__IfsAssignment_0_1_in_rule__MetaSql__Group_0__1__Impl31497 ) ; rule__MetaSql__IfsAssignment_0_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_0_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_0__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_0__2__Impl_in_rule__MetaSql__Group_0__231527 ) ; rule__MetaSql__Group_0__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_0__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getGroup_0_2 ( ) ) ; } loop148 : do { int alt148 = <NUM_LIT:2> ; int LA148_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA148_0 == RULE_BOR ) ) { alt148 = <NUM_LIT:1> ; } switch ( alt148 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MetaSql__Group_0_2__0_in_rule__MetaSql__Group_0__2__Impl31554 ) ; rule__MetaSql__Group_0_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop148 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getGroup_0_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_0_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_0_2__0__Impl_in_rule__MetaSql__Group_0_2__031591 ) ; rule__MetaSql__Group_0_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_0_2__1_in_rule__MetaSql__Group_0_2__031594 ) ; rule__MetaSql__Group_0_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_0_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getBORTerminalRuleCall_0_2_0 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__MetaSql__Group_0_2__0__Impl31621 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getBORTerminalRuleCall_0_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_0_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_0_2__1__Impl_in_rule__MetaSql__Group_0_2__131650 ) ; rule__MetaSql__Group_0_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_0_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_0_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__IfsAssignment_0_2_1_in_rule__MetaSql__Group_0_2__1__Impl31677 ) ; rule__MetaSql__IfsAssignment_0_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_0_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_1__0__Impl_in_rule__MetaSql__Group_1__031711 ) ; rule__MetaSql__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_1__1_in_rule__MetaSql__Group_1__031714 ) ; rule__MetaSql__Group_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getTypeAssignment_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__TypeAssignment_1_0_in_rule__MetaSql__Group_1__0__Impl31741 ) ; rule__MetaSql__TypeAssignment_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getTypeAssignment_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_1__1__Impl_in_rule__MetaSql__Group_1__131771 ) ; rule__MetaSql__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_1__2_in_rule__MetaSql__Group_1__131774 ) ; rule__MetaSql__Group_1__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getCondAssignment_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__CondAssignment_1_1_in_rule__MetaSql__Group_1__1__Impl31801 ) ; rule__MetaSql__CondAssignment_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getCondAssignment_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_1__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_1__2__Impl_in_rule__MetaSql__Group_1__231831 ) ; rule__MetaSql__Group_1__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_1__3_in_rule__MetaSql__Group_1__231834 ) ; rule__MetaSql__Group_1__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_1__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getBORTerminalRuleCall_1_2 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__MetaSql__Group_1__2__Impl31861 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getBORTerminalRuleCall_1_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_1__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_1__3__Impl_in_rule__MetaSql__Group_1__331890 ) ; rule__MetaSql__Group_1__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_1__4_in_rule__MetaSql__Group_1__331893 ) ; rule__MetaSql__Group_1__4 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_1__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_1_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__IfsAssignment_1_3_in_rule__MetaSql__Group_1__3__Impl31920 ) ; rule__MetaSql__IfsAssignment_1_3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_1_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_1__4 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_1__4__Impl_in_rule__MetaSql__Group_1__431950 ) ; rule__MetaSql__Group_1__4__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_1__4__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getGroup_1_4 ( ) ) ; } loop149 : do { int alt149 = <NUM_LIT:2> ; int LA149_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA149_0 == RULE_BOR ) ) { alt149 = <NUM_LIT:1> ; } switch ( alt149 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MetaSql__Group_1_4__0_in_rule__MetaSql__Group_1__4__Impl31977 ) ; rule__MetaSql__Group_1_4__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop149 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getGroup_1_4 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_1_4__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_1_4__0__Impl_in_rule__MetaSql__Group_1_4__032018 ) ; rule__MetaSql__Group_1_4__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_1_4__1_in_rule__MetaSql__Group_1_4__032021 ) ; rule__MetaSql__Group_1_4__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_1_4__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getBORTerminalRuleCall_1_4_0 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__MetaSql__Group_1_4__0__Impl32048 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getBORTerminalRuleCall_1_4_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_1_4__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_1_4__1__Impl_in_rule__MetaSql__Group_1_4__132077 ) ; rule__MetaSql__Group_1_4__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_1_4__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_1_4_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__IfsAssignment_1_4_1_in_rule__MetaSql__Group_1_4__1__Impl32104 ) ; rule__MetaSql__IfsAssignment_1_4_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_1_4_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_2__0__Impl_in_rule__MetaSql__Group_2__032138 ) ; rule__MetaSql__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_2__1_in_rule__MetaSql__Group_2__032141 ) ; rule__MetaSql__Group_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getTypeAssignment_2_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__TypeAssignment_2_0_in_rule__MetaSql__Group_2__0__Impl32168 ) ; rule__MetaSql__TypeAssignment_2_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getTypeAssignment_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_2__1__Impl_in_rule__MetaSql__Group_2__132198 ) ; rule__MetaSql__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_2__2_in_rule__MetaSql__Group_2__132201 ) ; rule__MetaSql__Group_2__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__IfsAssignment_2_1_in_rule__MetaSql__Group_2__1__Impl32228 ) ; rule__MetaSql__IfsAssignment_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_2__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_2__2__Impl_in_rule__MetaSql__Group_2__232258 ) ; rule__MetaSql__Group_2__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_2__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getGroup_2_2 ( ) ) ; } loop150 : do { int alt150 = <NUM_LIT:2> ; int LA150_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA150_0 == RULE_BOR ) ) { alt150 = <NUM_LIT:1> ; } switch ( alt150 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MetaSql__Group_2_2__0_in_rule__MetaSql__Group_2__2__Impl32285 ) ; rule__MetaSql__Group_2_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop150 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getGroup_2_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_2_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_2_2__0__Impl_in_rule__MetaSql__Group_2_2__032322 ) ; rule__MetaSql__Group_2_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_2_2__1_in_rule__MetaSql__Group_2_2__032325 ) ; rule__MetaSql__Group_2_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_2_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getBORTerminalRuleCall_2_2_0 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__MetaSql__Group_2_2__0__Impl32352 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getBORTerminalRuleCall_2_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_2_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_2_2__1__Impl_in_rule__MetaSql__Group_2_2__132381 ) ; rule__MetaSql__Group_2_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_2_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_2_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__IfsAssignment_2_2_1_in_rule__MetaSql__Group_2_2__1__Impl32408 ) ; rule__MetaSql__IfsAssignment_2_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_2_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_3__0__Impl_in_rule__MetaSql__Group_3__032442 ) ; rule__MetaSql__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_3__1_in_rule__MetaSql__Group_3__032445 ) ; rule__MetaSql__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getTypeAssignment_3_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__TypeAssignment_3_0_in_rule__MetaSql__Group_3__0__Impl32472 ) ; rule__MetaSql__TypeAssignment_3_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getTypeAssignment_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_3__1__Impl_in_rule__MetaSql__Group_3__132502 ) ; rule__MetaSql__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_3__2_in_rule__MetaSql__Group_3__132505 ) ; rule__MetaSql__Group_3__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__IfsAssignment_3_1_in_rule__MetaSql__Group_3__1__Impl32532 ) ; rule__MetaSql__IfsAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_3__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_3__2__Impl_in_rule__MetaSql__Group_3__232562 ) ; rule__MetaSql__Group_3__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_3__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getGroup_3_2 ( ) ) ; } loop151 : do { int alt151 = <NUM_LIT:2> ; int LA151_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA151_0 == RULE_BOR ) ) { alt151 = <NUM_LIT:1> ; } switch ( alt151 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MetaSql__Group_3_2__0_in_rule__MetaSql__Group_3__2__Impl32589 ) ; rule__MetaSql__Group_3_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop151 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getGroup_3_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_3_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_3_2__0__Impl_in_rule__MetaSql__Group_3_2__032626 ) ; rule__MetaSql__Group_3_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_3_2__1_in_rule__MetaSql__Group_3_2__032629 ) ; rule__MetaSql__Group_3_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_3_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getBORTerminalRuleCall_3_2_0 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__MetaSql__Group_3_2__0__Impl32656 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getBORTerminalRuleCall_3_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_3_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_3_2__1__Impl_in_rule__MetaSql__Group_3_2__132685 ) ; rule__MetaSql__Group_3_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_3_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_3_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__IfsAssignment_3_2_1_in_rule__MetaSql__Group_3_2__1__Impl32712 ) ; rule__MetaSql__IfsAssignment_3_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_3_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_4__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_4__0__Impl_in_rule__MetaSql__Group_4__032746 ) ; rule__MetaSql__Group_4__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_4__1_in_rule__MetaSql__Group_4__032749 ) ; rule__MetaSql__Group_4__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_4__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getTypeAssignment_4_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__TypeAssignment_4_0_in_rule__MetaSql__Group_4__0__Impl32776 ) ; rule__MetaSql__TypeAssignment_4_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getTypeAssignment_4_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_4__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_4__1__Impl_in_rule__MetaSql__Group_4__132806 ) ; rule__MetaSql__Group_4__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_4__2_in_rule__MetaSql__Group_4__132809 ) ; rule__MetaSql__Group_4__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_4__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getWSTerminalRuleCall_4_1 ( ) ) ; } loop152 : do { int alt152 = <NUM_LIT:2> ; int LA152_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA152_0 == RULE_WS ) ) { alt152 = <NUM_LIT:1> ; } switch ( alt152 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__MetaSql__Group_4__1__Impl32837 ) ; if ( state . failed ) return ; } break ; default : break loop152 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getWSTerminalRuleCall_4_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_4__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_4__2__Impl_in_rule__MetaSql__Group_4__232868 ) ; rule__MetaSql__Group_4__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_4__3_in_rule__MetaSql__Group_4__232871 ) ; rule__MetaSql__Group_4__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_4__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getFtypeAssignment_4_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__FtypeAssignment_4_2_in_rule__MetaSql__Group_4__2__Impl32898 ) ; rule__MetaSql__FtypeAssignment_4_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getFtypeAssignment_4_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_4__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_4__3__Impl_in_rule__MetaSql__Group_4__332928 ) ; rule__MetaSql__Group_4__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_4__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_4_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__IfsAssignment_4_3_in_rule__MetaSql__Group_4__3__Impl32955 ) ; rule__MetaSql__IfsAssignment_4_3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_4_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_5__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_5__0__Impl_in_rule__MetaSql__Group_5__032993 ) ; rule__MetaSql__Group_5__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_5__1_in_rule__MetaSql__Group_5__032996 ) ; rule__MetaSql__Group_5__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_5__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getTypeAssignment_5_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__TypeAssignment_5_0_in_rule__MetaSql__Group_5__0__Impl33023 ) ; rule__MetaSql__TypeAssignment_5_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getTypeAssignment_5_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_5__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_5__1__Impl_in_rule__MetaSql__Group_5__133053 ) ; rule__MetaSql__Group_5__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_5__2_in_rule__MetaSql__Group_5__133056 ) ; rule__MetaSql__Group_5__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_5__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getNUMBERTerminalRuleCall_5_1 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__MetaSql__Group_5__1__Impl33083 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getNUMBERTerminalRuleCall_5_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_5__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MetaSql__Group_5__2__Impl_in_rule__MetaSql__Group_5__233112 ) ; rule__MetaSql__Group_5__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__Group_5__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getOrdAssignment_5_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__OrdAssignment_5_2_in_rule__MetaSql__Group_5__2__Impl33139 ) ; rule__MetaSql__OrdAssignment_5_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getOrdAssignment_5_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_1__0__Impl_in_rule__IfSqlFragment__Group_1__033175 ) ; rule__IfSqlFragment__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlFragment__Group_1__1_in_rule__IfSqlFragment__Group_1__033178 ) ; rule__IfSqlFragment__Group_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getATTerminalRuleCall_1_0 ( ) ) ; } match ( input , RULE_AT , FOLLOW_RULE_AT_in_rule__IfSqlFragment__Group_1__0__Impl33205 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getATTerminalRuleCall_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_1__1__Impl_in_rule__IfSqlFragment__Group_1__133234 ) ; rule__IfSqlFragment__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getColAssignment_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__ColAssignment_1_1_in_rule__IfSqlFragment__Group_1__1__Impl33261 ) ; rule__IfSqlFragment__ColAssignment_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getColAssignment_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_2__0__Impl_in_rule__IfSqlFragment__Group_2__033295 ) ; rule__IfSqlFragment__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlFragment__Group_2__1_in_rule__IfSqlFragment__Group_2__033298 ) ; rule__IfSqlFragment__Group_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getSTRINGTerminalRuleCall_2_0 ( ) ) ; } match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_rule__IfSqlFragment__Group_2__0__Impl33325 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getSTRINGTerminalRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_2__1__Impl_in_rule__IfSqlFragment__Group_2__133354 ) ; rule__IfSqlFragment__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getCnstAssignment_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__CnstAssignment_2_1_in_rule__IfSqlFragment__Group_2__1__Impl33381 ) ; rule__IfSqlFragment__CnstAssignment_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getCnstAssignment_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_3__0__Impl_in_rule__IfSqlFragment__Group_3__033415 ) ; rule__IfSqlFragment__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlFragment__Group_3__1_in_rule__IfSqlFragment__Group_3__033418 ) ; rule__IfSqlFragment__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getCOLONTerminalRuleCall_3_0 ( ) ) ; } match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rule__IfSqlFragment__Group_3__0__Impl33445 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getCOLONTerminalRuleCall_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_3__1__Impl_in_rule__IfSqlFragment__Group_3__133474 ) ; rule__IfSqlFragment__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getIdentAssignment_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__IdentAssignment_3_1_in_rule__IfSqlFragment__Group_3__1__Impl33501 ) ; rule__IfSqlFragment__IdentAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getIdentAssignment_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_4__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_4__0__Impl_in_rule__IfSqlFragment__Group_4__033535 ) ; rule__IfSqlFragment__Group_4__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlFragment__Group_4__1_in_rule__IfSqlFragment__Group_4__033538 ) ; rule__IfSqlFragment__Group_4__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_4__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getPERCENTTerminalRuleCall_4_0 ( ) ) ; } match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_rule__IfSqlFragment__Group_4__0__Impl33565 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getPERCENTTerminalRuleCall_4_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_4__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_4__1__Impl_in_rule__IfSqlFragment__Group_4__133594 ) ; rule__IfSqlFragment__Group_4__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_4__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getAlternatives_4_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__Alternatives_4_1_in_rule__IfSqlFragment__Group_4__1__Impl33621 ) ; rule__IfSqlFragment__Alternatives_4_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getAlternatives_4_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_4_1_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_4_1_0__0__Impl_in_rule__IfSqlFragment__Group_4_1_0__033655 ) ; rule__IfSqlFragment__Group_4_1_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlFragment__Group_4_1_0__1_in_rule__IfSqlFragment__Group_4_1_0__033658 ) ; rule__IfSqlFragment__Group_4_1_0__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_4_1_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getPERCENTTerminalRuleCall_4_1_0_0 ( ) ) ; } match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_rule__IfSqlFragment__Group_4_1_0__0__Impl33685 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getPERCENTTerminalRuleCall_4_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_4_1_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_4_1_0__1__Impl_in_rule__IfSqlFragment__Group_4_1_0__133714 ) ; rule__IfSqlFragment__Group_4_1_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_4_1_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getDbtabAssignment_4_1_0_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__DbtabAssignment_4_1_0_1_in_rule__IfSqlFragment__Group_4_1_0__1__Impl33741 ) ; rule__IfSqlFragment__DbtabAssignment_4_1_0_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getDbtabAssignment_4_1_0_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_5__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_5__0__Impl_in_rule__IfSqlFragment__Group_5__033775 ) ; rule__IfSqlFragment__Group_5__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlFragment__Group_5__1_in_rule__IfSqlFragment__Group_5__033778 ) ; rule__IfSqlFragment__Group_5__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_5__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getLBRACETerminalRuleCall_5_0 ( ) ) ; } match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_rule__IfSqlFragment__Group_5__0__Impl33805 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getLBRACETerminalRuleCall_5_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_5__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_5__1__Impl_in_rule__IfSqlFragment__Group_5__133834 ) ; rule__IfSqlFragment__Group_5__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlFragment__Group_5__2_in_rule__IfSqlFragment__Group_5__133837 ) ; rule__IfSqlFragment__Group_5__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_5__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getMetaAssignment_5_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__MetaAssignment_5_1_in_rule__IfSqlFragment__Group_5__1__Impl33864 ) ; rule__IfSqlFragment__MetaAssignment_5_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getMetaAssignment_5_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_5__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlFragment__Group_5__2__Impl_in_rule__IfSqlFragment__Group_5__233894 ) ; rule__IfSqlFragment__Group_5__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__Group_5__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getRBRACETerminalRuleCall_5_2 ( ) ) ; } match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_rule__IfSqlFragment__Group_5__2__Impl33921 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getRBRACETerminalRuleCall_5_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlValue__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlValue__Group__0__Impl_in_rule__IfSqlValue__Group__033956 ) ; rule__IfSqlValue__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlValue__Group__1_in_rule__IfSqlValue__Group__033959 ) ; rule__IfSqlValue__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlValue__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getAlternatives_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlValue__Alternatives_0_in_rule__IfSqlValue__Group__0__Impl33986 ) ; rule__IfSqlValue__Alternatives_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getAlternatives_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlValue__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlValue__Group__1__Impl_in_rule__IfSqlValue__Group__134016 ) ; rule__IfSqlValue__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlValue__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getGroup_1 ( ) ) ; } loop153 : do { int alt153 = <NUM_LIT:2> ; alt153 = dfa153 . predict ( input ) ; switch ( alt153 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfSqlValue__Group_1__0_in_rule__IfSqlValue__Group__1__Impl34043 ) ; rule__IfSqlValue__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop153 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getGroup_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlValue__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlValue__Group_1__0__Impl_in_rule__IfSqlValue__Group_1__034078 ) ; rule__IfSqlValue__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlValue__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlValueAccess ( ) . getAlternatives_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlValue__Alternatives_1_0_in_rule__IfSqlValue__Group_1__0__Impl34105 ) ; rule__IfSqlValue__Alternatives_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueAccess ( ) . getAlternatives_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_0__0__Impl_in_rule__IfMetaSql__Group_0__034137 ) ; rule__IfMetaSql__Group_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_0__1_in_rule__IfMetaSql__Group_0__034140 ) ; rule__IfMetaSql__Group_0__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getWSTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__IfMetaSql__Group_0__0__Impl34167 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getWSTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_0__1__Impl_in_rule__IfMetaSql__Group_0__134196 ) ; rule__IfMetaSql__Group_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_0__2_in_rule__IfMetaSql__Group_0__134199 ) ; rule__IfMetaSql__Group_0__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_0_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__IfsAssignment_0_1_in_rule__IfMetaSql__Group_0__1__Impl34226 ) ; rule__IfMetaSql__IfsAssignment_0_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_0_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_0__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_0__2__Impl_in_rule__IfMetaSql__Group_0__234256 ) ; rule__IfMetaSql__Group_0__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_0__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_0_2 ( ) ) ; } loop154 : do { int alt154 = <NUM_LIT:2> ; int LA154_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA154_0 == RULE_BOR ) ) { alt154 = <NUM_LIT:1> ; } switch ( alt154 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfMetaSql__Group_0_2__0_in_rule__IfMetaSql__Group_0__2__Impl34283 ) ; rule__IfMetaSql__Group_0_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop154 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_0_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_0_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_0_2__0__Impl_in_rule__IfMetaSql__Group_0_2__034320 ) ; rule__IfMetaSql__Group_0_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_0_2__1_in_rule__IfMetaSql__Group_0_2__034323 ) ; rule__IfMetaSql__Group_0_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_0_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getBORTerminalRuleCall_0_2_0 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__IfMetaSql__Group_0_2__0__Impl34350 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getBORTerminalRuleCall_0_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_0_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_0_2__1__Impl_in_rule__IfMetaSql__Group_0_2__134379 ) ; rule__IfMetaSql__Group_0_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_0_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_0_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__IfsAssignment_0_2_1_in_rule__IfMetaSql__Group_0_2__1__Impl34406 ) ; rule__IfMetaSql__IfsAssignment_0_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_0_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_1__0__Impl_in_rule__IfMetaSql__Group_1__034440 ) ; rule__IfMetaSql__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_1__1_in_rule__IfMetaSql__Group_1__034443 ) ; rule__IfMetaSql__Group_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getTypeAssignment_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__TypeAssignment_1_0_in_rule__IfMetaSql__Group_1__0__Impl34470 ) ; rule__IfMetaSql__TypeAssignment_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getTypeAssignment_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_1__1__Impl_in_rule__IfMetaSql__Group_1__134500 ) ; rule__IfMetaSql__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_1__2_in_rule__IfMetaSql__Group_1__134503 ) ; rule__IfMetaSql__Group_1__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getCondAssignment_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__CondAssignment_1_1_in_rule__IfMetaSql__Group_1__1__Impl34530 ) ; rule__IfMetaSql__CondAssignment_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getCondAssignment_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_1__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_1__2__Impl_in_rule__IfMetaSql__Group_1__234560 ) ; rule__IfMetaSql__Group_1__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_1__3_in_rule__IfMetaSql__Group_1__234563 ) ; rule__IfMetaSql__Group_1__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_1__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getBORTerminalRuleCall_1_2 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__IfMetaSql__Group_1__2__Impl34590 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getBORTerminalRuleCall_1_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_1__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_1__3__Impl_in_rule__IfMetaSql__Group_1__334619 ) ; rule__IfMetaSql__Group_1__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_1__4_in_rule__IfMetaSql__Group_1__334622 ) ; rule__IfMetaSql__Group_1__4 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_1__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_1_3 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__IfsAssignment_1_3_in_rule__IfMetaSql__Group_1__3__Impl34649 ) ; rule__IfMetaSql__IfsAssignment_1_3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_1_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_1__4 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_1__4__Impl_in_rule__IfMetaSql__Group_1__434679 ) ; rule__IfMetaSql__Group_1__4__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_1__4__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_1_4 ( ) ) ; } loop155 : do { int alt155 = <NUM_LIT:2> ; int LA155_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA155_0 == RULE_BOR ) ) { alt155 = <NUM_LIT:1> ; } switch ( alt155 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfMetaSql__Group_1_4__0_in_rule__IfMetaSql__Group_1__4__Impl34706 ) ; rule__IfMetaSql__Group_1_4__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop155 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_1_4 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_1_4__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_1_4__0__Impl_in_rule__IfMetaSql__Group_1_4__034747 ) ; rule__IfMetaSql__Group_1_4__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_1_4__1_in_rule__IfMetaSql__Group_1_4__034750 ) ; rule__IfMetaSql__Group_1_4__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_1_4__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getBORTerminalRuleCall_1_4_0 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__IfMetaSql__Group_1_4__0__Impl34777 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getBORTerminalRuleCall_1_4_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_1_4__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_1_4__1__Impl_in_rule__IfMetaSql__Group_1_4__134806 ) ; rule__IfMetaSql__Group_1_4__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_1_4__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_1_4_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__IfsAssignment_1_4_1_in_rule__IfMetaSql__Group_1_4__1__Impl34833 ) ; rule__IfMetaSql__IfsAssignment_1_4_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_1_4_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_2__0__Impl_in_rule__IfMetaSql__Group_2__034867 ) ; rule__IfMetaSql__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_2__1_in_rule__IfMetaSql__Group_2__034870 ) ; rule__IfMetaSql__Group_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getTypeAssignment_2_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__TypeAssignment_2_0_in_rule__IfMetaSql__Group_2__0__Impl34897 ) ; rule__IfMetaSql__TypeAssignment_2_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getTypeAssignment_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_2__1__Impl_in_rule__IfMetaSql__Group_2__134927 ) ; rule__IfMetaSql__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_2__2_in_rule__IfMetaSql__Group_2__134930 ) ; rule__IfMetaSql__Group_2__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__IfsAssignment_2_1_in_rule__IfMetaSql__Group_2__1__Impl34957 ) ; rule__IfMetaSql__IfsAssignment_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_2__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_2__2__Impl_in_rule__IfMetaSql__Group_2__234987 ) ; rule__IfMetaSql__Group_2__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_2__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_2_2 ( ) ) ; } loop156 : do { int alt156 = <NUM_LIT:2> ; int LA156_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA156_0 == RULE_BOR ) ) { alt156 = <NUM_LIT:1> ; } switch ( alt156 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfMetaSql__Group_2_2__0_in_rule__IfMetaSql__Group_2__2__Impl35014 ) ; rule__IfMetaSql__Group_2_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop156 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_2_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_2_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_2_2__0__Impl_in_rule__IfMetaSql__Group_2_2__035051 ) ; rule__IfMetaSql__Group_2_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_2_2__1_in_rule__IfMetaSql__Group_2_2__035054 ) ; rule__IfMetaSql__Group_2_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_2_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getBORTerminalRuleCall_2_2_0 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__IfMetaSql__Group_2_2__0__Impl35081 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getBORTerminalRuleCall_2_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_2_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_2_2__1__Impl_in_rule__IfMetaSql__Group_2_2__135110 ) ; rule__IfMetaSql__Group_2_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_2_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_2_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__IfsAssignment_2_2_1_in_rule__IfMetaSql__Group_2_2__1__Impl35137 ) ; rule__IfMetaSql__IfsAssignment_2_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_2_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_3__0__Impl_in_rule__IfMetaSql__Group_3__035171 ) ; rule__IfMetaSql__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_3__1_in_rule__IfMetaSql__Group_3__035174 ) ; rule__IfMetaSql__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getTypeAssignment_3_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__TypeAssignment_3_0_in_rule__IfMetaSql__Group_3__0__Impl35201 ) ; rule__IfMetaSql__TypeAssignment_3_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getTypeAssignment_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_3__1__Impl_in_rule__IfMetaSql__Group_3__135231 ) ; rule__IfMetaSql__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_3__2_in_rule__IfMetaSql__Group_3__135234 ) ; rule__IfMetaSql__Group_3__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__IfsAssignment_3_1_in_rule__IfMetaSql__Group_3__1__Impl35261 ) ; rule__IfMetaSql__IfsAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_3__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_3__2__Impl_in_rule__IfMetaSql__Group_3__235291 ) ; rule__IfMetaSql__Group_3__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_3__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_3_2 ( ) ) ; } loop157 : do { int alt157 = <NUM_LIT:2> ; int LA157_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA157_0 == RULE_BOR ) ) { alt157 = <NUM_LIT:1> ; } switch ( alt157 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfMetaSql__Group_3_2__0_in_rule__IfMetaSql__Group_3__2__Impl35318 ) ; rule__IfMetaSql__Group_3_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop157 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_3_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_3_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_3_2__0__Impl_in_rule__IfMetaSql__Group_3_2__035355 ) ; rule__IfMetaSql__Group_3_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_3_2__1_in_rule__IfMetaSql__Group_3_2__035358 ) ; rule__IfMetaSql__Group_3_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_3_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getBORTerminalRuleCall_3_2_0 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__IfMetaSql__Group_3_2__0__Impl35385 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getBORTerminalRuleCall_3_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_3_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfMetaSql__Group_3_2__1__Impl_in_rule__IfMetaSql__Group_3_2__135414 ) ; rule__IfMetaSql__Group_3_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__Group_3_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_3_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__IfsAssignment_3_2_1_in_rule__IfMetaSql__Group_3_2__1__Impl35441 ) ; rule__IfMetaSql__IfsAssignment_3_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_3_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlCond__Group__0__Impl_in_rule__IfSqlCond__Group__035475 ) ; rule__IfSqlCond__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlCond__Group__1_in_rule__IfSqlCond__Group__035478 ) ; rule__IfSqlCond__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlCondAccess ( ) . getWSTerminalRuleCall_0 ( ) ) ; } loop158 : do { int alt158 = <NUM_LIT:2> ; int LA158_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA158_0 == RULE_WS ) ) { alt158 = <NUM_LIT:1> ; } switch ( alt158 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__IfSqlCond__Group__0__Impl35506 ) ; if ( state . failed ) return ; } break ; default : break loop158 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondAccess ( ) . getWSTerminalRuleCall_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlCond__Group__1__Impl_in_rule__IfSqlCond__Group__135537 ) ; rule__IfSqlCond__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlCond__Group__2_in_rule__IfSqlCond__Group__135540 ) ; rule__IfSqlCond__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlCondAccess ( ) . getBool1Assignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlCond__Bool1Assignment_1_in_rule__IfSqlCond__Group__1__Impl35567 ) ; rule__IfSqlCond__Bool1Assignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondAccess ( ) . getBool1Assignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlCond__Group__2__Impl_in_rule__IfSqlCond__Group__235597 ) ; rule__IfSqlCond__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlCond__Group__3_in_rule__IfSqlCond__Group__235600 ) ; rule__IfSqlCond__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlCondAccess ( ) . getWSTerminalRuleCall_2 ( ) ) ; } loop159 : do { int alt159 = <NUM_LIT:2> ; int LA159_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA159_0 == RULE_WS ) ) { alt159 = <NUM_LIT:1> ; } switch ( alt159 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__IfSqlCond__Group__2__Impl35628 ) ; if ( state . failed ) return ; } break ; default : break loop159 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondAccess ( ) . getWSTerminalRuleCall_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlCond__Group__3__Impl_in_rule__IfSqlCond__Group__335659 ) ; rule__IfSqlCond__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlCondAccess ( ) . getGroup_3 ( ) ) ; } loop160 : do { int alt160 = <NUM_LIT:2> ; int LA160_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA160_0 >= RULE_AND && LA160_0 <= RULE_OR ) ) ) { alt160 = <NUM_LIT:1> ; } switch ( alt160 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfSqlCond__Group_3__0_in_rule__IfSqlCond__Group__3__Impl35686 ) ; rule__IfSqlCond__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop160 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondAccess ( ) . getGroup_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlCond__Group_3__0__Impl_in_rule__IfSqlCond__Group_3__035725 ) ; rule__IfSqlCond__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlCond__Group_3__1_in_rule__IfSqlCond__Group_3__035728 ) ; rule__IfSqlCond__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlCondAccess ( ) . getOperAssignment_3_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlCond__OperAssignment_3_0_in_rule__IfSqlCond__Group_3__0__Impl35755 ) ; rule__IfSqlCond__OperAssignment_3_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondAccess ( ) . getOperAssignment_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlCond__Group_3__1__Impl_in_rule__IfSqlCond__Group_3__135785 ) ; rule__IfSqlCond__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlCond__Group_3__2_in_rule__IfSqlCond__Group_3__135788 ) ; rule__IfSqlCond__Group_3__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlCondAccess ( ) . getWSTerminalRuleCall_3_1 ( ) ) ; } loop161 : do { int alt161 = <NUM_LIT:2> ; int LA161_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA161_0 == RULE_WS ) ) { alt161 = <NUM_LIT:1> ; } switch ( alt161 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__IfSqlCond__Group_3__1__Impl35816 ) ; if ( state . failed ) return ; } break ; default : break loop161 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondAccess ( ) . getWSTerminalRuleCall_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group_3__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlCond__Group_3__2__Impl_in_rule__IfSqlCond__Group_3__235847 ) ; rule__IfSqlCond__Group_3__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlCond__Group_3__3_in_rule__IfSqlCond__Group_3__235850 ) ; rule__IfSqlCond__Group_3__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group_3__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlCondAccess ( ) . getBool2Assignment_3_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlCond__Bool2Assignment_3_2_in_rule__IfSqlCond__Group_3__2__Impl35877 ) ; rule__IfSqlCond__Bool2Assignment_3_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondAccess ( ) . getBool2Assignment_3_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group_3__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlCond__Group_3__3__Impl_in_rule__IfSqlCond__Group_3__335907 ) ; rule__IfSqlCond__Group_3__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Group_3__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlCondAccess ( ) . getWSTerminalRuleCall_3_3 ( ) ) ; } loop162 : do { int alt162 = <NUM_LIT:2> ; int LA162_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA162_0 == RULE_WS ) ) { alt162 = <NUM_LIT:1> ; } switch ( alt162 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__IfSqlCond__Group_3__3__Impl35935 ) ; if ( state . failed ) return ; } break ; default : break loop162 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondAccess ( ) . getWSTerminalRuleCall_3_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlBool__Group_0__0__Impl_in_rule__IfSqlBool__Group_0__035974 ) ; rule__IfSqlBool__Group_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlBool__Group_0__1_in_rule__IfSqlBool__Group_0__035977 ) ; rule__IfSqlBool__Group_0__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getNotAssignment_0_0 ( ) ) ; } int alt163 = <NUM_LIT:2> ; int LA163_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA163_0 == RULE_NOT ) ) { alt163 = <NUM_LIT:1> ; } switch ( alt163 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfSqlBool__NotAssignment_0_0_in_rule__IfSqlBool__Group_0__0__Impl36004 ) ; rule__IfSqlBool__NotAssignment_0_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getNotAssignment_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlBool__Group_0__1__Impl_in_rule__IfSqlBool__Group_0__136035 ) ; rule__IfSqlBool__Group_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlBool__Group_0__2_in_rule__IfSqlBool__Group_0__136038 ) ; rule__IfSqlBool__Group_0__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getSTRINGTerminalRuleCall_0_1 ( ) ) ; } match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_rule__IfSqlBool__Group_0__1__Impl36065 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getSTRINGTerminalRuleCall_0_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_0__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlBool__Group_0__2__Impl_in_rule__IfSqlBool__Group_0__236094 ) ; rule__IfSqlBool__Group_0__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_0__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getCnstAssignment_0_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlBool__CnstAssignment_0_2_in_rule__IfSqlBool__Group_0__2__Impl36121 ) ; rule__IfSqlBool__CnstAssignment_0_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getCnstAssignment_0_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlBool__Group_1__0__Impl_in_rule__IfSqlBool__Group_1__036157 ) ; rule__IfSqlBool__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlBool__Group_1__1_in_rule__IfSqlBool__Group_1__036160 ) ; rule__IfSqlBool__Group_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getNotAssignment_1_0 ( ) ) ; } int alt164 = <NUM_LIT:2> ; int LA164_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA164_0 == RULE_NOT ) ) { alt164 = <NUM_LIT:1> ; } switch ( alt164 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfSqlBool__NotAssignment_1_0_in_rule__IfSqlBool__Group_1__0__Impl36187 ) ; rule__IfSqlBool__NotAssignment_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getNotAssignment_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlBool__Group_1__1__Impl_in_rule__IfSqlBool__Group_1__136218 ) ; rule__IfSqlBool__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlBool__Group_1__2_in_rule__IfSqlBool__Group_1__136221 ) ; rule__IfSqlBool__Group_1__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getCOLONTerminalRuleCall_1_1 ( ) ) ; } match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rule__IfSqlBool__Group_1__1__Impl36248 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getCOLONTerminalRuleCall_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_1__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlBool__Group_1__2__Impl_in_rule__IfSqlBool__Group_1__236277 ) ; rule__IfSqlBool__Group_1__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_1__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getIdentAssignment_1_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlBool__IdentAssignment_1_2_in_rule__IfSqlBool__Group_1__2__Impl36304 ) ; rule__IfSqlBool__IdentAssignment_1_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getIdentAssignment_1_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlBool__Group_2__0__Impl_in_rule__IfSqlBool__Group_2__036340 ) ; rule__IfSqlBool__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlBool__Group_2__1_in_rule__IfSqlBool__Group_2__036343 ) ; rule__IfSqlBool__Group_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getNotAssignment_2_0 ( ) ) ; } int alt165 = <NUM_LIT:2> ; int LA165_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA165_0 == RULE_NOT ) ) { alt165 = <NUM_LIT:1> ; } switch ( alt165 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfSqlBool__NotAssignment_2_0_in_rule__IfSqlBool__Group_2__0__Impl36370 ) ; rule__IfSqlBool__NotAssignment_2_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getNotAssignment_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlBool__Group_2__1__Impl_in_rule__IfSqlBool__Group_2__136401 ) ; rule__IfSqlBool__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlBool__Group_2__2_in_rule__IfSqlBool__Group_2__136404 ) ; rule__IfSqlBool__Group_2__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getLPARENTerminalRuleCall_2_1 ( ) ) ; } match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rule__IfSqlBool__Group_2__1__Impl36431 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getLPARENTerminalRuleCall_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_2__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlBool__Group_2__2__Impl_in_rule__IfSqlBool__Group_2__236460 ) ; rule__IfSqlBool__Group_2__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlBool__Group_2__3_in_rule__IfSqlBool__Group_2__236463 ) ; rule__IfSqlBool__Group_2__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_2__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getCondAssignment_2_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlBool__CondAssignment_2_2_in_rule__IfSqlBool__Group_2__2__Impl36490 ) ; rule__IfSqlBool__CondAssignment_2_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getCondAssignment_2_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_2__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__IfSqlBool__Group_2__3__Impl_in_rule__IfSqlBool__Group_2__336520 ) ; rule__IfSqlBool__Group_2__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__Group_2__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getRPARENTerminalRuleCall_2_3 ( ) ) ; } match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rule__IfSqlBool__Group_2__3__Impl36547 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getRPARENTerminalRuleCall_2_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OrdSql2__Group_1__0__Impl_in_rule__OrdSql2__Group_1__036584 ) ; rule__OrdSql2__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OrdSql2__Group_1__1_in_rule__OrdSql2__Group_1__036587 ) ; rule__OrdSql2__Group_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Access ( ) . getSTRINGTerminalRuleCall_1_0 ( ) ) ; } match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_rule__OrdSql2__Group_1__0__Impl36614 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Access ( ) . getSTRINGTerminalRuleCall_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__Group_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OrdSql2__Group_1__1__Impl_in_rule__OrdSql2__Group_1__136643 ) ; rule__OrdSql2__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__Group_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Access ( ) . getCnstAssignment_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__OrdSql2__CnstAssignment_1_1_in_rule__OrdSql2__Group_1__1__Impl36670 ) ; rule__OrdSql2__CnstAssignment_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Access ( ) . getCnstAssignment_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__Group_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OrdSql2__Group_2__0__Impl_in_rule__OrdSql2__Group_2__036704 ) ; rule__OrdSql2__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OrdSql2__Group_2__1_in_rule__OrdSql2__Group_2__036707 ) ; rule__OrdSql2__Group_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__Group_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Access ( ) . getCOLONTerminalRuleCall_2_0 ( ) ) ; } match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rule__OrdSql2__Group_2__0__Impl36734 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Access ( ) . getCOLONTerminalRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__Group_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OrdSql2__Group_2__1__Impl_in_rule__OrdSql2__Group_2__136763 ) ; rule__OrdSql2__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__Group_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Access ( ) . getIdentAssignment_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__OrdSql2__IdentAssignment_2_1_in_rule__OrdSql2__Group_2__1__Impl36790 ) ; rule__OrdSql2__IdentAssignment_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Access ( ) . getIdentAssignment_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OrdSql2__Group_3__0__Impl_in_rule__OrdSql2__Group_3__036824 ) ; rule__OrdSql2__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OrdSql2__Group_3__1_in_rule__OrdSql2__Group_3__036827 ) ; rule__OrdSql2__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Access ( ) . getPERCENTTerminalRuleCall_3_0 ( ) ) ; } match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_rule__OrdSql2__Group_3__0__Impl36854 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Access ( ) . getPERCENTTerminalRuleCall_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OrdSql2__Group_3__1__Impl_in_rule__OrdSql2__Group_3__136883 ) ; rule__OrdSql2__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Access ( ) . getDbcolAssignment_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__OrdSql2__DbcolAssignment_3_1_in_rule__OrdSql2__Group_3__1__Impl36910 ) ; rule__OrdSql2__DbcolAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Access ( ) . getDbcolAssignment_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSqlValue__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OrdSqlValue__Group__0__Impl_in_rule__OrdSqlValue__Group__036944 ) ; rule__OrdSqlValue__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OrdSqlValue__Group__1_in_rule__OrdSqlValue__Group__036947 ) ; rule__OrdSqlValue__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSqlValue__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getAlternatives_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__OrdSqlValue__Alternatives_0_in_rule__OrdSqlValue__Group__0__Impl36974 ) ; rule__OrdSqlValue__Alternatives_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getAlternatives_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSqlValue__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OrdSqlValue__Group__1__Impl_in_rule__OrdSqlValue__Group__137004 ) ; rule__OrdSqlValue__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSqlValue__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getGroup_1 ( ) ) ; } loop166 : do { int alt166 = <NUM_LIT:2> ; alt166 = dfa166 . predict ( input ) ; switch ( alt166 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__OrdSqlValue__Group_1__0_in_rule__OrdSqlValue__Group__1__Impl37031 ) ; rule__OrdSqlValue__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop166 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getGroup_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSqlValue__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OrdSqlValue__Group_1__0__Impl_in_rule__OrdSqlValue__Group_1__037066 ) ; rule__OrdSqlValue__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSqlValue__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlValueAccess ( ) . getAlternatives_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__OrdSqlValue__Alternatives_1_0_in_rule__OrdSqlValue__Group_1__0__Impl37093 ) ; rule__OrdSqlValue__Alternatives_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueAccess ( ) . getAlternatives_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Column__Group__0__Impl_in_rule__Column__Group__037125 ) ; rule__Column__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Column__Group__1_in_rule__Column__Group__037128 ) ; rule__Column__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getNameAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Column__NameAssignment_0_in_rule__Column__Group__0__Impl37155 ) ; rule__Column__NameAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getNameAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Column__Group__1__Impl_in_rule__Column__Group__137185 ) ; rule__Column__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getGroup_1 ( ) ) ; } int alt167 = <NUM_LIT:2> ; int LA167_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA167_0 == RULE_CARET ) ) { int LA167_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred485_InternalProcessorDsl ( ) ) ) { alt167 = <NUM_LIT:1> ; } } switch ( alt167 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Column__Group_1__0_in_rule__Column__Group__1__Impl37212 ) ; rule__Column__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getGroup_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Column__Group_1__0__Impl_in_rule__Column__Group_1__037247 ) ; rule__Column__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Column__Group_1__1_in_rule__Column__Group_1__037250 ) ; rule__Column__Group_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getCARETTerminalRuleCall_1_0 ( ) ) ; } { match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__Column__Group_1__0__Impl37278 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getCARETTerminalRuleCall_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__Group_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Column__Group_1__1__Impl_in_rule__Column__Group_1__137308 ) ; rule__Column__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Column__Group_1__2_in_rule__Column__Group_1__137311 ) ; rule__Column__Group_1__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__Group_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getTypeAssignment_1_1 ( ) ) ; } int alt168 = <NUM_LIT:2> ; int LA168_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA168_0 == RULE_IDENT ) ) { int LA168_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred486_InternalProcessorDsl ( ) ) ) { alt168 = <NUM_LIT:1> ; } } switch ( alt168 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Column__TypeAssignment_1_1_in_rule__Column__Group_1__1__Impl37338 ) ; rule__Column__TypeAssignment_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getTypeAssignment_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__Group_1__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Column__Group_1__2__Impl_in_rule__Column__Group_1__237369 ) ; rule__Column__Group_1__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__Group_1__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getGroup_1_2 ( ) ) ; } loop169 : do { int alt169 = <NUM_LIT:2> ; int LA169_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA169_0 == RULE_CARET ) ) { int LA169_2 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA169_2 == RULE_IDENT ) ) { int LA169_3 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred487_InternalProcessorDsl ( ) ) ) { alt169 = <NUM_LIT:1> ; } } else if ( ( LA169_2 == RULE_NUMBER ) ) { int LA169_4 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred487_InternalProcessorDsl ( ) ) ) { alt169 = <NUM_LIT:1> ; } } } switch ( alt169 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Column__Group_1_2__0_in_rule__Column__Group_1__2__Impl37396 ) ; rule__Column__Group_1_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop169 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getGroup_1_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__Group_1_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Column__Group_1_2__0__Impl_in_rule__Column__Group_1_2__037433 ) ; rule__Column__Group_1_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Column__Group_1_2__1_in_rule__Column__Group_1_2__037436 ) ; rule__Column__Group_1_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__Group_1_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getCARETTerminalRuleCall_1_2_0 ( ) ) ; } { match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__Column__Group_1_2__0__Impl37464 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getCARETTerminalRuleCall_1_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__Group_1_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Column__Group_1_2__1__Impl_in_rule__Column__Group_1_2__137494 ) ; rule__Column__Group_1_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__Group_1_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getValsAssignment_1_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__Column__ValsAssignment_1_2_1_in_rule__Column__Group_1_2__1__Impl37521 ) ; rule__Column__ValsAssignment_1_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getValsAssignment_1_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Constant__Group__0__Impl_in_rule__Constant__Group__037555 ) ; rule__Constant__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Constant__Group__1_in_rule__Constant__Group__037558 ) ; rule__Constant__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getCaseAssignment_0 ( ) ) ; } int alt170 = <NUM_LIT:2> ; int LA170_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA170_0 >= RULE_MINUS && LA170_0 <= RULE_PLUS ) ) ) { alt170 = <NUM_LIT:1> ; } switch ( alt170 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Constant__CaseAssignment_0_in_rule__Constant__Group__0__Impl37585 ) ; rule__Constant__CaseAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getCaseAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Constant__Group__1__Impl_in_rule__Constant__Group__137616 ) ; rule__Constant__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Constant__Group__2_in_rule__Constant__Group__137619 ) ; rule__Constant__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getNameAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__Constant__NameAssignment_1_in_rule__Constant__Group__1__Impl37646 ) ; rule__Constant__NameAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getNameAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Constant__Group__2__Impl_in_rule__Constant__Group__237676 ) ; rule__Constant__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getGroup_2 ( ) ) ; } int alt171 = <NUM_LIT:2> ; int LA171_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA171_0 == RULE_CARET ) ) { int LA171_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred489_InternalProcessorDsl ( ) ) ) { alt171 = <NUM_LIT:1> ; } } switch ( alt171 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Constant__Group_2__0_in_rule__Constant__Group__2__Impl37703 ) ; rule__Constant__Group_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getGroup_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Constant__Group_2__0__Impl_in_rule__Constant__Group_2__037740 ) ; rule__Constant__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Constant__Group_2__1_in_rule__Constant__Group_2__037743 ) ; rule__Constant__Group_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getCARETTerminalRuleCall_2_0 ( ) ) ; } { match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__Constant__Group_2__0__Impl37771 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getCARETTerminalRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Constant__Group_2__1__Impl_in_rule__Constant__Group_2__137801 ) ; rule__Constant__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Constant__Group_2__2_in_rule__Constant__Group_2__137804 ) ; rule__Constant__Group_2__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getTypeAssignment_2_1 ( ) ) ; } int alt172 = <NUM_LIT:2> ; int LA172_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA172_0 == RULE_IDENT ) ) { int LA172_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred490_InternalProcessorDsl ( ) ) ) { alt172 = <NUM_LIT:1> ; } } switch ( alt172 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Constant__TypeAssignment_2_1_in_rule__Constant__Group_2__1__Impl37831 ) ; rule__Constant__TypeAssignment_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getTypeAssignment_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group_2__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Constant__Group_2__2__Impl_in_rule__Constant__Group_2__237862 ) ; rule__Constant__Group_2__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group_2__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getGroup_2_2 ( ) ) ; } loop173 : do { int alt173 = <NUM_LIT:2> ; int LA173_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA173_0 == RULE_CARET ) ) { int LA173_2 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA173_2 == RULE_IDENT ) ) { int LA173_3 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred491_InternalProcessorDsl ( ) ) ) { alt173 = <NUM_LIT:1> ; } } else if ( ( LA173_2 == RULE_NUMBER ) ) { int LA173_4 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred491_InternalProcessorDsl ( ) ) ) { alt173 = <NUM_LIT:1> ; } } } switch ( alt173 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Constant__Group_2_2__0_in_rule__Constant__Group_2__2__Impl37889 ) ; rule__Constant__Group_2_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop173 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getGroup_2_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group_2_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Constant__Group_2_2__0__Impl_in_rule__Constant__Group_2_2__037926 ) ; rule__Constant__Group_2_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Constant__Group_2_2__1_in_rule__Constant__Group_2_2__037929 ) ; rule__Constant__Group_2_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group_2_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getCARETTerminalRuleCall_2_2_0 ( ) ) ; } { match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__Constant__Group_2_2__0__Impl37957 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getCARETTerminalRuleCall_2_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group_2_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Constant__Group_2_2__1__Impl_in_rule__Constant__Group_2_2__137987 ) ; rule__Constant__Group_2_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__Group_2_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getValsAssignment_2_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__Constant__ValsAssignment_2_2_1_in_rule__Constant__Group_2_2__1__Impl38014 ) ; rule__Constant__ValsAssignment_2_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getValsAssignment_2_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Identifier__Group__0__Impl_in_rule__Identifier__Group__038048 ) ; rule__Identifier__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Identifier__Group__1_in_rule__Identifier__Group__038051 ) ; rule__Identifier__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getModeAssignment_0 ( ) ) ; } int alt174 = <NUM_LIT:2> ; int LA174_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA174_0 >= RULE_EQUALS && LA174_0 <= RULE_MORE_THAN ) ) ) { alt174 = <NUM_LIT:1> ; } switch ( alt174 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Identifier__ModeAssignment_0_in_rule__Identifier__Group__0__Impl38078 ) ; rule__Identifier__ModeAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getModeAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Identifier__Group__1__Impl_in_rule__Identifier__Group__138109 ) ; rule__Identifier__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Identifier__Group__2_in_rule__Identifier__Group__138112 ) ; rule__Identifier__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getCaseAssignment_1 ( ) ) ; } int alt175 = <NUM_LIT:2> ; int LA175_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA175_0 >= RULE_MINUS && LA175_0 <= RULE_PLUS ) ) ) { alt175 = <NUM_LIT:1> ; } switch ( alt175 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Identifier__CaseAssignment_1_in_rule__Identifier__Group__1__Impl38139 ) ; rule__Identifier__CaseAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getCaseAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Identifier__Group__2__Impl_in_rule__Identifier__Group__238170 ) ; rule__Identifier__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Identifier__Group__3_in_rule__Identifier__Group__238173 ) ; rule__Identifier__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getNameAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__Identifier__NameAssignment_2_in_rule__Identifier__Group__2__Impl38200 ) ; rule__Identifier__NameAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getNameAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Identifier__Group__3__Impl_in_rule__Identifier__Group__338230 ) ; rule__Identifier__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getGroup_3 ( ) ) ; } int alt176 = <NUM_LIT:2> ; int LA176_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA176_0 == RULE_CARET ) ) { int LA176_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred494_InternalProcessorDsl ( ) ) ) { alt176 = <NUM_LIT:1> ; } } switch ( alt176 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Identifier__Group_3__0_in_rule__Identifier__Group__3__Impl38257 ) ; rule__Identifier__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getGroup_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Identifier__Group_3__0__Impl_in_rule__Identifier__Group_3__038296 ) ; rule__Identifier__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Identifier__Group_3__1_in_rule__Identifier__Group_3__038299 ) ; rule__Identifier__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getCARETTerminalRuleCall_3_0 ( ) ) ; } { match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__Identifier__Group_3__0__Impl38327 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getCARETTerminalRuleCall_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Identifier__Group_3__1__Impl_in_rule__Identifier__Group_3__138357 ) ; rule__Identifier__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Identifier__Group_3__2_in_rule__Identifier__Group_3__138360 ) ; rule__Identifier__Group_3__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getTypeAssignment_3_1 ( ) ) ; } int alt177 = <NUM_LIT:2> ; int LA177_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA177_0 == RULE_IDENT ) ) { int LA177_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred495_InternalProcessorDsl ( ) ) ) { alt177 = <NUM_LIT:1> ; } } switch ( alt177 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Identifier__TypeAssignment_3_1_in_rule__Identifier__Group_3__1__Impl38387 ) ; rule__Identifier__TypeAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getTypeAssignment_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group_3__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Identifier__Group_3__2__Impl_in_rule__Identifier__Group_3__238418 ) ; rule__Identifier__Group_3__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group_3__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getGroup_3_2 ( ) ) ; } loop178 : do { int alt178 = <NUM_LIT:2> ; int LA178_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA178_0 == RULE_CARET ) ) { int LA178_2 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA178_2 == RULE_IDENT ) ) { int LA178_3 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred496_InternalProcessorDsl ( ) ) ) { alt178 = <NUM_LIT:1> ; } } else if ( ( LA178_2 == RULE_NUMBER ) ) { int LA178_4 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred496_InternalProcessorDsl ( ) ) ) { alt178 = <NUM_LIT:1> ; } } } switch ( alt178 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Identifier__Group_3_2__0_in_rule__Identifier__Group_3__2__Impl38445 ) ; rule__Identifier__Group_3_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop178 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getGroup_3_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group_3_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Identifier__Group_3_2__0__Impl_in_rule__Identifier__Group_3_2__038482 ) ; rule__Identifier__Group_3_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Identifier__Group_3_2__1_in_rule__Identifier__Group_3_2__038485 ) ; rule__Identifier__Group_3_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group_3_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getCARETTerminalRuleCall_3_2_0 ( ) ) ; } { match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__Identifier__Group_3_2__0__Impl38513 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getCARETTerminalRuleCall_3_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group_3_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Identifier__Group_3_2__1__Impl_in_rule__Identifier__Group_3_2__138543 ) ; rule__Identifier__Group_3_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__Group_3_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getValsAssignment_3_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__Identifier__ValsAssignment_3_2_1_in_rule__Identifier__Group_3_2__1__Impl38570 ) ; rule__Identifier__ValsAssignment_3_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getValsAssignment_3_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingRule__Group__0__Impl_in_rule__MappingRule__Group__038604 ) ; rule__MappingRule__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group__1_in_rule__MappingRule__Group__038607 ) ; rule__MappingRule__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleAccess ( ) . getNameAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingRule__NameAssignment_0_in_rule__MappingRule__Group__0__Impl38634 ) ; rule__MappingRule__NameAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleAccess ( ) . getNameAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingRule__Group__1__Impl_in_rule__MappingRule__Group__138664 ) ; rule__MappingRule__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group__2_in_rule__MappingRule__Group__138667 ) ; rule__MappingRule__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleAccess ( ) . getLPARENTerminalRuleCall_1 ( ) ) ; } match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rule__MappingRule__Group__1__Impl38694 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleAccess ( ) . getLPARENTerminalRuleCall_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingRule__Group__2__Impl_in_rule__MappingRule__Group__238723 ) ; rule__MappingRule__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group__3_in_rule__MappingRule__Group__238726 ) ; rule__MappingRule__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleAccess ( ) . getTypeAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingRule__TypeAssignment_2_in_rule__MappingRule__Group__2__Impl38753 ) ; rule__MappingRule__TypeAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleAccess ( ) . getTypeAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingRule__Group__3__Impl_in_rule__MappingRule__Group__338783 ) ; rule__MappingRule__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group__4_in_rule__MappingRule__Group__338786 ) ; rule__MappingRule__Group__4 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleAccess ( ) . getGroup_3 ( ) ) ; } loop179 : do { int alt179 = <NUM_LIT:2> ; int LA179_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA179_0 == RULE_COMMA ) ) { alt179 = <NUM_LIT:1> ; } switch ( alt179 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MappingRule__Group_3__0_in_rule__MappingRule__Group__3__Impl38813 ) ; rule__MappingRule__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop179 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleAccess ( ) . getGroup_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__4 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingRule__Group__4__Impl_in_rule__MappingRule__Group__438844 ) ; rule__MappingRule__Group__4__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group__5_in_rule__MappingRule__Group__438847 ) ; rule__MappingRule__Group__5 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__4__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleAccess ( ) . getRPARENTerminalRuleCall_4 ( ) ) ; } match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rule__MappingRule__Group__4__Impl38874 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleAccess ( ) . getRPARENTerminalRuleCall_4 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__5 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingRule__Group__5__Impl_in_rule__MappingRule__Group__538903 ) ; rule__MappingRule__Group__5__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group__6_in_rule__MappingRule__Group__538906 ) ; rule__MappingRule__Group__6 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__5__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleAccess ( ) . getEQUALSTerminalRuleCall_5 ( ) ) ; } match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rule__MappingRule__Group__5__Impl38933 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleAccess ( ) . getEQUALSTerminalRuleCall_5 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__6 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingRule__Group__6__Impl_in_rule__MappingRule__Group__638962 ) ; rule__MappingRule__Group__6__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group__7_in_rule__MappingRule__Group__638965 ) ; rule__MappingRule__Group__7 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__6__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleAccess ( ) . getMappingAssignment_6 ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingRule__MappingAssignment_6_in_rule__MappingRule__Group__6__Impl38992 ) ; rule__MappingRule__MappingAssignment_6 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleAccess ( ) . getMappingAssignment_6 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__7 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingRule__Group__7__Impl_in_rule__MappingRule__Group__739022 ) ; rule__MappingRule__Group__7__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group__7__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleAccess ( ) . getSEMICOLONTerminalRuleCall_7 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__MappingRule__Group__7__Impl39049 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleAccess ( ) . getSEMICOLONTerminalRuleCall_7 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingRule__Group_3__0__Impl_in_rule__MappingRule__Group_3__039094 ) ; rule__MappingRule__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group_3__1_in_rule__MappingRule__Group_3__039097 ) ; rule__MappingRule__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleAccess ( ) . getCOMMATerminalRuleCall_3_0 ( ) ) ; } match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_rule__MappingRule__Group_3__0__Impl39124 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleAccess ( ) . getCOMMATerminalRuleCall_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingRule__Group_3__1__Impl_in_rule__MappingRule__Group_3__139153 ) ; rule__MappingRule__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleAccess ( ) . getFiltersAssignment_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingRule__FiltersAssignment_3_1_in_rule__MappingRule__Group_3__1__Impl39180 ) ; rule__MappingRule__FiltersAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleAccess ( ) . getFiltersAssignment_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Mapping__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Mapping__Group__0__Impl_in_rule__Mapping__Group__039214 ) ; rule__Mapping__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Mapping__Group__1_in_rule__Mapping__Group__039217 ) ; rule__Mapping__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Mapping__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingAccess ( ) . getWSTerminalRuleCall_0 ( ) ) ; } loop180 : do { int alt180 = <NUM_LIT:2> ; int LA180_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA180_0 == RULE_WS ) ) { alt180 = <NUM_LIT:1> ; } switch ( alt180 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Mapping__Group__0__Impl39245 ) ; if ( state . failed ) return ; } break ; default : break loop180 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingAccess ( ) . getWSTerminalRuleCall_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Mapping__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Mapping__Group__1__Impl_in_rule__Mapping__Group__139276 ) ; rule__Mapping__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Mapping__Group__2_in_rule__Mapping__Group__139279 ) ; rule__Mapping__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Mapping__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingAccess ( ) . getMappingItemsAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__Mapping__MappingItemsAssignment_1_in_rule__Mapping__Group__1__Impl39306 ) ; rule__Mapping__MappingItemsAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingAccess ( ) . getMappingItemsAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Mapping__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Mapping__Group__2__Impl_in_rule__Mapping__Group__239336 ) ; rule__Mapping__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Mapping__Group__3_in_rule__Mapping__Group__239339 ) ; rule__Mapping__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Mapping__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingAccess ( ) . getGroup_2 ( ) ) ; } loop181 : do { int alt181 = <NUM_LIT:2> ; alt181 = dfa181 . predict ( input ) ; switch ( alt181 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Mapping__Group_2__0_in_rule__Mapping__Group__2__Impl39366 ) ; rule__Mapping__Group_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop181 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingAccess ( ) . getGroup_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Mapping__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Mapping__Group__3__Impl_in_rule__Mapping__Group__339397 ) ; rule__Mapping__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Mapping__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingAccess ( ) . getWSTerminalRuleCall_3 ( ) ) ; } loop182 : do { int alt182 = <NUM_LIT:2> ; int LA182_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA182_0 == RULE_WS ) ) { alt182 = <NUM_LIT:1> ; } switch ( alt182 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Mapping__Group__3__Impl39425 ) ; if ( state . failed ) return ; } break ; default : break loop182 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingAccess ( ) . getWSTerminalRuleCall_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Mapping__Group_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Mapping__Group_2__0__Impl_in_rule__Mapping__Group_2__039464 ) ; rule__Mapping__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Mapping__Group_2__1_in_rule__Mapping__Group_2__039467 ) ; rule__Mapping__Group_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Mapping__Group_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingAccess ( ) . getWSTerminalRuleCall_2_0 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Mapping__Group_2__0__Impl39497 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingAccess ( ) . getWSTerminalRuleCall_2_0 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingAccess ( ) . getWSTerminalRuleCall_2_0 ( ) ) ; } loop183 : do { int alt183 = <NUM_LIT:2> ; int LA183_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA183_0 == RULE_WS ) ) { alt183 = <NUM_LIT:1> ; } switch ( alt183 ) { case <NUM_LIT:1> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Mapping__Group_2__0__Impl39510 ) ; if ( state . failed ) return ; } break ; default : break loop183 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingAccess ( ) . getWSTerminalRuleCall_2_0 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Mapping__Group_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Mapping__Group_2__1__Impl_in_rule__Mapping__Group_2__139543 ) ; rule__Mapping__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Mapping__Group_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingAccess ( ) . getMappingItemsAssignment_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__Mapping__MappingItemsAssignment_2_1_in_rule__Mapping__Group_2__1__Impl39570 ) ; rule__Mapping__MappingItemsAssignment_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingAccess ( ) . getMappingItemsAssignment_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingItem__Group__0__Impl_in_rule__MappingItem__Group__039604 ) ; rule__MappingItem__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingItem__Group__1_in_rule__MappingItem__Group__039607 ) ; rule__MappingItem__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingItemAccess ( ) . getColAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingItem__ColAssignment_0_in_rule__MappingItem__Group__0__Impl39634 ) ; rule__MappingItem__ColAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingItemAccess ( ) . getColAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingItem__Group__1__Impl_in_rule__MappingItem__Group__139664 ) ; rule__MappingItem__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingItemAccess ( ) . getGroup_1 ( ) ) ; } int alt184 = <NUM_LIT:2> ; int LA184_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA184_0 == RULE_STRING ) ) { alt184 = <NUM_LIT:1> ; } switch ( alt184 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MappingItem__Group_1__0_in_rule__MappingItem__Group__1__Impl39691 ) ; rule__MappingItem__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingItemAccess ( ) . getGroup_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingItem__Group_1__0__Impl_in_rule__MappingItem__Group_1__039726 ) ; rule__MappingItem__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingItem__Group_1__1_in_rule__MappingItem__Group_1__039729 ) ; rule__MappingItem__Group_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingItemAccess ( ) . getSTRINGTerminalRuleCall_1_0 ( ) ) ; } match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_rule__MappingItem__Group_1__0__Impl39756 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingItemAccess ( ) . getSTRINGTerminalRuleCall_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__Group_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingItem__Group_1__1__Impl_in_rule__MappingItem__Group_1__139785 ) ; rule__MappingItem__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingItem__Group_1__2_in_rule__MappingItem__Group_1__139788 ) ; rule__MappingItem__Group_1__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__Group_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingItemAccess ( ) . getTypeAssignment_1_1 ( ) ) ; } int alt185 = <NUM_LIT:2> ; int LA185_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA185_0 == RULE_IDENT ) ) { alt185 = <NUM_LIT:1> ; } switch ( alt185 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MappingItem__TypeAssignment_1_1_in_rule__MappingItem__Group_1__1__Impl39815 ) ; rule__MappingItem__TypeAssignment_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingItemAccess ( ) . getTypeAssignment_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__Group_1__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingItem__Group_1__2__Impl_in_rule__MappingItem__Group_1__239846 ) ; rule__MappingItem__Group_1__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__Group_1__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingItemAccess ( ) . getGroup_1_2 ( ) ) ; } int alt186 = <NUM_LIT:2> ; int LA186_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA186_0 == RULE_STRING ) ) { alt186 = <NUM_LIT:1> ; } switch ( alt186 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MappingItem__Group_1_2__0_in_rule__MappingItem__Group_1__2__Impl39873 ) ; rule__MappingItem__Group_1_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingItemAccess ( ) . getGroup_1_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__Group_1_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingItem__Group_1_2__0__Impl_in_rule__MappingItem__Group_1_2__039910 ) ; rule__MappingItem__Group_1_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingItem__Group_1_2__1_in_rule__MappingItem__Group_1_2__039913 ) ; rule__MappingItem__Group_1_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__Group_1_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingItemAccess ( ) . getSTRINGTerminalRuleCall_1_2_0 ( ) ) ; } match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_rule__MappingItem__Group_1_2__0__Impl39940 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingItemAccess ( ) . getSTRINGTerminalRuleCall_1_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__Group_1_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingItem__Group_1_2__1__Impl_in_rule__MappingItem__Group_1_2__139969 ) ; rule__MappingItem__Group_1_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__Group_1_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingItemAccess ( ) . getAttrAssignment_1_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingItem__AttrAssignment_1_2_1_in_rule__MappingItem__Group_1_2__1__Impl39996 ) ; rule__MappingItem__AttrAssignment_1_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingItemAccess ( ) . getAttrAssignment_1_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingColumn__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingColumn__Group__0__Impl_in_rule__MappingColumn__Group__040030 ) ; rule__MappingColumn__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingColumn__Group__1_in_rule__MappingColumn__Group__040033 ) ; rule__MappingColumn__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingColumn__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingColumnAccess ( ) . getNameAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingColumn__NameAssignment_0_in_rule__MappingColumn__Group__0__Impl40060 ) ; rule__MappingColumn__NameAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingColumnAccess ( ) . getNameAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingColumn__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingColumn__Group__1__Impl_in_rule__MappingColumn__Group__140090 ) ; rule__MappingColumn__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingColumn__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingColumnAccess ( ) . getGroup_1 ( ) ) ; } loop187 : do { int alt187 = <NUM_LIT:2> ; int LA187_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA187_0 == RULE_CARET ) ) { alt187 = <NUM_LIT:1> ; } switch ( alt187 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MappingColumn__Group_1__0_in_rule__MappingColumn__Group__1__Impl40117 ) ; rule__MappingColumn__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop187 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingColumnAccess ( ) . getGroup_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingColumn__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingColumn__Group_1__0__Impl_in_rule__MappingColumn__Group_1__040152 ) ; rule__MappingColumn__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingColumn__Group_1__1_in_rule__MappingColumn__Group_1__040155 ) ; rule__MappingColumn__Group_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingColumn__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingColumnAccess ( ) . getCARETTerminalRuleCall_1_0 ( ) ) ; } match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rule__MappingColumn__Group_1__0__Impl40182 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingColumnAccess ( ) . getCARETTerminalRuleCall_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingColumn__Group_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__MappingColumn__Group_1__1__Impl_in_rule__MappingColumn__Group_1__140211 ) ; rule__MappingColumn__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingColumn__Group_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingColumnAccess ( ) . getValsAssignment_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingColumn__ValsAssignment_1_1_in_rule__MappingColumn__Group_1__1__Impl40238 ) ; rule__MappingColumn__ValsAssignment_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingColumnAccess ( ) . getValsAssignment_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OptionalFeature__Group__0__Impl_in_rule__OptionalFeature__Group__040272 ) ; rule__OptionalFeature__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group__1_in_rule__OptionalFeature__Group__040275 ) ; rule__OptionalFeature__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureAccess ( ) . getNameAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__OptionalFeature__NameAssignment_0_in_rule__OptionalFeature__Group__0__Impl40302 ) ; rule__OptionalFeature__NameAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureAccess ( ) . getNameAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OptionalFeature__Group__1__Impl_in_rule__OptionalFeature__Group__140332 ) ; rule__OptionalFeature__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group__2_in_rule__OptionalFeature__Group__140335 ) ; rule__OptionalFeature__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureAccess ( ) . getLPARENTerminalRuleCall_1 ( ) ) ; } match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rule__OptionalFeature__Group__1__Impl40362 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureAccess ( ) . getLPARENTerminalRuleCall_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OptionalFeature__Group__2__Impl_in_rule__OptionalFeature__Group__240391 ) ; rule__OptionalFeature__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group__3_in_rule__OptionalFeature__Group__240394 ) ; rule__OptionalFeature__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureAccess ( ) . getTypeAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__OptionalFeature__TypeAssignment_2_in_rule__OptionalFeature__Group__2__Impl40421 ) ; rule__OptionalFeature__TypeAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureAccess ( ) . getTypeAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OptionalFeature__Group__3__Impl_in_rule__OptionalFeature__Group__340451 ) ; rule__OptionalFeature__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group__4_in_rule__OptionalFeature__Group__340454 ) ; rule__OptionalFeature__Group__4 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureAccess ( ) . getGroup_3 ( ) ) ; } loop188 : do { int alt188 = <NUM_LIT:2> ; int LA188_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA188_0 == RULE_COMMA ) ) { alt188 = <NUM_LIT:1> ; } switch ( alt188 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__OptionalFeature__Group_3__0_in_rule__OptionalFeature__Group__3__Impl40481 ) ; rule__OptionalFeature__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop188 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureAccess ( ) . getGroup_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__4 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OptionalFeature__Group__4__Impl_in_rule__OptionalFeature__Group__440512 ) ; rule__OptionalFeature__Group__4__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group__5_in_rule__OptionalFeature__Group__440515 ) ; rule__OptionalFeature__Group__5 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__4__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureAccess ( ) . getRPARENTerminalRuleCall_4 ( ) ) ; } match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rule__OptionalFeature__Group__4__Impl40542 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureAccess ( ) . getRPARENTerminalRuleCall_4 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__5 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OptionalFeature__Group__5__Impl_in_rule__OptionalFeature__Group__540571 ) ; rule__OptionalFeature__Group__5__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group__6_in_rule__OptionalFeature__Group__540574 ) ; rule__OptionalFeature__Group__6 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__5__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureAccess ( ) . getEQUALSTerminalRuleCall_5 ( ) ) ; } match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rule__OptionalFeature__Group__5__Impl40601 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureAccess ( ) . getEQUALSTerminalRuleCall_5 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__6 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OptionalFeature__Group__6__Impl_in_rule__OptionalFeature__Group__640630 ) ; rule__OptionalFeature__Group__6__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group__7_in_rule__OptionalFeature__Group__640633 ) ; rule__OptionalFeature__Group__7 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__6__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureAccess ( ) . getOptionAssignment_6 ( ) ) ; } { pushFollow ( FOLLOW_rule__OptionalFeature__OptionAssignment_6_in_rule__OptionalFeature__Group__6__Impl40660 ) ; rule__OptionalFeature__OptionAssignment_6 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureAccess ( ) . getOptionAssignment_6 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__7 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OptionalFeature__Group__7__Impl_in_rule__OptionalFeature__Group__740690 ) ; rule__OptionalFeature__Group__7__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group__7__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureAccess ( ) . getSEMICOLONTerminalRuleCall_7 ( ) ) ; } match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rule__OptionalFeature__Group__7__Impl40717 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureAccess ( ) . getSEMICOLONTerminalRuleCall_7 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group_3__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OptionalFeature__Group_3__0__Impl_in_rule__OptionalFeature__Group_3__040762 ) ; rule__OptionalFeature__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group_3__1_in_rule__OptionalFeature__Group_3__040765 ) ; rule__OptionalFeature__Group_3__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group_3__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureAccess ( ) . getCOMMATerminalRuleCall_3_0 ( ) ) ; } match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_rule__OptionalFeature__Group_3__0__Impl40792 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureAccess ( ) . getCOMMATerminalRuleCall_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group_3__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__OptionalFeature__Group_3__1__Impl_in_rule__OptionalFeature__Group_3__140821 ) ; rule__OptionalFeature__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__Group_3__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureAccess ( ) . getFiltersAssignment_3_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__OptionalFeature__FiltersAssignment_3_1_in_rule__OptionalFeature__Group_3__1__Impl40848 ) ; rule__OptionalFeature__FiltersAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureAccess ( ) . getFiltersAssignment_3_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoType__Group__0__Impl_in_rule__PojoType__Group__040882 ) ; rule__PojoType__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoType__Group__1_in_rule__PojoType__Group__040885 ) ; rule__PojoType__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getAlternatives_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoType__Alternatives_0_in_rule__PojoType__Group__0__Impl40912 ) ; rule__PojoType__Alternatives_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getAlternatives_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoType__Group__1__Impl_in_rule__PojoType__Group__140942 ) ; rule__PojoType__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getArrayAssignment_1 ( ) ) ; } int alt189 = <NUM_LIT:2> ; int LA189_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA189_0 == <NUM_LIT> ) ) { alt189 = <NUM_LIT:1> ; } switch ( alt189 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojoType__ArrayAssignment_1_in_rule__PojoType__Group__1__Impl40969 ) ; rule__PojoType__ArrayAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getArrayAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoType__Group_0_1__0__Impl_in_rule__PojoType__Group_0_1__041004 ) ; rule__PojoType__Group_0_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoType__Group_0_1__1_in_rule__PojoType__Group_0_1__041007 ) ; rule__PojoType__Group_0_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getGroup_0_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoType__Group_0_1_0__0_in_rule__PojoType__Group_0_1__0__Impl41034 ) ; rule__PojoType__Group_0_1_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getGroup_0_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoType__Group_0_1__1__Impl_in_rule__PojoType__Group_0_1__141064 ) ; rule__PojoType__Group_0_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getGroup_0_1_1 ( ) ) ; } int alt190 = <NUM_LIT:2> ; int LA190_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA190_0 == RULE_LESS_THAN ) ) { alt190 = <NUM_LIT:1> ; } switch ( alt190 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojoType__Group_0_1_1__0_in_rule__PojoType__Group_0_1__1__Impl41091 ) ; rule__PojoType__Group_0_1_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getGroup_0_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoType__Group_0_1_0__0__Impl_in_rule__PojoType__Group_0_1_0__041126 ) ; rule__PojoType__Group_0_1_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoType__Group_0_1_0__1_in_rule__PojoType__Group_0_1_0__041129 ) ; rule__PojoType__Group_0_1_0__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getCOLONTerminalRuleCall_0_1_0_0 ( ) ) ; } match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rule__PojoType__Group_0_1_0__0__Impl41156 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getCOLONTerminalRuleCall_0_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoType__Group_0_1_0__1__Impl_in_rule__PojoType__Group_0_1_0__141185 ) ; rule__PojoType__Group_0_1_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getAlternatives_0_1_0_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoType__Alternatives_0_1_0_1_in_rule__PojoType__Group_0_1_0__1__Impl41212 ) ; rule__PojoType__Alternatives_0_1_0_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getAlternatives_0_1_0_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_0_1_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoType__Group_0_1_0_1_0__0__Impl_in_rule__PojoType__Group_0_1_0_1_0__041246 ) ; rule__PojoType__Group_0_1_0_1_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoType__Group_0_1_0_1_0__1_in_rule__PojoType__Group_0_1_0_1_0__041249 ) ; rule__PojoType__Group_0_1_0_1_0__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_0_1_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getCOLONTerminalRuleCall_0_1_0_1_0_0 ( ) ) ; } match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rule__PojoType__Group_0_1_0_1_0__0__Impl41276 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getCOLONTerminalRuleCall_0_1_0_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_0_1_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoType__Group_0_1_0_1_0__1__Impl_in_rule__PojoType__Group_0_1_0_1_0__141305 ) ; rule__PojoType__Group_0_1_0_1_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_0_1_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getRefAssignment_0_1_0_1_0_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoType__RefAssignment_0_1_0_1_0_1_in_rule__PojoType__Group_0_1_0_1_0__1__Impl41332 ) ; rule__PojoType__RefAssignment_0_1_0_1_0_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getRefAssignment_0_1_0_1_0_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoType__Group_0_1_1__0__Impl_in_rule__PojoType__Group_0_1_1__041366 ) ; rule__PojoType__Group_0_1_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoType__Group_0_1_1__1_in_rule__PojoType__Group_0_1_1__041369 ) ; rule__PojoType__Group_0_1_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getLESS_THANTerminalRuleCall_0_1_1_0 ( ) ) ; } match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rule__PojoType__Group_0_1_1__0__Impl41396 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getLESS_THANTerminalRuleCall_0_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoType__Group_0_1_1__1__Impl_in_rule__PojoType__Group_0_1_1__141425 ) ; rule__PojoType__Group_0_1_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoType__Group_0_1_1__2_in_rule__PojoType__Group_0_1_1__141428 ) ; rule__PojoType__Group_0_1_1__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getAlternatives_0_1_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoType__Alternatives_0_1_1_1_in_rule__PojoType__Group_0_1_1__1__Impl41455 ) ; rule__PojoType__Alternatives_0_1_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getAlternatives_0_1_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_1__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoType__Group_0_1_1__2__Impl_in_rule__PojoType__Group_0_1_1__241485 ) ; rule__PojoType__Group_0_1_1__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_1__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getMORE_THANTerminalRuleCall_0_1_1_2 ( ) ) ; } match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rule__PojoType__Group_0_1_1__2__Impl41512 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getMORE_THANTerminalRuleCall_0_1_1_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_1_1_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoType__Group_0_1_1_1_0__0__Impl_in_rule__PojoType__Group_0_1_1_1_0__041547 ) ; rule__PojoType__Group_0_1_1_1_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoType__Group_0_1_1_1_0__1_in_rule__PojoType__Group_0_1_1_1_0__041550 ) ; rule__PojoType__Group_0_1_1_1_0__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_1_1_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getCOLONTerminalRuleCall_0_1_1_1_0_0 ( ) ) ; } match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rule__PojoType__Group_0_1_1_1_0__0__Impl41577 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getCOLONTerminalRuleCall_0_1_1_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_1_1_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoType__Group_0_1_1_1_0__1__Impl_in_rule__PojoType__Group_0_1_1_1_0__141606 ) ; rule__PojoType__Group_0_1_1_1_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__Group_0_1_1_1_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getGrefAssignment_0_1_1_1_0_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoType__GrefAssignment_0_1_1_1_0_1_in_rule__PojoType__Group_0_1_1_1_0__1__Impl41633 ) ; rule__PojoType__GrefAssignment_0_1_1_1_0_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getGrefAssignment_0_1_1_1_0_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PackageDeclaration__Group__0__Impl_in_rule__PackageDeclaration__Group__041667 ) ; rule__PackageDeclaration__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PackageDeclaration__Group__1_in_rule__PackageDeclaration__Group__041670 ) ; rule__PackageDeclaration__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getPackageKeyword_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_60_in_rule__PackageDeclaration__Group__0__Impl41698 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getPackageKeyword_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PackageDeclaration__Group__1__Impl_in_rule__PackageDeclaration__Group__141729 ) ; rule__PackageDeclaration__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PackageDeclaration__Group__2_in_rule__PackageDeclaration__Group__141732 ) ; rule__PackageDeclaration__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getNameAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PackageDeclaration__NameAssignment_1_in_rule__PackageDeclaration__Group__1__Impl41759 ) ; rule__PackageDeclaration__NameAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getNameAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PackageDeclaration__Group__2__Impl_in_rule__PackageDeclaration__Group__241789 ) ; rule__PackageDeclaration__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PackageDeclaration__Group__3_in_rule__PackageDeclaration__Group__241792 ) ; rule__PackageDeclaration__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getGroup_2 ( ) ) ; } int alt191 = <NUM_LIT:2> ; int LA191_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA191_0 == <NUM_LIT> ) ) { alt191 = <NUM_LIT:1> ; } switch ( alt191 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PackageDeclaration__Group_2__0_in_rule__PackageDeclaration__Group__2__Impl41819 ) ; rule__PackageDeclaration__Group_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getGroup_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PackageDeclaration__Group__3__Impl_in_rule__PackageDeclaration__Group__341850 ) ; rule__PackageDeclaration__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PackageDeclaration__Group__4_in_rule__PackageDeclaration__Group__341853 ) ; rule__PackageDeclaration__Group__4 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getLBRACETerminalRuleCall_3 ( ) ) ; } match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_rule__PackageDeclaration__Group__3__Impl41880 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getLBRACETerminalRuleCall_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group__4 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PackageDeclaration__Group__4__Impl_in_rule__PackageDeclaration__Group__441909 ) ; rule__PackageDeclaration__Group__4__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PackageDeclaration__Group__5_in_rule__PackageDeclaration__Group__441912 ) ; rule__PackageDeclaration__Group__5 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group__4__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getElementsAssignment_4 ( ) ) ; } loop192 : do { int alt192 = <NUM_LIT:2> ; int LA192_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA192_0 == <NUM_LIT> || LA192_0 == <NUM_LIT> || ( LA192_0 >= <NUM_LIT> && LA192_0 <= <NUM_LIT> ) || ( LA192_0 >= <NUM_LIT> && LA192_0 <= <NUM_LIT> ) ) ) { alt192 = <NUM_LIT:1> ; } switch ( alt192 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PackageDeclaration__ElementsAssignment_4_in_rule__PackageDeclaration__Group__4__Impl41939 ) ; rule__PackageDeclaration__ElementsAssignment_4 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop192 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getElementsAssignment_4 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group__5 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PackageDeclaration__Group__5__Impl_in_rule__PackageDeclaration__Group__541970 ) ; rule__PackageDeclaration__Group__5__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group__5__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getRBRACETerminalRuleCall_5 ( ) ) ; } match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_rule__PackageDeclaration__Group__5__Impl41997 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getRBRACETerminalRuleCall_5 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PackageDeclaration__Group_2__0__Impl_in_rule__PackageDeclaration__Group_2__042038 ) ; rule__PackageDeclaration__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PackageDeclaration__Group_2__1_in_rule__PackageDeclaration__Group_2__042041 ) ; rule__PackageDeclaration__Group_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getSuffixKeyword_2_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_61_in_rule__PackageDeclaration__Group_2__0__Impl42069 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getSuffixKeyword_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PackageDeclaration__Group_2__1__Impl_in_rule__PackageDeclaration__Group_2__142100 ) ; rule__PackageDeclaration__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__Group_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getSuffixAssignment_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PackageDeclaration__SuffixAssignment_2_1_in_rule__PackageDeclaration__Group_2__1__Impl42127 ) ; rule__PackageDeclaration__SuffixAssignment_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getSuffixAssignment_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Import__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__042161 ) ; rule__Import__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Import__Group__1_in_rule__Import__Group__042164 ) ; rule__Import__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Import__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportAccess ( ) . getImportKeyword_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_62_in_rule__Import__Group__0__Impl42192 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportAccess ( ) . getImportKeyword_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Import__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Import__Group__1__Impl_in_rule__Import__Group__142223 ) ; rule__Import__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Import__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportAccess ( ) . getImportedNamespaceAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__Import__ImportedNamespaceAssignment_1_in_rule__Import__Group__1__Impl42250 ) ; rule__Import__ImportedNamespaceAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportAccess ( ) . getImportedNamespaceAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Implements__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Implements__Group__0__Impl_in_rule__Implements__Group__042284 ) ; rule__Implements__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Implements__Group__1_in_rule__Implements__Group__042287 ) ; rule__Implements__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Implements__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImplementsAccess ( ) . getImplementsKeyword_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_63_in_rule__Implements__Group__0__Impl42315 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImplementsAccess ( ) . getImplementsKeyword_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Implements__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Implements__Group__1__Impl_in_rule__Implements__Group__142346 ) ; rule__Implements__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Implements__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImplementsAccess ( ) . getImplementsAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__Implements__ImplementsAssignment_1_in_rule__Implements__Group__1__Impl42373 ) ; rule__Implements__ImplementsAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImplementsAccess ( ) . getImplementsAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Extends__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Extends__Group__0__Impl_in_rule__Extends__Group__042407 ) ; rule__Extends__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Extends__Group__1_in_rule__Extends__Group__042410 ) ; rule__Extends__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Extends__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExtendsAccess ( ) . getExtendsKeyword_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_64_in_rule__Extends__Group__0__Impl42438 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExtendsAccess ( ) . getExtendsKeyword_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Extends__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Extends__Group__1__Impl_in_rule__Extends__Group__142469 ) ; rule__Extends__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Extends__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExtendsAccess ( ) . getExtendsAssignment_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__Extends__ExtendsAssignment_1_in_rule__Extends__Group__1__Impl42496 ) ; rule__Extends__ExtendsAssignment_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExtendsAccess ( ) . getExtendsAssignment_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__Group_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoEntityModifier2__Group_0__0__Impl_in_rule__PojoEntityModifier2__Group_0__042530 ) ; rule__PojoEntityModifier2__Group_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoEntityModifier2__Group_0__1_in_rule__PojoEntityModifier2__Group_0__042533 ) ; rule__PojoEntityModifier2__Group_0__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__Group_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getExtendsKeyword_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_64_in_rule__PojoEntityModifier2__Group_0__0__Impl42561 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getExtendsKeyword_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__Group_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoEntityModifier2__Group_0__1__Impl_in_rule__PojoEntityModifier2__Group_0__142592 ) ; rule__PojoEntityModifier2__Group_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__Group_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getSuperTypeAssignment_0_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoEntityModifier2__SuperTypeAssignment_0_1_in_rule__PojoEntityModifier2__Group_0__1__Impl42619 ) ; rule__PojoEntityModifier2__SuperTypeAssignment_0_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getSuperTypeAssignment_0_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__Group_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoEntityModifier2__Group_1__0__Impl_in_rule__PojoEntityModifier2__Group_1__042653 ) ; rule__PojoEntityModifier2__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoEntityModifier2__Group_1__1_in_rule__PojoEntityModifier2__Group_1__042656 ) ; rule__PojoEntityModifier2__Group_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__Group_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getDiscriminatorKeyword_1_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_65_in_rule__PojoEntityModifier2__Group_1__0__Impl42684 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getDiscriminatorKeyword_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__Group_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoEntityModifier2__Group_1__1__Impl_in_rule__PojoEntityModifier2__Group_1__142715 ) ; rule__PojoEntityModifier2__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__Group_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getDiscriminatorAssignment_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoEntityModifier2__DiscriminatorAssignment_1_1_in_rule__PojoEntityModifier2__Group_1__1__Impl42742 ) ; rule__PojoEntityModifier2__DiscriminatorAssignment_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getDiscriminatorAssignment_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__Group_2__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoEntityModifier2__Group_2__0__Impl_in_rule__PojoEntityModifier2__Group_2__042776 ) ; rule__PojoEntityModifier2__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoEntityModifier2__Group_2__1_in_rule__PojoEntityModifier2__Group_2__042779 ) ; rule__PojoEntityModifier2__Group_2__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__Group_2__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getSerializableKeyword_2_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_66_in_rule__PojoEntityModifier2__Group_2__0__Impl42807 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getSerializableKeyword_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__Group_2__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoEntityModifier2__Group_2__1__Impl_in_rule__PojoEntityModifier2__Group_2__142838 ) ; rule__PojoEntityModifier2__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__Group_2__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getSernumAssignment_2_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoEntityModifier2__SernumAssignment_2_1_in_rule__PojoEntityModifier2__Group_2__1__Impl42865 ) ; rule__PojoEntityModifier2__SernumAssignment_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getSernumAssignment_2_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoEntity__Group__0__Impl_in_rule__PojoEntity__Group__042899 ) ; rule__PojoEntity__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoEntity__Group__1_in_rule__PojoEntity__Group__042902 ) ; rule__PojoEntity__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityAccess ( ) . getModifiers1Assignment_0 ( ) ) ; } loop193 : do { int alt193 = <NUM_LIT:2> ; int LA193_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA193_0 >= <NUM_LIT> && LA193_0 <= <NUM_LIT> ) ) ) { alt193 = <NUM_LIT:1> ; } switch ( alt193 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojoEntity__Modifiers1Assignment_0_in_rule__PojoEntity__Group__0__Impl42929 ) ; rule__PojoEntity__Modifiers1Assignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop193 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityAccess ( ) . getModifiers1Assignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoEntity__Group__1__Impl_in_rule__PojoEntity__Group__142960 ) ; rule__PojoEntity__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoEntity__Group__2_in_rule__PojoEntity__Group__142963 ) ; rule__PojoEntity__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityAccess ( ) . getPojoKeyword_1 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_48_in_rule__PojoEntity__Group__1__Impl42991 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityAccess ( ) . getPojoKeyword_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoEntity__Group__2__Impl_in_rule__PojoEntity__Group__243022 ) ; rule__PojoEntity__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoEntity__Group__3_in_rule__PojoEntity__Group__243025 ) ; rule__PojoEntity__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityAccess ( ) . getNameAssignment_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoEntity__NameAssignment_2_in_rule__PojoEntity__Group__2__Impl43052 ) ; rule__PojoEntity__NameAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityAccess ( ) . getNameAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoEntity__Group__3__Impl_in_rule__PojoEntity__Group__343082 ) ; rule__PojoEntity__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoEntity__Group__4_in_rule__PojoEntity__Group__343085 ) ; rule__PojoEntity__Group__4 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityAccess ( ) . getModifiers2Assignment_3 ( ) ) ; } loop194 : do { int alt194 = <NUM_LIT:2> ; int LA194_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA194_0 >= <NUM_LIT> && LA194_0 <= <NUM_LIT> ) ) ) { alt194 = <NUM_LIT:1> ; } switch ( alt194 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojoEntity__Modifiers2Assignment_3_in_rule__PojoEntity__Group__3__Impl43112 ) ; rule__PojoEntity__Modifiers2Assignment_3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop194 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityAccess ( ) . getModifiers2Assignment_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Group__4 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoEntity__Group__4__Impl_in_rule__PojoEntity__Group__443143 ) ; rule__PojoEntity__Group__4__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoEntity__Group__5_in_rule__PojoEntity__Group__443146 ) ; rule__PojoEntity__Group__5 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Group__4__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityAccess ( ) . getLBRACETerminalRuleCall_4 ( ) ) ; } match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_rule__PojoEntity__Group__4__Impl43173 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityAccess ( ) . getLBRACETerminalRuleCall_4 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Group__5 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoEntity__Group__5__Impl_in_rule__PojoEntity__Group__543202 ) ; rule__PojoEntity__Group__5__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoEntity__Group__6_in_rule__PojoEntity__Group__543205 ) ; rule__PojoEntity__Group__6 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Group__5__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityAccess ( ) . getFeaturesAssignment_5 ( ) ) ; } loop195 : do { int alt195 = <NUM_LIT:2> ; int LA195_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA195_0 == RULE_IDENT ) ) { alt195 = <NUM_LIT:1> ; } switch ( alt195 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojoEntity__FeaturesAssignment_5_in_rule__PojoEntity__Group__5__Impl43232 ) ; rule__PojoEntity__FeaturesAssignment_5 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop195 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityAccess ( ) . getFeaturesAssignment_5 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Group__6 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoEntity__Group__6__Impl_in_rule__PojoEntity__Group__643263 ) ; rule__PojoEntity__Group__6__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Group__6__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityAccess ( ) . getRBRACETerminalRuleCall_6 ( ) ) ; } match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_rule__PojoEntity__Group__6__Impl43290 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityAccess ( ) . getRBRACETerminalRuleCall_6 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group__0__Impl_in_rule__PojoProperty__Group__043333 ) ; rule__PojoProperty__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoProperty__Group__1_in_rule__PojoProperty__Group__043336 ) ; rule__PojoProperty__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getNameAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__NameAssignment_0_in_rule__PojoProperty__Group__0__Impl43363 ) ; rule__PojoProperty__NameAssignment_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getNameAssignment_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group__1__Impl_in_rule__PojoProperty__Group__143393 ) ; rule__PojoProperty__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoProperty__Group__2_in_rule__PojoProperty__Group__143396 ) ; rule__PojoProperty__Group__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getAlternatives_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__Alternatives_1_in_rule__PojoProperty__Group__1__Impl43423 ) ; rule__PojoProperty__Alternatives_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getAlternatives_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group__2__Impl_in_rule__PojoProperty__Group__243453 ) ; rule__PojoProperty__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoProperty__Group__3_in_rule__PojoProperty__Group__243456 ) ; rule__PojoProperty__Group__3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getArrayAssignment_2 ( ) ) ; } int alt196 = <NUM_LIT:2> ; int LA196_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA196_0 == <NUM_LIT> ) ) { alt196 = <NUM_LIT:1> ; } switch ( alt196 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojoProperty__ArrayAssignment_2_in_rule__PojoProperty__Group__2__Impl43483 ) ; rule__PojoProperty__ArrayAssignment_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getArrayAssignment_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group__3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group__3__Impl_in_rule__PojoProperty__Group__343514 ) ; rule__PojoProperty__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group__3__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getModifiersAssignment_3 ( ) ) ; } loop197 : do { int alt197 = <NUM_LIT:2> ; int LA197_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA197_0 == <NUM_LIT> || ( LA197_0 >= <NUM_LIT> && LA197_0 <= <NUM_LIT> ) ) ) { alt197 = <NUM_LIT:1> ; } switch ( alt197 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojoProperty__ModifiersAssignment_3_in_rule__PojoProperty__Group__3__Impl43541 ) ; rule__PojoProperty__ModifiersAssignment_3 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop197 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getModifiersAssignment_3 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1__0__Impl_in_rule__PojoProperty__Group_1_1__043580 ) ; rule__PojoProperty__Group_1_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1__1_in_rule__PojoProperty__Group_1_1__043583 ) ; rule__PojoProperty__Group_1_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_0__0_in_rule__PojoProperty__Group_1_1__0__Impl43610 ) ; rule__PojoProperty__Group_1_1_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1__1__Impl_in_rule__PojoProperty__Group_1_1__143640 ) ; rule__PojoProperty__Group_1_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1_1 ( ) ) ; } int alt198 = <NUM_LIT:2> ; int LA198_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA198_0 == RULE_LESS_THAN ) ) { alt198 = <NUM_LIT:1> ; } switch ( alt198 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_1__0_in_rule__PojoProperty__Group_1_1__1__Impl43667 ) ; rule__PojoProperty__Group_1_1_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_0__0__Impl_in_rule__PojoProperty__Group_1_1_0__043702 ) ; rule__PojoProperty__Group_1_1_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_0__1_in_rule__PojoProperty__Group_1_1_0__043705 ) ; rule__PojoProperty__Group_1_1_0__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getCOLONTerminalRuleCall_1_1_0_0 ( ) ) ; } match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rule__PojoProperty__Group_1_1_0__0__Impl43732 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getCOLONTerminalRuleCall_1_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_0__1__Impl_in_rule__PojoProperty__Group_1_1_0__143761 ) ; rule__PojoProperty__Group_1_1_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getAlternatives_1_1_0_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__Alternatives_1_1_0_1_in_rule__PojoProperty__Group_1_1_0__1__Impl43788 ) ; rule__PojoProperty__Alternatives_1_1_0_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getAlternatives_1_1_0_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_0_1_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_0_1_0__0__Impl_in_rule__PojoProperty__Group_1_1_0_1_0__043822 ) ; rule__PojoProperty__Group_1_1_0_1_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_0_1_0__1_in_rule__PojoProperty__Group_1_1_0_1_0__043825 ) ; rule__PojoProperty__Group_1_1_0_1_0__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_0_1_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getCOLONTerminalRuleCall_1_1_0_1_0_0 ( ) ) ; } match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rule__PojoProperty__Group_1_1_0_1_0__0__Impl43852 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getCOLONTerminalRuleCall_1_1_0_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_0_1_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_0_1_0__1__Impl_in_rule__PojoProperty__Group_1_1_0_1_0__143881 ) ; rule__PojoProperty__Group_1_1_0_1_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_0_1_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getAlternatives_1_1_0_1_0_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__Alternatives_1_1_0_1_0_1_in_rule__PojoProperty__Group_1_1_0_1_0__1__Impl43908 ) ; rule__PojoProperty__Alternatives_1_1_0_1_0_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getAlternatives_1_1_0_1_0_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_0_1_0_1_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_0_1_0_1_0__0__Impl_in_rule__PojoProperty__Group_1_1_0_1_0_1_0__043942 ) ; rule__PojoProperty__Group_1_1_0_1_0_1_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_0_1_0_1_0__1_in_rule__PojoProperty__Group_1_1_0_1_0_1_0__043945 ) ; rule__PojoProperty__Group_1_1_0_1_0_1_0__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_0_1_0_1_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getCOLONTerminalRuleCall_1_1_0_1_0_1_0_0 ( ) ) ; } match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rule__PojoProperty__Group_1_1_0_1_0_1_0__0__Impl43972 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getCOLONTerminalRuleCall_1_1_0_1_0_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_0_1_0_1_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_0_1_0_1_0__1__Impl_in_rule__PojoProperty__Group_1_1_0_1_0_1_0__144001 ) ; rule__PojoProperty__Group_1_1_0_1_0_1_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_0_1_0_1_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getAttrsAssignment_1_1_0_1_0_1_0_1 ( ) ) ; } loop199 : do { int alt199 = <NUM_LIT:2> ; int LA199_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA199_0 == RULE_IDENT ) ) { int LA199_2 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA199_2 == EOF || LA199_2 == RULE_IDENT || LA199_2 == RULE_RBRACE || LA199_2 == RULE_LESS_THAN || LA199_2 == <NUM_LIT> || LA199_2 == <NUM_LIT> || ( LA199_2 >= <NUM_LIT> && LA199_2 <= <NUM_LIT> ) ) ) { alt199 = <NUM_LIT:1> ; } } switch ( alt199 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PojoProperty__AttrsAssignment_1_1_0_1_0_1_0_1_in_rule__PojoProperty__Group_1_1_0_1_0_1_0__1__Impl44028 ) ; rule__PojoProperty__AttrsAssignment_1_1_0_1_0_1_0_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop199 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getAttrsAssignment_1_1_0_1_0_1_0_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_1__0__Impl_in_rule__PojoProperty__Group_1_1_1__044063 ) ; rule__PojoProperty__Group_1_1_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_1__1_in_rule__PojoProperty__Group_1_1_1__044066 ) ; rule__PojoProperty__Group_1_1_1__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getLESS_THANTerminalRuleCall_1_1_1_0 ( ) ) ; } match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rule__PojoProperty__Group_1_1_1__0__Impl44093 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getLESS_THANTerminalRuleCall_1_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_1__1__Impl_in_rule__PojoProperty__Group_1_1_1__144122 ) ; rule__PojoProperty__Group_1_1_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_1__2_in_rule__PojoProperty__Group_1_1_1__144125 ) ; rule__PojoProperty__Group_1_1_1__2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getAlternatives_1_1_1_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__Alternatives_1_1_1_1_in_rule__PojoProperty__Group_1_1_1__1__Impl44152 ) ; rule__PojoProperty__Alternatives_1_1_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getAlternatives_1_1_1_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_1__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_1__2__Impl_in_rule__PojoProperty__Group_1_1_1__244182 ) ; rule__PojoProperty__Group_1_1_1__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_1__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getMORE_THANTerminalRuleCall_1_1_1_2 ( ) ) ; } match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rule__PojoProperty__Group_1_1_1__2__Impl44209 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getMORE_THANTerminalRuleCall_1_1_1_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_1_1_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_1_1_0__0__Impl_in_rule__PojoProperty__Group_1_1_1_1_0__044244 ) ; rule__PojoProperty__Group_1_1_1_1_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_1_1_0__1_in_rule__PojoProperty__Group_1_1_1_1_0__044247 ) ; rule__PojoProperty__Group_1_1_1_1_0__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_1_1_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getCOLONTerminalRuleCall_1_1_1_1_0_0 ( ) ) ; } match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rule__PojoProperty__Group_1_1_1_1_0__0__Impl44274 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getCOLONTerminalRuleCall_1_1_1_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_1_1_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__PojoProperty__Group_1_1_1_1_0__1__Impl_in_rule__PojoProperty__Group_1_1_1_1_0__144303 ) ; rule__PojoProperty__Group_1_1_1_1_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__Group_1_1_1_1_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getGrefAssignment_1_1_1_1_0_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__GrefAssignment_1_1_1_1_0_1_in_rule__PojoProperty__Group_1_1_1_1_0__1__Impl44330 ) ; rule__PojoProperty__GrefAssignment_1_1_1_1_0_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getGrefAssignment_1_1_1_1_0_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__QualifiedNameWithWildcard__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__QualifiedNameWithWildcard__Group__0__Impl_in_rule__QualifiedNameWithWildcard__Group__044364 ) ; rule__QualifiedNameWithWildcard__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__QualifiedNameWithWildcard__Group__1_in_rule__QualifiedNameWithWildcard__Group__044367 ) ; rule__QualifiedNameWithWildcard__Group__1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__QualifiedNameWithWildcard__Group__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getQualifiedNameWithWildcardAccess ( ) . getQualifiedNameParserRuleCall_0 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_rule__QualifiedNameWithWildcard__Group__0__Impl44394 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getQualifiedNameWithWildcardAccess ( ) . getQualifiedNameParserRuleCall_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__QualifiedNameWithWildcard__Group__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__QualifiedNameWithWildcard__Group__1__Impl_in_rule__QualifiedNameWithWildcard__Group__144423 ) ; rule__QualifiedNameWithWildcard__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__QualifiedNameWithWildcard__Group__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getQualifiedNameWithWildcardAccess ( ) . getFullStopAsteriskKeyword_1 ( ) ) ; } int alt200 = <NUM_LIT:2> ; int LA200_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA200_0 == <NUM_LIT> ) ) { alt200 = <NUM_LIT:1> ; } switch ( alt200 ) { case <NUM_LIT:1> : { match ( input , <NUM_LIT> , FOLLOW_67_in_rule__QualifiedNameWithWildcard__Group__1__Impl44452 ) ; if ( state . failed ) return ; } break ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getQualifiedNameWithWildcardAccess ( ) . getFullStopAsteriskKeyword_1 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__FeaturesAssignment_1_0_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getFeaturesOptionalFeatureParserRuleCall_1_0_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleOptionalFeature_in_rule__Artifacts__FeaturesAssignment_1_0_044494 ) ; ruleOptionalFeature ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getFeaturesOptionalFeatureParserRuleCall_1_0_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__StatementsAssignment_1_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getStatementsMetaStatementParserRuleCall_1_1_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleMetaStatement_in_rule__Artifacts__StatementsAssignment_1_1_044525 ) ; ruleMetaStatement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getStatementsMetaStatementParserRuleCall_1_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__MappingsAssignment_1_2_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getMappingsMappingRuleParserRuleCall_1_2_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleMappingRule_in_rule__Artifacts__MappingsAssignment_1_2_044556 ) ; ruleMappingRule ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getMappingsMappingRuleParserRuleCall_1_2_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__PojosAssignment_1_3_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getPojosPojoDefinitionParserRuleCall_1_3_0_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoDefinition_in_rule__Artifacts__PojosAssignment_1_3_044587 ) ; rulePojoDefinition ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getPojosPojoDefinitionParserRuleCall_1_3_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__UsagesAssignment_1_4_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getUsagesPojoUsageParserRuleCall_1_4_0_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoUsage_in_rule__Artifacts__UsagesAssignment_1_4_044618 ) ; rulePojoUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getUsagesPojoUsageParserRuleCall_1_4_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__PropertiesAssignment_1_5_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getPropertiesPropertyParserRuleCall_1_5_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleProperty_in_rule__Artifacts__PropertiesAssignment_1_5_044649 ) ; ruleProperty ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getPropertiesPropertyParserRuleCall_1_5_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__TablesAssignment_1_6_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getTablesTableDefinitionParserRuleCall_1_6_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleTableDefinition_in_rule__Artifacts__TablesAssignment_1_6_044680 ) ; ruleTableDefinition ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getTablesTableDefinitionParserRuleCall_1_6_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__TableUsagesAssignment_1_7_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getTableUsagesTableUsageParserRuleCall_1_7_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleTableUsage_in_rule__Artifacts__TableUsagesAssignment_1_7_044711 ) ; ruleTableUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getTableUsagesTableUsageParserRuleCall_1_7_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__PojoPackagesAssignment_1_8_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getPojoPackagesPackageDeclarationParserRuleCall_1_8_0_0 ( ) ) ; } pushFollow ( FOLLOW_rulePackageDeclaration_in_rule__Artifacts__PojoPackagesAssignment_1_8_044742 ) ; rulePackageDeclaration ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getPojoPackagesPackageDeclarationParserRuleCall_1_8_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Artifacts__UsagesExtAssignment_1_9_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getArtifactsAccess ( ) . getUsagesExtPojoUsageExtParserRuleCall_1_9_0_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoUsageExt_in_rule__Artifacts__UsagesExtAssignment_1_9_044773 ) ; rulePojoUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getArtifactsAccess ( ) . getUsagesExtPojoUsageExtParserRuleCall_1_9_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__TypeNameAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlTypeAssignementAccess ( ) . getTypeNameIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__SqlTypeAssignement__TypeNameAssignment_044804 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlTypeAssignementAccess ( ) . getTypeNameIDENTTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__SizeAssignment_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlTypeAssignementAccess ( ) . getSizeNUMBERTerminalRuleCall_1_1_0 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__SqlTypeAssignement__SizeAssignment_1_144835 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlTypeAssignementAccess ( ) . getSizeNUMBERTerminalRuleCall_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlTypeAssignement__TypeAssignment_3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlTypeAssignementAccess ( ) . getTypePojoTypeParserRuleCall_3_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoType_in_rule__SqlTypeAssignement__TypeAssignment_344866 ) ; rulePojoType ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlTypeAssignementAccess ( ) . getTypePojoTypeParserRuleCall_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnTypeAssignement__DbColumnAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnTypeAssignementAccess ( ) . getDbColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ColumnTypeAssignement__DbColumnAssignment_044897 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnTypeAssignementAccess ( ) . getDbColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnTypeAssignement__TypeAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnTypeAssignementAccess ( ) . getTypePojoTypeParserRuleCall_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoType_in_rule__ColumnTypeAssignement__TypeAssignment_244928 ) ; rulePojoType ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnTypeAssignementAccess ( ) . getTypePojoTypeParserRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ShowColumnTypeAssignement__DbColumnAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getDbColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ShowColumnTypeAssignement__DbColumnAssignment_044959 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getDbColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ShowColumnTypeAssignement__TypeAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getTypePropertyValueParserRuleCall_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_rule__ShowColumnTypeAssignement__TypeAssignment_244990 ) ; rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getTypePropertyValueParserRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableAssignement__DbTableAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableAssignementAccess ( ) . getDbTableIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__TableAssignement__DbTableAssignment_045021 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableAssignementAccess ( ) . getDbTableIDENTTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableAssignement__NewNameAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableAssignementAccess ( ) . getNewNameIDENTTerminalRuleCall_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__TableAssignement__NewNameAssignment_245052 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableAssignementAccess ( ) . getNewNameIDENTTerminalRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__JoinTableAssignement__DbTableAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getJoinTableAssignementAccess ( ) . getDbTableIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__JoinTableAssignement__DbTableAssignment_045083 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getJoinTableAssignementAccess ( ) . getDbTableIDENTTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__JoinTableAssignement__DbTablesAssignment_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getJoinTableAssignementAccess ( ) . getDbTablesIDENTTerminalRuleCall_1_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__JoinTableAssignement__DbTablesAssignment_1_145114 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getJoinTableAssignementAccess ( ) . getDbTablesIDENTTerminalRuleCall_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnAssignement__DbColumnAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAssignementAccess ( ) . getDbColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ColumnAssignement__DbColumnAssignment_045145 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAssignementAccess ( ) . getDbColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnAssignement__NewNameAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAssignementAccess ( ) . getNewNameIDENTTerminalRuleCall_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ColumnAssignement__NewNameAssignment_245176 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAssignementAccess ( ) . getNewNameIDENTTerminalRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ImportAssignement__DbColumnAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportAssignementAccess ( ) . getDbColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ImportAssignement__DbColumnAssignment_045207 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportAssignementAccess ( ) . getDbColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ImportAssignement__PkTableAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportAssignementAccess ( ) . getPkTableIDENTTerminalRuleCall_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ImportAssignement__PkTableAssignment_245238 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportAssignementAccess ( ) . getPkTableIDENTTerminalRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ImportAssignement__PkColumnAssignment_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportAssignementAccess ( ) . getPkColumnIDENTTerminalRuleCall_3_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ImportAssignement__PkColumnAssignment_3_145269 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportAssignementAccess ( ) . getPkColumnIDENTTerminalRuleCall_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ExportAssignement__DbColumnAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExportAssignementAccess ( ) . getDbColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ExportAssignement__DbColumnAssignment_045300 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExportAssignementAccess ( ) . getDbColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ExportAssignement__FkTableAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExportAssignementAccess ( ) . getFkTableIDENTTerminalRuleCall_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ExportAssignement__FkTableAssignment_245331 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExportAssignementAccess ( ) . getFkTableIDENTTerminalRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ExportAssignement__FkColumnAssignment_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExportAssignementAccess ( ) . getFkColumnIDENTTerminalRuleCall_3_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ExportAssignement__FkColumnAssignment_3_145362 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExportAssignementAccess ( ) . getFkColumnIDENTTerminalRuleCall_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__InheritanceAssignement__DiscriminatorAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getInheritanceAssignementAccess ( ) . getDiscriminatorIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__InheritanceAssignement__DiscriminatorAssignment_045393 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getInheritanceAssignementAccess ( ) . getDiscriminatorIDENTTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__InheritanceAssignement__DbTableAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getInheritanceAssignementAccess ( ) . getDbTableIDENTTerminalRuleCall_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__InheritanceAssignement__DbTableAssignment_245424 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getInheritanceAssignementAccess ( ) . getDbTableIDENTTerminalRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__InheritanceAssignement__DbColumnsAssignment_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getInheritanceAssignementAccess ( ) . getDbColumnsIDENTTerminalRuleCall_3_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__InheritanceAssignement__DbColumnsAssignment_3_145455 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getInheritanceAssignementAccess ( ) . getDbColumnsIDENTTerminalRuleCall_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ManyToManyAssignement__PkColumnAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getManyToManyAssignementAccess ( ) . getPkColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ManyToManyAssignement__PkColumnAssignment_045486 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getManyToManyAssignementAccess ( ) . getPkColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ManyToManyAssignement__PkTableAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getManyToManyAssignementAccess ( ) . getPkTableIDENTTerminalRuleCall_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ManyToManyAssignement__PkTableAssignment_245517 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getManyToManyAssignementAccess ( ) . getPkTableIDENTTerminalRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ManyToManyAssignement__FkColumnAssignment_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getManyToManyAssignementAccess ( ) . getFkColumnIDENTTerminalRuleCall_3_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ManyToManyAssignement__FkColumnAssignment_3_145548 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getManyToManyAssignementAccess ( ) . getFkColumnIDENTTerminalRuleCall_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__NameAssignment_0_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameResolvePojoOnKeyword_0_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameResolvePojoOnKeyword_0_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_68_in_rule__Property__NameAssignment_0_045584 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameResolvePojoOnKeyword_0_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameResolvePojoOnKeyword_0_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__NameAssignment_0_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameResolvePojoOffKeyword_0_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameResolvePojoOffKeyword_0_1_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_69_in_rule__Property__NameAssignment_0_145628 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameResolvePojoOffKeyword_0_1_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameResolvePojoOffKeyword_0_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__NameAssignment_0_2_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseKeyword_0_2_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseKeyword_0_2_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_70_in_rule__Property__NameAssignment_0_2_045672 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseKeyword_0_2_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseKeyword_0_2_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__DatabaseAssignment_0_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDatabaseDatabasePropertyParserRuleCall_0_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseProperty_in_rule__Property__DatabaseAssignment_0_2_145711 ) ; ruleDatabaseProperty ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDatabaseDatabasePropertyParserRuleCall_0_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__NameAssignment_0_3_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNamePojogenKeyword_0_3_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNamePojogenKeyword_0_3_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_71_in_rule__Property__NameAssignment_0_3_045747 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNamePojogenKeyword_0_3_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNamePojogenKeyword_0_3_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__PojogenAssignment_0_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getPojogenPojogenPropertyParserRuleCall_0_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojogenProperty_in_rule__Property__PojogenAssignment_0_3_145786 ) ; rulePojogenProperty ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getPojogenPojogenPropertyParserRuleCall_0_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__NameAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameIsOnlineKeyword_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameIsOnlineKeyword_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_72_in_rule__DatabaseProperty__NameAssignment_045822 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameIsOnlineKeyword_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameIsOnlineKeyword_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__NameAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameIsOfflineKeyword_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameIsOfflineKeyword_1_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_73_in_rule__DatabaseProperty__NameAssignment_145866 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameIsOfflineKeyword_1_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameIsOfflineKeyword_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__NameAssignment_2_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameHasUrlKeyword_2_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameHasUrlKeyword_2_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_74_in_rule__DatabaseProperty__NameAssignment_2_045910 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameHasUrlKeyword_2_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameHasUrlKeyword_2_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__DbUrlAssignment_2_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getDbUrlPropertyValueParserRuleCall_2_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_rule__DatabaseProperty__DbUrlAssignment_2_245949 ) ; rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getDbUrlPropertyValueParserRuleCall_2_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__NameAssignment_3_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameLoginUsernameKeyword_3_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameLoginUsernameKeyword_3_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_75_in_rule__DatabaseProperty__NameAssignment_3_045985 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameLoginUsernameKeyword_3_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameLoginUsernameKeyword_3_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__DbUsernameAssignment_3_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getDbUsernamePropertyValueParserRuleCall_3_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_rule__DatabaseProperty__DbUsernameAssignment_3_246024 ) ; rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getDbUsernamePropertyValueParserRuleCall_3_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__NameAssignment_4_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameLoginPasswordKeyword_4_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameLoginPasswordKeyword_4_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_76_in_rule__DatabaseProperty__NameAssignment_4_046060 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameLoginPasswordKeyword_4_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameLoginPasswordKeyword_4_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__DbPasswordAssignment_4_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getDbPasswordPropertyValueParserRuleCall_4_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_rule__DatabaseProperty__DbPasswordAssignment_4_246099 ) ; rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getDbPasswordPropertyValueParserRuleCall_4_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__NameAssignment_5_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameActiveSchemaKeyword_5_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameActiveSchemaKeyword_5_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_77_in_rule__DatabaseProperty__NameAssignment_5_046135 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameActiveSchemaKeyword_5_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameActiveSchemaKeyword_5_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__DbSchemaAssignment_5_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getDbSchemaPropertyValueParserRuleCall_5_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_rule__DatabaseProperty__DbSchemaAssignment_5_246174 ) ; rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getDbSchemaPropertyValueParserRuleCall_5_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__NameAssignment_6_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameJdbcDriverKeyword_6_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getNameJdbcDriverKeyword_6_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_78_in_rule__DatabaseProperty__NameAssignment_6_046210 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameJdbcDriverKeyword_6_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getNameJdbcDriverKeyword_6_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseProperty__DbDriverAssignment_6_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabasePropertyAccess ( ) . getDbDriverPropertyValueParserRuleCall_6_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_rule__DatabaseProperty__DbDriverAssignment_6_246249 ) ; rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabasePropertyAccess ( ) . getDbDriverPropertyValueParserRuleCall_6_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_0_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTypesSqltypesKeyword_0_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTypesSqltypesKeyword_0_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_79_in_rule__PojogenProperty__NameAssignment_0_046285 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTypesSqltypesKeyword_0_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTypesSqltypesKeyword_0_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__SqlTypesAssignment_0_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getSqlTypesSqlTypeAssignementParserRuleCall_0_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleSqlTypeAssignement_in_rule__PojogenProperty__SqlTypesAssignment_0_1_146324 ) ; ruleSqlTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getSqlTypesSqlTypeAssignementParserRuleCall_0_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTypesInTableKeyword_1_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTypesInTableKeyword_1_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_80_in_rule__PojogenProperty__NameAssignment_1_046360 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTypesInTableKeyword_1_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTypesInTableKeyword_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTableAssignment_1_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_1_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_1_246399 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_1_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__SqlTypesAssignment_1_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getSqlTypesSqlTypeAssignementParserRuleCall_1_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleSqlTypeAssignement_in_rule__PojogenProperty__SqlTypesAssignment_1_3_146430 ) ; ruleSqlTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getSqlTypesSqlTypeAssignementParserRuleCall_1_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_2_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTypesForColumnsKeyword_2_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTypesForColumnsKeyword_2_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_81_in_rule__PojogenProperty__NameAssignment_2_046466 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTypesForColumnsKeyword_2_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTypesForColumnsKeyword_2_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTableAssignment_2_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_2_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_2_246505 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_2_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__ColumnTypesAssignment_2_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypesColumnTypeAssignementParserRuleCall_2_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleColumnTypeAssignement_in_rule__PojogenProperty__ColumnTypesAssignment_2_3_146536 ) ; ruleColumnTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypesColumnTypeAssignementParserRuleCall_2_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_3_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameShowTypeForColumnKeyword_3_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameShowTypeForColumnKeyword_3_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_82_in_rule__PojogenProperty__NameAssignment_3_046572 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameShowTypeForColumnKeyword_3_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameShowTypeForColumnKeyword_3_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTableAssignment_3_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_3_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_3_246611 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_3_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__ColumnTypeAssignment_3_4 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypeShowColumnTypeAssignementParserRuleCall_3_4_0 ( ) ) ; } pushFollow ( FOLLOW_ruleShowColumnTypeAssignement_in_rule__PojogenProperty__ColumnTypeAssignment_3_446642 ) ; ruleShowColumnTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypeShowColumnTypeAssignementParserRuleCall_3_4_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_4_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreTablesKeyword_4_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreTablesKeyword_4_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_83_in_rule__PojogenProperty__NameAssignment_4_046678 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreTablesKeyword_4_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreTablesKeyword_4_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTablesAssignment_4_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTablesIDENTTerminalRuleCall_4_1_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTablesAssignment_4_1_146717 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTablesIDENTTerminalRuleCall_4_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_5_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameOnlyTablesKeyword_5_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameOnlyTablesKeyword_5_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_84_in_rule__PojogenProperty__NameAssignment_5_046753 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameOnlyTablesKeyword_5_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameOnlyTablesKeyword_5_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTablesAssignment_5_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTablesIDENTTerminalRuleCall_5_1_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTablesAssignment_5_1_146792 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTablesIDENTTerminalRuleCall_5_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_6_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameJoinTablesKeyword_6_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameJoinTablesKeyword_6_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_85_in_rule__PojogenProperty__NameAssignment_6_046828 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameJoinTablesKeyword_6_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameJoinTablesKeyword_6_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__JoinTablesAssignment_6_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getJoinTablesJoinTableAssignementParserRuleCall_6_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleJoinTableAssignement_in_rule__PojogenProperty__JoinTablesAssignment_6_1_146867 ) ; ruleJoinTableAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getJoinTablesJoinTableAssignementParserRuleCall_6_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_7_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreColumnsKeyword_7_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreColumnsKeyword_7_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_86_in_rule__PojogenProperty__NameAssignment_7_046903 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreColumnsKeyword_7_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreColumnsKeyword_7_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTableAssignment_7_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_7_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_7_246942 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_7_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbColumnsAssignment_7_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsIDENTTerminalRuleCall_7_3_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbColumnsAssignment_7_3_146973 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsIDENTTerminalRuleCall_7_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_8_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameRequiredColumnsKeyword_8_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameRequiredColumnsKeyword_8_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_87_in_rule__PojogenProperty__NameAssignment_8_047009 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameRequiredColumnsKeyword_8_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameRequiredColumnsKeyword_8_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTableAssignment_8_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_8_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_8_247048 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_8_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbColumnsAssignment_8_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsIDENTTerminalRuleCall_8_3_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbColumnsAssignment_8_3_147079 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsIDENTTerminalRuleCall_8_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_9_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameNotRequiredColumnsKeyword_9_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameNotRequiredColumnsKeyword_9_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_88_in_rule__PojogenProperty__NameAssignment_9_047115 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameNotRequiredColumnsKeyword_9_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameNotRequiredColumnsKeyword_9_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTableAssignment_9_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_9_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_9_247154 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_9_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbColumnsAssignment_9_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsIDENTTerminalRuleCall_9_3_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbColumnsAssignment_9_3_147185 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsIDENTTerminalRuleCall_9_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_10_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameCreateColumnsKeyword_10_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameCreateColumnsKeyword_10_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_89_in_rule__PojogenProperty__NameAssignment_10_047221 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameCreateColumnsKeyword_10_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameCreateColumnsKeyword_10_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTableAssignment_10_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_10_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_10_247260 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_10_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__ColumnTypesAssignment_10_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypesColumnTypeAssignementParserRuleCall_10_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleColumnTypeAssignement_in_rule__PojogenProperty__ColumnTypesAssignment_10_3_147291 ) ; ruleColumnTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypesColumnTypeAssignementParserRuleCall_10_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_11_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameRenameTablesKeyword_11_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameRenameTablesKeyword_11_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_90_in_rule__PojogenProperty__NameAssignment_11_047327 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameRenameTablesKeyword_11_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameRenameTablesKeyword_11_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__TablesAssignment_11_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getTablesTableAssignementParserRuleCall_11_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleTableAssignement_in_rule__PojogenProperty__TablesAssignment_11_1_147366 ) ; ruleTableAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getTablesTableAssignementParserRuleCall_11_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_12_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameRenameColumnsKeyword_12_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameRenameColumnsKeyword_12_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_91_in_rule__PojogenProperty__NameAssignment_12_047402 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameRenameColumnsKeyword_12_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameRenameColumnsKeyword_12_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTableAssignment_12_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_12_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_12_247441 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_12_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__ColumnsAssignment_12_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnsColumnAssignementParserRuleCall_12_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleColumnAssignement_in_rule__PojogenProperty__ColumnsAssignment_12_3_147472 ) ; ruleColumnAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnsColumnAssignementParserRuleCall_12_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_13_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreOneToManyKeyword_13_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreOneToManyKeyword_13_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_92_in_rule__PojogenProperty__NameAssignment_13_047508 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreOneToManyKeyword_13_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreOneToManyKeyword_13_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTableAssignment_13_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_13_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_13_247547 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_13_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__ExportsAssignment_13_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getExportsExportAssignementParserRuleCall_13_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleExportAssignement_in_rule__PojogenProperty__ExportsAssignment_13_3_147578 ) ; ruleExportAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getExportsExportAssignementParserRuleCall_13_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_14_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreManyToOneKeyword_14_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreManyToOneKeyword_14_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_93_in_rule__PojogenProperty__NameAssignment_14_047614 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreManyToOneKeyword_14_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreManyToOneKeyword_14_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTableAssignment_14_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_14_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_14_247653 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_14_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__ImportsAssignment_14_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsImportAssignementParserRuleCall_14_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleImportAssignement_in_rule__PojogenProperty__ImportsAssignment_14_3_147684 ) ; ruleImportAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsImportAssignementParserRuleCall_14_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_15_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameInheritManyToOneKeyword_15_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameInheritManyToOneKeyword_15_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_94_in_rule__PojogenProperty__NameAssignment_15_047720 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameInheritManyToOneKeyword_15_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameInheritManyToOneKeyword_15_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTableAssignment_15_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_15_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_15_247759 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_15_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__ImportsAssignment_15_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsImportAssignementParserRuleCall_15_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleImportAssignement_in_rule__PojogenProperty__ImportsAssignment_15_3_147790 ) ; ruleImportAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsImportAssignementParserRuleCall_15_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_16_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameCreateOneToManyKeyword_16_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameCreateOneToManyKeyword_16_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_95_in_rule__PojogenProperty__NameAssignment_16_047826 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameCreateOneToManyKeyword_16_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameCreateOneToManyKeyword_16_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTableAssignment_16_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_16_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_16_247865 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_16_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__ExportsAssignment_16_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getExportsExportAssignementParserRuleCall_16_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleExportAssignement_in_rule__PojogenProperty__ExportsAssignment_16_3_147896 ) ; ruleExportAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getExportsExportAssignementParserRuleCall_16_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_17_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameCreateManyToOneKeyword_17_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameCreateManyToOneKeyword_17_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_96_in_rule__PojogenProperty__NameAssignment_17_047932 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameCreateManyToOneKeyword_17_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameCreateManyToOneKeyword_17_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTableAssignment_17_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_17_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_17_247971 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_17_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__ImportsAssignment_17_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsImportAssignementParserRuleCall_17_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleImportAssignement_in_rule__PojogenProperty__ImportsAssignment_17_3_148002 ) ; ruleImportAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsImportAssignementParserRuleCall_17_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_18_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTableManyToManyKeyword_18_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTableManyToManyKeyword_18_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_97_in_rule__PojogenProperty__NameAssignment_18_048038 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTableManyToManyKeyword_18_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameTableManyToManyKeyword_18_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTableAssignment_18_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_18_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_18_248077 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_18_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__Many2sAssignment_18_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getMany2sManyToManyAssignementParserRuleCall_18_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleManyToManyAssignement_in_rule__PojogenProperty__Many2sAssignment_18_3_148108 ) ; ruleManyToManyAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getMany2sManyToManyAssignementParserRuleCall_18_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_19_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameInheritDiscriminatorKeyword_19_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameInheritDiscriminatorKeyword_19_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_98_in_rule__PojogenProperty__NameAssignment_19_048144 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameInheritDiscriminatorKeyword_19_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameInheritDiscriminatorKeyword_19_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbTableAssignment_19_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_19_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_19_248183 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_19_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__DbColumnAssignment_19_4 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnIDENTTerminalRuleCall_19_4_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbColumnAssignment_19_448214 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnIDENTTerminalRuleCall_19_4_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__InheritanceAssignment_19_5_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getInheritanceInheritanceAssignementParserRuleCall_19_5_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleInheritanceAssignement_in_rule__PojogenProperty__InheritanceAssignment_19_5_148245 ) ; ruleInheritanceAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getInheritanceInheritanceAssignementParserRuleCall_19_5_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_20_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameGenerateMethodsKeyword_20_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameGenerateMethodsKeyword_20_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_99_in_rule__PojogenProperty__NameAssignment_20_048281 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameGenerateMethodsKeyword_20_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameGenerateMethodsKeyword_20_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__MethodsAssignment_20_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getMethodsIDENTTerminalRuleCall_20_1_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojogenProperty__MethodsAssignment_20_1_148320 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getMethodsIDENTTerminalRuleCall_20_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_21_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameImplementsInterfacesKeyword_21_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameImplementsInterfacesKeyword_21_0_0 ( ) ) ; } match ( input , <NUM_LIT:100> , FOLLOW_100_in_rule__PojogenProperty__NameAssignment_21_048356 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameImplementsInterfacesKeyword_21_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameImplementsInterfacesKeyword_21_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__ToImplementsAssignment_21_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getToImplementsJvmTypeCrossReference_21_1_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getToImplementsJvmTypeQualifiedNameParserRuleCall_21_1_1_0_1 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_rule__PojogenProperty__ToImplementsAssignment_21_1_148399 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getToImplementsJvmTypeQualifiedNameParserRuleCall_21_1_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getToImplementsJvmTypeCrossReference_21_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__NameAssignment_22_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameExtendsClassKeyword_22_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getNameExtendsClassKeyword_22_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_101_in_rule__PojogenProperty__NameAssignment_22_048439 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameExtendsClassKeyword_22_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getNameExtendsClassKeyword_22_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojogenProperty__ToExtendsAssignment_22_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getToExtendsJvmTypeCrossReference_22_2_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojogenPropertyAccess ( ) . getToExtendsJvmTypeQualifiedNameParserRuleCall_22_2_0_1 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_rule__PojogenProperty__ToExtendsAssignment_22_248482 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getToExtendsJvmTypeQualifiedNameParserRuleCall_22_2_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojogenPropertyAccess ( ) . getToExtendsJvmTypeCrossReference_22_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoDefinition__NameAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoDefinitionAccess ( ) . getNameIDENTTerminalRuleCall_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojoDefinition__NameAssignment_148517 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoDefinitionAccess ( ) . getNameIDENTTerminalRuleCall_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoDefinition__ClassAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoDefinitionAccess ( ) . getClassAlternatives_2_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoDefinition__ClassAlternatives_2_0_in_rule__PojoDefinition__ClassAssignment_248548 ) ; rule__PojoDefinition__ClassAlternatives_2_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoDefinitionAccess ( ) . getClassAlternatives_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsage__StatementAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageAccess ( ) . getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ColumnUsage__StatementAssignment_148585 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageAccess ( ) . getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsage__PojoAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageAccess ( ) . getPojoPojoDefinitionCrossReference_2_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageAccess ( ) . getPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ColumnUsage__PojoAssignment_248624 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageAccess ( ) . getPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageAccess ( ) . getPojoPojoDefinitionCrossReference_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsage__StatementAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageAccess ( ) . getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__IdentifierUsage__StatementAssignment_148663 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageAccess ( ) . getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsage__PojoAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageAccess ( ) . getPojoPojoDefinitionCrossReference_2_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageAccess ( ) . getPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__IdentifierUsage__PojoAssignment_248702 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageAccess ( ) . getPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageAccess ( ) . getPojoPojoDefinitionCrossReference_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsage__StatementAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageAccess ( ) . getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ConstantUsage__StatementAssignment_148741 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageAccess ( ) . getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsage__PojoAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageAccess ( ) . getPojoPojoDefinitionCrossReference_2_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageAccess ( ) . getPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ConstantUsage__PojoAssignment_248780 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageAccess ( ) . getPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageAccess ( ) . getPojoPojoDefinitionCrossReference_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsage__StatementAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageAccess ( ) . getStatementMappingRuleCrossReference_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageAccess ( ) . getStatementMappingRuleIDENTTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MappingUsage__StatementAssignment_148819 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageAccess ( ) . getStatementMappingRuleIDENTTerminalRuleCall_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageAccess ( ) . getStatementMappingRuleCrossReference_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsage__PojoAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageAccess ( ) . getPojoPojoDefinitionCrossReference_2_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageAccess ( ) . getPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MappingUsage__PojoAssignment_248858 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageAccess ( ) . getPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageAccess ( ) . getPojoPojoDefinitionCrossReference_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsageExt__StatementAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageExtAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageExtAccess ( ) . getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ColumnUsageExt__StatementAssignment_148897 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageExtAccess ( ) . getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageExtAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ColumnUsageExt__PojoAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageExtAccess ( ) . getPojoPojoEntityCrossReference_2_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnUsageExtAccess ( ) . getPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ColumnUsageExt__PojoAssignment_248936 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageExtAccess ( ) . getPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageExtAccess ( ) . getPojoPojoEntityCrossReference_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsageExt__StatementAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageExtAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageExtAccess ( ) . getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__IdentifierUsageExt__StatementAssignment_148975 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageExtAccess ( ) . getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageExtAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IdentifierUsageExt__PojoAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageExtAccess ( ) . getPojoPojoEntityCrossReference_2_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierUsageExtAccess ( ) . getPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__IdentifierUsageExt__PojoAssignment_249014 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageExtAccess ( ) . getPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageExtAccess ( ) . getPojoPojoEntityCrossReference_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsageExt__StatementAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageExtAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageExtAccess ( ) . getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ConstantUsageExt__StatementAssignment_149053 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageExtAccess ( ) . getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageExtAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__ConstantUsageExt__PojoAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageExtAccess ( ) . getPojoPojoEntityCrossReference_2_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantUsageExtAccess ( ) . getPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__ConstantUsageExt__PojoAssignment_249092 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageExtAccess ( ) . getPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageExtAccess ( ) . getPojoPojoEntityCrossReference_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsageExt__StatementAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageExtAccess ( ) . getStatementMappingRuleCrossReference_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageExtAccess ( ) . getStatementMappingRuleIDENTTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MappingUsageExt__StatementAssignment_149131 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageExtAccess ( ) . getStatementMappingRuleIDENTTerminalRuleCall_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageExtAccess ( ) . getStatementMappingRuleCrossReference_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingUsageExt__PojoAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageExtAccess ( ) . getPojoPojoEntityCrossReference_2_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingUsageExtAccess ( ) . getPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MappingUsageExt__PojoAssignment_249170 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageExtAccess ( ) . getPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageExtAccess ( ) . getPojoPojoEntityCrossReference_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableDefinition__NameAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableDefinitionAccess ( ) . getNameIDENTTerminalRuleCall_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__TableDefinition__NameAssignment_149205 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableDefinitionAccess ( ) . getNameIDENTTerminalRuleCall_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableDefinition__TableAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableDefinitionAccess ( ) . getTableIDENTTerminalRuleCall_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__TableDefinition__TableAssignment_249236 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableDefinitionAccess ( ) . getTableIDENTTerminalRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__StatementAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableUsageAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableUsageAccess ( ) . getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__TableUsage__StatementAssignment_149271 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableUsageAccess ( ) . getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableUsageAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__TableAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableUsageAccess ( ) . getTableTableDefinitionCrossReference_2_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableUsageAccess ( ) . getTableTableDefinitionIDENTTerminalRuleCall_2_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__TableUsage__TableAssignment_249310 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableUsageAccess ( ) . getTableTableDefinitionIDENTTerminalRuleCall_2_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableUsageAccess ( ) . getTableTableDefinitionCrossReference_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__TableUsage__PrefixAssignment_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getTableUsageAccess ( ) . getPrefixIDENTTerminalRuleCall_3_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__TableUsage__PrefixAssignment_3_149345 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableUsageAccess ( ) . getPrefixIDENTTerminalRuleCall_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__NameAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MetaStatement__NameAssignment_049376 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__TypeAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementAccess ( ) . getTypeSTATEMEN_TYPETerminalRuleCall_2_0 ( ) ) ; } match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_rule__MetaStatement__TypeAssignment_249407 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementAccess ( ) . getTypeSTATEMEN_TYPETerminalRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__FiltersAssignment_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementAccess ( ) . getFiltersIDENTTerminalRuleCall_3_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MetaStatement__FiltersAssignment_3_149438 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementAccess ( ) . getFiltersIDENTTerminalRuleCall_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaStatement__StatementAssignment_6 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaStatementAccess ( ) . getStatementSqlParserRuleCall_6_0 ( ) ) ; } pushFollow ( FOLLOW_ruleSql_in_rule__MetaStatement__StatementAssignment_649469 ) ; ruleSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementAccess ( ) . getStatementSqlParserRuleCall_6_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Sql__SqlsAssignment ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlAccess ( ) . getSqlsSqlFragmentParserRuleCall_0 ( ) ) ; } pushFollow ( FOLLOW_ruleSqlFragment_in_rule__Sql__SqlsAssignment49500 ) ; ruleSqlFragment ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlAccess ( ) . getSqlsSqlFragmentParserRuleCall_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__ValueAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getValueSqlValueParserRuleCall_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleSqlValue_in_rule__SqlFragment__ValueAssignment_049531 ) ; ruleSqlValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getValueSqlValueParserRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__ColAssignment_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getColColumnParserRuleCall_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleColumn_in_rule__SqlFragment__ColAssignment_1_149562 ) ; ruleColumn ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getColColumnParserRuleCall_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__CnstAssignment_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getCnstConstantParserRuleCall_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleConstant_in_rule__SqlFragment__CnstAssignment_2_149593 ) ; ruleConstant ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getCnstConstantParserRuleCall_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__IdentAssignment_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getIdentIdentifierParserRuleCall_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifier_in_rule__SqlFragment__IdentAssignment_3_149624 ) ; ruleIdentifier ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getIdentIdentifierParserRuleCall_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__MetaAssignment_4_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getMetaMetaSqlParserRuleCall_4_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleMetaSql_in_rule__SqlFragment__MetaAssignment_4_149655 ) ; ruleMetaSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getMetaMetaSqlParserRuleCall_4_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__DbtabAssignment_5_1_0_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getDbtabDatabaseTableParserRuleCall_5_1_0_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseTable_in_rule__SqlFragment__DbtabAssignment_5_1_0_149686 ) ; ruleDatabaseTable ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getDbtabDatabaseTableParserRuleCall_5_1_0_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__SqlFragment__DbcolAssignment_5_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getSqlFragmentAccess ( ) . getDbcolDatabaseColumnParserRuleCall_5_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseColumn_in_rule__SqlFragment__DbcolAssignment_5_1_149717 ) ; ruleDatabaseColumn ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentAccess ( ) . getDbcolDatabaseColumnParserRuleCall_5_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__IfsAssignment_0_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_0_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_0_149748 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_0_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__IfsAssignment_0_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_0_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_0_2_149779 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_0_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__TypeAssignment_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getTypeQUESTITerminalRuleCall_1_0_0 ( ) ) ; } match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_rule__MetaSql__TypeAssignment_1_049810 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getTypeQUESTITerminalRuleCall_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__CondAssignment_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getCondIfSqlCondParserRuleCall_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlCond_in_rule__MetaSql__CondAssignment_1_149841 ) ; ruleIfSqlCond ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getCondIfSqlCondParserRuleCall_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__IfsAssignment_1_3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_1_3_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_1_349872 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_1_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__IfsAssignment_1_4_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_1_4_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_1_4_149903 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_1_4_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__TypeAssignment_2_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getTypeBANDTerminalRuleCall_2_0_0 ( ) ) ; } match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_rule__MetaSql__TypeAssignment_2_049934 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getTypeBANDTerminalRuleCall_2_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__IfsAssignment_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_2_149965 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__IfsAssignment_2_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_2_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_2_2_149996 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_2_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__TypeAssignment_3_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getTypeBORTerminalRuleCall_3_0_0 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__MetaSql__TypeAssignment_3_050027 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getTypeBORTerminalRuleCall_3_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__IfsAssignment_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_3_150058 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__IfsAssignment_3_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_3_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_3_2_150089 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_3_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__TypeAssignment_4_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getTypeEQUALSTerminalRuleCall_4_0_0 ( ) ) ; } match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rule__MetaSql__TypeAssignment_4_050120 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getTypeEQUALSTerminalRuleCall_4_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__FtypeAssignment_4_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getFtypeIDENTTerminalRuleCall_4_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MetaSql__FtypeAssignment_4_250151 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getFtypeIDENTTerminalRuleCall_4_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__IfsAssignment_4_3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_4_3_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_4_350182 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_4_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__TypeAssignment_5_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getTypeHASHTerminalRuleCall_5_0_0 ( ) ) ; } match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_rule__MetaSql__TypeAssignment_5_050213 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getTypeHASHTerminalRuleCall_5_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MetaSql__OrdAssignment_5_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMetaSqlAccess ( ) . getOrdOrdSqlParserRuleCall_5_2_0 ( ) ) ; } pushFollow ( FOLLOW_ruleOrdSql_in_rule__MetaSql__OrdAssignment_5_250244 ) ; ruleOrdSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlAccess ( ) . getOrdOrdSqlParserRuleCall_5_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSql__SqlsAssignment ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlAccess ( ) . getSqlsIfSqlFragmentParserRuleCall_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlFragment_in_rule__IfSql__SqlsAssignment50275 ) ; ruleIfSqlFragment ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlAccess ( ) . getSqlsIfSqlFragmentParserRuleCall_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__ValueAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getValueIfSqlValueParserRuleCall_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlValue_in_rule__IfSqlFragment__ValueAssignment_050306 ) ; ruleIfSqlValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getValueIfSqlValueParserRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__ColAssignment_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getColColumnParserRuleCall_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleColumn_in_rule__IfSqlFragment__ColAssignment_1_150337 ) ; ruleColumn ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getColColumnParserRuleCall_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__CnstAssignment_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getCnstConstantParserRuleCall_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleConstant_in_rule__IfSqlFragment__CnstAssignment_2_150368 ) ; ruleConstant ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getCnstConstantParserRuleCall_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__IdentAssignment_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getIdentIdentifierParserRuleCall_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifier_in_rule__IfSqlFragment__IdentAssignment_3_150399 ) ; ruleIdentifier ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getIdentIdentifierParserRuleCall_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__DbtabAssignment_4_1_0_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getDbtabDatabaseTableParserRuleCall_4_1_0_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseTable_in_rule__IfSqlFragment__DbtabAssignment_4_1_0_150430 ) ; ruleDatabaseTable ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getDbtabDatabaseTableParserRuleCall_4_1_0_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__DbcolAssignment_4_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getDbcolDatabaseColumnParserRuleCall_4_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseColumn_in_rule__IfSqlFragment__DbcolAssignment_4_1_150461 ) ; ruleDatabaseColumn ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getDbcolDatabaseColumnParserRuleCall_4_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlFragment__MetaAssignment_5_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlFragmentAccess ( ) . getMetaIfMetaSqlParserRuleCall_5_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfMetaSql_in_rule__IfSqlFragment__MetaAssignment_5_150492 ) ; ruleIfMetaSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentAccess ( ) . getMetaIfMetaSqlParserRuleCall_5_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__IfsAssignment_0_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_0_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_0_150523 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_0_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__IfsAssignment_0_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_0_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_0_2_150554 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_0_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__TypeAssignment_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getTypeQUESTITerminalRuleCall_1_0_0 ( ) ) ; } match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_rule__IfMetaSql__TypeAssignment_1_050585 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getTypeQUESTITerminalRuleCall_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__CondAssignment_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getCondIfSqlCondParserRuleCall_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlCond_in_rule__IfMetaSql__CondAssignment_1_150616 ) ; ruleIfSqlCond ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getCondIfSqlCondParserRuleCall_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__IfsAssignment_1_3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_1_3_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_1_350647 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_1_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__IfsAssignment_1_4_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_1_4_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_1_4_150678 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_1_4_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__TypeAssignment_2_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getTypeBANDTerminalRuleCall_2_0_0 ( ) ) ; } match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_rule__IfMetaSql__TypeAssignment_2_050709 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getTypeBANDTerminalRuleCall_2_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__IfsAssignment_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_2_150740 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__IfsAssignment_2_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_2_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_2_2_150771 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_2_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__TypeAssignment_3_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getTypeBORTerminalRuleCall_3_0_0 ( ) ) ; } match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rule__IfMetaSql__TypeAssignment_3_050802 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getTypeBORTerminalRuleCall_3_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__IfsAssignment_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_3_150833 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfMetaSql__IfsAssignment_3_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_3_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_3_2_150864 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_3_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Bool1Assignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlCondAccess ( ) . getBool1IfSqlBoolParserRuleCall_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlBool_in_rule__IfSqlCond__Bool1Assignment_150895 ) ; ruleIfSqlBool ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondAccess ( ) . getBool1IfSqlBoolParserRuleCall_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__OperAssignment_3_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlCondAccess ( ) . getOperAlternatives_3_0_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlCond__OperAlternatives_3_0_0_in_rule__IfSqlCond__OperAssignment_3_050926 ) ; rule__IfSqlCond__OperAlternatives_3_0_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondAccess ( ) . getOperAlternatives_3_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlCond__Bool2Assignment_3_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlCondAccess ( ) . getBool2IfSqlBoolParserRuleCall_3_2_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlBool_in_rule__IfSqlCond__Bool2Assignment_3_250959 ) ; ruleIfSqlBool ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondAccess ( ) . getBool2IfSqlBoolParserRuleCall_3_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__NotAssignment_0_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getNotNOTTerminalRuleCall_0_0_0 ( ) ) ; } match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_rule__IfSqlBool__NotAssignment_0_050990 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getNotNOTTerminalRuleCall_0_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__CnstAssignment_0_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getCnstConstantParserRuleCall_0_2_0 ( ) ) ; } pushFollow ( FOLLOW_ruleConstant_in_rule__IfSqlBool__CnstAssignment_0_251021 ) ; ruleConstant ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getCnstConstantParserRuleCall_0_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__NotAssignment_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getNotNOTTerminalRuleCall_1_0_0 ( ) ) ; } match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_rule__IfSqlBool__NotAssignment_1_051052 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getNotNOTTerminalRuleCall_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__IdentAssignment_1_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getIdentIdentifierParserRuleCall_1_2_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifier_in_rule__IfSqlBool__IdentAssignment_1_251083 ) ; ruleIdentifier ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getIdentIdentifierParserRuleCall_1_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__NotAssignment_2_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getNotNOTTerminalRuleCall_2_0_0 ( ) ) ; } match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_rule__IfSqlBool__NotAssignment_2_051114 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getNotNOTTerminalRuleCall_2_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__IfSqlBool__CondAssignment_2_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIfSqlBoolAccess ( ) . getCondIfSqlCondParserRuleCall_2_2_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlCond_in_rule__IfSqlBool__CondAssignment_2_251145 ) ; ruleIfSqlCond ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolAccess ( ) . getCondIfSqlCondParserRuleCall_2_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql__SqlsAssignment ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSqlAccess ( ) . getSqlsOrdSql2ParserRuleCall_0 ( ) ) ; } pushFollow ( FOLLOW_ruleOrdSql2_in_rule__OrdSql__SqlsAssignment51176 ) ; ruleOrdSql2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlAccess ( ) . getSqlsOrdSql2ParserRuleCall_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__ValueAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Access ( ) . getValueOrdSqlValueParserRuleCall_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleOrdSqlValue_in_rule__OrdSql2__ValueAssignment_051207 ) ; ruleOrdSqlValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Access ( ) . getValueOrdSqlValueParserRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__CnstAssignment_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Access ( ) . getCnstConstantParserRuleCall_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleConstant_in_rule__OrdSql2__CnstAssignment_1_151238 ) ; ruleConstant ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Access ( ) . getCnstConstantParserRuleCall_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__IdentAssignment_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Access ( ) . getIdentIdentifierParserRuleCall_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifier_in_rule__OrdSql2__IdentAssignment_2_151269 ) ; ruleIdentifier ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Access ( ) . getIdentIdentifierParserRuleCall_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OrdSql2__DbcolAssignment_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOrdSql2Access ( ) . getDbcolDatabaseColumnParserRuleCall_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseColumn_in_rule__OrdSql2__DbcolAssignment_3_151300 ) ; ruleDatabaseColumn ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Access ( ) . getDbcolDatabaseColumnParserRuleCall_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__NameAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getNameAlternatives_0_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Column__NameAlternatives_0_0_in_rule__Column__NameAssignment_051331 ) ; rule__Column__NameAlternatives_0_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getNameAlternatives_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__TypeAssignment_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getTypeIDENTTerminalRuleCall_1_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__Column__TypeAssignment_1_151364 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getTypeIDENTTerminalRuleCall_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Column__ValsAssignment_1_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getColumnAccess ( ) . getValsAlternatives_1_2_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Column__ValsAlternatives_1_2_1_0_in_rule__Column__ValsAssignment_1_2_151395 ) ; rule__Column__ValsAlternatives_1_2_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnAccess ( ) . getValsAlternatives_1_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__CaseAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getCaseAlternatives_0_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Constant__CaseAlternatives_0_0_in_rule__Constant__CaseAssignment_051428 ) ; rule__Constant__CaseAlternatives_0_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getCaseAlternatives_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__NameAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getNameAlternatives_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Constant__NameAlternatives_1_0_in_rule__Constant__NameAssignment_151461 ) ; rule__Constant__NameAlternatives_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getNameAlternatives_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__TypeAssignment_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getTypeIDENTTerminalRuleCall_2_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__Constant__TypeAssignment_2_151494 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getTypeIDENTTerminalRuleCall_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Constant__ValsAssignment_2_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getConstantAccess ( ) . getValsAlternatives_2_2_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Constant__ValsAlternatives_2_2_1_0_in_rule__Constant__ValsAssignment_2_2_151525 ) ; rule__Constant__ValsAlternatives_2_2_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantAccess ( ) . getValsAlternatives_2_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__ModeAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getModeAlternatives_0_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Identifier__ModeAlternatives_0_0_in_rule__Identifier__ModeAssignment_051558 ) ; rule__Identifier__ModeAlternatives_0_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getModeAlternatives_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__CaseAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getCaseAlternatives_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Identifier__CaseAlternatives_1_0_in_rule__Identifier__CaseAssignment_151591 ) ; rule__Identifier__CaseAlternatives_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getCaseAlternatives_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__NameAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getNameAlternatives_2_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Identifier__NameAlternatives_2_0_in_rule__Identifier__NameAssignment_251624 ) ; rule__Identifier__NameAlternatives_2_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getNameAlternatives_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__TypeAssignment_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getTypeIDENTTerminalRuleCall_3_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__Identifier__TypeAssignment_3_151657 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getTypeIDENTTerminalRuleCall_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Identifier__ValsAssignment_3_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getIdentifierAccess ( ) . getValsAlternatives_3_2_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Identifier__ValsAlternatives_3_2_1_0_in_rule__Identifier__ValsAssignment_3_2_151688 ) ; rule__Identifier__ValsAlternatives_3_2_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierAccess ( ) . getValsAlternatives_3_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseColumn__NameAssignment ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabaseColumnAccess ( ) . getNameAlternatives_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseColumn__NameAlternatives_0_in_rule__DatabaseColumn__NameAssignment51721 ) ; rule__DatabaseColumn__NameAlternatives_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabaseColumnAccess ( ) . getNameAlternatives_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__DatabaseTable__NameAssignment ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getDatabaseTableAccess ( ) . getNameAlternatives_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__DatabaseTable__NameAlternatives_0_in_rule__DatabaseTable__NameAssignment51754 ) ; rule__DatabaseTable__NameAlternatives_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabaseTableAccess ( ) . getNameAlternatives_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__NameAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MappingRule__NameAssignment_051787 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__TypeAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleAccess ( ) . getTypeMAPPING_TYPETerminalRuleCall_2_0 ( ) ) ; } match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_rule__MappingRule__TypeAssignment_251818 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleAccess ( ) . getTypeMAPPING_TYPETerminalRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__FiltersAssignment_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleAccess ( ) . getFiltersIDENTTerminalRuleCall_3_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MappingRule__FiltersAssignment_3_151849 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleAccess ( ) . getFiltersIDENTTerminalRuleCall_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingRule__MappingAssignment_6 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingRuleAccess ( ) . getMappingMappingParserRuleCall_6_0 ( ) ) ; } pushFollow ( FOLLOW_ruleMapping_in_rule__MappingRule__MappingAssignment_651880 ) ; ruleMapping ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleAccess ( ) . getMappingMappingParserRuleCall_6_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Mapping__MappingItemsAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingAccess ( ) . getMappingItemsMappingItemParserRuleCall_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleMappingItem_in_rule__Mapping__MappingItemsAssignment_151911 ) ; ruleMappingItem ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingAccess ( ) . getMappingItemsMappingItemParserRuleCall_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Mapping__MappingItemsAssignment_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingAccess ( ) . getMappingItemsMappingItemParserRuleCall_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleMappingItem_in_rule__Mapping__MappingItemsAssignment_2_151942 ) ; ruleMappingItem ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingAccess ( ) . getMappingItemsMappingItemParserRuleCall_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__ColAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingItemAccess ( ) . getColAlternatives_0_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingItem__ColAlternatives_0_0_in_rule__MappingItem__ColAssignment_051973 ) ; rule__MappingItem__ColAlternatives_0_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingItemAccess ( ) . getColAlternatives_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__TypeAssignment_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingItemAccess ( ) . getTypeIDENTTerminalRuleCall_1_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MappingItem__TypeAssignment_1_152006 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingItemAccess ( ) . getTypeIDENTTerminalRuleCall_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingItem__AttrAssignment_1_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingItemAccess ( ) . getAttrMappingColumnParserRuleCall_1_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleMappingColumn_in_rule__MappingItem__AttrAssignment_1_2_152037 ) ; ruleMappingColumn ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingItemAccess ( ) . getAttrMappingColumnParserRuleCall_1_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingColumn__NameAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingColumnAccess ( ) . getNameAlternatives_0_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingColumn__NameAlternatives_0_0_in_rule__MappingColumn__NameAssignment_052068 ) ; rule__MappingColumn__NameAlternatives_0_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingColumnAccess ( ) . getNameAlternatives_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__MappingColumn__ValsAssignment_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getMappingColumnAccess ( ) . getValsAlternatives_1_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__MappingColumn__ValsAlternatives_1_1_0_in_rule__MappingColumn__ValsAssignment_1_152101 ) ; rule__MappingColumn__ValsAlternatives_1_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingColumnAccess ( ) . getValsAlternatives_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__NameAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__OptionalFeature__NameAssignment_052134 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__TypeAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureAccess ( ) . getTypeOPTION_TYPETerminalRuleCall_2_0 ( ) ) ; } match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_rule__OptionalFeature__TypeAssignment_252165 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureAccess ( ) . getTypeOPTION_TYPETerminalRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__FiltersAssignment_3_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureAccess ( ) . getFiltersIDENTTerminalRuleCall_3_1_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__OptionalFeature__FiltersAssignment_3_152196 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureAccess ( ) . getFiltersIDENTTerminalRuleCall_3_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__OptionalFeature__OptionAssignment_6 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getOptionalFeatureAccess ( ) . getOptionFeatureValueParserRuleCall_6_0 ( ) ) ; } pushFollow ( FOLLOW_ruleFeatureValue_in_rule__OptionalFeature__OptionAssignment_652227 ) ; ruleFeatureValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureAccess ( ) . getOptionFeatureValueParserRuleCall_6_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__NativeAssignment_0_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getNativeAlternatives_0_0_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoType__NativeAlternatives_0_0_0_in_rule__PojoType__NativeAssignment_0_052258 ) ; rule__PojoType__NativeAlternatives_0_0_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getNativeAlternatives_0_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__RefAssignment_0_1_0_1_0_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getRefPojoEntityCrossReference_0_1_0_1_0_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getRefPojoEntityIDENTTerminalRuleCall_0_1_0_1_0_1_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojoType__RefAssignment_0_1_0_1_0_152295 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getRefPojoEntityIDENTTerminalRuleCall_0_1_0_1_0_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getRefPojoEntityCrossReference_0_1_0_1_0_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__TypeAssignment_0_1_0_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getTypeJvmTypeCrossReference_0_1_0_1_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getTypeJvmTypeQualifiedNameParserRuleCall_0_1_0_1_1_0_1 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_rule__PojoType__TypeAssignment_0_1_0_1_152334 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getTypeJvmTypeQualifiedNameParserRuleCall_0_1_0_1_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getTypeJvmTypeCrossReference_0_1_0_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__GrefAssignment_0_1_1_1_0_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getGrefPojoEntityCrossReference_0_1_1_1_0_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getGrefPojoEntityIDENTTerminalRuleCall_0_1_1_1_0_1_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojoType__GrefAssignment_0_1_1_1_0_152373 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getGrefPojoEntityIDENTTerminalRuleCall_0_1_1_1_0_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getGrefPojoEntityCrossReference_0_1_1_1_0_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__GtypeAssignment_0_1_1_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getGtypeJvmTypeCrossReference_0_1_1_1_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getGtypeJvmTypeQualifiedNameParserRuleCall_0_1_1_1_1_0_1 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_rule__PojoType__GtypeAssignment_0_1_1_1_152412 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getGtypeJvmTypeQualifiedNameParserRuleCall_0_1_1_1_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getGtypeJvmTypeCrossReference_0_1_1_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoType__ArrayAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getArrayLeftSquareBracketRightSquareBracketKeyword_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoTypeAccess ( ) . getArrayLeftSquareBracketRightSquareBracketKeyword_1_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_102_in_rule__PojoType__ArrayAssignment_152452 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getArrayLeftSquareBracketRightSquareBracketKeyword_1_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoTypeAccess ( ) . getArrayLeftSquareBracketRightSquareBracketKeyword_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__NameAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getNameAlternatives_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PackageDeclaration__NameAlternatives_1_0_in_rule__PackageDeclaration__NameAssignment_152491 ) ; rule__PackageDeclaration__NameAlternatives_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getNameAlternatives_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__SuffixAssignment_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getSuffixAlternatives_2_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PackageDeclaration__SuffixAlternatives_2_1_0_in_rule__PackageDeclaration__SuffixAssignment_2_152524 ) ; rule__PackageDeclaration__SuffixAlternatives_2_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getSuffixAlternatives_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PackageDeclaration__ElementsAssignment_4 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPackageDeclarationAccess ( ) . getElementsAbstractPojoEntityParserRuleCall_4_0 ( ) ) ; } pushFollow ( FOLLOW_ruleAbstractPojoEntity_in_rule__PackageDeclaration__ElementsAssignment_452557 ) ; ruleAbstractPojoEntity ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPackageDeclarationAccess ( ) . getElementsAbstractPojoEntityParserRuleCall_4_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Import__ImportedNamespaceAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImportAccess ( ) . getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedNameWithWildcard_in_rule__Import__ImportedNamespaceAssignment_152588 ) ; ruleQualifiedNameWithWildcard ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImportAccess ( ) . getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Implements__ImplementsAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImplementsAccess ( ) . getImplementsJvmTypeCrossReference_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getImplementsAccess ( ) . getImplementsJvmTypeQualifiedNameParserRuleCall_1_0_1 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_rule__Implements__ImplementsAssignment_152623 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImplementsAccess ( ) . getImplementsJvmTypeQualifiedNameParserRuleCall_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getImplementsAccess ( ) . getImplementsJvmTypeCrossReference_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Extends__ExtendsAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExtendsAccess ( ) . getExtendsJvmTypeCrossReference_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getExtendsAccess ( ) . getExtendsJvmTypeQualifiedNameParserRuleCall_1_0_1 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_rule__Extends__ExtendsAssignment_152662 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExtendsAccess ( ) . getExtendsJvmTypeQualifiedNameParserRuleCall_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getExtendsAccess ( ) . getExtendsJvmTypeCrossReference_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier1__FinalAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier1Access ( ) . getFinalFinalKeyword_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier1Access ( ) . getFinalFinalKeyword_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_103_in_rule__PojoEntityModifier1__FinalAssignment_052702 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier1Access ( ) . getFinalFinalKeyword_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier1Access ( ) . getFinalFinalKeyword_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier1__AbstractAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier1Access ( ) . getAbstractAbstractKeyword_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier1Access ( ) . getAbstractAbstractKeyword_1_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_104_in_rule__PojoEntityModifier1__AbstractAssignment_152746 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier1Access ( ) . getAbstractAbstractKeyword_1_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier1Access ( ) . getAbstractAbstractKeyword_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__SuperTypeAssignment_0_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getSuperTypePojoEntityCrossReference_0_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getSuperTypePojoEntityIDENTTerminalRuleCall_0_1_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojoEntityModifier2__SuperTypeAssignment_0_152789 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getSuperTypePojoEntityIDENTTerminalRuleCall_0_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getSuperTypePojoEntityCrossReference_0_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__DiscriminatorAssignment_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getDiscriminatorAlternatives_1_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoEntityModifier2__DiscriminatorAlternatives_1_1_0_in_rule__PojoEntityModifier2__DiscriminatorAssignment_1_152824 ) ; rule__PojoEntityModifier2__DiscriminatorAlternatives_1_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getDiscriminatorAlternatives_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntityModifier2__SernumAssignment_2_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityModifier2Access ( ) . getSernumNUMBERTerminalRuleCall_2_1_0 ( ) ) ; } match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rule__PojoEntityModifier2__SernumAssignment_2_152857 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityModifier2Access ( ) . getSernumNUMBERTerminalRuleCall_2_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Modifiers1Assignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityAccess ( ) . getModifiers1PojoEntityModifier1ParserRuleCall_0_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoEntityModifier1_in_rule__PojoEntity__Modifiers1Assignment_052888 ) ; rulePojoEntityModifier1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityAccess ( ) . getModifiers1PojoEntityModifier1ParserRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__NameAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityAccess ( ) . getNameIDENTTerminalRuleCall_2_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojoEntity__NameAssignment_252919 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityAccess ( ) . getNameIDENTTerminalRuleCall_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__Modifiers2Assignment_3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityAccess ( ) . getModifiers2PojoEntityModifier2ParserRuleCall_3_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoEntityModifier2_in_rule__PojoEntity__Modifiers2Assignment_352950 ) ; rulePojoEntityModifier2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityAccess ( ) . getModifiers2PojoEntityModifier2ParserRuleCall_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoEntity__FeaturesAssignment_5 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoEntityAccess ( ) . getFeaturesPojoPropertyParserRuleCall_5_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoProperty_in_rule__PojoEntity__FeaturesAssignment_552981 ) ; rulePojoProperty ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoEntityAccess ( ) . getFeaturesPojoPropertyParserRuleCall_5_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoPropertyModifier__RequiredAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyModifierAccess ( ) . getRequiredRequiredKeyword_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyModifierAccess ( ) . getRequiredRequiredKeyword_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_105_in_rule__PojoPropertyModifier__RequiredAssignment_053017 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyModifierAccess ( ) . getRequiredRequiredKeyword_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyModifierAccess ( ) . getRequiredRequiredKeyword_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoPropertyModifier__DiscriminatorAssignment_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyModifierAccess ( ) . getDiscriminatorDiscriminatorKeyword_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyModifierAccess ( ) . getDiscriminatorDiscriminatorKeyword_1_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_65_in_rule__PojoPropertyModifier__DiscriminatorAssignment_153061 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyModifierAccess ( ) . getDiscriminatorDiscriminatorKeyword_1_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyModifierAccess ( ) . getDiscriminatorDiscriminatorKeyword_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoPropertyModifier__PrimaryKeyAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyModifierAccess ( ) . getPrimaryKeyPrimaryKeyKeyword_2_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyModifierAccess ( ) . getPrimaryKeyPrimaryKeyKeyword_2_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_106_in_rule__PojoPropertyModifier__PrimaryKeyAssignment_253105 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyModifierAccess ( ) . getPrimaryKeyPrimaryKeyKeyword_2_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyModifierAccess ( ) . getPrimaryKeyPrimaryKeyKeyword_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__NameAssignment_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojoProperty__NameAssignment_053144 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__NativeAssignment_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getNativeAlternatives_1_0_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__PojoProperty__NativeAlternatives_1_0_0_in_rule__PojoProperty__NativeAssignment_1_053175 ) ; rule__PojoProperty__NativeAlternatives_1_0_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getNativeAlternatives_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__AttrsAssignment_1_1_0_1_0_1_0_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getAttrsPojoPropertyCrossReference_1_1_0_1_0_1_0_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getAttrsPojoPropertyIDENTTerminalRuleCall_1_1_0_1_0_1_0_1_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojoProperty__AttrsAssignment_1_1_0_1_0_1_0_153212 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getAttrsPojoPropertyIDENTTerminalRuleCall_1_1_0_1_0_1_0_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getAttrsPojoPropertyCrossReference_1_1_0_1_0_1_0_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__RefAssignment_1_1_0_1_0_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getRefPojoEntityCrossReference_1_1_0_1_0_1_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getRefPojoEntityIDENTTerminalRuleCall_1_1_0_1_0_1_1_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojoProperty__RefAssignment_1_1_0_1_0_1_153251 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getRefPojoEntityIDENTTerminalRuleCall_1_1_0_1_0_1_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getRefPojoEntityCrossReference_1_1_0_1_0_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__TypeAssignment_1_1_0_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getTypeJvmTypeCrossReference_1_1_0_1_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getTypeJvmTypeQualifiedNameParserRuleCall_1_1_0_1_1_0_1 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_rule__PojoProperty__TypeAssignment_1_1_0_1_153290 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getTypeJvmTypeQualifiedNameParserRuleCall_1_1_0_1_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getTypeJvmTypeCrossReference_1_1_0_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__GrefAssignment_1_1_1_1_0_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getGrefPojoEntityCrossReference_1_1_1_1_0_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getGrefPojoEntityIDENTTerminalRuleCall_1_1_1_1_0_1_0_1 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojoProperty__GrefAssignment_1_1_1_1_0_153329 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getGrefPojoEntityIDENTTerminalRuleCall_1_1_1_1_0_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getGrefPojoEntityCrossReference_1_1_1_1_0_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__GtypeAssignment_1_1_1_1_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getGtypeJvmTypeCrossReference_1_1_1_1_1_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getGtypeJvmTypeQualifiedNameParserRuleCall_1_1_1_1_1_0_1 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_rule__PojoProperty__GtypeAssignment_1_1_1_1_153368 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getGtypeJvmTypeQualifiedNameParserRuleCall_1_1_1_1_1_0_1 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getGtypeJvmTypeCrossReference_1_1_1_1_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__ArrayAssignment_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getArrayLeftSquareBracketRightSquareBracketKeyword_2_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getArrayLeftSquareBracketRightSquareBracketKeyword_2_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_102_in_rule__PojoProperty__ArrayAssignment_253408 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getArrayLeftSquareBracketRightSquareBracketKeyword_2_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getArrayLeftSquareBracketRightSquareBracketKeyword_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__PojoProperty__ModifiersAssignment_3 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPojoPropertyAccess ( ) . getModifiersPojoPropertyModifierParserRuleCall_3_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoPropertyModifier_in_rule__PojoProperty__ModifiersAssignment_353447 ) ; rulePojoPropertyModifier ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoPropertyAccess ( ) . getModifiersPojoPropertyModifierParserRuleCall_3_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void synpred465_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__SqlValue__Group_1__0_in_synpred465_InternalProcessorDsl31314 ) ; rule__SqlValue__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred471_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__IfSqlValue__Group_1__0_in_synpred471_InternalProcessorDsl34043 ) ; rule__IfSqlValue__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred484_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__OrdSqlValue__Group_1__0_in_synpred484_InternalProcessorDsl37031 ) ; rule__OrdSqlValue__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred485_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Column__Group_1__0_in_synpred485_InternalProcessorDsl37212 ) ; rule__Column__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred486_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Column__TypeAssignment_1_1_in_synpred486_InternalProcessorDsl37338 ) ; rule__Column__TypeAssignment_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred487_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Column__Group_1_2__0_in_synpred487_InternalProcessorDsl37396 ) ; rule__Column__Group_1_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred489_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Constant__Group_2__0_in_synpred489_InternalProcessorDsl37703 ) ; rule__Constant__Group_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred490_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Constant__TypeAssignment_2_1_in_synpred490_InternalProcessorDsl37831 ) ; rule__Constant__TypeAssignment_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred491_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Constant__Group_2_2__0_in_synpred491_InternalProcessorDsl37889 ) ; rule__Constant__Group_2_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred494_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Identifier__Group_3__0_in_synpred494_InternalProcessorDsl38257 ) ; rule__Identifier__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred495_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Identifier__TypeAssignment_3_1_in_synpred495_InternalProcessorDsl38387 ) ; rule__Identifier__TypeAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred496_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Identifier__Group_3_2__0_in_synpred496_InternalProcessorDsl38445 ) ; rule__Identifier__Group_3_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final boolean synpred471_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred471_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred465_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred465_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred484_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred484_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred494_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred494_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred489_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred489_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred486_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred486_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred490_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred490_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred491_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred491_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred487_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred487_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred485_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred485_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred495_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred495_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred496_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred496_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } protected DFA5 dfa5 = new DFA5 ( this ) ; protected DFA147 dfa147 = new DFA147 ( this ) ; protected DFA153 dfa153 = new DFA153 ( this ) ; protected DFA166 dfa166 = new DFA166 ( this ) ; protected DFA181 dfa181 = new DFA181 ( this ) ; static final String DFA5_eotS = "<STR_LIT>" ; static final String DFA5_eofS = "<STR_LIT>" ; static final String DFA5_minS = "<STR_LIT>" ; static final String DFA5_maxS = "<STR_LIT>" ; static final String DFA5_acceptS = "<STR_LIT>" ; static final String DFA5_specialS = "<STR_LIT>" ; static final String [ ] DFA5_transitionS = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; static final short [ ] DFA5_eot = DFA . unpackEncodedString ( DFA5_eotS ) ; static final short [ ] DFA5_eof = DFA . unpackEncodedString ( DFA5_eofS ) ; static final char [ ] DFA5_min = DFA . unpackEncodedStringToUnsignedChars ( DFA5_minS ) ; static final char [ ] DFA5_max = DFA . unpackEncodedStringToUnsignedChars ( DFA5_maxS ) ; static final short [ ] DFA5_accept = DFA . unpackEncodedString ( DFA5_acceptS ) ; static final short [ ] DFA5_special = DFA . unpackEncodedString ( DFA5_specialS ) ; static final short [ ] [ ] DFA5_transition ; static { int numStates = DFA5_transitionS . length ; DFA5_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA5_transition [ i ] = DFA . unpackEncodedString ( DFA5_transitionS [ i ] ) ; } } class DFA5 extends DFA { public DFA5 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT:5> ; this . eot = DFA5_eot ; this . eof = DFA5_eof ; this . min = DFA5_min ; this . max = DFA5_max ; this . accept = DFA5_accept ; this . special = DFA5_special ; this . transition = DFA5_transition ; } public String getDescription ( ) { return "<STR_LIT>" ; } } static final String DFA147_eotS = "<STR_LIT>" ; static final String DFA147_eofS = "<STR_LIT>" ; static final String DFA147_minS = "<STR_LIT>" ; static final String DFA147_maxS = "<STR_LIT>" ; static final String DFA147_acceptS = "<STR_LIT>" ; static final String DFA147_specialS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String [ ] DFA147_transitionS = { "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; static final short [ ] DFA147_eot = DFA . unpackEncodedString ( DFA147_eotS ) ; static final short [ ] DFA147_eof = DFA . unpackEncodedString ( DFA147_eofS ) ; static final char [ ] DFA147_min = DFA . unpackEncodedStringToUnsignedChars ( DFA147_minS ) ; static final char [ ] DFA147_max = DFA . unpackEncodedStringToUnsignedChars ( DFA147_maxS ) ; static final short [ ] DFA147_accept = DFA . unpackEncodedString ( DFA147_acceptS ) ; static final short [ ] DFA147_special = DFA . unpackEncodedString ( DFA147_specialS ) ; static final short [ ] [ ] DFA147_transition ; static { int numStates = DFA147_transitionS . length ; DFA147_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA147_transition [ i ] = DFA . unpackEncodedString ( DFA147_transitionS [ i ] ) ; } } class DFA147 extends DFA { public DFA147 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT> ; this . eot = DFA147_eot ; this . eof = DFA147_eof ; this . min = DFA147_min ; this . max = DFA147_max ; this . accept = DFA147_accept ; this . special = DFA147_special ; this . transition = DFA147_transition ; } public String getDescription ( ) { return "<STR_LIT>" ; } public int specialStateTransition ( int s , IntStream _input ) throws NoViableAltException { TokenStream input = ( TokenStream ) _input ; int _s = s ; switch ( s ) { case <NUM_LIT:0> : int LA147_21 = input . LA ( <NUM_LIT:1> ) ; int index147_21 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_21 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:1> : int LA147_24 = input . LA ( <NUM_LIT:1> ) ; int index147_24 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_24 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:2> : int LA147_2 = input . LA ( <NUM_LIT:1> ) ; int index147_2 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_2 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:3> : int LA147_4 = input . LA ( <NUM_LIT:1> ) ; int index147_4 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_4 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:4> : int LA147_19 = input . LA ( <NUM_LIT:1> ) ; int index147_19 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_19 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:5> : int LA147_22 = input . LA ( <NUM_LIT:1> ) ; int index147_22 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_22 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:6> : int LA147_14 = input . LA ( <NUM_LIT:1> ) ; int index147_14 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_14 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:7> : int LA147_9 = input . LA ( <NUM_LIT:1> ) ; int index147_9 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_9 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:8> : int LA147_12 = input . LA ( <NUM_LIT:1> ) ; int index147_12 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_12 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:9> : int LA147_27 = input . LA ( <NUM_LIT:1> ) ; int index147_27 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_27 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:10> : int LA147_10 = input . LA ( <NUM_LIT:1> ) ; int index147_10 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_10 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:11> : int LA147_16 = input . LA ( <NUM_LIT:1> ) ; int index147_16 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_16 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:12> : int LA147_6 = input . LA ( <NUM_LIT:1> ) ; int index147_6 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_6 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA147_5 = input . LA ( <NUM_LIT:1> ) ; int index147_5 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_5 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA147_3 = input . LA ( <NUM_LIT:1> ) ; int index147_3 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_3 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:15> : int LA147_25 = input . LA ( <NUM_LIT:1> ) ; int index147_25 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_25 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:16> : int LA147_20 = input . LA ( <NUM_LIT:1> ) ; int index147_20 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_20 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA147_8 = input . LA ( <NUM_LIT:1> ) ; int index147_8 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_8 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA147_18 = input . LA ( <NUM_LIT:1> ) ; int index147_18 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_18 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA147_23 = input . LA ( <NUM_LIT:1> ) ; int index147_23 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_23 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:20> : int LA147_13 = input . LA ( <NUM_LIT:1> ) ; int index147_13 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_13 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA147_28 = input . LA ( <NUM_LIT:1> ) ; int index147_28 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_28 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA147_26 = input . LA ( <NUM_LIT:1> ) ; int index147_26 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_26 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA147_15 = input . LA ( <NUM_LIT:1> ) ; int index147_15 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_15 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:24> : int LA147_17 = input . LA ( <NUM_LIT:1> ) ; int index147_17 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_17 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA147_7 = input . LA ( <NUM_LIT:1> ) ; int index147_7 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_7 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA147_11 = input . LA ( <NUM_LIT:1> ) ; int index147_11 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred465_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index147_11 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; } if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return - <NUM_LIT:1> ; } NoViableAltException nvae = new NoViableAltException ( getDescription ( ) , <NUM_LIT> , _s , input ) ; error ( nvae ) ; throw nvae ; } } static final String DFA153_eotS = "<STR_LIT>" ; static final String DFA153_eofS = "<STR_LIT>" ; static final String DFA153_minS = "<STR_LIT>" ; static final String DFA153_maxS = "<STR_LIT>" ; static final String DFA153_acceptS = "<STR_LIT>" ; static final String DFA153_specialS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String [ ] DFA153_transitionS = { "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; static final short [ ] DFA153_eot = DFA . unpackEncodedString ( DFA153_eotS ) ; static final short [ ] DFA153_eof = DFA . unpackEncodedString ( DFA153_eofS ) ; static final char [ ] DFA153_min = DFA . unpackEncodedStringToUnsignedChars ( DFA153_minS ) ; static final char [ ] DFA153_max = DFA . unpackEncodedStringToUnsignedChars ( DFA153_maxS ) ; static final short [ ] DFA153_accept = DFA . unpackEncodedString ( DFA153_acceptS ) ; static final short [ ] DFA153_special = DFA . unpackEncodedString ( DFA153_specialS ) ; static final short [ ] [ ] DFA153_transition ; static { int numStates = DFA153_transitionS . length ; DFA153_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA153_transition [ i ] = DFA . unpackEncodedString ( DFA153_transitionS [ i ] ) ; } } class DFA153 extends DFA { public DFA153 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT> ; this . eot = DFA153_eot ; this . eof = DFA153_eof ; this . min = DFA153_min ; this . max = DFA153_max ; this . accept = DFA153_accept ; this . special = DFA153_special ; this . transition = DFA153_transition ; } public String getDescription ( ) { return "<STR_LIT>" ; } public int specialStateTransition ( int s , IntStream _input ) throws NoViableAltException { TokenStream input = ( TokenStream ) _input ; int _s = s ; switch ( s ) { case <NUM_LIT:0> : int LA153_10 = input . LA ( <NUM_LIT:1> ) ; int index153_10 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_10 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:1> : int LA153_15 = input . LA ( <NUM_LIT:1> ) ; int index153_15 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_15 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:2> : int LA153_12 = input . LA ( <NUM_LIT:1> ) ; int index153_12 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_12 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:3> : int LA153_17 = input . LA ( <NUM_LIT:1> ) ; int index153_17 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_17 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:4> : int LA153_9 = input . LA ( <NUM_LIT:1> ) ; int index153_9 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_9 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:5> : int LA153_20 = input . LA ( <NUM_LIT:1> ) ; int index153_20 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_20 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:6> : int LA153_3 = input . LA ( <NUM_LIT:1> ) ; int index153_3 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_3 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:7> : int LA153_22 = input . LA ( <NUM_LIT:1> ) ; int index153_22 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_22 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:8> : int LA153_5 = input . LA ( <NUM_LIT:1> ) ; int index153_5 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_5 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:9> : int LA153_24 = input . LA ( <NUM_LIT:1> ) ; int index153_24 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_24 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:10> : int LA153_7 = input . LA ( <NUM_LIT:1> ) ; int index153_7 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_7 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:11> : int LA153_18 = input . LA ( <NUM_LIT:1> ) ; int index153_18 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_18 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:12> : int LA153_11 = input . LA ( <NUM_LIT:1> ) ; int index153_11 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_11 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA153_14 = input . LA ( <NUM_LIT:1> ) ; int index153_14 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_14 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA153_6 = input . LA ( <NUM_LIT:1> ) ; int index153_6 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_6 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:15> : int LA153_13 = input . LA ( <NUM_LIT:1> ) ; int index153_13 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_13 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:16> : int LA153_16 = input . LA ( <NUM_LIT:1> ) ; int index153_16 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_16 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA153_21 = input . LA ( <NUM_LIT:1> ) ; int index153_21 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_21 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA153_26 = input . LA ( <NUM_LIT:1> ) ; int index153_26 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_26 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA153_8 = input . LA ( <NUM_LIT:1> ) ; int index153_8 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_8 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:20> : int LA153_25 = input . LA ( <NUM_LIT:1> ) ; int index153_25 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_25 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA153_27 = input . LA ( <NUM_LIT:1> ) ; int index153_27 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_27 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA153_23 = input . LA ( <NUM_LIT:1> ) ; int index153_23 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_23 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA153_4 = input . LA ( <NUM_LIT:1> ) ; int index153_4 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_4 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:24> : int LA153_19 = input . LA ( <NUM_LIT:1> ) ; int index153_19 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_19 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA153_2 = input . LA ( <NUM_LIT:1> ) ; int index153_2 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred471_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index153_2 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; } if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return - <NUM_LIT:1> ; } NoViableAltException nvae = new NoViableAltException ( getDescription ( ) , <NUM_LIT> , _s , input ) ; error ( nvae ) ; throw nvae ; } } static final String DFA166_eotS = "<STR_LIT>" ; static final String DFA166_eofS = "<STR_LIT>" ; static final String DFA166_minS = "<STR_LIT>" ; static final String DFA166_maxS = "<STR_LIT>" ; static final String DFA166_acceptS = "<STR_LIT>" ; static final String DFA166_specialS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String [ ] DFA166_transitionS = { "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; static final short [ ] DFA166_eot = DFA . unpackEncodedString ( DFA166_eotS ) ; static final short [ ] DFA166_eof = DFA . unpackEncodedString ( DFA166_eofS ) ; static final char [ ] DFA166_min = DFA . unpackEncodedStringToUnsignedChars ( DFA166_minS ) ; static final char [ ] DFA166_max = DFA . unpackEncodedStringToUnsignedChars ( DFA166_maxS ) ; static final short [ ] DFA166_accept = DFA . unpackEncodedString ( DFA166_acceptS ) ; static final short [ ] DFA166_special = DFA . unpackEncodedString ( DFA166_specialS ) ; static final short [ ] [ ] DFA166_transition ; static { int numStates = DFA166_transitionS . length ; DFA166_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA166_transition [ i ] = DFA . unpackEncodedString ( DFA166_transitionS [ i ] ) ; } } class DFA166 extends DFA { public DFA166 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT> ; this . eot = DFA166_eot ; this . eof = DFA166_eof ; this . min = DFA166_min ; this . max = DFA166_max ; this . accept = DFA166_accept ; this . special = DFA166_special ; this . transition = DFA166_transition ; } public String getDescription ( ) { return "<STR_LIT>" ; } public int specialStateTransition ( int s , IntStream _input ) throws NoViableAltException { TokenStream input = ( TokenStream ) _input ; int _s = s ; switch ( s ) { case <NUM_LIT:0> : int LA166_6 = input . LA ( <NUM_LIT:1> ) ; int index166_6 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_6 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:1> : int LA166_16 = input . LA ( <NUM_LIT:1> ) ; int index166_16 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_16 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:2> : int LA166_26 = input . LA ( <NUM_LIT:1> ) ; int index166_26 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_26 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:3> : int LA166_11 = input . LA ( <NUM_LIT:1> ) ; int index166_11 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_11 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:4> : int LA166_28 = input . LA ( <NUM_LIT:1> ) ; int index166_28 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_28 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:5> : int LA166_13 = input . LA ( <NUM_LIT:1> ) ; int index166_13 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_13 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:6> : int LA166_8 = input . LA ( <NUM_LIT:1> ) ; int index166_8 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_8 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:7> : int LA166_19 = input . LA ( <NUM_LIT:1> ) ; int index166_19 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_19 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:8> : int LA166_15 = input . LA ( <NUM_LIT:1> ) ; int index166_15 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_15 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:9> : int LA166_25 = input . LA ( <NUM_LIT:1> ) ; int index166_25 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_25 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:10> : int LA166_4 = input . LA ( <NUM_LIT:1> ) ; int index166_4 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_4 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:11> : int LA166_23 = input . LA ( <NUM_LIT:1> ) ; int index166_23 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_23 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:12> : int LA166_2 = input . LA ( <NUM_LIT:1> ) ; int index166_2 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_2 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA166_21 = input . LA ( <NUM_LIT:1> ) ; int index166_21 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_21 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA166_27 = input . LA ( <NUM_LIT:1> ) ; int index166_27 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_27 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:15> : int LA166_7 = input . LA ( <NUM_LIT:1> ) ; int index166_7 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_7 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:16> : int LA166_17 = input . LA ( <NUM_LIT:1> ) ; int index166_17 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_17 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA166_22 = input . LA ( <NUM_LIT:1> ) ; int index166_22 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_22 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA166_30 = input . LA ( <NUM_LIT:1> ) ; int index166_30 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_30 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA166_12 = input . LA ( <NUM_LIT:1> ) ; int index166_12 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_12 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:20> : int LA166_29 = input . LA ( <NUM_LIT:1> ) ; int index166_29 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_29 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA166_10 = input . LA ( <NUM_LIT:1> ) ; int index166_10 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_10 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA166_24 = input . LA ( <NUM_LIT:1> ) ; int index166_24 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_24 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA166_9 = input . LA ( <NUM_LIT:1> ) ; int index166_9 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_9 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:24> : int LA166_14 = input . LA ( <NUM_LIT:1> ) ; int index166_14 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_14 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA166_3 = input . LA ( <NUM_LIT:1> ) ; int index166_3 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_3 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA166_18 = input . LA ( <NUM_LIT:1> ) ; int index166_18 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_18 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA166_5 = input . LA ( <NUM_LIT:1> ) ; int index166_5 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_5 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA166_20 = input . LA ( <NUM_LIT:1> ) ; int index166_20 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred484_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index166_20 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; } if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return - <NUM_LIT:1> ; } NoViableAltException nvae = new NoViableAltException ( getDescription ( ) , <NUM_LIT> , _s , input ) ; error ( nvae ) ; throw nvae ; } } static final String DFA181_eotS = "<STR_LIT>" ; static final String DFA181_eofS = "<STR_LIT>" ; static final String DFA181_minS = "<STR_LIT>" ; static final String DFA181_maxS = "<STR_LIT>" ; static final String DFA181_acceptS = "<STR_LIT>" ; static final String DFA181_specialS = "<STR_LIT>" ; static final String [ ] DFA181_transitionS = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; static final short [ ] DFA181_eot = DFA . unpackEncodedString ( DFA181_eotS ) ; static final short [ ] DFA181_eof = DFA . unpackEncodedString ( DFA181_eofS ) ; static final char [ ] DFA181_min = DFA . unpackEncodedStringToUnsignedChars ( DFA181_minS ) ; static final char [ ] DFA181_max = DFA . unpackEncodedStringToUnsignedChars ( DFA181_maxS ) ; static final short [ ] DFA181_accept = DFA . unpackEncodedString ( DFA181_acceptS ) ; static final short [ ] DFA181_special = DFA . unpackEncodedString ( DFA181_specialS ) ; static final short [ ] [ ] DFA181_transition ; static { int numStates = DFA181_transitionS . length ; DFA181_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA181_transition [ i ] = DFA . unpackEncodedString ( DFA181_transitionS [ i ] ) ; } } class DFA181 extends DFA { public DFA181 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT> ; this . eot = DFA181_eot ; this . eof = DFA181_eof ; this . min = DFA181_min ; this . max = DFA181_max ; this . accept = DFA181_accept ; this . special = DFA181_special ; this . transition = DFA181_transition ; } public String getDescription ( ) { return "<STR_LIT>" ; } } public static final BitSet FOLLOW_ruleArtifacts_in_entryRuleArtifacts67 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleArtifacts74 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group__0_in_ruleArtifacts100 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlTypeAssignement_in_entryRuleSqlTypeAssignement127 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleSqlTypeAssignement134 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__Group__0_in_ruleSqlTypeAssignement160 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnTypeAssignement_in_entryRuleColumnTypeAssignement187 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleColumnTypeAssignement194 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnTypeAssignement__Group__0_in_ruleColumnTypeAssignement220 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleShowColumnTypeAssignement_in_entryRuleShowColumnTypeAssignement247 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleShowColumnTypeAssignement254 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ShowColumnTypeAssignement__Group__0_in_ruleShowColumnTypeAssignement280 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableAssignement_in_entryRuleTableAssignement307 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleTableAssignement314 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableAssignement__Group__0_in_ruleTableAssignement340 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleJoinTableAssignement_in_entryRuleJoinTableAssignement367 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleJoinTableAssignement374 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__JoinTableAssignement__Group__0_in_ruleJoinTableAssignement400 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnAssignement_in_entryRuleColumnAssignement427 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleColumnAssignement434 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnAssignement__Group__0_in_ruleColumnAssignement460 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImportAssignement_in_entryRuleImportAssignement487 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleImportAssignement494 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ImportAssignement__Group__0_in_ruleImportAssignement520 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleExportAssignement_in_entryRuleExportAssignement547 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleExportAssignement554 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ExportAssignement__Group__0_in_ruleExportAssignement580 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleInheritanceAssignement_in_entryRuleInheritanceAssignement607 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleInheritanceAssignement614 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__Group__0_in_ruleInheritanceAssignement640 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleManyToManyAssignement_in_entryRuleManyToManyAssignement667 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleManyToManyAssignement674 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ManyToManyAssignement__Group__0_in_ruleManyToManyAssignement700 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleProperty_in_entryRuleProperty727 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleProperty734 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group__0_in_ruleProperty760 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseProperty_in_entryRuleDatabaseProperty787 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleDatabaseProperty794 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Alternatives_in_ruleDatabaseProperty820 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojogenProperty_in_entryRulePojogenProperty847 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojogenProperty854 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Alternatives_in_rulePojogenProperty880 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_entryRulePropertyValue907 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePropertyValue914 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Group__0_in_rulePropertyValue940 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoDefinition_in_entryRulePojoDefinition972 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoDefinition979 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__0_in_rulePojoDefinition1009 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoUsage_in_entryRulePojoUsage1036 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoUsage1043 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoUsage__Alternatives_in_rulePojoUsage1069 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnUsage_in_entryRuleColumnUsage1101 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleColumnUsage1108 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__0_in_ruleColumnUsage1138 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifierUsage_in_entryRuleIdentifierUsage1170 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIdentifierUsage1177 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__0_in_ruleIdentifierUsage1207 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstantUsage_in_entryRuleConstantUsage1239 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleConstantUsage1246 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__0_in_ruleConstantUsage1276 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingUsage_in_entryRuleMappingUsage1308 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMappingUsage1315 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__0_in_ruleMappingUsage1345 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoUsageExt_in_entryRulePojoUsageExt1372 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoUsageExt1379 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoUsageExt__Alternatives_in_rulePojoUsageExt1405 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnUsageExt_in_entryRuleColumnUsageExt1437 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleColumnUsageExt1444 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsageExt__Group__0_in_ruleColumnUsageExt1474 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifierUsageExt_in_entryRuleIdentifierUsageExt1506 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIdentifierUsageExt1513 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsageExt__Group__0_in_ruleIdentifierUsageExt1543 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstantUsageExt_in_entryRuleConstantUsageExt1575 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleConstantUsageExt1582 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsageExt__Group__0_in_ruleConstantUsageExt1612 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingUsageExt_in_entryRuleMappingUsageExt1644 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMappingUsageExt1651 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsageExt__Group__0_in_ruleMappingUsageExt1681 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableDefinition_in_entryRuleTableDefinition1713 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleTableDefinition1720 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__0_in_ruleTableDefinition1750 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableUsage_in_entryRuleTableUsage1782 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleTableUsage1789 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__0_in_ruleTableUsage1819 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMetaStatement_in_entryRuleMetaStatement1846 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMetaStatement1853 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__0_in_ruleMetaStatement1879 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSql_in_entryRuleSql1906 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleSql1913 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Sql__SqlsAssignment_in_ruleSql1941 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Sql__SqlsAssignment_in_ruleSql1953 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlFragment_in_entryRuleSqlFragment1983 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleSqlFragment1990 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Alternatives_in_ruleSqlFragment2016 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlValue_in_entryRuleSqlValue2043 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleSqlValue2050 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Group__0_in_ruleSqlValue2076 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMetaSql_in_entryRuleMetaSql2103 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMetaSql2110 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Alternatives_in_ruleMetaSql2136 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_entryRuleIfSql2163 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfSql2170 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSql__SqlsAssignment_in_ruleIfSql2198 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSql__SqlsAssignment_in_ruleIfSql2210 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlFragment_in_entryRuleIfSqlFragment2240 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfSqlFragment2247 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Alternatives_in_ruleIfSqlFragment2273 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlValue_in_entryRuleIfSqlValue2300 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfSqlValue2307 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Group__0_in_ruleIfSqlValue2333 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfMetaSql_in_entryRuleIfMetaSql2360 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfMetaSql2367 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Alternatives_in_ruleIfMetaSql2393 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlCond_in_entryRuleIfSqlCond2420 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfSqlCond2427 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__0_in_ruleIfSqlCond2453 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlBool_in_entryRuleIfSqlBool2480 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfSqlBool2487 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Alternatives_in_ruleIfSqlBool2513 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSql_in_entryRuleOrdSql2540 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleOrdSql2547 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql__SqlsAssignment_in_ruleOrdSql2575 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql__SqlsAssignment_in_ruleOrdSql2587 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSql2_in_entryRuleOrdSql22617 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleOrdSql22624 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Alternatives_in_ruleOrdSql22650 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSqlValue_in_entryRuleOrdSqlValue2677 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleOrdSqlValue2684 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Group__0_in_ruleOrdSqlValue2710 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumn_in_entryRuleColumn2737 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleColumn2744 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group__0_in_ruleColumn2770 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstant_in_entryRuleConstant2797 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleConstant2804 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group__0_in_ruleConstant2830 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifier_in_entryRuleIdentifier2857 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIdentifier2864 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__0_in_ruleIdentifier2890 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseColumn_in_entryRuleDatabaseColumn2917 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleDatabaseColumn2924 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseColumn__NameAssignment_in_ruleDatabaseColumn2950 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseTable_in_entryRuleDatabaseTable2977 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleDatabaseTable2984 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseTable__NameAssignment_in_ruleDatabaseTable3010 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingRule_in_entryRuleMappingRule3037 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMappingRule3044 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__0_in_ruleMappingRule3070 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMapping_in_entryRuleMapping3097 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMapping3104 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__0_in_ruleMapping3130 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingItem_in_entryRuleMappingItem3157 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMappingItem3164 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group__0_in_ruleMappingItem3190 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingColumn_in_entryRuleMappingColumn3217 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMappingColumn3224 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group__0_in_ruleMappingColumn3250 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOptionalFeature_in_entryRuleOptionalFeature3277 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleOptionalFeature3284 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__0_in_ruleOptionalFeature3310 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleFeatureValue_in_entryRuleFeatureValue3337 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleFeatureValue3344 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__FeatureValue__Alternatives_in_ruleFeatureValue3372 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__FeatureValue__Alternatives_in_ruleFeatureValue3384 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoType_in_entryRulePojoType3414 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoType3421 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group__0_in_rulePojoType3447 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePackageDeclaration_in_entryRulePackageDeclaration3479 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePackageDeclaration3486 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group__0_in_rulePackageDeclaration3516 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleAbstractPojoEntity_in_entryRuleAbstractPojoEntity3548 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleAbstractPojoEntity3555 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__AbstractPojoEntity__Alternatives_in_ruleAbstractPojoEntity3585 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImport_in_entryRuleImport3617 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleImport3624 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Import__Group__0_in_ruleImport3654 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImplements_in_entryRuleImplements3686 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleImplements3693 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Implements__Group__0_in_ruleImplements3723 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleExtends_in_entryRuleExtends3755 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleExtends3762 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Extends__Group__0_in_ruleExtends3792 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoEntityModifier1_in_entryRulePojoEntityModifier13819 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoEntityModifier13826 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier1__Alternatives_in_rulePojoEntityModifier13852 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoEntityModifier2_in_entryRulePojoEntityModifier23879 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoEntityModifier23886 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__Alternatives_in_rulePojoEntityModifier23912 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoEntity_in_entryRulePojoEntity3944 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoEntity3951 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Group__0_in_rulePojoEntity3981 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoPropertyModifier_in_entryRulePojoPropertyModifier4008 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoPropertyModifier4015 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoPropertyModifier__Alternatives_in_rulePojoPropertyModifier4041 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoProperty_in_entryRulePojoProperty4073 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoProperty4080 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group__0_in_rulePojoProperty4110 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedNameWithWildcard_in_entryRuleQualifiedNameWithWildcard4137 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleQualifiedNameWithWildcard4144 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__QualifiedNameWithWildcard__Group__0_in_ruleQualifiedNameWithWildcard4170 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName4197 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleQualifiedName4204 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__QualifiedName__Alternatives_in_ruleQualifiedName4230 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_0__0_in_rule__Artifacts__Alternatives_14266 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_1__0_in_rule__Artifacts__Alternatives_14284 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_2__0_in_rule__Artifacts__Alternatives_14302 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_3__0_in_rule__Artifacts__Alternatives_14320 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_4__0_in_rule__Artifacts__Alternatives_14338 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_5__0_in_rule__Artifacts__Alternatives_14356 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_6__0_in_rule__Artifacts__Alternatives_14374 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_7__0_in_rule__Artifacts__Alternatives_14392 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_8__0_in_rule__Artifacts__Alternatives_14410 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_9__0_in_rule__Artifacts__Alternatives_14428 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__NameAssignment_0_0_in_rule__Property__Alternatives_04461 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__NameAssignment_0_1_in_rule__Property__Alternatives_04479 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_2__0_in_rule__Property__Alternatives_04497 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_3__0_in_rule__Property__Alternatives_04515 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__NameAssignment_0_in_rule__DatabaseProperty__Alternatives4548 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__NameAssignment_1_in_rule__DatabaseProperty__Alternatives4566 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_2__0_in_rule__DatabaseProperty__Alternatives4584 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_3__0_in_rule__DatabaseProperty__Alternatives4602 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_4__0_in_rule__DatabaseProperty__Alternatives4620 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_5__0_in_rule__DatabaseProperty__Alternatives4638 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_6__0_in_rule__DatabaseProperty__Alternatives4656 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_0__0_in_rule__PojogenProperty__Alternatives4689 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_1__0_in_rule__PojogenProperty__Alternatives4707 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_2__0_in_rule__PojogenProperty__Alternatives4725 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_3__0_in_rule__PojogenProperty__Alternatives4743 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_4__0_in_rule__PojogenProperty__Alternatives4761 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_5__0_in_rule__PojogenProperty__Alternatives4779 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_6__0_in_rule__PojogenProperty__Alternatives4797 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_7__0_in_rule__PojogenProperty__Alternatives4815 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_8__0_in_rule__PojogenProperty__Alternatives4833 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_9__0_in_rule__PojogenProperty__Alternatives4851 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_10__0_in_rule__PojogenProperty__Alternatives4869 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_11__0_in_rule__PojogenProperty__Alternatives4887 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_12__0_in_rule__PojogenProperty__Alternatives4905 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_13__0_in_rule__PojogenProperty__Alternatives4923 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_14__0_in_rule__PojogenProperty__Alternatives4941 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_15__0_in_rule__PojogenProperty__Alternatives4959 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_16__0_in_rule__PojogenProperty__Alternatives4977 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_17__0_in_rule__PojogenProperty__Alternatives4995 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_18__0_in_rule__PojogenProperty__Alternatives5013 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19__0_in_rule__PojogenProperty__Alternatives5031 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_20__0_in_rule__PojogenProperty__Alternatives5049 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_21__0_in_rule__PojogenProperty__Alternatives5067 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_22__0_in_rule__PojogenProperty__Alternatives5085 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__PropertyValue__Alternatives_05118 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__PropertyValue__Alternatives_05135 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PropertyValue__Alternatives_05152 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__PropertyValue__Alternatives_05169 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__PropertyValue__Alternatives_05186 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__PropertyValue__Alternatives_05203 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__PropertyValue__Alternatives_05220 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__PropertyValue__Alternatives_05237 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__PropertyValue__Alternatives_05254 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__PropertyValue__Alternatives_05271 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__PropertyValue__Alternatives_05288 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__PropertyValue__Alternatives_05305 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__PropertyValue__Alternatives_05322 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__PropertyValue__Alternatives_05339 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__PropertyValue__Alternatives_05356 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__PropertyValue__Alternatives_05373 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__PropertyValue__Alternatives_05390 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__PropertyValue__Alternatives_05407 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rule__PropertyValue__Alternatives_05424 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__PropertyValue__Alternatives_05441 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__PropertyValue__Alternatives_05458 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__PropertyValue__Alternatives_05475 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__PropertyValue__Alternatives_05492 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__PropertyValue__Alternatives_05509 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__PropertyValue__Alternatives_05526 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__PropertyValue__Alternatives_05543 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__PropertyValue__Alternatives_05560 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__PropertyValue__Alternatives_05577 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__PropertyValue__Alternatives_05594 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__PropertyValue__Alternatives_05611 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__PropertyValue__Alternatives_05628 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__PropertyValue__Alternatives_1_05660 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__PropertyValue__Alternatives_1_05677 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PropertyValue__Alternatives_1_05694 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__PropertyValue__Alternatives_1_05711 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PropertyValue__Alternatives_1_05728 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__PropertyValue__Alternatives_1_05745 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__PropertyValue__Alternatives_1_05762 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__PropertyValue__Alternatives_1_05779 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__PropertyValue__Alternatives_1_05796 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__PropertyValue__Alternatives_1_05813 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__PropertyValue__Alternatives_1_05830 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__PropertyValue__Alternatives_1_05847 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__PropertyValue__Alternatives_1_05864 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__PropertyValue__Alternatives_1_05881 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__PropertyValue__Alternatives_1_05898 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__PropertyValue__Alternatives_1_05915 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__PropertyValue__Alternatives_1_05932 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__PropertyValue__Alternatives_1_05949 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__PropertyValue__Alternatives_1_05966 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rule__PropertyValue__Alternatives_1_05983 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__PropertyValue__Alternatives_1_06000 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__PropertyValue__Alternatives_1_06017 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__PropertyValue__Alternatives_1_06034 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__PropertyValue__Alternatives_1_06051 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__PropertyValue__Alternatives_1_06068 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__PropertyValue__Alternatives_1_06085 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__PropertyValue__Alternatives_1_06102 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__PropertyValue__Alternatives_1_06119 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__PropertyValue__Alternatives_1_06136 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__PropertyValue__Alternatives_1_06153 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__PropertyValue__Alternatives_1_06170 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__PropertyValue__Alternatives_1_06187 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojoDefinition__ClassAlternatives_2_06219 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__PojoDefinition__ClassAlternatives_2_06236 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnUsage_in_rule__PojoUsage__Alternatives6268 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifierUsage_in_rule__PojoUsage__Alternatives6285 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstantUsage_in_rule__PojoUsage__Alternatives6302 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingUsage_in_rule__PojoUsage__Alternatives6319 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnUsageExt_in_rule__PojoUsageExt__Alternatives6351 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifierUsageExt_in_rule__PojoUsageExt__Alternatives6368 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstantUsageExt_in_rule__PojoUsageExt__Alternatives6385 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingUsageExt_in_rule__PojoUsageExt__Alternatives6402 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__ValueAssignment_0_in_rule__SqlFragment__Alternatives6434 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_1__0_in_rule__SqlFragment__Alternatives6452 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_2__0_in_rule__SqlFragment__Alternatives6470 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_3__0_in_rule__SqlFragment__Alternatives6488 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_4__0_in_rule__SqlFragment__Alternatives6506 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_5__0_in_rule__SqlFragment__Alternatives6524 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_5_1_0__0_in_rule__SqlFragment__Alternatives_5_16557 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__DbcolAssignment_5_1_1_in_rule__SqlFragment__Alternatives_5_16575 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__SqlValue__Alternatives_06608 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__SqlValue__Alternatives_06625 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__SqlValue__Alternatives_06642 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__SqlValue__Alternatives_06659 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__SqlValue__Alternatives_06676 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__SqlValue__Alternatives_06693 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__SqlValue__Alternatives_06710 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__SqlValue__Alternatives_06727 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__SqlValue__Alternatives_06744 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__SqlValue__Alternatives_06761 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__SqlValue__Alternatives_06778 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__SqlValue__Alternatives_06795 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__SqlValue__Alternatives_06812 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__SqlValue__Alternatives_06829 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__SqlValue__Alternatives_06846 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__SqlValue__Alternatives_06863 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__SqlValue__Alternatives_06880 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__SqlValue__Alternatives_06897 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__SqlValue__Alternatives_06914 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__SqlValue__Alternatives_06931 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__SqlValue__Alternatives_06948 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__SqlValue__Alternatives_06965 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__SqlValue__Alternatives_06982 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__SqlValue__Alternatives_06999 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__SqlValue__Alternatives_07016 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__SqlValue__Alternatives_07033 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__SqlValue__Alternatives_07050 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__SqlValue__Alternatives_1_07082 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__SqlValue__Alternatives_1_07099 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__SqlValue__Alternatives_1_07116 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__SqlValue__Alternatives_1_07133 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__SqlValue__Alternatives_1_07150 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__SqlValue__Alternatives_1_07167 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__SqlValue__Alternatives_1_07184 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__SqlValue__Alternatives_1_07201 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__SqlValue__Alternatives_1_07218 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__SqlValue__Alternatives_1_07235 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__SqlValue__Alternatives_1_07252 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__SqlValue__Alternatives_1_07269 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__SqlValue__Alternatives_1_07286 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__SqlValue__Alternatives_1_07303 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__SqlValue__Alternatives_1_07320 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__SqlValue__Alternatives_1_07337 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__SqlValue__Alternatives_1_07354 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__SqlValue__Alternatives_1_07371 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__SqlValue__Alternatives_1_07388 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__SqlValue__Alternatives_1_07405 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__SqlValue__Alternatives_1_07422 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__SqlValue__Alternatives_1_07439 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__SqlValue__Alternatives_1_07456 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__SqlValue__Alternatives_1_07473 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__SqlValue__Alternatives_1_07490 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__SqlValue__Alternatives_1_07507 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__SqlValue__Alternatives_1_07524 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0__0_in_rule__MetaSql__Alternatives7556 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__0_in_rule__MetaSql__Alternatives7574 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2__0_in_rule__MetaSql__Alternatives7592 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3__0_in_rule__MetaSql__Alternatives7610 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__0_in_rule__MetaSql__Alternatives7628 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_5__0_in_rule__MetaSql__Alternatives7646 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__ValueAssignment_0_in_rule__IfSqlFragment__Alternatives7679 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_1__0_in_rule__IfSqlFragment__Alternatives7697 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_2__0_in_rule__IfSqlFragment__Alternatives7715 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_3__0_in_rule__IfSqlFragment__Alternatives7733 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_4__0_in_rule__IfSqlFragment__Alternatives7751 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_5__0_in_rule__IfSqlFragment__Alternatives7769 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_4_1_0__0_in_rule__IfSqlFragment__Alternatives_4_17802 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__DbcolAssignment_4_1_1_in_rule__IfSqlFragment__Alternatives_4_17820 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__IfSqlValue__Alternatives_07853 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__IfSqlValue__Alternatives_07870 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__IfSqlValue__Alternatives_07887 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__IfSqlValue__Alternatives_07904 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__IfSqlValue__Alternatives_07921 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__IfSqlValue__Alternatives_07938 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__IfSqlValue__Alternatives_07955 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__IfSqlValue__Alternatives_07972 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__IfSqlValue__Alternatives_07989 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__IfSqlValue__Alternatives_08006 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__IfSqlValue__Alternatives_08023 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__IfSqlValue__Alternatives_08040 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__IfSqlValue__Alternatives_08057 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__IfSqlValue__Alternatives_08074 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__IfSqlValue__Alternatives_08091 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__IfSqlValue__Alternatives_08108 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__IfSqlValue__Alternatives_08125 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__IfSqlValue__Alternatives_08142 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__IfSqlValue__Alternatives_08159 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__IfSqlValue__Alternatives_08176 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__IfSqlValue__Alternatives_08193 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__IfSqlValue__Alternatives_08210 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__IfSqlValue__Alternatives_08227 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__IfSqlValue__Alternatives_08244 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__IfSqlValue__Alternatives_08261 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__IfSqlValue__Alternatives_08278 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__IfSqlValue__Alternatives_1_08310 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__IfSqlValue__Alternatives_1_08327 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__IfSqlValue__Alternatives_1_08344 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__IfSqlValue__Alternatives_1_08361 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__IfSqlValue__Alternatives_1_08378 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__IfSqlValue__Alternatives_1_08395 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__IfSqlValue__Alternatives_1_08412 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__IfSqlValue__Alternatives_1_08429 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__IfSqlValue__Alternatives_1_08446 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__IfSqlValue__Alternatives_1_08463 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__IfSqlValue__Alternatives_1_08480 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__IfSqlValue__Alternatives_1_08497 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__IfSqlValue__Alternatives_1_08514 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__IfSqlValue__Alternatives_1_08531 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__IfSqlValue__Alternatives_1_08548 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__IfSqlValue__Alternatives_1_08565 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__IfSqlValue__Alternatives_1_08582 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__IfSqlValue__Alternatives_1_08599 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__IfSqlValue__Alternatives_1_08616 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__IfSqlValue__Alternatives_1_08633 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__IfSqlValue__Alternatives_1_08650 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__IfSqlValue__Alternatives_1_08667 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__IfSqlValue__Alternatives_1_08684 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__IfSqlValue__Alternatives_1_08701 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__IfSqlValue__Alternatives_1_08718 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__IfSqlValue__Alternatives_1_08735 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0__0_in_rule__IfMetaSql__Alternatives8767 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__0_in_rule__IfMetaSql__Alternatives8785 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2__0_in_rule__IfMetaSql__Alternatives8803 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3__0_in_rule__IfMetaSql__Alternatives8821 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__IfSqlCond__OperAlternatives_3_0_08854 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__IfSqlCond__OperAlternatives_3_0_08871 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_0__0_in_rule__IfSqlBool__Alternatives8903 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_1__0_in_rule__IfSqlBool__Alternatives8921 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__0_in_rule__IfSqlBool__Alternatives8939 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__ValueAssignment_0_in_rule__OrdSql2__Alternatives8972 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_1__0_in_rule__OrdSql2__Alternatives8990 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_2__0_in_rule__OrdSql2__Alternatives9008 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_3__0_in_rule__OrdSql2__Alternatives9026 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__OrdSqlValue__Alternatives_09059 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__OrdSqlValue__Alternatives_09076 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__OrdSqlValue__Alternatives_09093 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__OrdSqlValue__Alternatives_09110 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__OrdSqlValue__Alternatives_09127 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__OrdSqlValue__Alternatives_09144 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__OrdSqlValue__Alternatives_09161 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__OrdSqlValue__Alternatives_09178 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__OrdSqlValue__Alternatives_09195 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__OrdSqlValue__Alternatives_09212 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__OrdSqlValue__Alternatives_09229 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__OrdSqlValue__Alternatives_09246 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__OrdSqlValue__Alternatives_09263 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__OrdSqlValue__Alternatives_09280 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__OrdSqlValue__Alternatives_09297 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__OrdSqlValue__Alternatives_09314 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__OrdSqlValue__Alternatives_09331 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rule__OrdSqlValue__Alternatives_09348 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__OrdSqlValue__Alternatives_09365 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__OrdSqlValue__Alternatives_09382 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__OrdSqlValue__Alternatives_09399 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__OrdSqlValue__Alternatives_09416 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__OrdSqlValue__Alternatives_09433 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__OrdSqlValue__Alternatives_09450 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__OrdSqlValue__Alternatives_09467 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__OrdSqlValue__Alternatives_09484 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__OrdSqlValue__Alternatives_09501 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__OrdSqlValue__Alternatives_09518 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__OrdSqlValue__Alternatives_09535 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__OrdSqlValue__Alternatives_1_09567 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__OrdSqlValue__Alternatives_1_09584 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__OrdSqlValue__Alternatives_1_09601 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__OrdSqlValue__Alternatives_1_09618 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__OrdSqlValue__Alternatives_1_09635 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__OrdSqlValue__Alternatives_1_09652 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__OrdSqlValue__Alternatives_1_09669 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__OrdSqlValue__Alternatives_1_09686 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__OrdSqlValue__Alternatives_1_09703 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__OrdSqlValue__Alternatives_1_09720 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__OrdSqlValue__Alternatives_1_09737 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__OrdSqlValue__Alternatives_1_09754 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__OrdSqlValue__Alternatives_1_09771 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__OrdSqlValue__Alternatives_1_09788 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__OrdSqlValue__Alternatives_1_09805 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__OrdSqlValue__Alternatives_1_09822 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__OrdSqlValue__Alternatives_1_09839 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rule__OrdSqlValue__Alternatives_1_09856 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__OrdSqlValue__Alternatives_1_09873 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__OrdSqlValue__Alternatives_1_09890 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__OrdSqlValue__Alternatives_1_09907 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__OrdSqlValue__Alternatives_1_09924 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__OrdSqlValue__Alternatives_1_09941 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__OrdSqlValue__Alternatives_1_09958 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__OrdSqlValue__Alternatives_1_09975 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__OrdSqlValue__Alternatives_1_09992 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__OrdSqlValue__Alternatives_1_010009 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__OrdSqlValue__Alternatives_1_010026 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__OrdSqlValue__Alternatives_1_010043 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Column__NameAlternatives_0_010075 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__Column__NameAlternatives_0_010092 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__Column__NameAlternatives_0_010109 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Column__ValsAlternatives_1_2_1_010141 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__Column__ValsAlternatives_1_2_1_010158 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__Constant__CaseAlternatives_0_010190 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__Constant__CaseAlternatives_0_010207 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Constant__NameAlternatives_1_010239 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__Constant__NameAlternatives_1_010256 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Constant__ValsAlternatives_2_2_1_010288 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__Constant__ValsAlternatives_2_2_1_010305 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__Identifier__ModeAlternatives_0_010337 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__Identifier__ModeAlternatives_0_010354 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__Identifier__ModeAlternatives_0_010371 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__Identifier__CaseAlternatives_1_010403 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__Identifier__CaseAlternatives_1_010420 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Identifier__NameAlternatives_2_010452 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__Identifier__NameAlternatives_2_010469 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__Identifier__NameAlternatives_2_010486 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Identifier__ValsAlternatives_3_2_1_010518 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__Identifier__ValsAlternatives_3_2_1_010535 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__DatabaseColumn__NameAlternatives_010567 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__DatabaseColumn__NameAlternatives_010584 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__DatabaseTable__NameAlternatives_010616 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__DatabaseTable__NameAlternatives_010633 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingItem__ColAlternatives_0_010665 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__MappingItem__ColAlternatives_0_010682 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingColumn__NameAlternatives_0_010714 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__MappingColumn__NameAlternatives_0_010731 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingColumn__ValsAlternatives_1_1_010763 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__MappingColumn__ValsAlternatives_1_1_010780 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__FeatureValue__Alternatives10812 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__FeatureValue__Alternatives10829 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__FeatureValue__Alternatives10846 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__FeatureValue__Alternatives10863 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__FeatureValue__Alternatives10880 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__FeatureValue__Alternatives10897 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__FeatureValue__Alternatives10914 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__FeatureValue__Alternatives10931 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__FeatureValue__Alternatives10948 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__FeatureValue__Alternatives10965 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__FeatureValue__Alternatives10982 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__FeatureValue__Alternatives10999 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__FeatureValue__Alternatives11016 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__FeatureValue__Alternatives11033 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__FeatureValue__Alternatives11050 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__FeatureValue__Alternatives11067 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__FeatureValue__Alternatives11084 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__FeatureValue__Alternatives11101 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__FeatureValue__Alternatives11118 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rule__FeatureValue__Alternatives11135 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__FeatureValue__Alternatives11152 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__FeatureValue__Alternatives11169 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__FeatureValue__Alternatives11186 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__FeatureValue__Alternatives11203 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__FeatureValue__Alternatives11220 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__FeatureValue__Alternatives11237 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__FeatureValue__Alternatives11254 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__FeatureValue__Alternatives11271 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__FeatureValue__Alternatives11288 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__FeatureValue__Alternatives11305 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__FeatureValue__Alternatives11322 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__FeatureValue__Alternatives11339 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__NativeAssignment_0_0_in_rule__PojoType__Alternatives_011371 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1__0_in_rule__PojoType__Alternatives_011389 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_rule__PojoType__NativeAlternatives_0_0_011423 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_40_in_rule__PojoType__NativeAlternatives_0_0_011443 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_41_in_rule__PojoType__NativeAlternatives_0_0_011463 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_42_in_rule__PojoType__NativeAlternatives_0_0_011483 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_43_in_rule__PojoType__NativeAlternatives_0_0_011503 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_44_in_rule__PojoType__NativeAlternatives_0_0_011523 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_45_in_rule__PojoType__NativeAlternatives_0_0_011543 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_46_in_rule__PojoType__NativeAlternatives_0_0_011563 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_0_1_0__0_in_rule__PojoType__Alternatives_0_1_0_111597 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__TypeAssignment_0_1_0_1_1_in_rule__PojoType__Alternatives_0_1_0_111615 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_1_1_0__0_in_rule__PojoType__Alternatives_0_1_1_111648 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__GtypeAssignment_0_1_1_1_1_in_rule__PojoType__Alternatives_0_1_1_111666 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PackageDeclaration__NameAlternatives_1_011699 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__PackageDeclaration__NameAlternatives_1_011716 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PackageDeclaration__SuffixAlternatives_2_1_011748 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__PackageDeclaration__SuffixAlternatives_2_1_011765 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePackageDeclaration_in_rule__AbstractPojoEntity__Alternatives11797 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoEntity_in_rule__AbstractPojoEntity__Alternatives11814 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImport_in_rule__AbstractPojoEntity__Alternatives11831 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImplements_in_rule__AbstractPojoEntity__Alternatives11848 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleExtends_in_rule__AbstractPojoEntity__Alternatives11865 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier1__FinalAssignment_0_in_rule__PojoEntityModifier1__Alternatives11897 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier1__AbstractAssignment_1_in_rule__PojoEntityModifier1__Alternatives11915 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__Group_0__0_in_rule__PojoEntityModifier2__Alternatives11948 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__Group_1__0_in_rule__PojoEntityModifier2__Alternatives11966 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__Group_2__0_in_rule__PojoEntityModifier2__Alternatives11984 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojoEntityModifier2__DiscriminatorAlternatives_1_1_012017 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__PojoEntityModifier2__DiscriminatorAlternatives_1_1_012034 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoPropertyModifier__RequiredAssignment_0_in_rule__PojoPropertyModifier__Alternatives12066 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoPropertyModifier__DiscriminatorAssignment_1_in_rule__PojoPropertyModifier__Alternatives12084 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoPropertyModifier__PrimaryKeyAssignment_2_in_rule__PojoPropertyModifier__Alternatives12102 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__NativeAssignment_1_0_in_rule__PojoProperty__Alternatives_112135 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1__0_in_rule__PojoProperty__Alternatives_112153 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_rule__PojoProperty__NativeAlternatives_1_0_012187 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_40_in_rule__PojoProperty__NativeAlternatives_1_0_012207 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_41_in_rule__PojoProperty__NativeAlternatives_1_0_012227 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_42_in_rule__PojoProperty__NativeAlternatives_1_0_012247 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_43_in_rule__PojoProperty__NativeAlternatives_1_0_012267 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_44_in_rule__PojoProperty__NativeAlternatives_1_0_012287 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_45_in_rule__PojoProperty__NativeAlternatives_1_0_012307 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_46_in_rule__PojoProperty__NativeAlternatives_1_0_012327 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_0_1_0__0_in_rule__PojoProperty__Alternatives_1_1_0_112361 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__TypeAssignment_1_1_0_1_1_in_rule__PojoProperty__Alternatives_1_1_0_112379 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_0_1_0_1_0__0_in_rule__PojoProperty__Alternatives_1_1_0_1_0_112412 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__RefAssignment_1_1_0_1_0_1_1_in_rule__PojoProperty__Alternatives_1_1_0_1_0_112430 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_1_1_0__0_in_rule__PojoProperty__Alternatives_1_1_1_112463 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__GtypeAssignment_1_1_1_1_1_in_rule__PojoProperty__Alternatives_1_1_1_112481 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__QualifiedName__Alternatives12514 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__QualifiedName__Alternatives12531 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group__0__Impl_in_rule__Artifacts__Group__012561 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group__1_in_rule__Artifacts__Group__012564 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group__0__Impl12592 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group__1__Impl_in_rule__Artifacts__Group__112623 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Alternatives_1_in_rule__Artifacts__Group__1__Impl12652 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Alternatives_1_in_rule__Artifacts__Group__1__Impl12664 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_0__0__Impl_in_rule__Artifacts__Group_1_0__012701 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_0__1_in_rule__Artifacts__Group_1_0__012704 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__FeaturesAssignment_1_0_0_in_rule__Artifacts__Group_1_0__0__Impl12731 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_0__1__Impl_in_rule__Artifacts__Group_1_0__112761 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_0__1__Impl12789 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_1__0__Impl_in_rule__Artifacts__Group_1_1__012824 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_1__1_in_rule__Artifacts__Group_1_1__012827 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__StatementsAssignment_1_1_0_in_rule__Artifacts__Group_1_1__0__Impl12854 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_1__1__Impl_in_rule__Artifacts__Group_1_1__112884 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_1__1__Impl12912 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_2__0__Impl_in_rule__Artifacts__Group_1_2__012947 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_2__1_in_rule__Artifacts__Group_1_2__012950 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__MappingsAssignment_1_2_0_in_rule__Artifacts__Group_1_2__0__Impl12977 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_2__1__Impl_in_rule__Artifacts__Group_1_2__113007 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_2__1__Impl13035 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_3__0__Impl_in_rule__Artifacts__Group_1_3__013070 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_3__1_in_rule__Artifacts__Group_1_3__013073 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__PojosAssignment_1_3_0_in_rule__Artifacts__Group_1_3__0__Impl13100 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_3__1__Impl_in_rule__Artifacts__Group_1_3__113130 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_3__1__Impl13158 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_4__0__Impl_in_rule__Artifacts__Group_1_4__013193 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_4__1_in_rule__Artifacts__Group_1_4__013196 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__UsagesAssignment_1_4_0_in_rule__Artifacts__Group_1_4__0__Impl13223 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_4__1__Impl_in_rule__Artifacts__Group_1_4__113253 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_4__1__Impl13281 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_5__0__Impl_in_rule__Artifacts__Group_1_5__013316 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_5__1_in_rule__Artifacts__Group_1_5__013319 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__PropertiesAssignment_1_5_0_in_rule__Artifacts__Group_1_5__0__Impl13346 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_5__1__Impl_in_rule__Artifacts__Group_1_5__113376 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_5__1__Impl13404 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_6__0__Impl_in_rule__Artifacts__Group_1_6__013439 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_6__1_in_rule__Artifacts__Group_1_6__013442 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__TablesAssignment_1_6_0_in_rule__Artifacts__Group_1_6__0__Impl13469 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_6__1__Impl_in_rule__Artifacts__Group_1_6__113499 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_6__1__Impl13527 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_7__0__Impl_in_rule__Artifacts__Group_1_7__013562 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_7__1_in_rule__Artifacts__Group_1_7__013565 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__TableUsagesAssignment_1_7_0_in_rule__Artifacts__Group_1_7__0__Impl13592 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_7__1__Impl_in_rule__Artifacts__Group_1_7__113622 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_7__1__Impl13650 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_8__0__Impl_in_rule__Artifacts__Group_1_8__013685 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_8__1_in_rule__Artifacts__Group_1_8__013688 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__PojoPackagesAssignment_1_8_0_in_rule__Artifacts__Group_1_8__0__Impl13715 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_8__1__Impl_in_rule__Artifacts__Group_1_8__113745 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_8__1__Impl13773 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_9__0__Impl_in_rule__Artifacts__Group_1_9__013808 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_9__1_in_rule__Artifacts__Group_1_9__013811 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__UsagesExtAssignment_1_9_0_in_rule__Artifacts__Group_1_9__0__Impl13838 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_9__1__Impl_in_rule__Artifacts__Group_1_9__113868 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_9__1__Impl13896 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__Group__0__Impl_in_rule__SqlTypeAssignement__Group__013931 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__Group__1_in_rule__SqlTypeAssignement__Group__013934 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__TypeNameAssignment_0_in_rule__SqlTypeAssignement__Group__0__Impl13961 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__Group__1__Impl_in_rule__SqlTypeAssignement__Group__113991 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__Group__2_in_rule__SqlTypeAssignement__Group__113994 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__Group_1__0_in_rule__SqlTypeAssignement__Group__1__Impl14021 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__Group__2__Impl_in_rule__SqlTypeAssignement__Group__214052 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__Group__3_in_rule__SqlTypeAssignement__Group__214055 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_rule__SqlTypeAssignement__Group__2__Impl14083 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__Group__3__Impl_in_rule__SqlTypeAssignement__Group__314114 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__TypeAssignment_3_in_rule__SqlTypeAssignement__Group__3__Impl14141 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__Group_1__0__Impl_in_rule__SqlTypeAssignement__Group_1__014179 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__Group_1__1_in_rule__SqlTypeAssignement__Group_1__014182 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__SqlTypeAssignement__Group_1__0__Impl14209 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__Group_1__1__Impl_in_rule__SqlTypeAssignement__Group_1__114238 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__Group_1__2_in_rule__SqlTypeAssignement__Group_1__114241 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__SizeAssignment_1_1_in_rule__SqlTypeAssignement__Group_1__1__Impl14268 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlTypeAssignement__Group_1__2__Impl_in_rule__SqlTypeAssignement__Group_1__214298 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__SqlTypeAssignement__Group_1__2__Impl14325 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnTypeAssignement__Group__0__Impl_in_rule__ColumnTypeAssignement__Group__014360 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnTypeAssignement__Group__1_in_rule__ColumnTypeAssignement__Group__014363 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnTypeAssignement__DbColumnAssignment_0_in_rule__ColumnTypeAssignement__Group__0__Impl14390 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnTypeAssignement__Group__1__Impl_in_rule__ColumnTypeAssignement__Group__114420 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnTypeAssignement__Group__2_in_rule__ColumnTypeAssignement__Group__114423 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_rule__ColumnTypeAssignement__Group__1__Impl14451 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnTypeAssignement__Group__2__Impl_in_rule__ColumnTypeAssignement__Group__214482 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnTypeAssignement__TypeAssignment_2_in_rule__ColumnTypeAssignement__Group__2__Impl14509 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ShowColumnTypeAssignement__Group__0__Impl_in_rule__ShowColumnTypeAssignement__Group__014545 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ShowColumnTypeAssignement__Group__1_in_rule__ShowColumnTypeAssignement__Group__014548 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ShowColumnTypeAssignement__DbColumnAssignment_0_in_rule__ShowColumnTypeAssignement__Group__0__Impl14575 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ShowColumnTypeAssignement__Group__1__Impl_in_rule__ShowColumnTypeAssignement__Group__114605 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ShowColumnTypeAssignement__Group__2_in_rule__ShowColumnTypeAssignement__Group__114608 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_rule__ShowColumnTypeAssignement__Group__1__Impl14636 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ShowColumnTypeAssignement__Group__2__Impl_in_rule__ShowColumnTypeAssignement__Group__214667 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ShowColumnTypeAssignement__TypeAssignment_2_in_rule__ShowColumnTypeAssignement__Group__2__Impl14694 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableAssignement__Group__0__Impl_in_rule__TableAssignement__Group__014730 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableAssignement__Group__1_in_rule__TableAssignement__Group__014733 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableAssignement__DbTableAssignment_0_in_rule__TableAssignement__Group__0__Impl14760 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableAssignement__Group__1__Impl_in_rule__TableAssignement__Group__114790 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableAssignement__Group__2_in_rule__TableAssignement__Group__114793 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_rule__TableAssignement__Group__1__Impl14821 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableAssignement__Group__2__Impl_in_rule__TableAssignement__Group__214852 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableAssignement__NewNameAssignment_2_in_rule__TableAssignement__Group__2__Impl14879 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__JoinTableAssignement__Group__0__Impl_in_rule__JoinTableAssignement__Group__014915 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__JoinTableAssignement__Group__1_in_rule__JoinTableAssignement__Group__014918 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__JoinTableAssignement__DbTableAssignment_0_in_rule__JoinTableAssignement__Group__0__Impl14945 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__JoinTableAssignement__Group__1__Impl_in_rule__JoinTableAssignement__Group__114975 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__JoinTableAssignement__Group_1__0_in_rule__JoinTableAssignement__Group__1__Impl15004 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__JoinTableAssignement__Group_1__0_in_rule__JoinTableAssignement__Group__1__Impl15016 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__JoinTableAssignement__Group_1__0__Impl_in_rule__JoinTableAssignement__Group_1__015053 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__JoinTableAssignement__Group_1__1_in_rule__JoinTableAssignement__Group_1__015056 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_rule__JoinTableAssignement__Group_1__0__Impl15084 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__JoinTableAssignement__Group_1__1__Impl_in_rule__JoinTableAssignement__Group_1__115115 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__JoinTableAssignement__DbTablesAssignment_1_1_in_rule__JoinTableAssignement__Group_1__1__Impl15142 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnAssignement__Group__0__Impl_in_rule__ColumnAssignement__Group__015176 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnAssignement__Group__1_in_rule__ColumnAssignement__Group__015179 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnAssignement__DbColumnAssignment_0_in_rule__ColumnAssignement__Group__0__Impl15206 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnAssignement__Group__1__Impl_in_rule__ColumnAssignement__Group__115236 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnAssignement__Group__2_in_rule__ColumnAssignement__Group__115239 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_rule__ColumnAssignement__Group__1__Impl15267 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnAssignement__Group__2__Impl_in_rule__ColumnAssignement__Group__215298 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnAssignement__NewNameAssignment_2_in_rule__ColumnAssignement__Group__2__Impl15325 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ImportAssignement__Group__0__Impl_in_rule__ImportAssignement__Group__015361 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ImportAssignement__Group__1_in_rule__ImportAssignement__Group__015364 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ImportAssignement__DbColumnAssignment_0_in_rule__ImportAssignement__Group__0__Impl15391 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ImportAssignement__Group__1__Impl_in_rule__ImportAssignement__Group__115421 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ImportAssignement__Group__2_in_rule__ImportAssignement__Group__115424 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_rule__ImportAssignement__Group__1__Impl15452 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ImportAssignement__Group__2__Impl_in_rule__ImportAssignement__Group__215483 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ImportAssignement__Group__3_in_rule__ImportAssignement__Group__215486 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ImportAssignement__PkTableAssignment_2_in_rule__ImportAssignement__Group__2__Impl15513 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ImportAssignement__Group__3__Impl_in_rule__ImportAssignement__Group__315543 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ImportAssignement__Group_3__0_in_rule__ImportAssignement__Group__3__Impl15570 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ImportAssignement__Group_3__0__Impl_in_rule__ImportAssignement__Group_3__015609 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ImportAssignement__Group_3__1_in_rule__ImportAssignement__Group_3__015612 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_rule__ImportAssignement__Group_3__0__Impl15640 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ImportAssignement__Group_3__1__Impl_in_rule__ImportAssignement__Group_3__115671 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ImportAssignement__PkColumnAssignment_3_1_in_rule__ImportAssignement__Group_3__1__Impl15698 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ExportAssignement__Group__0__Impl_in_rule__ExportAssignement__Group__015732 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ExportAssignement__Group__1_in_rule__ExportAssignement__Group__015735 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ExportAssignement__DbColumnAssignment_0_in_rule__ExportAssignement__Group__0__Impl15762 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ExportAssignement__Group__1__Impl_in_rule__ExportAssignement__Group__115792 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ExportAssignement__Group__2_in_rule__ExportAssignement__Group__115795 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_rule__ExportAssignement__Group__1__Impl15823 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ExportAssignement__Group__2__Impl_in_rule__ExportAssignement__Group__215854 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ExportAssignement__Group__3_in_rule__ExportAssignement__Group__215857 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ExportAssignement__FkTableAssignment_2_in_rule__ExportAssignement__Group__2__Impl15884 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ExportAssignement__Group__3__Impl_in_rule__ExportAssignement__Group__315914 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ExportAssignement__Group_3__0_in_rule__ExportAssignement__Group__3__Impl15941 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ExportAssignement__Group_3__0__Impl_in_rule__ExportAssignement__Group_3__015980 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ExportAssignement__Group_3__1_in_rule__ExportAssignement__Group_3__015983 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_rule__ExportAssignement__Group_3__0__Impl16011 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ExportAssignement__Group_3__1__Impl_in_rule__ExportAssignement__Group_3__116042 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ExportAssignement__FkColumnAssignment_3_1_in_rule__ExportAssignement__Group_3__1__Impl16069 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__Group__0__Impl_in_rule__InheritanceAssignement__Group__016103 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__Group__1_in_rule__InheritanceAssignement__Group__016106 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__DiscriminatorAssignment_0_in_rule__InheritanceAssignement__Group__0__Impl16133 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__Group__1__Impl_in_rule__InheritanceAssignement__Group__116163 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__Group__2_in_rule__InheritanceAssignement__Group__116166 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_rule__InheritanceAssignement__Group__1__Impl16194 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__Group__2__Impl_in_rule__InheritanceAssignement__Group__216225 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__Group__3_in_rule__InheritanceAssignement__Group__216228 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__DbTableAssignment_2_in_rule__InheritanceAssignement__Group__2__Impl16255 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__Group__3__Impl_in_rule__InheritanceAssignement__Group__316285 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__Group_3__0_in_rule__InheritanceAssignement__Group__3__Impl16314 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__Group_3__0_in_rule__InheritanceAssignement__Group__3__Impl16326 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__Group_3__0__Impl_in_rule__InheritanceAssignement__Group_3__016367 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__Group_3__1_in_rule__InheritanceAssignement__Group_3__016370 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_rule__InheritanceAssignement__Group_3__0__Impl16398 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__Group_3__1__Impl_in_rule__InheritanceAssignement__Group_3__116429 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__InheritanceAssignement__DbColumnsAssignment_3_1_in_rule__InheritanceAssignement__Group_3__1__Impl16456 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ManyToManyAssignement__Group__0__Impl_in_rule__ManyToManyAssignement__Group__016490 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ManyToManyAssignement__Group__1_in_rule__ManyToManyAssignement__Group__016493 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ManyToManyAssignement__PkColumnAssignment_0_in_rule__ManyToManyAssignement__Group__0__Impl16520 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ManyToManyAssignement__Group__1__Impl_in_rule__ManyToManyAssignement__Group__116550 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ManyToManyAssignement__Group__2_in_rule__ManyToManyAssignement__Group__116553 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_rule__ManyToManyAssignement__Group__1__Impl16581 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ManyToManyAssignement__Group__2__Impl_in_rule__ManyToManyAssignement__Group__216612 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ManyToManyAssignement__Group__3_in_rule__ManyToManyAssignement__Group__216615 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ManyToManyAssignement__PkTableAssignment_2_in_rule__ManyToManyAssignement__Group__2__Impl16642 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ManyToManyAssignement__Group__3__Impl_in_rule__ManyToManyAssignement__Group__316672 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ManyToManyAssignement__Group_3__0_in_rule__ManyToManyAssignement__Group__3__Impl16699 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ManyToManyAssignement__Group_3__0__Impl_in_rule__ManyToManyAssignement__Group_3__016738 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ManyToManyAssignement__Group_3__1_in_rule__ManyToManyAssignement__Group_3__016741 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_rule__ManyToManyAssignement__Group_3__0__Impl16769 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ManyToManyAssignement__Group_3__1__Impl_in_rule__ManyToManyAssignement__Group_3__116800 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ManyToManyAssignement__FkColumnAssignment_3_1_in_rule__ManyToManyAssignement__Group_3__1__Impl16827 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group__0__Impl_in_rule__Property__Group__016861 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group__1_in_rule__Property__Group__016864 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Alternatives_0_in_rule__Property__Group__0__Impl16891 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group__1__Impl_in_rule__Property__Group__116921 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__Property__Group__1__Impl16948 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_2__0__Impl_in_rule__Property__Group_0_2__016981 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_2__1_in_rule__Property__Group_0_2__016984 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__NameAssignment_0_2_0_in_rule__Property__Group_0_2__0__Impl17011 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_2__1__Impl_in_rule__Property__Group_0_2__117041 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__DatabaseAssignment_0_2_1_in_rule__Property__Group_0_2__1__Impl17068 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_3__0__Impl_in_rule__Property__Group_0_3__017102 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_3__1_in_rule__Property__Group_0_3__017105 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__NameAssignment_0_3_0_in_rule__Property__Group_0_3__0__Impl17132 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_3__1__Impl_in_rule__Property__Group_0_3__117162 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__PojogenAssignment_0_3_1_in_rule__Property__Group_0_3__1__Impl17189 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_2__0__Impl_in_rule__DatabaseProperty__Group_2__017223 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_2__1_in_rule__DatabaseProperty__Group_2__017226 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__NameAssignment_2_0_in_rule__DatabaseProperty__Group_2__0__Impl17253 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_2__1__Impl_in_rule__DatabaseProperty__Group_2__117283 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_2__2_in_rule__DatabaseProperty__Group_2__117286 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_2__1__Impl17316 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_2__1__Impl17329 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_2__2__Impl_in_rule__DatabaseProperty__Group_2__217362 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__DbUrlAssignment_2_2_in_rule__DatabaseProperty__Group_2__2__Impl17389 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_3__0__Impl_in_rule__DatabaseProperty__Group_3__017425 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_3__1_in_rule__DatabaseProperty__Group_3__017428 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__NameAssignment_3_0_in_rule__DatabaseProperty__Group_3__0__Impl17455 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_3__1__Impl_in_rule__DatabaseProperty__Group_3__117485 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_3__2_in_rule__DatabaseProperty__Group_3__117488 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_3__1__Impl17518 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_3__1__Impl17531 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_3__2__Impl_in_rule__DatabaseProperty__Group_3__217564 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__DbUsernameAssignment_3_2_in_rule__DatabaseProperty__Group_3__2__Impl17591 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_4__0__Impl_in_rule__DatabaseProperty__Group_4__017627 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_4__1_in_rule__DatabaseProperty__Group_4__017630 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__NameAssignment_4_0_in_rule__DatabaseProperty__Group_4__0__Impl17657 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_4__1__Impl_in_rule__DatabaseProperty__Group_4__117687 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_4__2_in_rule__DatabaseProperty__Group_4__117690 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_4__1__Impl17720 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_4__1__Impl17733 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_4__2__Impl_in_rule__DatabaseProperty__Group_4__217766 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__DbPasswordAssignment_4_2_in_rule__DatabaseProperty__Group_4__2__Impl17793 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_5__0__Impl_in_rule__DatabaseProperty__Group_5__017829 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_5__1_in_rule__DatabaseProperty__Group_5__017832 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__NameAssignment_5_0_in_rule__DatabaseProperty__Group_5__0__Impl17859 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_5__1__Impl_in_rule__DatabaseProperty__Group_5__117889 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_5__2_in_rule__DatabaseProperty__Group_5__117892 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_5__1__Impl17922 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_5__1__Impl17935 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_5__2__Impl_in_rule__DatabaseProperty__Group_5__217968 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__DbSchemaAssignment_5_2_in_rule__DatabaseProperty__Group_5__2__Impl17995 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_6__0__Impl_in_rule__DatabaseProperty__Group_6__018031 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_6__1_in_rule__DatabaseProperty__Group_6__018034 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__NameAssignment_6_0_in_rule__DatabaseProperty__Group_6__0__Impl18061 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_6__1__Impl_in_rule__DatabaseProperty__Group_6__118091 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_6__2_in_rule__DatabaseProperty__Group_6__118094 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_6__1__Impl18124 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__DatabaseProperty__Group_6__1__Impl18137 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__Group_6__2__Impl_in_rule__DatabaseProperty__Group_6__218170 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseProperty__DbDriverAssignment_6_2_in_rule__DatabaseProperty__Group_6__2__Impl18197 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_0__0__Impl_in_rule__PojogenProperty__Group_0__018233 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_0__1_in_rule__PojogenProperty__Group_0__018236 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_0_0_in_rule__PojogenProperty__Group_0__0__Impl18263 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_0__1__Impl_in_rule__PojogenProperty__Group_0__118293 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_0_1__0_in_rule__PojogenProperty__Group_0__1__Impl18322 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_0_1__0_in_rule__PojogenProperty__Group_0__1__Impl18334 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_0_1__0__Impl_in_rule__PojogenProperty__Group_0_1__018371 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_0_1__1_in_rule__PojogenProperty__Group_0_1__018374 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_0_1__0__Impl18404 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_0_1__0__Impl18417 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_0_1__1__Impl_in_rule__PojogenProperty__Group_0_1__118450 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__SqlTypesAssignment_0_1_1_in_rule__PojogenProperty__Group_0_1__1__Impl18477 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_1__0__Impl_in_rule__PojogenProperty__Group_1__018511 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_1__1_in_rule__PojogenProperty__Group_1__018514 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_1_0_in_rule__PojogenProperty__Group_1__0__Impl18541 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_1__1__Impl_in_rule__PojogenProperty__Group_1__118571 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_1__2_in_rule__PojogenProperty__Group_1__118574 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_1__1__Impl18604 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_1__1__Impl18617 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_1__2__Impl_in_rule__PojogenProperty__Group_1__218650 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_1__3_in_rule__PojogenProperty__Group_1__218653 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTableAssignment_1_2_in_rule__PojogenProperty__Group_1__2__Impl18680 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_1__3__Impl_in_rule__PojogenProperty__Group_1__318710 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_1_3__0_in_rule__PojogenProperty__Group_1__3__Impl18739 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_1_3__0_in_rule__PojogenProperty__Group_1__3__Impl18751 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_1_3__0__Impl_in_rule__PojogenProperty__Group_1_3__018792 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_1_3__1_in_rule__PojogenProperty__Group_1_3__018795 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_1_3__0__Impl18825 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_1_3__0__Impl18838 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_1_3__1__Impl_in_rule__PojogenProperty__Group_1_3__118871 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__SqlTypesAssignment_1_3_1_in_rule__PojogenProperty__Group_1_3__1__Impl18898 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_2__0__Impl_in_rule__PojogenProperty__Group_2__018932 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_2__1_in_rule__PojogenProperty__Group_2__018935 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_2_0_in_rule__PojogenProperty__Group_2__0__Impl18962 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_2__1__Impl_in_rule__PojogenProperty__Group_2__118992 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_2__2_in_rule__PojogenProperty__Group_2__118995 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_2__1__Impl19025 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_2__1__Impl19038 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_2__2__Impl_in_rule__PojogenProperty__Group_2__219071 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_2__3_in_rule__PojogenProperty__Group_2__219074 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTableAssignment_2_2_in_rule__PojogenProperty__Group_2__2__Impl19101 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_2__3__Impl_in_rule__PojogenProperty__Group_2__319131 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_2_3__0_in_rule__PojogenProperty__Group_2__3__Impl19160 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_2_3__0_in_rule__PojogenProperty__Group_2__3__Impl19172 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_2_3__0__Impl_in_rule__PojogenProperty__Group_2_3__019213 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_2_3__1_in_rule__PojogenProperty__Group_2_3__019216 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_2_3__0__Impl19246 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_2_3__0__Impl19259 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_2_3__1__Impl_in_rule__PojogenProperty__Group_2_3__119292 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__ColumnTypesAssignment_2_3_1_in_rule__PojogenProperty__Group_2_3__1__Impl19319 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_3__0__Impl_in_rule__PojogenProperty__Group_3__019353 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_3__1_in_rule__PojogenProperty__Group_3__019356 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_3_0_in_rule__PojogenProperty__Group_3__0__Impl19383 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_3__1__Impl_in_rule__PojogenProperty__Group_3__119413 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_3__2_in_rule__PojogenProperty__Group_3__119416 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_3__1__Impl19446 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_3__1__Impl19459 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_3__2__Impl_in_rule__PojogenProperty__Group_3__219492 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_3__3_in_rule__PojogenProperty__Group_3__219495 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTableAssignment_3_2_in_rule__PojogenProperty__Group_3__2__Impl19522 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_3__3__Impl_in_rule__PojogenProperty__Group_3__319552 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_3__4_in_rule__PojogenProperty__Group_3__319555 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_3__3__Impl19585 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_3__3__Impl19598 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_3__4__Impl_in_rule__PojogenProperty__Group_3__419631 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__ColumnTypeAssignment_3_4_in_rule__PojogenProperty__Group_3__4__Impl19658 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_4__0__Impl_in_rule__PojogenProperty__Group_4__019698 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_4__1_in_rule__PojogenProperty__Group_4__019701 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_4_0_in_rule__PojogenProperty__Group_4__0__Impl19728 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_4__1__Impl_in_rule__PojogenProperty__Group_4__119758 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_4_1__0_in_rule__PojogenProperty__Group_4__1__Impl19787 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_4_1__0_in_rule__PojogenProperty__Group_4__1__Impl19799 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_4_1__0__Impl_in_rule__PojogenProperty__Group_4_1__019836 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_4_1__1_in_rule__PojogenProperty__Group_4_1__019839 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_4_1__0__Impl19869 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_4_1__0__Impl19882 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_4_1__1__Impl_in_rule__PojogenProperty__Group_4_1__119915 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTablesAssignment_4_1_1_in_rule__PojogenProperty__Group_4_1__1__Impl19942 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_5__0__Impl_in_rule__PojogenProperty__Group_5__019976 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_5__1_in_rule__PojogenProperty__Group_5__019979 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_5_0_in_rule__PojogenProperty__Group_5__0__Impl20006 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_5__1__Impl_in_rule__PojogenProperty__Group_5__120036 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_5_1__0_in_rule__PojogenProperty__Group_5__1__Impl20065 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_5_1__0_in_rule__PojogenProperty__Group_5__1__Impl20077 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_5_1__0__Impl_in_rule__PojogenProperty__Group_5_1__020114 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_5_1__1_in_rule__PojogenProperty__Group_5_1__020117 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_5_1__0__Impl20147 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_5_1__0__Impl20160 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_5_1__1__Impl_in_rule__PojogenProperty__Group_5_1__120193 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTablesAssignment_5_1_1_in_rule__PojogenProperty__Group_5_1__1__Impl20220 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_6__0__Impl_in_rule__PojogenProperty__Group_6__020254 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_6__1_in_rule__PojogenProperty__Group_6__020257 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_6_0_in_rule__PojogenProperty__Group_6__0__Impl20284 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_6__1__Impl_in_rule__PojogenProperty__Group_6__120314 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_6_1__0_in_rule__PojogenProperty__Group_6__1__Impl20343 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_6_1__0_in_rule__PojogenProperty__Group_6__1__Impl20355 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_6_1__0__Impl_in_rule__PojogenProperty__Group_6_1__020392 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_6_1__1_in_rule__PojogenProperty__Group_6_1__020395 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_6_1__0__Impl20425 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_6_1__0__Impl20438 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_6_1__1__Impl_in_rule__PojogenProperty__Group_6_1__120471 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__JoinTablesAssignment_6_1_1_in_rule__PojogenProperty__Group_6_1__1__Impl20498 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_7__0__Impl_in_rule__PojogenProperty__Group_7__020532 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_7__1_in_rule__PojogenProperty__Group_7__020535 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_7_0_in_rule__PojogenProperty__Group_7__0__Impl20562 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_7__1__Impl_in_rule__PojogenProperty__Group_7__120592 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_7__2_in_rule__PojogenProperty__Group_7__120595 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_7__1__Impl20625 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_7__1__Impl20638 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_7__2__Impl_in_rule__PojogenProperty__Group_7__220671 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_7__3_in_rule__PojogenProperty__Group_7__220674 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTableAssignment_7_2_in_rule__PojogenProperty__Group_7__2__Impl20701 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_7__3__Impl_in_rule__PojogenProperty__Group_7__320731 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_7_3__0_in_rule__PojogenProperty__Group_7__3__Impl20760 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_7_3__0_in_rule__PojogenProperty__Group_7__3__Impl20772 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_7_3__0__Impl_in_rule__PojogenProperty__Group_7_3__020813 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_7_3__1_in_rule__PojogenProperty__Group_7_3__020816 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_7_3__0__Impl20846 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_7_3__0__Impl20859 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_7_3__1__Impl_in_rule__PojogenProperty__Group_7_3__120892 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbColumnsAssignment_7_3_1_in_rule__PojogenProperty__Group_7_3__1__Impl20919 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_8__0__Impl_in_rule__PojogenProperty__Group_8__020953 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_8__1_in_rule__PojogenProperty__Group_8__020956 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_8_0_in_rule__PojogenProperty__Group_8__0__Impl20983 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_8__1__Impl_in_rule__PojogenProperty__Group_8__121013 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_8__2_in_rule__PojogenProperty__Group_8__121016 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_8__1__Impl21046 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_8__1__Impl21059 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_8__2__Impl_in_rule__PojogenProperty__Group_8__221092 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_8__3_in_rule__PojogenProperty__Group_8__221095 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTableAssignment_8_2_in_rule__PojogenProperty__Group_8__2__Impl21122 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_8__3__Impl_in_rule__PojogenProperty__Group_8__321152 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_8_3__0_in_rule__PojogenProperty__Group_8__3__Impl21181 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_8_3__0_in_rule__PojogenProperty__Group_8__3__Impl21193 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_8_3__0__Impl_in_rule__PojogenProperty__Group_8_3__021234 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_8_3__1_in_rule__PojogenProperty__Group_8_3__021237 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_8_3__0__Impl21267 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_8_3__0__Impl21280 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_8_3__1__Impl_in_rule__PojogenProperty__Group_8_3__121313 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbColumnsAssignment_8_3_1_in_rule__PojogenProperty__Group_8_3__1__Impl21340 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_9__0__Impl_in_rule__PojogenProperty__Group_9__021374 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_9__1_in_rule__PojogenProperty__Group_9__021377 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_9_0_in_rule__PojogenProperty__Group_9__0__Impl21404 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_9__1__Impl_in_rule__PojogenProperty__Group_9__121434 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_9__2_in_rule__PojogenProperty__Group_9__121437 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_9__1__Impl21467 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_9__1__Impl21480 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_9__2__Impl_in_rule__PojogenProperty__Group_9__221513 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_9__3_in_rule__PojogenProperty__Group_9__221516 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTableAssignment_9_2_in_rule__PojogenProperty__Group_9__2__Impl21543 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_9__3__Impl_in_rule__PojogenProperty__Group_9__321573 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_9_3__0_in_rule__PojogenProperty__Group_9__3__Impl21602 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_9_3__0_in_rule__PojogenProperty__Group_9__3__Impl21614 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_9_3__0__Impl_in_rule__PojogenProperty__Group_9_3__021655 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_9_3__1_in_rule__PojogenProperty__Group_9_3__021658 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_9_3__0__Impl21688 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_9_3__0__Impl21701 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_9_3__1__Impl_in_rule__PojogenProperty__Group_9_3__121734 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbColumnsAssignment_9_3_1_in_rule__PojogenProperty__Group_9_3__1__Impl21761 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_10__0__Impl_in_rule__PojogenProperty__Group_10__021795 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_10__1_in_rule__PojogenProperty__Group_10__021798 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_10_0_in_rule__PojogenProperty__Group_10__0__Impl21825 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_10__1__Impl_in_rule__PojogenProperty__Group_10__121855 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_10__2_in_rule__PojogenProperty__Group_10__121858 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_10__1__Impl21888 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_10__1__Impl21901 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_10__2__Impl_in_rule__PojogenProperty__Group_10__221934 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_10__3_in_rule__PojogenProperty__Group_10__221937 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTableAssignment_10_2_in_rule__PojogenProperty__Group_10__2__Impl21964 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_10__3__Impl_in_rule__PojogenProperty__Group_10__321994 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_10_3__0_in_rule__PojogenProperty__Group_10__3__Impl22023 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_10_3__0_in_rule__PojogenProperty__Group_10__3__Impl22035 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_10_3__0__Impl_in_rule__PojogenProperty__Group_10_3__022076 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_10_3__1_in_rule__PojogenProperty__Group_10_3__022079 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_10_3__0__Impl22109 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_10_3__0__Impl22122 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_10_3__1__Impl_in_rule__PojogenProperty__Group_10_3__122155 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__ColumnTypesAssignment_10_3_1_in_rule__PojogenProperty__Group_10_3__1__Impl22182 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_11__0__Impl_in_rule__PojogenProperty__Group_11__022216 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_11__1_in_rule__PojogenProperty__Group_11__022219 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_11_0_in_rule__PojogenProperty__Group_11__0__Impl22246 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_11__1__Impl_in_rule__PojogenProperty__Group_11__122276 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_11_1__0_in_rule__PojogenProperty__Group_11__1__Impl22305 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_11_1__0_in_rule__PojogenProperty__Group_11__1__Impl22317 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_11_1__0__Impl_in_rule__PojogenProperty__Group_11_1__022354 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_11_1__1_in_rule__PojogenProperty__Group_11_1__022357 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_11_1__0__Impl22387 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_11_1__0__Impl22400 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_11_1__1__Impl_in_rule__PojogenProperty__Group_11_1__122433 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__TablesAssignment_11_1_1_in_rule__PojogenProperty__Group_11_1__1__Impl22460 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_12__0__Impl_in_rule__PojogenProperty__Group_12__022494 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_12__1_in_rule__PojogenProperty__Group_12__022497 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_12_0_in_rule__PojogenProperty__Group_12__0__Impl22524 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_12__1__Impl_in_rule__PojogenProperty__Group_12__122554 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_12__2_in_rule__PojogenProperty__Group_12__122557 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_12__1__Impl22587 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_12__1__Impl22600 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_12__2__Impl_in_rule__PojogenProperty__Group_12__222633 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_12__3_in_rule__PojogenProperty__Group_12__222636 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTableAssignment_12_2_in_rule__PojogenProperty__Group_12__2__Impl22663 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_12__3__Impl_in_rule__PojogenProperty__Group_12__322693 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_12_3__0_in_rule__PojogenProperty__Group_12__3__Impl22722 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_12_3__0_in_rule__PojogenProperty__Group_12__3__Impl22734 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_12_3__0__Impl_in_rule__PojogenProperty__Group_12_3__022775 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_12_3__1_in_rule__PojogenProperty__Group_12_3__022778 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_12_3__0__Impl22808 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_12_3__0__Impl22821 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_12_3__1__Impl_in_rule__PojogenProperty__Group_12_3__122854 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__ColumnsAssignment_12_3_1_in_rule__PojogenProperty__Group_12_3__1__Impl22881 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_13__0__Impl_in_rule__PojogenProperty__Group_13__022915 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_13__1_in_rule__PojogenProperty__Group_13__022918 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_13_0_in_rule__PojogenProperty__Group_13__0__Impl22945 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_13__1__Impl_in_rule__PojogenProperty__Group_13__122975 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_13__2_in_rule__PojogenProperty__Group_13__122978 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_13__1__Impl23008 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_13__1__Impl23021 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_13__2__Impl_in_rule__PojogenProperty__Group_13__223054 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_13__3_in_rule__PojogenProperty__Group_13__223057 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTableAssignment_13_2_in_rule__PojogenProperty__Group_13__2__Impl23084 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_13__3__Impl_in_rule__PojogenProperty__Group_13__323114 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_13_3__0_in_rule__PojogenProperty__Group_13__3__Impl23143 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_13_3__0_in_rule__PojogenProperty__Group_13__3__Impl23155 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_13_3__0__Impl_in_rule__PojogenProperty__Group_13_3__023196 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_13_3__1_in_rule__PojogenProperty__Group_13_3__023199 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_13_3__0__Impl23229 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_13_3__0__Impl23242 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_13_3__1__Impl_in_rule__PojogenProperty__Group_13_3__123275 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__ExportsAssignment_13_3_1_in_rule__PojogenProperty__Group_13_3__1__Impl23302 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_14__0__Impl_in_rule__PojogenProperty__Group_14__023336 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_14__1_in_rule__PojogenProperty__Group_14__023339 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_14_0_in_rule__PojogenProperty__Group_14__0__Impl23366 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_14__1__Impl_in_rule__PojogenProperty__Group_14__123396 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_14__2_in_rule__PojogenProperty__Group_14__123399 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_14__1__Impl23429 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_14__1__Impl23442 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_14__2__Impl_in_rule__PojogenProperty__Group_14__223475 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_14__3_in_rule__PojogenProperty__Group_14__223478 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTableAssignment_14_2_in_rule__PojogenProperty__Group_14__2__Impl23505 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_14__3__Impl_in_rule__PojogenProperty__Group_14__323535 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_14_3__0_in_rule__PojogenProperty__Group_14__3__Impl23564 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_14_3__0_in_rule__PojogenProperty__Group_14__3__Impl23576 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_14_3__0__Impl_in_rule__PojogenProperty__Group_14_3__023617 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_14_3__1_in_rule__PojogenProperty__Group_14_3__023620 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_14_3__0__Impl23650 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_14_3__0__Impl23663 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_14_3__1__Impl_in_rule__PojogenProperty__Group_14_3__123696 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__ImportsAssignment_14_3_1_in_rule__PojogenProperty__Group_14_3__1__Impl23723 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_15__0__Impl_in_rule__PojogenProperty__Group_15__023757 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_15__1_in_rule__PojogenProperty__Group_15__023760 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_15_0_in_rule__PojogenProperty__Group_15__0__Impl23787 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_15__1__Impl_in_rule__PojogenProperty__Group_15__123817 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_15__2_in_rule__PojogenProperty__Group_15__123820 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_15__1__Impl23850 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_15__1__Impl23863 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_15__2__Impl_in_rule__PojogenProperty__Group_15__223896 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_15__3_in_rule__PojogenProperty__Group_15__223899 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTableAssignment_15_2_in_rule__PojogenProperty__Group_15__2__Impl23926 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_15__3__Impl_in_rule__PojogenProperty__Group_15__323956 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_15_3__0_in_rule__PojogenProperty__Group_15__3__Impl23985 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_15_3__0_in_rule__PojogenProperty__Group_15__3__Impl23997 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_15_3__0__Impl_in_rule__PojogenProperty__Group_15_3__024038 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_15_3__1_in_rule__PojogenProperty__Group_15_3__024041 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_15_3__0__Impl24071 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_15_3__0__Impl24084 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_15_3__1__Impl_in_rule__PojogenProperty__Group_15_3__124117 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__ImportsAssignment_15_3_1_in_rule__PojogenProperty__Group_15_3__1__Impl24144 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_16__0__Impl_in_rule__PojogenProperty__Group_16__024178 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_16__1_in_rule__PojogenProperty__Group_16__024181 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_16_0_in_rule__PojogenProperty__Group_16__0__Impl24208 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_16__1__Impl_in_rule__PojogenProperty__Group_16__124238 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_16__2_in_rule__PojogenProperty__Group_16__124241 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_16__1__Impl24271 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_16__1__Impl24284 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_16__2__Impl_in_rule__PojogenProperty__Group_16__224317 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_16__3_in_rule__PojogenProperty__Group_16__224320 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTableAssignment_16_2_in_rule__PojogenProperty__Group_16__2__Impl24347 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_16__3__Impl_in_rule__PojogenProperty__Group_16__324377 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_16_3__0_in_rule__PojogenProperty__Group_16__3__Impl24406 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_16_3__0_in_rule__PojogenProperty__Group_16__3__Impl24418 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_16_3__0__Impl_in_rule__PojogenProperty__Group_16_3__024459 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_16_3__1_in_rule__PojogenProperty__Group_16_3__024462 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_16_3__0__Impl24492 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_16_3__0__Impl24505 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_16_3__1__Impl_in_rule__PojogenProperty__Group_16_3__124538 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__ExportsAssignment_16_3_1_in_rule__PojogenProperty__Group_16_3__1__Impl24565 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_17__0__Impl_in_rule__PojogenProperty__Group_17__024599 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_17__1_in_rule__PojogenProperty__Group_17__024602 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_17_0_in_rule__PojogenProperty__Group_17__0__Impl24629 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_17__1__Impl_in_rule__PojogenProperty__Group_17__124659 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_17__2_in_rule__PojogenProperty__Group_17__124662 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_17__1__Impl24692 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_17__1__Impl24705 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_17__2__Impl_in_rule__PojogenProperty__Group_17__224738 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_17__3_in_rule__PojogenProperty__Group_17__224741 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTableAssignment_17_2_in_rule__PojogenProperty__Group_17__2__Impl24768 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_17__3__Impl_in_rule__PojogenProperty__Group_17__324798 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_17_3__0_in_rule__PojogenProperty__Group_17__3__Impl24827 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_17_3__0_in_rule__PojogenProperty__Group_17__3__Impl24839 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_17_3__0__Impl_in_rule__PojogenProperty__Group_17_3__024880 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_17_3__1_in_rule__PojogenProperty__Group_17_3__024883 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_17_3__0__Impl24913 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_17_3__0__Impl24926 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_17_3__1__Impl_in_rule__PojogenProperty__Group_17_3__124959 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__ImportsAssignment_17_3_1_in_rule__PojogenProperty__Group_17_3__1__Impl24986 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_18__0__Impl_in_rule__PojogenProperty__Group_18__025020 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_18__1_in_rule__PojogenProperty__Group_18__025023 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_18_0_in_rule__PojogenProperty__Group_18__0__Impl25050 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_18__1__Impl_in_rule__PojogenProperty__Group_18__125080 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_18__2_in_rule__PojogenProperty__Group_18__125083 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_18__1__Impl25113 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_18__1__Impl25126 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_18__2__Impl_in_rule__PojogenProperty__Group_18__225159 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_18__3_in_rule__PojogenProperty__Group_18__225162 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTableAssignment_18_2_in_rule__PojogenProperty__Group_18__2__Impl25189 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_18__3__Impl_in_rule__PojogenProperty__Group_18__325219 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_18_3__0_in_rule__PojogenProperty__Group_18__3__Impl25248 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_18_3__0_in_rule__PojogenProperty__Group_18__3__Impl25260 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_18_3__0__Impl_in_rule__PojogenProperty__Group_18_3__025301 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_18_3__1_in_rule__PojogenProperty__Group_18_3__025304 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_18_3__0__Impl25334 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_18_3__0__Impl25347 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_18_3__1__Impl_in_rule__PojogenProperty__Group_18_3__125380 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Many2sAssignment_18_3_1_in_rule__PojogenProperty__Group_18_3__1__Impl25407 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19__0__Impl_in_rule__PojogenProperty__Group_19__025441 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19__1_in_rule__PojogenProperty__Group_19__025444 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_19_0_in_rule__PojogenProperty__Group_19__0__Impl25471 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19__1__Impl_in_rule__PojogenProperty__Group_19__125501 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19__2_in_rule__PojogenProperty__Group_19__125504 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_19__1__Impl25534 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_19__1__Impl25547 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19__2__Impl_in_rule__PojogenProperty__Group_19__225580 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19__3_in_rule__PojogenProperty__Group_19__225583 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbTableAssignment_19_2_in_rule__PojogenProperty__Group_19__2__Impl25610 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19__3__Impl_in_rule__PojogenProperty__Group_19__325640 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19__4_in_rule__PojogenProperty__Group_19__325643 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_19__3__Impl25673 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_19__3__Impl25686 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19__4__Impl_in_rule__PojogenProperty__Group_19__425719 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19__5_in_rule__PojogenProperty__Group_19__425722 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__DbColumnAssignment_19_4_in_rule__PojogenProperty__Group_19__4__Impl25749 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19__5__Impl_in_rule__PojogenProperty__Group_19__525779 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19_5__0_in_rule__PojogenProperty__Group_19__5__Impl25808 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19_5__0_in_rule__PojogenProperty__Group_19__5__Impl25820 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19_5__0__Impl_in_rule__PojogenProperty__Group_19_5__025865 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19_5__1_in_rule__PojogenProperty__Group_19_5__025868 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_19_5__0__Impl25898 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_19_5__0__Impl25911 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_19_5__1__Impl_in_rule__PojogenProperty__Group_19_5__125944 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__InheritanceAssignment_19_5_1_in_rule__PojogenProperty__Group_19_5__1__Impl25971 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_20__0__Impl_in_rule__PojogenProperty__Group_20__026005 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_20__1_in_rule__PojogenProperty__Group_20__026008 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_20_0_in_rule__PojogenProperty__Group_20__0__Impl26035 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_20__1__Impl_in_rule__PojogenProperty__Group_20__126065 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_20_1__0_in_rule__PojogenProperty__Group_20__1__Impl26094 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_20_1__0_in_rule__PojogenProperty__Group_20__1__Impl26106 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_20_1__0__Impl_in_rule__PojogenProperty__Group_20_1__026143 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_20_1__1_in_rule__PojogenProperty__Group_20_1__026146 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_20_1__0__Impl26176 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_20_1__0__Impl26189 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_20_1__1__Impl_in_rule__PojogenProperty__Group_20_1__126222 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__MethodsAssignment_20_1_1_in_rule__PojogenProperty__Group_20_1__1__Impl26249 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_21__0__Impl_in_rule__PojogenProperty__Group_21__026283 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_21__1_in_rule__PojogenProperty__Group_21__026286 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_21_0_in_rule__PojogenProperty__Group_21__0__Impl26313 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_21__1__Impl_in_rule__PojogenProperty__Group_21__126343 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_21_1__0_in_rule__PojogenProperty__Group_21__1__Impl26372 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_21_1__0_in_rule__PojogenProperty__Group_21__1__Impl26384 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_21_1__0__Impl_in_rule__PojogenProperty__Group_21_1__026421 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_21_1__1_in_rule__PojogenProperty__Group_21_1__026424 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_21_1__0__Impl26454 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_21_1__0__Impl26467 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_21_1__1__Impl_in_rule__PojogenProperty__Group_21_1__126500 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__ToImplementsAssignment_21_1_1_in_rule__PojogenProperty__Group_21_1__1__Impl26527 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_22__0__Impl_in_rule__PojogenProperty__Group_22__026561 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_22__1_in_rule__PojogenProperty__Group_22__026564 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__NameAssignment_22_0_in_rule__PojogenProperty__Group_22__0__Impl26591 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_22__1__Impl_in_rule__PojogenProperty__Group_22__126621 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_22__2_in_rule__PojogenProperty__Group_22__126624 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_22__1__Impl26654 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PojogenProperty__Group_22__1__Impl26667 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__Group_22__2__Impl_in_rule__PojogenProperty__Group_22__226700 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojogenProperty__ToExtendsAssignment_22_2_in_rule__PojogenProperty__Group_22__2__Impl26727 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Group__0__Impl_in_rule__PropertyValue__Group__026763 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Group__1_in_rule__PropertyValue__Group__026766 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Alternatives_0_in_rule__PropertyValue__Group__0__Impl26793 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Group__1__Impl_in_rule__PropertyValue__Group__126823 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Group_1__0_in_rule__PropertyValue__Group__1__Impl26850 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Group_1__0__Impl_in_rule__PropertyValue__Group_1__026885 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Alternatives_1_0_in_rule__PropertyValue__Group_1__0__Impl26912 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__0__Impl_in_rule__PojoDefinition__Group__026944 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__1_in_rule__PojoDefinition__Group__026947 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_48_in_rule__PojoDefinition__Group__0__Impl26975 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__1__Impl_in_rule__PojoDefinition__Group__127006 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__2_in_rule__PojoDefinition__Group__127009 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__NameAssignment_1_in_rule__PojoDefinition__Group__1__Impl27036 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__2__Impl_in_rule__PojoDefinition__Group__227066 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__3_in_rule__PojoDefinition__Group__227069 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__ClassAssignment_2_in_rule__PojoDefinition__Group__2__Impl27096 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__3__Impl_in_rule__PojoDefinition__Group__327126 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__PojoDefinition__Group__3__Impl27153 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__0__Impl_in_rule__ColumnUsage__Group__027190 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__1_in_rule__ColumnUsage__Group__027193 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_49_in_rule__ColumnUsage__Group__0__Impl27221 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__1__Impl_in_rule__ColumnUsage__Group__127252 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__2_in_rule__ColumnUsage__Group__127255 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__StatementAssignment_1_in_rule__ColumnUsage__Group__1__Impl27282 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__2__Impl_in_rule__ColumnUsage__Group__227312 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__3_in_rule__ColumnUsage__Group__227315 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__PojoAssignment_2_in_rule__ColumnUsage__Group__2__Impl27342 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__3__Impl_in_rule__ColumnUsage__Group__327372 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__ColumnUsage__Group__3__Impl27399 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__0__Impl_in_rule__IdentifierUsage__Group__027436 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__1_in_rule__IdentifierUsage__Group__027439 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_50_in_rule__IdentifierUsage__Group__0__Impl27467 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__1__Impl_in_rule__IdentifierUsage__Group__127498 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__2_in_rule__IdentifierUsage__Group__127501 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__StatementAssignment_1_in_rule__IdentifierUsage__Group__1__Impl27528 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__2__Impl_in_rule__IdentifierUsage__Group__227558 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__3_in_rule__IdentifierUsage__Group__227561 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__PojoAssignment_2_in_rule__IdentifierUsage__Group__2__Impl27588 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__3__Impl_in_rule__IdentifierUsage__Group__327618 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__IdentifierUsage__Group__3__Impl27645 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__0__Impl_in_rule__ConstantUsage__Group__027682 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__1_in_rule__ConstantUsage__Group__027685 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_51_in_rule__ConstantUsage__Group__0__Impl27713 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__1__Impl_in_rule__ConstantUsage__Group__127744 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__2_in_rule__ConstantUsage__Group__127747 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__StatementAssignment_1_in_rule__ConstantUsage__Group__1__Impl27774 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__2__Impl_in_rule__ConstantUsage__Group__227804 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__3_in_rule__ConstantUsage__Group__227807 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__PojoAssignment_2_in_rule__ConstantUsage__Group__2__Impl27834 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__3__Impl_in_rule__ConstantUsage__Group__327864 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__ConstantUsage__Group__3__Impl27891 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__0__Impl_in_rule__MappingUsage__Group__027928 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__1_in_rule__MappingUsage__Group__027931 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_52_in_rule__MappingUsage__Group__0__Impl27959 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__1__Impl_in_rule__MappingUsage__Group__127990 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__2_in_rule__MappingUsage__Group__127993 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__StatementAssignment_1_in_rule__MappingUsage__Group__1__Impl28020 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__2__Impl_in_rule__MappingUsage__Group__228050 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__3_in_rule__MappingUsage__Group__228053 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__PojoAssignment_2_in_rule__MappingUsage__Group__2__Impl28080 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__3__Impl_in_rule__MappingUsage__Group__328110 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__MappingUsage__Group__3__Impl28137 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsageExt__Group__0__Impl_in_rule__ColumnUsageExt__Group__028174 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsageExt__Group__1_in_rule__ColumnUsageExt__Group__028177 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_53_in_rule__ColumnUsageExt__Group__0__Impl28205 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsageExt__Group__1__Impl_in_rule__ColumnUsageExt__Group__128236 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsageExt__Group__2_in_rule__ColumnUsageExt__Group__128239 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsageExt__StatementAssignment_1_in_rule__ColumnUsageExt__Group__1__Impl28266 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsageExt__Group__2__Impl_in_rule__ColumnUsageExt__Group__228296 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsageExt__Group__3_in_rule__ColumnUsageExt__Group__228299 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsageExt__PojoAssignment_2_in_rule__ColumnUsageExt__Group__2__Impl28326 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsageExt__Group__3__Impl_in_rule__ColumnUsageExt__Group__328356 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__ColumnUsageExt__Group__3__Impl28383 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsageExt__Group__0__Impl_in_rule__IdentifierUsageExt__Group__028420 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsageExt__Group__1_in_rule__IdentifierUsageExt__Group__028423 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_54_in_rule__IdentifierUsageExt__Group__0__Impl28451 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsageExt__Group__1__Impl_in_rule__IdentifierUsageExt__Group__128482 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsageExt__Group__2_in_rule__IdentifierUsageExt__Group__128485 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsageExt__StatementAssignment_1_in_rule__IdentifierUsageExt__Group__1__Impl28512 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsageExt__Group__2__Impl_in_rule__IdentifierUsageExt__Group__228542 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsageExt__Group__3_in_rule__IdentifierUsageExt__Group__228545 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsageExt__PojoAssignment_2_in_rule__IdentifierUsageExt__Group__2__Impl28572 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsageExt__Group__3__Impl_in_rule__IdentifierUsageExt__Group__328602 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__IdentifierUsageExt__Group__3__Impl28629 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsageExt__Group__0__Impl_in_rule__ConstantUsageExt__Group__028666 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsageExt__Group__1_in_rule__ConstantUsageExt__Group__028669 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_55_in_rule__ConstantUsageExt__Group__0__Impl28697 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsageExt__Group__1__Impl_in_rule__ConstantUsageExt__Group__128728 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsageExt__Group__2_in_rule__ConstantUsageExt__Group__128731 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsageExt__StatementAssignment_1_in_rule__ConstantUsageExt__Group__1__Impl28758 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsageExt__Group__2__Impl_in_rule__ConstantUsageExt__Group__228788 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsageExt__Group__3_in_rule__ConstantUsageExt__Group__228791 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsageExt__PojoAssignment_2_in_rule__ConstantUsageExt__Group__2__Impl28818 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsageExt__Group__3__Impl_in_rule__ConstantUsageExt__Group__328848 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__ConstantUsageExt__Group__3__Impl28875 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsageExt__Group__0__Impl_in_rule__MappingUsageExt__Group__028912 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsageExt__Group__1_in_rule__MappingUsageExt__Group__028915 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_56_in_rule__MappingUsageExt__Group__0__Impl28943 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsageExt__Group__1__Impl_in_rule__MappingUsageExt__Group__128974 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsageExt__Group__2_in_rule__MappingUsageExt__Group__128977 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsageExt__StatementAssignment_1_in_rule__MappingUsageExt__Group__1__Impl29004 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsageExt__Group__2__Impl_in_rule__MappingUsageExt__Group__229034 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsageExt__Group__3_in_rule__MappingUsageExt__Group__229037 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsageExt__PojoAssignment_2_in_rule__MappingUsageExt__Group__2__Impl29064 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsageExt__Group__3__Impl_in_rule__MappingUsageExt__Group__329094 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__MappingUsageExt__Group__3__Impl29121 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__0__Impl_in_rule__TableDefinition__Group__029158 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__1_in_rule__TableDefinition__Group__029161 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_57_in_rule__TableDefinition__Group__0__Impl29189 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__1__Impl_in_rule__TableDefinition__Group__129220 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__2_in_rule__TableDefinition__Group__129223 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__NameAssignment_1_in_rule__TableDefinition__Group__1__Impl29250 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__2__Impl_in_rule__TableDefinition__Group__229280 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__3_in_rule__TableDefinition__Group__229283 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__TableAssignment_2_in_rule__TableDefinition__Group__2__Impl29310 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__3__Impl_in_rule__TableDefinition__Group__329340 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__TableDefinition__Group__3__Impl29367 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__0__Impl_in_rule__TableUsage__Group__029404 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__1_in_rule__TableUsage__Group__029407 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_58_in_rule__TableUsage__Group__0__Impl29435 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__1__Impl_in_rule__TableUsage__Group__129466 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__2_in_rule__TableUsage__Group__129469 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__StatementAssignment_1_in_rule__TableUsage__Group__1__Impl29496 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__2__Impl_in_rule__TableUsage__Group__229526 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__3_in_rule__TableUsage__Group__229529 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__TableAssignment_2_in_rule__TableUsage__Group__2__Impl29556 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__3__Impl_in_rule__TableUsage__Group__329586 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__4_in_rule__TableUsage__Group__329589 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group_3__0_in_rule__TableUsage__Group__3__Impl29616 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__4__Impl_in_rule__TableUsage__Group__429647 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__TableUsage__Group__4__Impl29674 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group_3__0__Impl_in_rule__TableUsage__Group_3__029713 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group_3__1_in_rule__TableUsage__Group_3__029716 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_59_in_rule__TableUsage__Group_3__0__Impl29744 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group_3__1__Impl_in_rule__TableUsage__Group_3__129775 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__PrefixAssignment_3_1_in_rule__TableUsage__Group_3__1__Impl29802 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__0__Impl_in_rule__MetaStatement__Group__029836 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__1_in_rule__MetaStatement__Group__029839 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__NameAssignment_0_in_rule__MetaStatement__Group__0__Impl29866 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__1__Impl_in_rule__MetaStatement__Group__129896 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__2_in_rule__MetaStatement__Group__129899 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__MetaStatement__Group__1__Impl29926 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__2__Impl_in_rule__MetaStatement__Group__229955 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__3_in_rule__MetaStatement__Group__229958 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__TypeAssignment_2_in_rule__MetaStatement__Group__2__Impl29985 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__3__Impl_in_rule__MetaStatement__Group__330015 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__4_in_rule__MetaStatement__Group__330018 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group_3__0_in_rule__MetaStatement__Group__3__Impl30045 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__4__Impl_in_rule__MetaStatement__Group__430076 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__5_in_rule__MetaStatement__Group__430079 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__MetaStatement__Group__4__Impl30106 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__5__Impl_in_rule__MetaStatement__Group__530135 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__6_in_rule__MetaStatement__Group__530138 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__MetaStatement__Group__5__Impl30165 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__6__Impl_in_rule__MetaStatement__Group__630194 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__7_in_rule__MetaStatement__Group__630197 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__StatementAssignment_6_in_rule__MetaStatement__Group__6__Impl30224 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__7__Impl_in_rule__MetaStatement__Group__730254 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__MetaStatement__Group__7__Impl30281 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group_3__0__Impl_in_rule__MetaStatement__Group_3__030326 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group_3__1_in_rule__MetaStatement__Group_3__030329 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__MetaStatement__Group_3__0__Impl30356 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group_3__1__Impl_in_rule__MetaStatement__Group_3__130385 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__FiltersAssignment_3_1_in_rule__MetaStatement__Group_3__1__Impl30412 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_1__0__Impl_in_rule__SqlFragment__Group_1__030446 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_1__1_in_rule__SqlFragment__Group_1__030449 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rule__SqlFragment__Group_1__0__Impl30476 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_1__1__Impl_in_rule__SqlFragment__Group_1__130505 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__ColAssignment_1_1_in_rule__SqlFragment__Group_1__1__Impl30532 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_2__0__Impl_in_rule__SqlFragment__Group_2__030566 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_2__1_in_rule__SqlFragment__Group_2__030569 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__SqlFragment__Group_2__0__Impl30596 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_2__1__Impl_in_rule__SqlFragment__Group_2__130625 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__CnstAssignment_2_1_in_rule__SqlFragment__Group_2__1__Impl30652 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_3__0__Impl_in_rule__SqlFragment__Group_3__030686 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_3__1_in_rule__SqlFragment__Group_3__030689 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__SqlFragment__Group_3__0__Impl30716 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_3__1__Impl_in_rule__SqlFragment__Group_3__130745 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__IdentAssignment_3_1_in_rule__SqlFragment__Group_3__1__Impl30772 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_4__0__Impl_in_rule__SqlFragment__Group_4__030806 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_4__1_in_rule__SqlFragment__Group_4__030809 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__SqlFragment__Group_4__0__Impl30836 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_4__1__Impl_in_rule__SqlFragment__Group_4__130865 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_4__2_in_rule__SqlFragment__Group_4__130868 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__MetaAssignment_4_1_in_rule__SqlFragment__Group_4__1__Impl30895 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_4__2__Impl_in_rule__SqlFragment__Group_4__230925 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__SqlFragment__Group_4__2__Impl30952 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_5__0__Impl_in_rule__SqlFragment__Group_5__030987 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_5__1_in_rule__SqlFragment__Group_5__030990 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__SqlFragment__Group_5__0__Impl31017 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_5__1__Impl_in_rule__SqlFragment__Group_5__131046 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Alternatives_5_1_in_rule__SqlFragment__Group_5__1__Impl31073 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_5_1_0__0__Impl_in_rule__SqlFragment__Group_5_1_0__031107 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_5_1_0__1_in_rule__SqlFragment__Group_5_1_0__031110 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__SqlFragment__Group_5_1_0__0__Impl31137 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_5_1_0__1__Impl_in_rule__SqlFragment__Group_5_1_0__131166 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__DbtabAssignment_5_1_0_1_in_rule__SqlFragment__Group_5_1_0__1__Impl31193 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Group__0__Impl_in_rule__SqlValue__Group__031227 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Group__1_in_rule__SqlValue__Group__031230 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Alternatives_0_in_rule__SqlValue__Group__0__Impl31257 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Group__1__Impl_in_rule__SqlValue__Group__131287 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Group_1__0_in_rule__SqlValue__Group__1__Impl31314 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Group_1__0__Impl_in_rule__SqlValue__Group_1__031349 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Alternatives_1_0_in_rule__SqlValue__Group_1__0__Impl31376 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0__0__Impl_in_rule__MetaSql__Group_0__031408 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0__1_in_rule__MetaSql__Group_0__031411 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__MetaSql__Group_0__0__Impl31438 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0__1__Impl_in_rule__MetaSql__Group_0__131467 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0__2_in_rule__MetaSql__Group_0__131470 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_0_1_in_rule__MetaSql__Group_0__1__Impl31497 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0__2__Impl_in_rule__MetaSql__Group_0__231527 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0_2__0_in_rule__MetaSql__Group_0__2__Impl31554 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0_2__0__Impl_in_rule__MetaSql__Group_0_2__031591 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0_2__1_in_rule__MetaSql__Group_0_2__031594 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__MetaSql__Group_0_2__0__Impl31621 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0_2__1__Impl_in_rule__MetaSql__Group_0_2__131650 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_0_2_1_in_rule__MetaSql__Group_0_2__1__Impl31677 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__0__Impl_in_rule__MetaSql__Group_1__031711 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__1_in_rule__MetaSql__Group_1__031714 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__TypeAssignment_1_0_in_rule__MetaSql__Group_1__0__Impl31741 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__1__Impl_in_rule__MetaSql__Group_1__131771 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__2_in_rule__MetaSql__Group_1__131774 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__CondAssignment_1_1_in_rule__MetaSql__Group_1__1__Impl31801 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__2__Impl_in_rule__MetaSql__Group_1__231831 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__3_in_rule__MetaSql__Group_1__231834 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__MetaSql__Group_1__2__Impl31861 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__3__Impl_in_rule__MetaSql__Group_1__331890 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__4_in_rule__MetaSql__Group_1__331893 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_1_3_in_rule__MetaSql__Group_1__3__Impl31920 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__4__Impl_in_rule__MetaSql__Group_1__431950 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1_4__0_in_rule__MetaSql__Group_1__4__Impl31977 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1_4__0__Impl_in_rule__MetaSql__Group_1_4__032018 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1_4__1_in_rule__MetaSql__Group_1_4__032021 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__MetaSql__Group_1_4__0__Impl32048 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1_4__1__Impl_in_rule__MetaSql__Group_1_4__132077 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_1_4_1_in_rule__MetaSql__Group_1_4__1__Impl32104 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2__0__Impl_in_rule__MetaSql__Group_2__032138 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2__1_in_rule__MetaSql__Group_2__032141 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__TypeAssignment_2_0_in_rule__MetaSql__Group_2__0__Impl32168 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2__1__Impl_in_rule__MetaSql__Group_2__132198 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2__2_in_rule__MetaSql__Group_2__132201 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_2_1_in_rule__MetaSql__Group_2__1__Impl32228 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2__2__Impl_in_rule__MetaSql__Group_2__232258 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2_2__0_in_rule__MetaSql__Group_2__2__Impl32285 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2_2__0__Impl_in_rule__MetaSql__Group_2_2__032322 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2_2__1_in_rule__MetaSql__Group_2_2__032325 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__MetaSql__Group_2_2__0__Impl32352 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2_2__1__Impl_in_rule__MetaSql__Group_2_2__132381 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_2_2_1_in_rule__MetaSql__Group_2_2__1__Impl32408 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3__0__Impl_in_rule__MetaSql__Group_3__032442 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3__1_in_rule__MetaSql__Group_3__032445 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__TypeAssignment_3_0_in_rule__MetaSql__Group_3__0__Impl32472 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3__1__Impl_in_rule__MetaSql__Group_3__132502 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3__2_in_rule__MetaSql__Group_3__132505 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_3_1_in_rule__MetaSql__Group_3__1__Impl32532 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3__2__Impl_in_rule__MetaSql__Group_3__232562 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3_2__0_in_rule__MetaSql__Group_3__2__Impl32589 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3_2__0__Impl_in_rule__MetaSql__Group_3_2__032626 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3_2__1_in_rule__MetaSql__Group_3_2__032629 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__MetaSql__Group_3_2__0__Impl32656 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3_2__1__Impl_in_rule__MetaSql__Group_3_2__132685 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_3_2_1_in_rule__MetaSql__Group_3_2__1__Impl32712 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__0__Impl_in_rule__MetaSql__Group_4__032746 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__1_in_rule__MetaSql__Group_4__032749 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__TypeAssignment_4_0_in_rule__MetaSql__Group_4__0__Impl32776 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__1__Impl_in_rule__MetaSql__Group_4__132806 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__2_in_rule__MetaSql__Group_4__132809 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__MetaSql__Group_4__1__Impl32837 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__2__Impl_in_rule__MetaSql__Group_4__232868 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__3_in_rule__MetaSql__Group_4__232871 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__FtypeAssignment_4_2_in_rule__MetaSql__Group_4__2__Impl32898 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__3__Impl_in_rule__MetaSql__Group_4__332928 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_4_3_in_rule__MetaSql__Group_4__3__Impl32955 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_5__0__Impl_in_rule__MetaSql__Group_5__032993 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_5__1_in_rule__MetaSql__Group_5__032996 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__TypeAssignment_5_0_in_rule__MetaSql__Group_5__0__Impl33023 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_5__1__Impl_in_rule__MetaSql__Group_5__133053 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_5__2_in_rule__MetaSql__Group_5__133056 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__MetaSql__Group_5__1__Impl33083 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_5__2__Impl_in_rule__MetaSql__Group_5__233112 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__OrdAssignment_5_2_in_rule__MetaSql__Group_5__2__Impl33139 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_1__0__Impl_in_rule__IfSqlFragment__Group_1__033175 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_1__1_in_rule__IfSqlFragment__Group_1__033178 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rule__IfSqlFragment__Group_1__0__Impl33205 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_1__1__Impl_in_rule__IfSqlFragment__Group_1__133234 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__ColAssignment_1_1_in_rule__IfSqlFragment__Group_1__1__Impl33261 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_2__0__Impl_in_rule__IfSqlFragment__Group_2__033295 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_2__1_in_rule__IfSqlFragment__Group_2__033298 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__IfSqlFragment__Group_2__0__Impl33325 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_2__1__Impl_in_rule__IfSqlFragment__Group_2__133354 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__CnstAssignment_2_1_in_rule__IfSqlFragment__Group_2__1__Impl33381 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_3__0__Impl_in_rule__IfSqlFragment__Group_3__033415 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_3__1_in_rule__IfSqlFragment__Group_3__033418 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__IfSqlFragment__Group_3__0__Impl33445 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_3__1__Impl_in_rule__IfSqlFragment__Group_3__133474 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__IdentAssignment_3_1_in_rule__IfSqlFragment__Group_3__1__Impl33501 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_4__0__Impl_in_rule__IfSqlFragment__Group_4__033535 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_4__1_in_rule__IfSqlFragment__Group_4__033538 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__IfSqlFragment__Group_4__0__Impl33565 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_4__1__Impl_in_rule__IfSqlFragment__Group_4__133594 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Alternatives_4_1_in_rule__IfSqlFragment__Group_4__1__Impl33621 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_4_1_0__0__Impl_in_rule__IfSqlFragment__Group_4_1_0__033655 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_4_1_0__1_in_rule__IfSqlFragment__Group_4_1_0__033658 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__IfSqlFragment__Group_4_1_0__0__Impl33685 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_4_1_0__1__Impl_in_rule__IfSqlFragment__Group_4_1_0__133714 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__DbtabAssignment_4_1_0_1_in_rule__IfSqlFragment__Group_4_1_0__1__Impl33741 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_5__0__Impl_in_rule__IfSqlFragment__Group_5__033775 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_5__1_in_rule__IfSqlFragment__Group_5__033778 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__IfSqlFragment__Group_5__0__Impl33805 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_5__1__Impl_in_rule__IfSqlFragment__Group_5__133834 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_5__2_in_rule__IfSqlFragment__Group_5__133837 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__MetaAssignment_5_1_in_rule__IfSqlFragment__Group_5__1__Impl33864 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_5__2__Impl_in_rule__IfSqlFragment__Group_5__233894 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__IfSqlFragment__Group_5__2__Impl33921 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Group__0__Impl_in_rule__IfSqlValue__Group__033956 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Group__1_in_rule__IfSqlValue__Group__033959 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Alternatives_0_in_rule__IfSqlValue__Group__0__Impl33986 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Group__1__Impl_in_rule__IfSqlValue__Group__134016 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Group_1__0_in_rule__IfSqlValue__Group__1__Impl34043 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Group_1__0__Impl_in_rule__IfSqlValue__Group_1__034078 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Alternatives_1_0_in_rule__IfSqlValue__Group_1__0__Impl34105 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0__0__Impl_in_rule__IfMetaSql__Group_0__034137 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0__1_in_rule__IfMetaSql__Group_0__034140 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__IfMetaSql__Group_0__0__Impl34167 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0__1__Impl_in_rule__IfMetaSql__Group_0__134196 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0__2_in_rule__IfMetaSql__Group_0__134199 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_0_1_in_rule__IfMetaSql__Group_0__1__Impl34226 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0__2__Impl_in_rule__IfMetaSql__Group_0__234256 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0_2__0_in_rule__IfMetaSql__Group_0__2__Impl34283 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0_2__0__Impl_in_rule__IfMetaSql__Group_0_2__034320 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0_2__1_in_rule__IfMetaSql__Group_0_2__034323 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__IfMetaSql__Group_0_2__0__Impl34350 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0_2__1__Impl_in_rule__IfMetaSql__Group_0_2__134379 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_0_2_1_in_rule__IfMetaSql__Group_0_2__1__Impl34406 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__0__Impl_in_rule__IfMetaSql__Group_1__034440 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__1_in_rule__IfMetaSql__Group_1__034443 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__TypeAssignment_1_0_in_rule__IfMetaSql__Group_1__0__Impl34470 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__1__Impl_in_rule__IfMetaSql__Group_1__134500 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__2_in_rule__IfMetaSql__Group_1__134503 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__CondAssignment_1_1_in_rule__IfMetaSql__Group_1__1__Impl34530 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__2__Impl_in_rule__IfMetaSql__Group_1__234560 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__3_in_rule__IfMetaSql__Group_1__234563 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__IfMetaSql__Group_1__2__Impl34590 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__3__Impl_in_rule__IfMetaSql__Group_1__334619 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__4_in_rule__IfMetaSql__Group_1__334622 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_1_3_in_rule__IfMetaSql__Group_1__3__Impl34649 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__4__Impl_in_rule__IfMetaSql__Group_1__434679 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1_4__0_in_rule__IfMetaSql__Group_1__4__Impl34706 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1_4__0__Impl_in_rule__IfMetaSql__Group_1_4__034747 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1_4__1_in_rule__IfMetaSql__Group_1_4__034750 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__IfMetaSql__Group_1_4__0__Impl34777 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1_4__1__Impl_in_rule__IfMetaSql__Group_1_4__134806 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_1_4_1_in_rule__IfMetaSql__Group_1_4__1__Impl34833 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2__0__Impl_in_rule__IfMetaSql__Group_2__034867 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2__1_in_rule__IfMetaSql__Group_2__034870 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__TypeAssignment_2_0_in_rule__IfMetaSql__Group_2__0__Impl34897 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2__1__Impl_in_rule__IfMetaSql__Group_2__134927 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2__2_in_rule__IfMetaSql__Group_2__134930 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_2_1_in_rule__IfMetaSql__Group_2__1__Impl34957 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2__2__Impl_in_rule__IfMetaSql__Group_2__234987 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2_2__0_in_rule__IfMetaSql__Group_2__2__Impl35014 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2_2__0__Impl_in_rule__IfMetaSql__Group_2_2__035051 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2_2__1_in_rule__IfMetaSql__Group_2_2__035054 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__IfMetaSql__Group_2_2__0__Impl35081 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2_2__1__Impl_in_rule__IfMetaSql__Group_2_2__135110 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_2_2_1_in_rule__IfMetaSql__Group_2_2__1__Impl35137 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3__0__Impl_in_rule__IfMetaSql__Group_3__035171 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3__1_in_rule__IfMetaSql__Group_3__035174 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__TypeAssignment_3_0_in_rule__IfMetaSql__Group_3__0__Impl35201 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3__1__Impl_in_rule__IfMetaSql__Group_3__135231 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3__2_in_rule__IfMetaSql__Group_3__135234 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_3_1_in_rule__IfMetaSql__Group_3__1__Impl35261 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3__2__Impl_in_rule__IfMetaSql__Group_3__235291 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3_2__0_in_rule__IfMetaSql__Group_3__2__Impl35318 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3_2__0__Impl_in_rule__IfMetaSql__Group_3_2__035355 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3_2__1_in_rule__IfMetaSql__Group_3_2__035358 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__IfMetaSql__Group_3_2__0__Impl35385 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3_2__1__Impl_in_rule__IfMetaSql__Group_3_2__135414 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_3_2_1_in_rule__IfMetaSql__Group_3_2__1__Impl35441 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__0__Impl_in_rule__IfSqlCond__Group__035475 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__1_in_rule__IfSqlCond__Group__035478 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__IfSqlCond__Group__0__Impl35506 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__1__Impl_in_rule__IfSqlCond__Group__135537 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__2_in_rule__IfSqlCond__Group__135540 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Bool1Assignment_1_in_rule__IfSqlCond__Group__1__Impl35567 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__2__Impl_in_rule__IfSqlCond__Group__235597 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__3_in_rule__IfSqlCond__Group__235600 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__IfSqlCond__Group__2__Impl35628 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__3__Impl_in_rule__IfSqlCond__Group__335659 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__0_in_rule__IfSqlCond__Group__3__Impl35686 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__0__Impl_in_rule__IfSqlCond__Group_3__035725 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__1_in_rule__IfSqlCond__Group_3__035728 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__OperAssignment_3_0_in_rule__IfSqlCond__Group_3__0__Impl35755 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__1__Impl_in_rule__IfSqlCond__Group_3__135785 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__2_in_rule__IfSqlCond__Group_3__135788 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__IfSqlCond__Group_3__1__Impl35816 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__2__Impl_in_rule__IfSqlCond__Group_3__235847 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__3_in_rule__IfSqlCond__Group_3__235850 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Bool2Assignment_3_2_in_rule__IfSqlCond__Group_3__2__Impl35877 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__3__Impl_in_rule__IfSqlCond__Group_3__335907 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__IfSqlCond__Group_3__3__Impl35935 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_0__0__Impl_in_rule__IfSqlBool__Group_0__035974 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_0__1_in_rule__IfSqlBool__Group_0__035977 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__NotAssignment_0_0_in_rule__IfSqlBool__Group_0__0__Impl36004 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_0__1__Impl_in_rule__IfSqlBool__Group_0__136035 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_0__2_in_rule__IfSqlBool__Group_0__136038 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__IfSqlBool__Group_0__1__Impl36065 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_0__2__Impl_in_rule__IfSqlBool__Group_0__236094 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__CnstAssignment_0_2_in_rule__IfSqlBool__Group_0__2__Impl36121 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_1__0__Impl_in_rule__IfSqlBool__Group_1__036157 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_1__1_in_rule__IfSqlBool__Group_1__036160 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__NotAssignment_1_0_in_rule__IfSqlBool__Group_1__0__Impl36187 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_1__1__Impl_in_rule__IfSqlBool__Group_1__136218 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_1__2_in_rule__IfSqlBool__Group_1__136221 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__IfSqlBool__Group_1__1__Impl36248 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_1__2__Impl_in_rule__IfSqlBool__Group_1__236277 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__IdentAssignment_1_2_in_rule__IfSqlBool__Group_1__2__Impl36304 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__0__Impl_in_rule__IfSqlBool__Group_2__036340 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__1_in_rule__IfSqlBool__Group_2__036343 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__NotAssignment_2_0_in_rule__IfSqlBool__Group_2__0__Impl36370 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__1__Impl_in_rule__IfSqlBool__Group_2__136401 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__2_in_rule__IfSqlBool__Group_2__136404 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__IfSqlBool__Group_2__1__Impl36431 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__2__Impl_in_rule__IfSqlBool__Group_2__236460 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__3_in_rule__IfSqlBool__Group_2__236463 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__CondAssignment_2_2_in_rule__IfSqlBool__Group_2__2__Impl36490 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__3__Impl_in_rule__IfSqlBool__Group_2__336520 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__IfSqlBool__Group_2__3__Impl36547 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_1__0__Impl_in_rule__OrdSql2__Group_1__036584 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_1__1_in_rule__OrdSql2__Group_1__036587 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__OrdSql2__Group_1__0__Impl36614 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_1__1__Impl_in_rule__OrdSql2__Group_1__136643 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__CnstAssignment_1_1_in_rule__OrdSql2__Group_1__1__Impl36670 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_2__0__Impl_in_rule__OrdSql2__Group_2__036704 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_2__1_in_rule__OrdSql2__Group_2__036707 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__OrdSql2__Group_2__0__Impl36734 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_2__1__Impl_in_rule__OrdSql2__Group_2__136763 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__IdentAssignment_2_1_in_rule__OrdSql2__Group_2__1__Impl36790 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_3__0__Impl_in_rule__OrdSql2__Group_3__036824 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_3__1_in_rule__OrdSql2__Group_3__036827 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__OrdSql2__Group_3__0__Impl36854 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_3__1__Impl_in_rule__OrdSql2__Group_3__136883 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__DbcolAssignment_3_1_in_rule__OrdSql2__Group_3__1__Impl36910 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Group__0__Impl_in_rule__OrdSqlValue__Group__036944 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Group__1_in_rule__OrdSqlValue__Group__036947 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Alternatives_0_in_rule__OrdSqlValue__Group__0__Impl36974 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Group__1__Impl_in_rule__OrdSqlValue__Group__137004 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Group_1__0_in_rule__OrdSqlValue__Group__1__Impl37031 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Group_1__0__Impl_in_rule__OrdSqlValue__Group_1__037066 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Alternatives_1_0_in_rule__OrdSqlValue__Group_1__0__Impl37093 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group__0__Impl_in_rule__Column__Group__037125 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group__1_in_rule__Column__Group__037128 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__NameAssignment_0_in_rule__Column__Group__0__Impl37155 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group__1__Impl_in_rule__Column__Group__137185 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1__0_in_rule__Column__Group__1__Impl37212 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1__0__Impl_in_rule__Column__Group_1__037247 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1__1_in_rule__Column__Group_1__037250 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__Column__Group_1__0__Impl37278 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1__1__Impl_in_rule__Column__Group_1__137308 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1__2_in_rule__Column__Group_1__137311 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__TypeAssignment_1_1_in_rule__Column__Group_1__1__Impl37338 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1__2__Impl_in_rule__Column__Group_1__237369 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1_2__0_in_rule__Column__Group_1__2__Impl37396 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1_2__0__Impl_in_rule__Column__Group_1_2__037433 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1_2__1_in_rule__Column__Group_1_2__037436 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__Column__Group_1_2__0__Impl37464 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1_2__1__Impl_in_rule__Column__Group_1_2__137494 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__ValsAssignment_1_2_1_in_rule__Column__Group_1_2__1__Impl37521 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group__0__Impl_in_rule__Constant__Group__037555 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group__1_in_rule__Constant__Group__037558 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__CaseAssignment_0_in_rule__Constant__Group__0__Impl37585 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group__1__Impl_in_rule__Constant__Group__137616 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group__2_in_rule__Constant__Group__137619 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__NameAssignment_1_in_rule__Constant__Group__1__Impl37646 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group__2__Impl_in_rule__Constant__Group__237676 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2__0_in_rule__Constant__Group__2__Impl37703 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2__0__Impl_in_rule__Constant__Group_2__037740 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2__1_in_rule__Constant__Group_2__037743 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__Constant__Group_2__0__Impl37771 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2__1__Impl_in_rule__Constant__Group_2__137801 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2__2_in_rule__Constant__Group_2__137804 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__TypeAssignment_2_1_in_rule__Constant__Group_2__1__Impl37831 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2__2__Impl_in_rule__Constant__Group_2__237862 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2_2__0_in_rule__Constant__Group_2__2__Impl37889 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2_2__0__Impl_in_rule__Constant__Group_2_2__037926 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2_2__1_in_rule__Constant__Group_2_2__037929 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__Constant__Group_2_2__0__Impl37957 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2_2__1__Impl_in_rule__Constant__Group_2_2__137987 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__ValsAssignment_2_2_1_in_rule__Constant__Group_2_2__1__Impl38014 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__0__Impl_in_rule__Identifier__Group__038048 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__1_in_rule__Identifier__Group__038051 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__ModeAssignment_0_in_rule__Identifier__Group__0__Impl38078 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__1__Impl_in_rule__Identifier__Group__138109 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__2_in_rule__Identifier__Group__138112 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__CaseAssignment_1_in_rule__Identifier__Group__1__Impl38139 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__2__Impl_in_rule__Identifier__Group__238170 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__3_in_rule__Identifier__Group__238173 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__NameAssignment_2_in_rule__Identifier__Group__2__Impl38200 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__3__Impl_in_rule__Identifier__Group__338230 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3__0_in_rule__Identifier__Group__3__Impl38257 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3__0__Impl_in_rule__Identifier__Group_3__038296 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3__1_in_rule__Identifier__Group_3__038299 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__Identifier__Group_3__0__Impl38327 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3__1__Impl_in_rule__Identifier__Group_3__138357 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3__2_in_rule__Identifier__Group_3__138360 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__TypeAssignment_3_1_in_rule__Identifier__Group_3__1__Impl38387 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3__2__Impl_in_rule__Identifier__Group_3__238418 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3_2__0_in_rule__Identifier__Group_3__2__Impl38445 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3_2__0__Impl_in_rule__Identifier__Group_3_2__038482 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3_2__1_in_rule__Identifier__Group_3_2__038485 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__Identifier__Group_3_2__0__Impl38513 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3_2__1__Impl_in_rule__Identifier__Group_3_2__138543 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__ValsAssignment_3_2_1_in_rule__Identifier__Group_3_2__1__Impl38570 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__0__Impl_in_rule__MappingRule__Group__038604 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__1_in_rule__MappingRule__Group__038607 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__NameAssignment_0_in_rule__MappingRule__Group__0__Impl38634 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__1__Impl_in_rule__MappingRule__Group__138664 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__2_in_rule__MappingRule__Group__138667 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__MappingRule__Group__1__Impl38694 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__2__Impl_in_rule__MappingRule__Group__238723 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__3_in_rule__MappingRule__Group__238726 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__TypeAssignment_2_in_rule__MappingRule__Group__2__Impl38753 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__3__Impl_in_rule__MappingRule__Group__338783 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__4_in_rule__MappingRule__Group__338786 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group_3__0_in_rule__MappingRule__Group__3__Impl38813 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__4__Impl_in_rule__MappingRule__Group__438844 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__5_in_rule__MappingRule__Group__438847 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__MappingRule__Group__4__Impl38874 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__5__Impl_in_rule__MappingRule__Group__538903 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__6_in_rule__MappingRule__Group__538906 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__MappingRule__Group__5__Impl38933 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__6__Impl_in_rule__MappingRule__Group__638962 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__7_in_rule__MappingRule__Group__638965 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__MappingAssignment_6_in_rule__MappingRule__Group__6__Impl38992 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__7__Impl_in_rule__MappingRule__Group__739022 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__MappingRule__Group__7__Impl39049 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group_3__0__Impl_in_rule__MappingRule__Group_3__039094 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group_3__1_in_rule__MappingRule__Group_3__039097 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__MappingRule__Group_3__0__Impl39124 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group_3__1__Impl_in_rule__MappingRule__Group_3__139153 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__FiltersAssignment_3_1_in_rule__MappingRule__Group_3__1__Impl39180 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__0__Impl_in_rule__Mapping__Group__039214 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__1_in_rule__Mapping__Group__039217 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Mapping__Group__0__Impl39245 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__1__Impl_in_rule__Mapping__Group__139276 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__2_in_rule__Mapping__Group__139279 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__MappingItemsAssignment_1_in_rule__Mapping__Group__1__Impl39306 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__2__Impl_in_rule__Mapping__Group__239336 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__3_in_rule__Mapping__Group__239339 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group_2__0_in_rule__Mapping__Group__2__Impl39366 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__3__Impl_in_rule__Mapping__Group__339397 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Mapping__Group__3__Impl39425 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group_2__0__Impl_in_rule__Mapping__Group_2__039464 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group_2__1_in_rule__Mapping__Group_2__039467 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Mapping__Group_2__0__Impl39497 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Mapping__Group_2__0__Impl39510 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group_2__1__Impl_in_rule__Mapping__Group_2__139543 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__MappingItemsAssignment_2_1_in_rule__Mapping__Group_2__1__Impl39570 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group__0__Impl_in_rule__MappingItem__Group__039604 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group__1_in_rule__MappingItem__Group__039607 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__ColAssignment_0_in_rule__MappingItem__Group__0__Impl39634 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group__1__Impl_in_rule__MappingItem__Group__139664 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1__0_in_rule__MappingItem__Group__1__Impl39691 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1__0__Impl_in_rule__MappingItem__Group_1__039726 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1__1_in_rule__MappingItem__Group_1__039729 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__MappingItem__Group_1__0__Impl39756 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1__1__Impl_in_rule__MappingItem__Group_1__139785 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1__2_in_rule__MappingItem__Group_1__139788 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__TypeAssignment_1_1_in_rule__MappingItem__Group_1__1__Impl39815 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1__2__Impl_in_rule__MappingItem__Group_1__239846 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1_2__0_in_rule__MappingItem__Group_1__2__Impl39873 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1_2__0__Impl_in_rule__MappingItem__Group_1_2__039910 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1_2__1_in_rule__MappingItem__Group_1_2__039913 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__MappingItem__Group_1_2__0__Impl39940 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1_2__1__Impl_in_rule__MappingItem__Group_1_2__139969 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__AttrAssignment_1_2_1_in_rule__MappingItem__Group_1_2__1__Impl39996 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group__0__Impl_in_rule__MappingColumn__Group__040030 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group__1_in_rule__MappingColumn__Group__040033 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__NameAssignment_0_in_rule__MappingColumn__Group__0__Impl40060 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group__1__Impl_in_rule__MappingColumn__Group__140090 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group_1__0_in_rule__MappingColumn__Group__1__Impl40117 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group_1__0__Impl_in_rule__MappingColumn__Group_1__040152 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group_1__1_in_rule__MappingColumn__Group_1__040155 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__MappingColumn__Group_1__0__Impl40182 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group_1__1__Impl_in_rule__MappingColumn__Group_1__140211 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__ValsAssignment_1_1_in_rule__MappingColumn__Group_1__1__Impl40238 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__0__Impl_in_rule__OptionalFeature__Group__040272 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__1_in_rule__OptionalFeature__Group__040275 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__NameAssignment_0_in_rule__OptionalFeature__Group__0__Impl40302 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__1__Impl_in_rule__OptionalFeature__Group__140332 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__2_in_rule__OptionalFeature__Group__140335 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__OptionalFeature__Group__1__Impl40362 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__2__Impl_in_rule__OptionalFeature__Group__240391 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__3_in_rule__OptionalFeature__Group__240394 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__TypeAssignment_2_in_rule__OptionalFeature__Group__2__Impl40421 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__3__Impl_in_rule__OptionalFeature__Group__340451 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__4_in_rule__OptionalFeature__Group__340454 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group_3__0_in_rule__OptionalFeature__Group__3__Impl40481 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__4__Impl_in_rule__OptionalFeature__Group__440512 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__5_in_rule__OptionalFeature__Group__440515 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__OptionalFeature__Group__4__Impl40542 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__5__Impl_in_rule__OptionalFeature__Group__540571 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__6_in_rule__OptionalFeature__Group__540574 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__OptionalFeature__Group__5__Impl40601 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__6__Impl_in_rule__OptionalFeature__Group__640630 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__7_in_rule__OptionalFeature__Group__640633 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__OptionAssignment_6_in_rule__OptionalFeature__Group__6__Impl40660 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__7__Impl_in_rule__OptionalFeature__Group__740690 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__OptionalFeature__Group__7__Impl40717 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group_3__0__Impl_in_rule__OptionalFeature__Group_3__040762 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group_3__1_in_rule__OptionalFeature__Group_3__040765 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__OptionalFeature__Group_3__0__Impl40792 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group_3__1__Impl_in_rule__OptionalFeature__Group_3__140821 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__FiltersAssignment_3_1_in_rule__OptionalFeature__Group_3__1__Impl40848 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group__0__Impl_in_rule__PojoType__Group__040882 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group__1_in_rule__PojoType__Group__040885 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Alternatives_0_in_rule__PojoType__Group__0__Impl40912 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group__1__Impl_in_rule__PojoType__Group__140942 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__ArrayAssignment_1_in_rule__PojoType__Group__1__Impl40969 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1__0__Impl_in_rule__PojoType__Group_0_1__041004 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1__1_in_rule__PojoType__Group_0_1__041007 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_0__0_in_rule__PojoType__Group_0_1__0__Impl41034 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1__1__Impl_in_rule__PojoType__Group_0_1__141064 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_1__0_in_rule__PojoType__Group_0_1__1__Impl41091 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_0__0__Impl_in_rule__PojoType__Group_0_1_0__041126 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_0__1_in_rule__PojoType__Group_0_1_0__041129 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__PojoType__Group_0_1_0__0__Impl41156 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_0__1__Impl_in_rule__PojoType__Group_0_1_0__141185 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Alternatives_0_1_0_1_in_rule__PojoType__Group_0_1_0__1__Impl41212 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_0_1_0__0__Impl_in_rule__PojoType__Group_0_1_0_1_0__041246 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_0_1_0__1_in_rule__PojoType__Group_0_1_0_1_0__041249 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__PojoType__Group_0_1_0_1_0__0__Impl41276 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_0_1_0__1__Impl_in_rule__PojoType__Group_0_1_0_1_0__141305 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__RefAssignment_0_1_0_1_0_1_in_rule__PojoType__Group_0_1_0_1_0__1__Impl41332 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_1__0__Impl_in_rule__PojoType__Group_0_1_1__041366 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_1__1_in_rule__PojoType__Group_0_1_1__041369 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__PojoType__Group_0_1_1__0__Impl41396 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_1__1__Impl_in_rule__PojoType__Group_0_1_1__141425 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_1__2_in_rule__PojoType__Group_0_1_1__141428 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Alternatives_0_1_1_1_in_rule__PojoType__Group_0_1_1__1__Impl41455 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_1__2__Impl_in_rule__PojoType__Group_0_1_1__241485 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__PojoType__Group_0_1_1__2__Impl41512 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_1_1_0__0__Impl_in_rule__PojoType__Group_0_1_1_1_0__041547 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_1_1_0__1_in_rule__PojoType__Group_0_1_1_1_0__041550 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__PojoType__Group_0_1_1_1_0__0__Impl41577 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__Group_0_1_1_1_0__1__Impl_in_rule__PojoType__Group_0_1_1_1_0__141606 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__GrefAssignment_0_1_1_1_0_1_in_rule__PojoType__Group_0_1_1_1_0__1__Impl41633 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group__0__Impl_in_rule__PackageDeclaration__Group__041667 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group__1_in_rule__PackageDeclaration__Group__041670 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_60_in_rule__PackageDeclaration__Group__0__Impl41698 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group__1__Impl_in_rule__PackageDeclaration__Group__141729 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group__2_in_rule__PackageDeclaration__Group__141732 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__NameAssignment_1_in_rule__PackageDeclaration__Group__1__Impl41759 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group__2__Impl_in_rule__PackageDeclaration__Group__241789 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group__3_in_rule__PackageDeclaration__Group__241792 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group_2__0_in_rule__PackageDeclaration__Group__2__Impl41819 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group__3__Impl_in_rule__PackageDeclaration__Group__341850 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group__4_in_rule__PackageDeclaration__Group__341853 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__PackageDeclaration__Group__3__Impl41880 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group__4__Impl_in_rule__PackageDeclaration__Group__441909 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group__5_in_rule__PackageDeclaration__Group__441912 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__ElementsAssignment_4_in_rule__PackageDeclaration__Group__4__Impl41939 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group__5__Impl_in_rule__PackageDeclaration__Group__541970 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__PackageDeclaration__Group__5__Impl41997 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group_2__0__Impl_in_rule__PackageDeclaration__Group_2__042038 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group_2__1_in_rule__PackageDeclaration__Group_2__042041 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_61_in_rule__PackageDeclaration__Group_2__0__Impl42069 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__Group_2__1__Impl_in_rule__PackageDeclaration__Group_2__142100 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__SuffixAssignment_2_1_in_rule__PackageDeclaration__Group_2__1__Impl42127 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__042161 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Import__Group__1_in_rule__Import__Group__042164 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_62_in_rule__Import__Group__0__Impl42192 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Import__Group__1__Impl_in_rule__Import__Group__142223 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Import__ImportedNamespaceAssignment_1_in_rule__Import__Group__1__Impl42250 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Implements__Group__0__Impl_in_rule__Implements__Group__042284 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Implements__Group__1_in_rule__Implements__Group__042287 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_63_in_rule__Implements__Group__0__Impl42315 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Implements__Group__1__Impl_in_rule__Implements__Group__142346 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Implements__ImplementsAssignment_1_in_rule__Implements__Group__1__Impl42373 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Extends__Group__0__Impl_in_rule__Extends__Group__042407 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Extends__Group__1_in_rule__Extends__Group__042410 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_64_in_rule__Extends__Group__0__Impl42438 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Extends__Group__1__Impl_in_rule__Extends__Group__142469 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Extends__ExtendsAssignment_1_in_rule__Extends__Group__1__Impl42496 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__Group_0__0__Impl_in_rule__PojoEntityModifier2__Group_0__042530 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__Group_0__1_in_rule__PojoEntityModifier2__Group_0__042533 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_64_in_rule__PojoEntityModifier2__Group_0__0__Impl42561 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__Group_0__1__Impl_in_rule__PojoEntityModifier2__Group_0__142592 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__SuperTypeAssignment_0_1_in_rule__PojoEntityModifier2__Group_0__1__Impl42619 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__Group_1__0__Impl_in_rule__PojoEntityModifier2__Group_1__042653 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__Group_1__1_in_rule__PojoEntityModifier2__Group_1__042656 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_65_in_rule__PojoEntityModifier2__Group_1__0__Impl42684 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__Group_1__1__Impl_in_rule__PojoEntityModifier2__Group_1__142715 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__DiscriminatorAssignment_1_1_in_rule__PojoEntityModifier2__Group_1__1__Impl42742 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__Group_2__0__Impl_in_rule__PojoEntityModifier2__Group_2__042776 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__Group_2__1_in_rule__PojoEntityModifier2__Group_2__042779 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_66_in_rule__PojoEntityModifier2__Group_2__0__Impl42807 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__Group_2__1__Impl_in_rule__PojoEntityModifier2__Group_2__142838 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__SernumAssignment_2_1_in_rule__PojoEntityModifier2__Group_2__1__Impl42865 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Group__0__Impl_in_rule__PojoEntity__Group__042899 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Group__1_in_rule__PojoEntity__Group__042902 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Modifiers1Assignment_0_in_rule__PojoEntity__Group__0__Impl42929 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Group__1__Impl_in_rule__PojoEntity__Group__142960 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Group__2_in_rule__PojoEntity__Group__142963 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_48_in_rule__PojoEntity__Group__1__Impl42991 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Group__2__Impl_in_rule__PojoEntity__Group__243022 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Group__3_in_rule__PojoEntity__Group__243025 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__NameAssignment_2_in_rule__PojoEntity__Group__2__Impl43052 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Group__3__Impl_in_rule__PojoEntity__Group__343082 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Group__4_in_rule__PojoEntity__Group__343085 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Modifiers2Assignment_3_in_rule__PojoEntity__Group__3__Impl43112 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Group__4__Impl_in_rule__PojoEntity__Group__443143 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Group__5_in_rule__PojoEntity__Group__443146 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__PojoEntity__Group__4__Impl43173 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Group__5__Impl_in_rule__PojoEntity__Group__543202 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Group__6_in_rule__PojoEntity__Group__543205 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__FeaturesAssignment_5_in_rule__PojoEntity__Group__5__Impl43232 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntity__Group__6__Impl_in_rule__PojoEntity__Group__643263 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__PojoEntity__Group__6__Impl43290 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group__0__Impl_in_rule__PojoProperty__Group__043333 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group__1_in_rule__PojoProperty__Group__043336 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__NameAssignment_0_in_rule__PojoProperty__Group__0__Impl43363 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group__1__Impl_in_rule__PojoProperty__Group__143393 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group__2_in_rule__PojoProperty__Group__143396 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Alternatives_1_in_rule__PojoProperty__Group__1__Impl43423 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group__2__Impl_in_rule__PojoProperty__Group__243453 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group__3_in_rule__PojoProperty__Group__243456 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__ArrayAssignment_2_in_rule__PojoProperty__Group__2__Impl43483 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group__3__Impl_in_rule__PojoProperty__Group__343514 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__ModifiersAssignment_3_in_rule__PojoProperty__Group__3__Impl43541 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1__0__Impl_in_rule__PojoProperty__Group_1_1__043580 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1__1_in_rule__PojoProperty__Group_1_1__043583 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_0__0_in_rule__PojoProperty__Group_1_1__0__Impl43610 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1__1__Impl_in_rule__PojoProperty__Group_1_1__143640 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_1__0_in_rule__PojoProperty__Group_1_1__1__Impl43667 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_0__0__Impl_in_rule__PojoProperty__Group_1_1_0__043702 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_0__1_in_rule__PojoProperty__Group_1_1_0__043705 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__PojoProperty__Group_1_1_0__0__Impl43732 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_0__1__Impl_in_rule__PojoProperty__Group_1_1_0__143761 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Alternatives_1_1_0_1_in_rule__PojoProperty__Group_1_1_0__1__Impl43788 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_0_1_0__0__Impl_in_rule__PojoProperty__Group_1_1_0_1_0__043822 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_0_1_0__1_in_rule__PojoProperty__Group_1_1_0_1_0__043825 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__PojoProperty__Group_1_1_0_1_0__0__Impl43852 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_0_1_0__1__Impl_in_rule__PojoProperty__Group_1_1_0_1_0__143881 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Alternatives_1_1_0_1_0_1_in_rule__PojoProperty__Group_1_1_0_1_0__1__Impl43908 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_0_1_0_1_0__0__Impl_in_rule__PojoProperty__Group_1_1_0_1_0_1_0__043942 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_0_1_0_1_0__1_in_rule__PojoProperty__Group_1_1_0_1_0_1_0__043945 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__PojoProperty__Group_1_1_0_1_0_1_0__0__Impl43972 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_0_1_0_1_0__1__Impl_in_rule__PojoProperty__Group_1_1_0_1_0_1_0__144001 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__AttrsAssignment_1_1_0_1_0_1_0_1_in_rule__PojoProperty__Group_1_1_0_1_0_1_0__1__Impl44028 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_1__0__Impl_in_rule__PojoProperty__Group_1_1_1__044063 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_1__1_in_rule__PojoProperty__Group_1_1_1__044066 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__PojoProperty__Group_1_1_1__0__Impl44093 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_1__1__Impl_in_rule__PojoProperty__Group_1_1_1__144122 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_1__2_in_rule__PojoProperty__Group_1_1_1__144125 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Alternatives_1_1_1_1_in_rule__PojoProperty__Group_1_1_1__1__Impl44152 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_1__2__Impl_in_rule__PojoProperty__Group_1_1_1__244182 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__PojoProperty__Group_1_1_1__2__Impl44209 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_1_1_0__0__Impl_in_rule__PojoProperty__Group_1_1_1_1_0__044244 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_1_1_0__1_in_rule__PojoProperty__Group_1_1_1_1_0__044247 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__PojoProperty__Group_1_1_1_1_0__0__Impl44274 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__Group_1_1_1_1_0__1__Impl_in_rule__PojoProperty__Group_1_1_1_1_0__144303 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__GrefAssignment_1_1_1_1_0_1_in_rule__PojoProperty__Group_1_1_1_1_0__1__Impl44330 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__QualifiedNameWithWildcard__Group__0__Impl_in_rule__QualifiedNameWithWildcard__Group__044364 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__QualifiedNameWithWildcard__Group__1_in_rule__QualifiedNameWithWildcard__Group__044367 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_rule__QualifiedNameWithWildcard__Group__0__Impl44394 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__QualifiedNameWithWildcard__Group__1__Impl_in_rule__QualifiedNameWithWildcard__Group__144423 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_67_in_rule__QualifiedNameWithWildcard__Group__1__Impl44452 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOptionalFeature_in_rule__Artifacts__FeaturesAssignment_1_0_044494 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMetaStatement_in_rule__Artifacts__StatementsAssignment_1_1_044525 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingRule_in_rule__Artifacts__MappingsAssignment_1_2_044556 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoDefinition_in_rule__Artifacts__PojosAssignment_1_3_044587 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoUsage_in_rule__Artifacts__UsagesAssignment_1_4_044618 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleProperty_in_rule__Artifacts__PropertiesAssignment_1_5_044649 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableDefinition_in_rule__Artifacts__TablesAssignment_1_6_044680 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableUsage_in_rule__Artifacts__TableUsagesAssignment_1_7_044711 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePackageDeclaration_in_rule__Artifacts__PojoPackagesAssignment_1_8_044742 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoUsageExt_in_rule__Artifacts__UsagesExtAssignment_1_9_044773 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__SqlTypeAssignement__TypeNameAssignment_044804 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__SqlTypeAssignement__SizeAssignment_1_144835 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoType_in_rule__SqlTypeAssignement__TypeAssignment_344866 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ColumnTypeAssignement__DbColumnAssignment_044897 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoType_in_rule__ColumnTypeAssignement__TypeAssignment_244928 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ShowColumnTypeAssignement__DbColumnAssignment_044959 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_rule__ShowColumnTypeAssignement__TypeAssignment_244990 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__TableAssignement__DbTableAssignment_045021 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__TableAssignement__NewNameAssignment_245052 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__JoinTableAssignement__DbTableAssignment_045083 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__JoinTableAssignement__DbTablesAssignment_1_145114 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ColumnAssignement__DbColumnAssignment_045145 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ColumnAssignement__NewNameAssignment_245176 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ImportAssignement__DbColumnAssignment_045207 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ImportAssignement__PkTableAssignment_245238 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ImportAssignement__PkColumnAssignment_3_145269 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ExportAssignement__DbColumnAssignment_045300 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ExportAssignement__FkTableAssignment_245331 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ExportAssignement__FkColumnAssignment_3_145362 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__InheritanceAssignement__DiscriminatorAssignment_045393 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__InheritanceAssignement__DbTableAssignment_245424 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__InheritanceAssignement__DbColumnsAssignment_3_145455 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ManyToManyAssignement__PkColumnAssignment_045486 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ManyToManyAssignement__PkTableAssignment_245517 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ManyToManyAssignement__FkColumnAssignment_3_145548 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_68_in_rule__Property__NameAssignment_0_045584 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_69_in_rule__Property__NameAssignment_0_145628 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_70_in_rule__Property__NameAssignment_0_2_045672 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseProperty_in_rule__Property__DatabaseAssignment_0_2_145711 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_71_in_rule__Property__NameAssignment_0_3_045747 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojogenProperty_in_rule__Property__PojogenAssignment_0_3_145786 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_72_in_rule__DatabaseProperty__NameAssignment_045822 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_73_in_rule__DatabaseProperty__NameAssignment_145866 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_74_in_rule__DatabaseProperty__NameAssignment_2_045910 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_rule__DatabaseProperty__DbUrlAssignment_2_245949 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_75_in_rule__DatabaseProperty__NameAssignment_3_045985 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_rule__DatabaseProperty__DbUsernameAssignment_3_246024 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_76_in_rule__DatabaseProperty__NameAssignment_4_046060 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_rule__DatabaseProperty__DbPasswordAssignment_4_246099 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_77_in_rule__DatabaseProperty__NameAssignment_5_046135 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_rule__DatabaseProperty__DbSchemaAssignment_5_246174 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_78_in_rule__DatabaseProperty__NameAssignment_6_046210 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_rule__DatabaseProperty__DbDriverAssignment_6_246249 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_79_in_rule__PojogenProperty__NameAssignment_0_046285 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlTypeAssignement_in_rule__PojogenProperty__SqlTypesAssignment_0_1_146324 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_80_in_rule__PojogenProperty__NameAssignment_1_046360 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_1_246399 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlTypeAssignement_in_rule__PojogenProperty__SqlTypesAssignment_1_3_146430 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_81_in_rule__PojogenProperty__NameAssignment_2_046466 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_2_246505 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnTypeAssignement_in_rule__PojogenProperty__ColumnTypesAssignment_2_3_146536 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_82_in_rule__PojogenProperty__NameAssignment_3_046572 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_3_246611 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleShowColumnTypeAssignement_in_rule__PojogenProperty__ColumnTypeAssignment_3_446642 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_83_in_rule__PojogenProperty__NameAssignment_4_046678 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTablesAssignment_4_1_146717 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_84_in_rule__PojogenProperty__NameAssignment_5_046753 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTablesAssignment_5_1_146792 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_85_in_rule__PojogenProperty__NameAssignment_6_046828 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleJoinTableAssignement_in_rule__PojogenProperty__JoinTablesAssignment_6_1_146867 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_86_in_rule__PojogenProperty__NameAssignment_7_046903 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_7_246942 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbColumnsAssignment_7_3_146973 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_87_in_rule__PojogenProperty__NameAssignment_8_047009 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_8_247048 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbColumnsAssignment_8_3_147079 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_88_in_rule__PojogenProperty__NameAssignment_9_047115 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_9_247154 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbColumnsAssignment_9_3_147185 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_89_in_rule__PojogenProperty__NameAssignment_10_047221 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_10_247260 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnTypeAssignement_in_rule__PojogenProperty__ColumnTypesAssignment_10_3_147291 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_90_in_rule__PojogenProperty__NameAssignment_11_047327 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableAssignement_in_rule__PojogenProperty__TablesAssignment_11_1_147366 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_91_in_rule__PojogenProperty__NameAssignment_12_047402 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_12_247441 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnAssignement_in_rule__PojogenProperty__ColumnsAssignment_12_3_147472 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_92_in_rule__PojogenProperty__NameAssignment_13_047508 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_13_247547 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleExportAssignement_in_rule__PojogenProperty__ExportsAssignment_13_3_147578 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_93_in_rule__PojogenProperty__NameAssignment_14_047614 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_14_247653 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImportAssignement_in_rule__PojogenProperty__ImportsAssignment_14_3_147684 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_94_in_rule__PojogenProperty__NameAssignment_15_047720 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_15_247759 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImportAssignement_in_rule__PojogenProperty__ImportsAssignment_15_3_147790 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_95_in_rule__PojogenProperty__NameAssignment_16_047826 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_16_247865 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleExportAssignement_in_rule__PojogenProperty__ExportsAssignment_16_3_147896 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_96_in_rule__PojogenProperty__NameAssignment_17_047932 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_17_247971 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImportAssignement_in_rule__PojogenProperty__ImportsAssignment_17_3_148002 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_97_in_rule__PojogenProperty__NameAssignment_18_048038 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_18_248077 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleManyToManyAssignement_in_rule__PojogenProperty__Many2sAssignment_18_3_148108 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_98_in_rule__PojogenProperty__NameAssignment_19_048144 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbTableAssignment_19_248183 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__DbColumnAssignment_19_448214 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleInheritanceAssignement_in_rule__PojogenProperty__InheritanceAssignment_19_5_148245 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_99_in_rule__PojogenProperty__NameAssignment_20_048281 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojogenProperty__MethodsAssignment_20_1_148320 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_100_in_rule__PojogenProperty__NameAssignment_21_048356 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_rule__PojogenProperty__ToImplementsAssignment_21_1_148399 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_101_in_rule__PojogenProperty__NameAssignment_22_048439 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_rule__PojogenProperty__ToExtendsAssignment_22_248482 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojoDefinition__NameAssignment_148517 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__ClassAlternatives_2_0_in_rule__PojoDefinition__ClassAssignment_248548 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ColumnUsage__StatementAssignment_148585 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ColumnUsage__PojoAssignment_248624 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__IdentifierUsage__StatementAssignment_148663 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__IdentifierUsage__PojoAssignment_248702 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ConstantUsage__StatementAssignment_148741 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ConstantUsage__PojoAssignment_248780 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingUsage__StatementAssignment_148819 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingUsage__PojoAssignment_248858 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ColumnUsageExt__StatementAssignment_148897 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ColumnUsageExt__PojoAssignment_248936 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__IdentifierUsageExt__StatementAssignment_148975 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__IdentifierUsageExt__PojoAssignment_249014 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ConstantUsageExt__StatementAssignment_149053 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ConstantUsageExt__PojoAssignment_249092 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingUsageExt__StatementAssignment_149131 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingUsageExt__PojoAssignment_249170 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__TableDefinition__NameAssignment_149205 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__TableDefinition__TableAssignment_249236 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__TableUsage__StatementAssignment_149271 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__TableUsage__TableAssignment_249310 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__TableUsage__PrefixAssignment_3_149345 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MetaStatement__NameAssignment_049376 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__MetaStatement__TypeAssignment_249407 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MetaStatement__FiltersAssignment_3_149438 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSql_in_rule__MetaStatement__StatementAssignment_649469 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlFragment_in_rule__Sql__SqlsAssignment49500 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlValue_in_rule__SqlFragment__ValueAssignment_049531 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumn_in_rule__SqlFragment__ColAssignment_1_149562 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstant_in_rule__SqlFragment__CnstAssignment_2_149593 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifier_in_rule__SqlFragment__IdentAssignment_3_149624 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMetaSql_in_rule__SqlFragment__MetaAssignment_4_149655 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseTable_in_rule__SqlFragment__DbtabAssignment_5_1_0_149686 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseColumn_in_rule__SqlFragment__DbcolAssignment_5_1_149717 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_0_149748 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_0_2_149779 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__MetaSql__TypeAssignment_1_049810 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlCond_in_rule__MetaSql__CondAssignment_1_149841 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_1_349872 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_1_4_149903 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__MetaSql__TypeAssignment_2_049934 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_2_149965 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_2_2_149996 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__MetaSql__TypeAssignment_3_050027 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_3_150058 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_3_2_150089 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__MetaSql__TypeAssignment_4_050120 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MetaSql__FtypeAssignment_4_250151 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_4_350182 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__MetaSql__TypeAssignment_5_050213 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSql_in_rule__MetaSql__OrdAssignment_5_250244 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlFragment_in_rule__IfSql__SqlsAssignment50275 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlValue_in_rule__IfSqlFragment__ValueAssignment_050306 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumn_in_rule__IfSqlFragment__ColAssignment_1_150337 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstant_in_rule__IfSqlFragment__CnstAssignment_2_150368 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifier_in_rule__IfSqlFragment__IdentAssignment_3_150399 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseTable_in_rule__IfSqlFragment__DbtabAssignment_4_1_0_150430 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseColumn_in_rule__IfSqlFragment__DbcolAssignment_4_1_150461 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfMetaSql_in_rule__IfSqlFragment__MetaAssignment_5_150492 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_0_150523 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_0_2_150554 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__IfMetaSql__TypeAssignment_1_050585 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlCond_in_rule__IfMetaSql__CondAssignment_1_150616 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_1_350647 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_1_4_150678 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__IfMetaSql__TypeAssignment_2_050709 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_2_150740 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_2_2_150771 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__IfMetaSql__TypeAssignment_3_050802 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_3_150833 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_3_2_150864 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlBool_in_rule__IfSqlCond__Bool1Assignment_150895 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__OperAlternatives_3_0_0_in_rule__IfSqlCond__OperAssignment_3_050926 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlBool_in_rule__IfSqlCond__Bool2Assignment_3_250959 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__IfSqlBool__NotAssignment_0_050990 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstant_in_rule__IfSqlBool__CnstAssignment_0_251021 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__IfSqlBool__NotAssignment_1_051052 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifier_in_rule__IfSqlBool__IdentAssignment_1_251083 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__IfSqlBool__NotAssignment_2_051114 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlCond_in_rule__IfSqlBool__CondAssignment_2_251145 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSql2_in_rule__OrdSql__SqlsAssignment51176 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSqlValue_in_rule__OrdSql2__ValueAssignment_051207 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstant_in_rule__OrdSql2__CnstAssignment_1_151238 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifier_in_rule__OrdSql2__IdentAssignment_2_151269 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseColumn_in_rule__OrdSql2__DbcolAssignment_3_151300 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__NameAlternatives_0_0_in_rule__Column__NameAssignment_051331 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Column__TypeAssignment_1_151364 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__ValsAlternatives_1_2_1_0_in_rule__Column__ValsAssignment_1_2_151395 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__CaseAlternatives_0_0_in_rule__Constant__CaseAssignment_051428 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__NameAlternatives_1_0_in_rule__Constant__NameAssignment_151461 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Constant__TypeAssignment_2_151494 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__ValsAlternatives_2_2_1_0_in_rule__Constant__ValsAssignment_2_2_151525 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__ModeAlternatives_0_0_in_rule__Identifier__ModeAssignment_051558 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__CaseAlternatives_1_0_in_rule__Identifier__CaseAssignment_151591 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__NameAlternatives_2_0_in_rule__Identifier__NameAssignment_251624 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Identifier__TypeAssignment_3_151657 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__ValsAlternatives_3_2_1_0_in_rule__Identifier__ValsAssignment_3_2_151688 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseColumn__NameAlternatives_0_in_rule__DatabaseColumn__NameAssignment51721 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseTable__NameAlternatives_0_in_rule__DatabaseTable__NameAssignment51754 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingRule__NameAssignment_051787 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__MappingRule__TypeAssignment_251818 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingRule__FiltersAssignment_3_151849 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMapping_in_rule__MappingRule__MappingAssignment_651880 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingItem_in_rule__Mapping__MappingItemsAssignment_151911 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingItem_in_rule__Mapping__MappingItemsAssignment_2_151942 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__ColAlternatives_0_0_in_rule__MappingItem__ColAssignment_051973 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingItem__TypeAssignment_1_152006 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingColumn_in_rule__MappingItem__AttrAssignment_1_2_152037 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__NameAlternatives_0_0_in_rule__MappingColumn__NameAssignment_052068 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__ValsAlternatives_1_1_0_in_rule__MappingColumn__ValsAssignment_1_152101 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__OptionalFeature__NameAssignment_052134 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__OptionalFeature__TypeAssignment_252165 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__OptionalFeature__FiltersAssignment_3_152196 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleFeatureValue_in_rule__OptionalFeature__OptionAssignment_652227 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoType__NativeAlternatives_0_0_0_in_rule__PojoType__NativeAssignment_0_052258 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojoType__RefAssignment_0_1_0_1_0_152295 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_rule__PojoType__TypeAssignment_0_1_0_1_152334 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojoType__GrefAssignment_0_1_1_1_0_152373 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_rule__PojoType__GtypeAssignment_0_1_1_1_152412 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_102_in_rule__PojoType__ArrayAssignment_152452 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__NameAlternatives_1_0_in_rule__PackageDeclaration__NameAssignment_152491 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PackageDeclaration__SuffixAlternatives_2_1_0_in_rule__PackageDeclaration__SuffixAssignment_2_152524 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleAbstractPojoEntity_in_rule__PackageDeclaration__ElementsAssignment_452557 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedNameWithWildcard_in_rule__Import__ImportedNamespaceAssignment_152588 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_rule__Implements__ImplementsAssignment_152623 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_rule__Extends__ExtendsAssignment_152662 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_103_in_rule__PojoEntityModifier1__FinalAssignment_052702 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_104_in_rule__PojoEntityModifier1__AbstractAssignment_152746 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojoEntityModifier2__SuperTypeAssignment_0_152789 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoEntityModifier2__DiscriminatorAlternatives_1_1_0_in_rule__PojoEntityModifier2__DiscriminatorAssignment_1_152824 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__PojoEntityModifier2__SernumAssignment_2_152857 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoEntityModifier1_in_rule__PojoEntity__Modifiers1Assignment_052888 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojoEntity__NameAssignment_252919 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoEntityModifier2_in_rule__PojoEntity__Modifiers2Assignment_352950 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoProperty_in_rule__PojoEntity__FeaturesAssignment_552981 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_105_in_rule__PojoPropertyModifier__RequiredAssignment_053017 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_65_in_rule__PojoPropertyModifier__DiscriminatorAssignment_153061 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_106_in_rule__PojoPropertyModifier__PrimaryKeyAssignment_253105 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojoProperty__NameAssignment_053144 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoProperty__NativeAlternatives_1_0_0_in_rule__PojoProperty__NativeAssignment_1_053175 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojoProperty__AttrsAssignment_1_1_0_1_0_1_0_153212 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojoProperty__RefAssignment_1_1_0_1_0_1_153251 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_rule__PojoProperty__TypeAssignment_1_1_0_1_153290 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojoProperty__GrefAssignment_1_1_1_1_0_153329 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_rule__PojoProperty__GtypeAssignment_1_1_1_1_153368 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_102_in_rule__PojoProperty__ArrayAssignment_253408 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoPropertyModifier_in_rule__PojoProperty__ModifiersAssignment_353447 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Group_1__0_in_synpred465_InternalProcessorDsl31314 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Group_1__0_in_synpred471_InternalProcessorDsl34043 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Group_1__0_in_synpred484_InternalProcessorDsl37031 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1__0_in_synpred485_InternalProcessorDsl37212 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__TypeAssignment_1_1_in_synpred486_InternalProcessorDsl37338 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1_2__0_in_synpred487_InternalProcessorDsl37396 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2__0_in_synpred489_InternalProcessorDsl37703 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__TypeAssignment_2_1_in_synpred490_InternalProcessorDsl37831 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2_2__0_in_synpred491_InternalProcessorDsl37889 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3__0_in_synpred494_InternalProcessorDsl38257 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__TypeAssignment_3_1_in_synpred495_InternalProcessorDsl38387 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3_2__0_in_synpred496_InternalProcessorDsl38445 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; } </s> |
<s> package org . sqlproc . dsl . ui . contentassist . antlr . internal ; import org . eclipse . xtext . ui . editor . contentassist . antlr . internal . Lexer ; import org . antlr . runtime . * ; import java . util . Stack ; import java . util . List ; import java . util . ArrayList ; @ SuppressWarnings ( "<STR_LIT:all>" ) public class InternalProcessorDslLexer extends Lexer { public static final int RULE_PERCENT = <NUM_LIT> ; public static final int RULE_OR = <NUM_LIT> ; public static final int RULE_AND = <NUM_LIT> ; public static final int EOF = - <NUM_LIT:1> ; public static final int T__93 = <NUM_LIT> ; public static final int T__94 = <NUM_LIT> ; public static final int T__91 = <NUM_LIT> ; public static final int T__92 = <NUM_LIT> ; public static final int RULE_REST = <NUM_LIT:4> ; public static final int T__90 = <NUM_LIT> ; public static final int RULE_LPAREN = <NUM_LIT> ; public static final int RULE_IDENT_DOT = <NUM_LIT:5> ; public static final int T__99 = <NUM_LIT> ; public static final int T__98 = <NUM_LIT> ; public static final int T__97 = <NUM_LIT> ; public static final int T__96 = <NUM_LIT> ; public static final int T__95 = <NUM_LIT> ; public static final int RULE_BAND = <NUM_LIT> ; public static final int T__80 = <NUM_LIT> ; public static final int RULE_RBRACE = <NUM_LIT:16> ; public static final int T__81 = <NUM_LIT> ; public static final int T__82 = <NUM_LIT> ; public static final int T__83 = <NUM_LIT> ; public static final int RULE_HASH = <NUM_LIT> ; public static final int RULE_COMMA = <NUM_LIT:10> ; public static final int T__85 = <NUM_LIT> ; public static final int RULE_QUESTI = <NUM_LIT> ; public static final int T__84 = <NUM_LIT> ; public static final int T__87 = <NUM_LIT> ; public static final int T__86 = <NUM_LIT> ; public static final int T__89 = <NUM_LIT> ; public static final int T__88 = <NUM_LIT> ; public static final int RULE_ML_COMMENT = <NUM_LIT> ; public static final int RULE_ON_OFF = <NUM_LIT:31> ; public static final int RULE_MINUS = <NUM_LIT:11> ; public static final int RULE_STRING = <NUM_LIT:9> ; public static final int T__71 = <NUM_LIT> ; public static final int T__72 = <NUM_LIT> ; public static final int T__70 = <NUM_LIT> ; public static final int RULE_IDENT = <NUM_LIT:6> ; public static final int RULE_RPAREN = <NUM_LIT> ; public static final int T__76 = <NUM_LIT> ; public static final int T__75 = <NUM_LIT> ; public static final int T__74 = <NUM_LIT> ; public static final int T__73 = <NUM_LIT> ; public static final int T__79 = <NUM_LIT> ; public static final int T__78 = <NUM_LIT> ; public static final int RULE_AT = <NUM_LIT> ; public static final int T__77 = <NUM_LIT> ; public static final int T__68 = <NUM_LIT> ; public static final int T__69 = <NUM_LIT> ; public static final int T__66 = <NUM_LIT> ; public static final int T__67 = <NUM_LIT> ; public static final int T__64 = <NUM_LIT> ; public static final int T__65 = <NUM_LIT> ; public static final int T__62 = <NUM_LIT> ; public static final int T__63 = <NUM_LIT> ; public static final int RULE_SEMICOLON = <NUM_LIT> ; public static final int RULE_OPTION_TYPE = <NUM_LIT> ; public static final int T__61 = <NUM_LIT> ; public static final int T__60 = <NUM_LIT> ; public static final int RULE_NOT = <NUM_LIT> ; public static final int T__55 = <NUM_LIT> ; public static final int T__56 = <NUM_LIT> ; public static final int T__57 = <NUM_LIT> ; public static final int T__58 = <NUM_LIT> ; public static final int T__51 = <NUM_LIT> ; public static final int T__52 = <NUM_LIT> ; public static final int T__53 = <NUM_LIT> ; public static final int T__54 = <NUM_LIT> ; public static final int RULE_NUMBER = <NUM_LIT:7> ; public static final int T__59 = <NUM_LIT> ; public static final int T__103 = <NUM_LIT> ; public static final int T__104 = <NUM_LIT> ; public static final int T__105 = <NUM_LIT> ; public static final int T__106 = <NUM_LIT> ; public static final int RULE_LBRACE = <NUM_LIT:15> ; public static final int RULE_BOR = <NUM_LIT:20> ; public static final int T__50 = <NUM_LIT> ; public static final int T__42 = <NUM_LIT> ; public static final int T__43 = <NUM_LIT> ; public static final int T__40 = <NUM_LIT> ; public static final int T__41 = <NUM_LIT> ; public static final int T__46 = <NUM_LIT> ; public static final int T__47 = <NUM_LIT> ; public static final int T__44 = <NUM_LIT> ; public static final int T__45 = <NUM_LIT> ; public static final int RULE_CARET = <NUM_LIT> ; public static final int T__48 = <NUM_LIT> ; public static final int T__49 = <NUM_LIT> ; public static final int RULE_MORE_THAN = <NUM_LIT> ; public static final int RULE_PLUS = <NUM_LIT:12> ; public static final int RULE_STATEMEN_TYPE = <NUM_LIT:32> ; public static final int T__102 = <NUM_LIT> ; public static final int T__101 = <NUM_LIT> ; public static final int T__100 = <NUM_LIT:100> ; public static final int RULE_SL_COMMENT = <NUM_LIT> ; public static final int RULE_COLON = <NUM_LIT:8> ; public static final int RULE_ESC_CHAR = <NUM_LIT:30> ; public static final int T__39 = <NUM_LIT> ; public static final int RULE_EQUALS = <NUM_LIT:24> ; public static final int RULE_LESS_THAN = <NUM_LIT> ; public static final int RULE_WS = <NUM_LIT> ; public static final int RULE_MAPPING_TYPE = <NUM_LIT> ; public InternalProcessorDslLexer ( ) { ; } public InternalProcessorDslLexer ( CharStream input ) { this ( input , new RecognizerSharedState ( ) ) ; } public InternalProcessorDslLexer ( CharStream input , RecognizerSharedState state ) { super ( input , state ) ; } public String getGrammarFileName ( ) { return "<STR_LIT>" ; } public final void mT__39 ( ) throws RecognitionException { try { int _type = T__39 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__40 ( ) throws RecognitionException { try { int _type = T__40 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__41 ( ) throws RecognitionException { try { int _type = T__41 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__42 ( ) throws RecognitionException { try { int _type = T__42 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__43 ( ) throws RecognitionException { try { int _type = T__43 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__44 ( ) throws RecognitionException { try { int _type = T__44 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__45 ( ) throws RecognitionException { try { int _type = T__45 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__46 ( ) throws RecognitionException { try { int _type = T__46 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__47 ( ) throws RecognitionException { try { int _type = T__47 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__48 ( ) throws RecognitionException { try { int _type = T__48 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__49 ( ) throws RecognitionException { try { int _type = T__49 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__50 ( ) throws RecognitionException { try { int _type = T__50 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__51 ( ) throws RecognitionException { try { int _type = T__51 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__52 ( ) throws RecognitionException { try { int _type = T__52 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__53 ( ) throws RecognitionException { try { int _type = T__53 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__54 ( ) throws RecognitionException { try { int _type = T__54 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__55 ( ) throws RecognitionException { try { int _type = T__55 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__56 ( ) throws RecognitionException { try { int _type = T__56 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__57 ( ) throws RecognitionException { try { int _type = T__57 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__58 ( ) throws RecognitionException { try { int _type = T__58 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__59 ( ) throws RecognitionException { try { int _type = T__59 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__60 ( ) throws RecognitionException { try { int _type = T__60 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__61 ( ) throws RecognitionException { try { int _type = T__61 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__62 ( ) throws RecognitionException { try { int _type = T__62 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__63 ( ) throws RecognitionException { try { int _type = T__63 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__64 ( ) throws RecognitionException { try { int _type = T__64 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__65 ( ) throws RecognitionException { try { int _type = T__65 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__66 ( ) throws RecognitionException { try { int _type = T__66 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__67 ( ) throws RecognitionException { try { int _type = T__67 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__68 ( ) throws RecognitionException { try { int _type = T__68 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__69 ( ) throws RecognitionException { try { int _type = T__69 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__70 ( ) throws RecognitionException { try { int _type = T__70 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__71 ( ) throws RecognitionException { try { int _type = T__71 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__72 ( ) throws RecognitionException { try { int _type = T__72 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__73 ( ) throws RecognitionException { try { int _type = T__73 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__74 ( ) throws RecognitionException { try { int _type = T__74 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__75 ( ) throws RecognitionException { try { int _type = T__75 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__76 ( ) throws RecognitionException { try { int _type = T__76 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__77 ( ) throws RecognitionException { try { int _type = T__77 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__78 ( ) throws RecognitionException { try { int _type = T__78 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__79 ( ) throws RecognitionException { try { int _type = T__79 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__80 ( ) throws RecognitionException { try { int _type = T__80 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__81 ( ) throws RecognitionException { try { int _type = T__81 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__82 ( ) throws RecognitionException { try { int _type = T__82 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__83 ( ) throws RecognitionException { try { int _type = T__83 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__84 ( ) throws RecognitionException { try { int _type = T__84 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__85 ( ) throws RecognitionException { try { int _type = T__85 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__86 ( ) throws RecognitionException { try { int _type = T__86 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__87 ( ) throws RecognitionException { try { int _type = T__87 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__88 ( ) throws RecognitionException { try { int _type = T__88 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__89 ( ) throws RecognitionException { try { int _type = T__89 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__90 ( ) throws RecognitionException { try { int _type = T__90 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__91 ( ) throws RecognitionException { try { int _type = T__91 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__92 ( ) throws RecognitionException { try { int _type = T__92 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__93 ( ) throws RecognitionException { try { int _type = T__93 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__94 ( ) throws RecognitionException { try { int _type = T__94 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__95 ( ) throws RecognitionException { try { int _type = T__95 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__96 ( ) throws RecognitionException { try { int _type = T__96 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__97 ( ) throws RecognitionException { try { int _type = T__97 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__98 ( ) throws RecognitionException { try { int _type = T__98 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__99 ( ) throws RecognitionException { try { int _type = T__99 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__100 ( ) throws RecognitionException { try { int _type = T__100 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__101 ( ) throws RecognitionException { try { int _type = T__101 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__102 ( ) throws RecognitionException { try { int _type = T__102 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT:[]>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__103 ( ) throws RecognitionException { try { int _type = T__103 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__104 ( ) throws RecognitionException { try { int _type = T__104 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__105 ( ) throws RecognitionException { try { int _type = T__105 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__106 ( ) throws RecognitionException { try { int _type = T__106 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_ON_OFF ( ) throws RecognitionException { try { int _type = RULE_ON_OFF ; int _channel = DEFAULT_TOKEN_CHANNEL ; { int alt1 = <NUM_LIT:2> ; int LA1_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA1_0 == '<CHAR_LIT>' ) ) { int LA1_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA1_1 == '<CHAR_LIT>' ) ) { alt1 = <NUM_LIT:1> ; } else if ( ( LA1_1 == '<CHAR_LIT>' ) ) { alt1 = <NUM_LIT:2> ; } else { NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:1> , <NUM_LIT:1> , input ) ; throw nvae ; } } else { NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:1> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt1 ) { case <NUM_LIT:1> : { match ( "<STR_LIT>" ) ; } break ; case <NUM_LIT:2> : { match ( "<STR_LIT>" ) ; } break ; } } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_STATEMEN_TYPE ( ) throws RecognitionException { try { int _type = RULE_STATEMEN_TYPE ; int _channel = DEFAULT_TOKEN_CHANNEL ; { int alt2 = <NUM_LIT:3> ; int LA2_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA2_0 == '<CHAR_LIT>' ) ) { alt2 = <NUM_LIT:1> ; } else if ( ( LA2_0 == '<CHAR_LIT>' ) ) { int LA2_2 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA2_2 == '<CHAR_LIT>' ) ) { alt2 = <NUM_LIT:2> ; } else if ( ( LA2_2 == '<CHAR_LIT:A>' ) ) { alt2 = <NUM_LIT:3> ; } else { NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:2> , <NUM_LIT:2> , input ) ; throw nvae ; } } else { NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:2> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt2 ) { case <NUM_LIT:1> : { match ( "<STR_LIT>" ) ; } break ; case <NUM_LIT:2> : { match ( "<STR_LIT>" ) ; } break ; case <NUM_LIT:3> : { match ( "<STR_LIT>" ) ; } break ; } } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_MAPPING_TYPE ( ) throws RecognitionException { try { int _type = RULE_MAPPING_TYPE ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_OPTION_TYPE ( ) throws RecognitionException { try { int _type = RULE_OPTION_TYPE ; int _channel = DEFAULT_TOKEN_CHANNEL ; { int alt3 = <NUM_LIT:5> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case '<CHAR_LIT>' : { alt3 = <NUM_LIT:1> ; } break ; case '<CHAR_LIT>' : { alt3 = <NUM_LIT:2> ; } break ; case '<CHAR_LIT>' : { alt3 = <NUM_LIT:3> ; } break ; case '<CHAR_LIT>' : { alt3 = <NUM_LIT:4> ; } break ; case '<CHAR_LIT>' : { alt3 = <NUM_LIT:5> ; } break ; default : NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:3> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt3 ) { case <NUM_LIT:1> : { match ( "<STR_LIT>" ) ; } break ; case <NUM_LIT:2> : { match ( "<STR_LIT>" ) ; } break ; case <NUM_LIT:3> : { match ( "<STR_LIT>" ) ; } break ; case <NUM_LIT:4> : { match ( "<STR_LIT>" ) ; } break ; case <NUM_LIT:5> : { match ( "<STR_LIT>" ) ; } break ; } } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_IDENT_DOT ( ) throws RecognitionException { try { int _type = RULE_IDENT_DOT ; int _channel = DEFAULT_TOKEN_CHANNEL ; { mRULE_IDENT ( ) ; int cnt4 = <NUM_LIT:0> ; loop4 : do { int alt4 = <NUM_LIT:2> ; int LA4_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA4_0 == '<CHAR_LIT:.>' ) ) { alt4 = <NUM_LIT:1> ; } switch ( alt4 ) { case <NUM_LIT:1> : { match ( '<CHAR_LIT:.>' ) ; mRULE_IDENT ( ) ; } break ; default : if ( cnt4 >= <NUM_LIT:1> ) break loop4 ; EarlyExitException eee = new EarlyExitException ( <NUM_LIT:4> , input ) ; throw eee ; } cnt4 ++ ; } while ( true ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_IDENT ( ) throws RecognitionException { try { int _type = RULE_IDENT ; int _channel = DEFAULT_TOKEN_CHANNEL ; { if ( ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT:A>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT:Z>' ) || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT:a>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT>' ) ) { input . consume ( ) ; } else { MismatchedSetException mse = new MismatchedSetException ( null , input ) ; recover ( mse ) ; throw mse ; } loop5 : do { int alt5 = <NUM_LIT:2> ; int LA5_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA5_0 >= '<CHAR_LIT:0>' && LA5_0 <= '<CHAR_LIT:9>' ) || LA5_0 == '<CHAR_LIT:=>' || ( LA5_0 >= '<CHAR_LIT:A>' && LA5_0 <= '<CHAR_LIT:Z>' ) || LA5_0 == '<CHAR_LIT:_>' || ( LA5_0 >= '<CHAR_LIT:a>' && LA5_0 <= '<CHAR_LIT>' ) ) ) { alt5 = <NUM_LIT:1> ; } switch ( alt5 ) { case <NUM_LIT:1> : { if ( ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT:0>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT:9>' ) || input . LA ( <NUM_LIT:1> ) == '<CHAR_LIT:=>' || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT:A>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT:Z>' ) || input . LA ( <NUM_LIT:1> ) == '<CHAR_LIT:_>' || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT:a>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT>' ) ) { input . consume ( ) ; } else { MismatchedSetException mse = new MismatchedSetException ( null , input ) ; recover ( mse ) ; throw mse ; } } break ; default : break loop5 ; } } while ( true ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_NUMBER ( ) throws RecognitionException { try { int _type = RULE_NUMBER ; int _channel = DEFAULT_TOKEN_CHANNEL ; { int cnt6 = <NUM_LIT:0> ; loop6 : do { int alt6 = <NUM_LIT:2> ; int LA6_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA6_0 >= '<CHAR_LIT:0>' && LA6_0 <= '<CHAR_LIT:9>' ) ) ) { alt6 = <NUM_LIT:1> ; } switch ( alt6 ) { case <NUM_LIT:1> : { matchRange ( '<CHAR_LIT:0>' , '<CHAR_LIT:9>' ) ; } break ; default : if ( cnt6 >= <NUM_LIT:1> ) break loop6 ; EarlyExitException eee = new EarlyExitException ( <NUM_LIT:6> , input ) ; throw eee ; } cnt6 ++ ; } while ( true ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_ESC_CHAR ( ) throws RecognitionException { try { int _type = RULE_ESC_CHAR ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<STR_LIT:\\>' ) ; if ( ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT>' ) || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT:.>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT:/>' ) || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT::>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT:;>' ) || input . LA ( <NUM_LIT:1> ) == '<CHAR_LIT>' || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT:}>' ) ) { input . consume ( ) ; } else { MismatchedSetException mse = new MismatchedSetException ( null , input ) ; recover ( mse ) ; throw mse ; } } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_ML_COMMENT ( ) throws RecognitionException { try { int _type = RULE_ML_COMMENT ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; loop7 : do { int alt7 = <NUM_LIT:2> ; int LA7_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA7_0 == '<CHAR_LIT>' ) ) { int LA7_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA7_1 == '<CHAR_LIT:/>' ) ) { alt7 = <NUM_LIT:2> ; } else if ( ( ( LA7_1 >= '<CHAR_LIT>' && LA7_1 <= '<CHAR_LIT:.>' ) || ( LA7_1 >= '<CHAR_LIT:0>' && LA7_1 <= '<STR_LIT>' ) ) ) { alt7 = <NUM_LIT:1> ; } } else if ( ( ( LA7_0 >= '<CHAR_LIT>' && LA7_0 <= '<CHAR_LIT:)>' ) || ( LA7_0 >= '<CHAR_LIT>' && LA7_0 <= '<STR_LIT>' ) ) ) { alt7 = <NUM_LIT:1> ; } switch ( alt7 ) { case <NUM_LIT:1> : { matchAny ( ) ; } break ; default : break loop7 ; } } while ( true ) ; match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_SL_COMMENT ( ) throws RecognitionException { try { int _type = RULE_SL_COMMENT ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; loop8 : do { int alt8 = <NUM_LIT:2> ; int LA8_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA8_0 >= '<CHAR_LIT>' && LA8_0 <= '<STR_LIT:\t>' ) || ( LA8_0 >= '<CHAR_LIT>' && LA8_0 <= '<STR_LIT>' ) || ( LA8_0 >= '<CHAR_LIT>' && LA8_0 <= '<STR_LIT>' ) ) ) { alt8 = <NUM_LIT:1> ; } switch ( alt8 ) { case <NUM_LIT:1> : { if ( ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT>' && input . LA ( <NUM_LIT:1> ) <= '<STR_LIT:\t>' ) || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT>' && input . LA ( <NUM_LIT:1> ) <= '<STR_LIT>' ) || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT>' && input . LA ( <NUM_LIT:1> ) <= '<STR_LIT>' ) ) { input . consume ( ) ; } else { MismatchedSetException mse = new MismatchedSetException ( null , input ) ; recover ( mse ) ; throw mse ; } } break ; default : break loop8 ; } } while ( true ) ; int alt10 = <NUM_LIT:2> ; int LA10_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA10_0 == '<STR_LIT:\n>' || LA10_0 == '<STR_LIT>' ) ) { alt10 = <NUM_LIT:1> ; } switch ( alt10 ) { case <NUM_LIT:1> : { int alt9 = <NUM_LIT:2> ; int LA9_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA9_0 == '<STR_LIT>' ) ) { alt9 = <NUM_LIT:1> ; } switch ( alt9 ) { case <NUM_LIT:1> : { match ( '<STR_LIT>' ) ; } break ; } match ( '<STR_LIT:\n>' ) ; } break ; } } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_WS ( ) throws RecognitionException { try { int _type = RULE_WS ; int _channel = DEFAULT_TOKEN_CHANNEL ; { int cnt11 = <NUM_LIT:0> ; loop11 : do { int alt11 = <NUM_LIT:2> ; int LA11_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA11_0 >= '<STR_LIT:\t>' && LA11_0 <= '<STR_LIT:\n>' ) || LA11_0 == '<STR_LIT>' || LA11_0 == '<CHAR_LIT:U+0020>' ) ) { alt11 = <NUM_LIT:1> ; } switch ( alt11 ) { case <NUM_LIT:1> : { if ( ( input . LA ( <NUM_LIT:1> ) >= '<STR_LIT:\t>' && input . LA ( <NUM_LIT:1> ) <= '<STR_LIT:\n>' ) || input . LA ( <NUM_LIT:1> ) == '<STR_LIT>' || input . LA ( <NUM_LIT:1> ) == '<CHAR_LIT:U+0020>' ) { input . consume ( ) ; } else { MismatchedSetException mse = new MismatchedSetException ( null , input ) ; recover ( mse ) ; throw mse ; } } break ; default : if ( cnt11 >= <NUM_LIT:1> ) break loop11 ; EarlyExitException eee = new EarlyExitException ( <NUM_LIT:11> , input ) ; throw eee ; } cnt11 ++ ; } while ( true ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_AND ( ) throws RecognitionException { try { int _type = RULE_AND ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_OR ( ) throws RecognitionException { try { int _type = RULE_OR ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_COLON ( ) throws RecognitionException { try { int _type = RULE_COLON ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT::>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_SEMICOLON ( ) throws RecognitionException { try { int _type = RULE_SEMICOLON ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:;>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_STRING ( ) throws RecognitionException { try { int _type = RULE_STRING ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_COMMA ( ) throws RecognitionException { try { int _type = RULE_COMMA ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:U+002C>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_MINUS ( ) throws RecognitionException { try { int _type = RULE_MINUS ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:->' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_PLUS ( ) throws RecognitionException { try { int _type = RULE_PLUS ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_LPAREN ( ) throws RecognitionException { try { int _type = RULE_LPAREN ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:(>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_RPAREN ( ) throws RecognitionException { try { int _type = RULE_RPAREN ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:)>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_LBRACE ( ) throws RecognitionException { try { int _type = RULE_LBRACE ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_RBRACE ( ) throws RecognitionException { try { int _type = RULE_RBRACE ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:}>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_QUESTI ( ) throws RecognitionException { try { int _type = RULE_QUESTI ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_NOT ( ) throws RecognitionException { try { int _type = RULE_NOT ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_BAND ( ) throws RecognitionException { try { int _type = RULE_BAND ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_BOR ( ) throws RecognitionException { try { int _type = RULE_BOR ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_HASH ( ) throws RecognitionException { try { int _type = RULE_HASH ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_AT ( ) throws RecognitionException { try { int _type = RULE_AT ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_CARET ( ) throws RecognitionException { try { int _type = RULE_CARET ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_EQUALS ( ) throws RecognitionException { try { int _type = RULE_EQUALS ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:=>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_LESS_THAN ( ) throws RecognitionException { try { int _type = RULE_LESS_THAN ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_MORE_THAN ( ) throws RecognitionException { try { int _type = RULE_MORE_THAN ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:>>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_PERCENT ( ) throws RecognitionException { try { int _type = RULE_PERCENT ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_REST ( ) throws RecognitionException { try { int _type = RULE_REST ; int _channel = DEFAULT_TOKEN_CHANNEL ; { if ( ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT::>' ) || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT>' && input . LA ( <NUM_LIT:1> ) <= '<STR_LIT>' ) ) { input . consume ( ) ; } else { MismatchedSetException mse = new MismatchedSetException ( null , input ) ; recover ( mse ) ; throw mse ; } } state . type = _type ; state . channel = _channel ; } finally { } } public void mTokens ( ) throws RecognitionException { int alt12 = <NUM_LIT> ; alt12 = dfa12 . predict ( input ) ; switch ( alt12 ) { case <NUM_LIT:1> : { mT__39 ( ) ; } break ; case <NUM_LIT:2> : { mT__40 ( ) ; } break ; case <NUM_LIT:3> : { mT__41 ( ) ; } break ; case <NUM_LIT:4> : { mT__42 ( ) ; } break ; case <NUM_LIT:5> : { mT__43 ( ) ; } break ; case <NUM_LIT:6> : { mT__44 ( ) ; } break ; case <NUM_LIT:7> : { mT__45 ( ) ; } break ; case <NUM_LIT:8> : { mT__46 ( ) ; } break ; case <NUM_LIT:9> : { mT__47 ( ) ; } break ; case <NUM_LIT:10> : { mT__48 ( ) ; } break ; case <NUM_LIT:11> : { mT__49 ( ) ; } break ; case <NUM_LIT:12> : { mT__50 ( ) ; } break ; case <NUM_LIT> : { mT__51 ( ) ; } break ; case <NUM_LIT> : { mT__52 ( ) ; } break ; case <NUM_LIT:15> : { mT__53 ( ) ; } break ; case <NUM_LIT:16> : { mT__54 ( ) ; } break ; case <NUM_LIT> : { mT__55 ( ) ; } break ; case <NUM_LIT> : { mT__56 ( ) ; } break ; case <NUM_LIT> : { mT__57 ( ) ; } break ; case <NUM_LIT:20> : { mT__58 ( ) ; } break ; case <NUM_LIT> : { mT__59 ( ) ; } break ; case <NUM_LIT> : { mT__60 ( ) ; } break ; case <NUM_LIT> : { mT__61 ( ) ; } break ; case <NUM_LIT:24> : { mT__62 ( ) ; } break ; case <NUM_LIT> : { mT__63 ( ) ; } break ; case <NUM_LIT> : { mT__64 ( ) ; } break ; case <NUM_LIT> : { mT__65 ( ) ; } break ; case <NUM_LIT> : { mT__66 ( ) ; } break ; case <NUM_LIT> : { mT__67 ( ) ; } break ; case <NUM_LIT:30> : { mT__68 ( ) ; } break ; case <NUM_LIT:31> : { mT__69 ( ) ; } break ; case <NUM_LIT:32> : { mT__70 ( ) ; } break ; case <NUM_LIT> : { mT__71 ( ) ; } break ; case <NUM_LIT> : { mT__72 ( ) ; } break ; case <NUM_LIT> : { mT__73 ( ) ; } break ; case <NUM_LIT> : { mT__74 ( ) ; } break ; case <NUM_LIT> : { mT__75 ( ) ; } break ; case <NUM_LIT> : { mT__76 ( ) ; } break ; case <NUM_LIT> : { mT__77 ( ) ; } break ; case <NUM_LIT> : { mT__78 ( ) ; } break ; case <NUM_LIT> : { mT__79 ( ) ; } break ; case <NUM_LIT> : { mT__80 ( ) ; } break ; case <NUM_LIT> : { mT__81 ( ) ; } break ; case <NUM_LIT> : { mT__82 ( ) ; } break ; case <NUM_LIT> : { mT__83 ( ) ; } break ; case <NUM_LIT> : { mT__84 ( ) ; } break ; case <NUM_LIT> : { mT__85 ( ) ; } break ; case <NUM_LIT> : { mT__86 ( ) ; } break ; case <NUM_LIT> : { mT__87 ( ) ; } break ; case <NUM_LIT> : { mT__88 ( ) ; } break ; case <NUM_LIT> : { mT__89 ( ) ; } break ; case <NUM_LIT> : { mT__90 ( ) ; } break ; case <NUM_LIT> : { mT__91 ( ) ; } break ; case <NUM_LIT> : { mT__92 ( ) ; } break ; case <NUM_LIT> : { mT__93 ( ) ; } break ; case <NUM_LIT> : { mT__94 ( ) ; } break ; case <NUM_LIT> : { mT__95 ( ) ; } break ; case <NUM_LIT> : { mT__96 ( ) ; } break ; case <NUM_LIT> : { mT__97 ( ) ; } break ; case <NUM_LIT> : { mT__98 ( ) ; } break ; case <NUM_LIT> : { mT__99 ( ) ; } break ; case <NUM_LIT> : { mT__100 ( ) ; } break ; case <NUM_LIT> : { mT__101 ( ) ; } break ; case <NUM_LIT> : { mT__102 ( ) ; } break ; case <NUM_LIT> : { mT__103 ( ) ; } break ; case <NUM_LIT> : { mT__104 ( ) ; } break ; case <NUM_LIT> : { mT__105 ( ) ; } break ; case <NUM_LIT> : { mT__106 ( ) ; } break ; case <NUM_LIT> : { mRULE_ON_OFF ( ) ; } break ; case <NUM_LIT> : { mRULE_STATEMEN_TYPE ( ) ; } break ; case <NUM_LIT> : { mRULE_MAPPING_TYPE ( ) ; } break ; case <NUM_LIT> : { mRULE_OPTION_TYPE ( ) ; } break ; case <NUM_LIT> : { mRULE_IDENT_DOT ( ) ; } break ; case <NUM_LIT> : { mRULE_IDENT ( ) ; } break ; case <NUM_LIT> : { mRULE_NUMBER ( ) ; } break ; case <NUM_LIT> : { mRULE_ESC_CHAR ( ) ; } break ; case <NUM_LIT> : { mRULE_ML_COMMENT ( ) ; } break ; case <NUM_LIT> : { mRULE_SL_COMMENT ( ) ; } break ; case <NUM_LIT> : { mRULE_WS ( ) ; } break ; case <NUM_LIT> : { mRULE_AND ( ) ; } break ; case <NUM_LIT> : { mRULE_OR ( ) ; } break ; case <NUM_LIT> : { mRULE_COLON ( ) ; } break ; case <NUM_LIT> : { mRULE_SEMICOLON ( ) ; } break ; case <NUM_LIT> : { mRULE_STRING ( ) ; } break ; case <NUM_LIT> : { mRULE_COMMA ( ) ; } break ; case <NUM_LIT> : { mRULE_MINUS ( ) ; } break ; case <NUM_LIT> : { mRULE_PLUS ( ) ; } break ; case <NUM_LIT> : { mRULE_LPAREN ( ) ; } break ; case <NUM_LIT> : { mRULE_RPAREN ( ) ; } break ; case <NUM_LIT> : { mRULE_LBRACE ( ) ; } break ; case <NUM_LIT> : { mRULE_RBRACE ( ) ; } break ; case <NUM_LIT> : { mRULE_QUESTI ( ) ; } break ; case <NUM_LIT> : { mRULE_NOT ( ) ; } break ; case <NUM_LIT> : { mRULE_BAND ( ) ; } break ; case <NUM_LIT> : { mRULE_BOR ( ) ; } break ; case <NUM_LIT> : { mRULE_HASH ( ) ; } break ; case <NUM_LIT> : { mRULE_AT ( ) ; } break ; case <NUM_LIT> : { mRULE_CARET ( ) ; } break ; case <NUM_LIT> : { mRULE_EQUALS ( ) ; } break ; case <NUM_LIT:100> : { mRULE_LESS_THAN ( ) ; } break ; case <NUM_LIT> : { mRULE_MORE_THAN ( ) ; } break ; case <NUM_LIT> : { mRULE_PERCENT ( ) ; } break ; case <NUM_LIT> : { mRULE_REST ( ) ; } break ; } } protected DFA12 dfa12 = new DFA12 ( this ) ; static final String DFA12_eotS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String DFA12_eofS = "<STR_LIT>" ; static final String DFA12_minS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String DFA12_maxS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String DFA12_acceptS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String DFA12_specialS = "<STR_LIT>" ; static final String [ ] DFA12_transitionS = { "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT:B>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT:B>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; static final short [ ] DFA12_eot = DFA . unpackEncodedString ( DFA12_eotS ) ; static final short [ ] DFA12_eof = DFA . unpackEncodedString ( DFA12_eofS ) ; static final char [ ] DFA12_min = DFA . unpackEncodedStringToUnsignedChars ( DFA12_minS ) ; static final char [ ] DFA12_max = DFA . unpackEncodedStringToUnsignedChars ( DFA12_maxS ) ; static final short [ ] DFA12_accept = DFA . unpackEncodedString ( DFA12_acceptS ) ; static final short [ ] DFA12_special = DFA . unpackEncodedString ( DFA12_specialS ) ; static final short [ ] [ ] DFA12_transition ; static { int numStates = DFA12_transitionS . length ; DFA12_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA12_transition [ i ] = DFA . unpackEncodedString ( DFA12_transitionS [ i ] ) ; } } class DFA12 extends DFA { public DFA12 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT:12> ; this . eot = DFA12_eot ; this . eof = DFA12_eof ; this . min = DFA12_min ; this . max = DFA12_max ; this . accept = DFA12_accept ; this . special = DFA12_special ; this . transition = DFA12_transition ; } public String getDescription ( ) { return "<STR_LIT>" ; } public int specialStateTransition ( int s , IntStream _input ) throws NoViableAltException { IntStream input = _input ; int _s = s ; switch ( s ) { case <NUM_LIT:0> : int LA12_0 = input . LA ( <NUM_LIT:1> ) ; s = - <NUM_LIT:1> ; if ( ( LA12_0 == '<CHAR_LIT:_>' ) ) { s = <NUM_LIT:1> ; } else if ( ( LA12_0 == '<CHAR_LIT:->' ) ) { s = <NUM_LIT:2> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:3> ; } else if ( ( LA12_0 == '<CHAR_LIT:c>' ) ) { s = <NUM_LIT:4> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:5> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:6> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:7> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:8> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:9> ; } else if ( ( LA12_0 == '<CHAR_LIT:e>' ) ) { s = <NUM_LIT:10> ; } else if ( ( LA12_0 == '<CHAR_LIT:.>' ) ) { s = <NUM_LIT:11> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:12> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:a>' ) ) { s = <NUM_LIT:15> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:16> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:[>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:20> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:24> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:A>' || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<CHAR_LIT>' ) || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<CHAR_LIT>' ) || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<CHAR_LIT>' ) || LA12_0 == '<CHAR_LIT>' || LA12_0 == '<CHAR_LIT>' || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<CHAR_LIT:Z>' ) || LA12_0 == '<CHAR_LIT:b>' || LA12_0 == '<CHAR_LIT>' || LA12_0 == '<CHAR_LIT>' || LA12_0 == '<CHAR_LIT>' || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<CHAR_LIT>' ) ) ) { s = <NUM_LIT> ; } else if ( ( ( LA12_0 >= '<CHAR_LIT:0>' && LA12_0 <= '<CHAR_LIT:9>' ) ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<STR_LIT:\\>' ) ) { s = <NUM_LIT:30> ; } else if ( ( LA12_0 == '<CHAR_LIT:/>' ) ) { s = <NUM_LIT:31> ; } else if ( ( ( LA12_0 >= '<STR_LIT:\t>' && LA12_0 <= '<STR_LIT:\n>' ) || LA12_0 == '<STR_LIT>' || LA12_0 == '<CHAR_LIT:U+0020>' ) ) { s = <NUM_LIT:32> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT::>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:;>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:U+002C>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:(>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:)>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:}>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:=>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:>>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<STR_LIT>' ) || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<STR_LIT>' ) || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<CHAR_LIT>' ) || LA12_0 == '<STR_LIT:\">' || LA12_0 == '<STR_LIT>' || LA12_0 == '<CHAR_LIT>' || LA12_0 == '<CHAR_LIT:]>' || LA12_0 == '<CHAR_LIT>' || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<STR_LIT>' ) ) ) { s = <NUM_LIT> ; } if ( s >= <NUM_LIT:0> ) return s ; break ; } NoViableAltException nvae = new NoViableAltException ( getDescription ( ) , <NUM_LIT:12> , _s , input ) ; error ( nvae ) ; throw nvae ; } } } </s> |
<s> package org . sqlproc . dsl . ui . contentassist . antlr ; import java . util . Collection ; import java . util . Collections ; import org . eclipse . xtext . AbstractRule ; import org . eclipse . xtext . ui . codetemplates . ui . partialEditing . IPartialContentAssistParser ; import org . eclipse . xtext . ui . editor . contentassist . antlr . FollowElement ; import org . eclipse . xtext . ui . editor . contentassist . antlr . internal . AbstractInternalContentAssistParser ; import org . eclipse . xtext . util . PolymorphicDispatcher ; public class PartialProcessorDslContentAssistParser extends ProcessorDslParser implements IPartialContentAssistParser { private AbstractRule rule ; public void initializeFor ( AbstractRule rule ) { this . rule = rule ; } @ Override protected Collection < FollowElement > getFollowElements ( AbstractInternalContentAssistParser parser ) { if ( rule == null || rule . eIsProxy ( ) ) return Collections . emptyList ( ) ; String methodName = "<STR_LIT>" + rule . getName ( ) ; PolymorphicDispatcher < Collection < FollowElement > > dispatcher = new PolymorphicDispatcher < Collection < FollowElement > > ( methodName , <NUM_LIT:0> , <NUM_LIT:0> , Collections . singletonList ( parser ) ) ; dispatcher . invoke ( ) ; return parser . getFollowElements ( ) ; } } </s> |
<s> package org . sqlproc . dsl . ui . contentassist . antlr ; import java . util . Collection ; import java . util . Map ; import java . util . HashMap ; import org . antlr . runtime . RecognitionException ; import org . eclipse . xtext . AbstractElement ; import org . eclipse . xtext . ui . editor . contentassist . antlr . AbstractContentAssistParser ; import org . eclipse . xtext . ui . editor . contentassist . antlr . FollowElement ; import org . eclipse . xtext . ui . editor . contentassist . antlr . internal . AbstractInternalContentAssistParser ; import com . google . inject . Inject ; import org . sqlproc . dsl . services . ProcessorDslGrammarAccess ; public class ProcessorDslParser extends AbstractContentAssistParser { @ Inject private ProcessorDslGrammarAccess grammarAccess ; private Map < AbstractElement , String > nameMappings ; @ Override protected org . sqlproc . dsl . ui . contentassist . antlr . internal . InternalProcessorDslParser createParser ( ) { org . sqlproc . dsl . ui . contentassist . antlr . internal . InternalProcessorDslParser result = new org . sqlproc . dsl . ui . contentassist . antlr . internal . InternalProcessorDslParser ( null ) ; result . setGrammarAccess ( grammarAccess ) ; return result ; } @ Override protected String getRuleName ( AbstractElement element ) { if ( nameMappings == null ) { nameMappings = new HashMap < AbstractElement , String > ( ) { private static final long serialVersionUID = <NUM_LIT:1L> ; { put ( grammarAccess . getArtifactsAccess ( ) . getAlternatives_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getAlternatives_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyValueAccess ( ) . getAlternatives_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyValueAccess ( ) . getAlternatives_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoDefinitionAccess ( ) . getClassAlternatives_2_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoUsageAccess ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoUsageExtAccess ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlFragmentAccess ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlFragmentAccess ( ) . getAlternatives_5_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlValueAccess ( ) . getAlternatives_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlValueAccess ( ) . getAlternatives_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlFragmentAccess ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlFragmentAccess ( ) . getAlternatives_4_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlValueAccess ( ) . getAlternatives_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlValueAccess ( ) . getAlternatives_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlCondAccess ( ) . getOperAlternatives_3_0_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlBoolAccess ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOrdSql2Access ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOrdSqlValueAccess ( ) . getAlternatives_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOrdSqlValueAccess ( ) . getAlternatives_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnAccess ( ) . getNameAlternatives_0_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnAccess ( ) . getValsAlternatives_1_2_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantAccess ( ) . getCaseAlternatives_0_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantAccess ( ) . getNameAlternatives_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantAccess ( ) . getValsAlternatives_2_2_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierAccess ( ) . getModeAlternatives_0_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierAccess ( ) . getCaseAlternatives_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierAccess ( ) . getNameAlternatives_2_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierAccess ( ) . getValsAlternatives_3_2_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabaseColumnAccess ( ) . getNameAlternatives_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabaseTableAccess ( ) . getNameAlternatives_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingItemAccess ( ) . getColAlternatives_0_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingColumnAccess ( ) . getNameAlternatives_0_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingColumnAccess ( ) . getValsAlternatives_1_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getFeatureValueAccess ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getAlternatives_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getNativeAlternatives_0_0_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getAlternatives_0_1_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getAlternatives_0_1_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPackageDeclarationAccess ( ) . getNameAlternatives_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPackageDeclarationAccess ( ) . getSuffixAlternatives_2_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getAbstractPojoEntityAccess ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityModifier1Access ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityModifier2Access ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityModifier2Access ( ) . getDiscriminatorAlternatives_1_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyModifierAccess ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getAlternatives_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getNativeAlternatives_1_0_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getAlternatives_1_1_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getAlternatives_1_1_0_1_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getAlternatives_1_1_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getQualifiedNameAccess ( ) . getAlternatives ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_4 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_5 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_6 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_7 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_8 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getGroup_1_9 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlTypeAssignementAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlTypeAssignementAccess ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnTypeAssignementAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getTableAssignementAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getJoinTableAssignementAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getJoinTableAssignementAccess ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnAssignementAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getImportAssignementAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getImportAssignementAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getExportAssignementAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getExportAssignementAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getInheritanceAssignementAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getInheritanceAssignementAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getManyToManyAssignementAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getManyToManyAssignementAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getGroup_0_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getGroup_0_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getGroup_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getGroup_4 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getGroup_5 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getGroup_6 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_1_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_2_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_4 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_4_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_5 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_5_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_6 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_6_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_7 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_7_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_8 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_8_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_9 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_9_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_10 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_10_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_11 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_11_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_12 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_12_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_13 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_13_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_14 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_14_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_15 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_15_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_16 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_16_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_17 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_17_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_18 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_18_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_19 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_19_5 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_20 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_20_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_21 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_21_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getGroup_22 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyValueAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyValueAccess ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoDefinitionAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnUsageAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierUsageAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantUsageAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingUsageAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnUsageExtAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierUsageExtAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantUsageExtAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingUsageExtAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getTableDefinitionAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getTableUsageAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getTableUsageAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaStatementAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaStatementAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_4 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_5 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlFragmentAccess ( ) . getGroup_5_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlValueAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlValueAccess ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getGroup_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getGroup_0_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getGroup_1_4 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getGroup_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getGroup_2_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getGroup_3_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getGroup_4 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getGroup_5 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_4 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_4_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlFragmentAccess ( ) . getGroup_5 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlValueAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlValueAccess ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_0_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_1_4 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_2_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getGroup_3_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlCondAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlCondAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlBoolAccess ( ) . getGroup_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlBoolAccess ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlBoolAccess ( ) . getGroup_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOrdSql2Access ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOrdSql2Access ( ) . getGroup_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOrdSql2Access ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOrdSqlValueAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOrdSqlValueAccess ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnAccess ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnAccess ( ) . getGroup_1_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantAccess ( ) . getGroup_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantAccess ( ) . getGroup_2_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierAccess ( ) . getGroup_3_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingRuleAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingRuleAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingAccess ( ) . getGroup_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingItemAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingItemAccess ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingItemAccess ( ) . getGroup_1_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingColumnAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingColumnAccess ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOptionalFeatureAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOptionalFeatureAccess ( ) . getGroup_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getGroup_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getGroup_0_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getGroup_0_1_0_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getGroup_0_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getGroup_0_1_1_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPackageDeclarationAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPackageDeclarationAccess ( ) . getGroup_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getImportAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getImplementsAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getExtendsAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityModifier2Access ( ) . getGroup_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityModifier2Access ( ) . getGroup_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityModifier2Access ( ) . getGroup_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1_0_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1_0_1_0_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getGroup_1_1_1_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getQualifiedNameWithWildcardAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getFeaturesAssignment_1_0_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getStatementsAssignment_1_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getMappingsAssignment_1_2_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getPojosAssignment_1_3_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getUsagesAssignment_1_4_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getPropertiesAssignment_1_5_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getTablesAssignment_1_6_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getTableUsagesAssignment_1_7_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getPojoPackagesAssignment_1_8_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getArtifactsAccess ( ) . getUsagesExtAssignment_1_9_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlTypeAssignementAccess ( ) . getTypeNameAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlTypeAssignementAccess ( ) . getSizeAssignment_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlTypeAssignementAccess ( ) . getTypeAssignment_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnTypeAssignementAccess ( ) . getDbColumnAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnTypeAssignementAccess ( ) . getTypeAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getDbColumnAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getTypeAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getTableAssignementAccess ( ) . getDbTableAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getTableAssignementAccess ( ) . getNewNameAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getJoinTableAssignementAccess ( ) . getDbTableAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getJoinTableAssignementAccess ( ) . getDbTablesAssignment_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnAssignementAccess ( ) . getDbColumnAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnAssignementAccess ( ) . getNewNameAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getImportAssignementAccess ( ) . getDbColumnAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getImportAssignementAccess ( ) . getPkTableAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getImportAssignementAccess ( ) . getPkColumnAssignment_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getExportAssignementAccess ( ) . getDbColumnAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getExportAssignementAccess ( ) . getFkTableAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getExportAssignementAccess ( ) . getFkColumnAssignment_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getInheritanceAssignementAccess ( ) . getDiscriminatorAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getInheritanceAssignementAccess ( ) . getDbTableAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getInheritanceAssignementAccess ( ) . getDbColumnsAssignment_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getManyToManyAssignementAccess ( ) . getPkColumnAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getManyToManyAssignementAccess ( ) . getPkTableAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getManyToManyAssignementAccess ( ) . getFkColumnAssignment_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_2_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getDatabaseAssignment_0_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_3_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getPojogenAssignment_0_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_2_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getDbUrlAssignment_2_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_3_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getDbUsernameAssignment_3_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_4_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getDbPasswordAssignment_4_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_5_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getDbSchemaAssignment_5_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getNameAssignment_6_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabasePropertyAccess ( ) . getDbDriverAssignment_6_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_0_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getSqlTypesAssignment_0_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_1_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getSqlTypesAssignment_1_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_2_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_2_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypesAssignment_2_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_3_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_3_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypeAssignment_3_4 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_4_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTablesAssignment_4_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_5_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTablesAssignment_5_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_6_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getJoinTablesAssignment_6_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_7_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_7_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsAssignment_7_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_8_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_8_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsAssignment_8_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_9_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_9_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsAssignment_9_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_10_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_10_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypesAssignment_10_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_11_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getTablesAssignment_11_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_12_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_12_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnsAssignment_12_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_13_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_13_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getExportsAssignment_13_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_14_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_14_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsAssignment_14_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_15_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_15_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsAssignment_15_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_16_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_16_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getExportsAssignment_16_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_17_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_17_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsAssignment_17_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_18_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_18_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getMany2sAssignment_18_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_19_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbTableAssignment_19_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnAssignment_19_4 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getInheritanceAssignment_19_5_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_20_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getMethodsAssignment_20_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_21_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getToImplementsAssignment_21_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getNameAssignment_22_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojogenPropertyAccess ( ) . getToExtendsAssignment_22_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoDefinitionAccess ( ) . getNameAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoDefinitionAccess ( ) . getClassAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnUsageAccess ( ) . getStatementAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnUsageAccess ( ) . getPojoAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierUsageAccess ( ) . getStatementAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierUsageAccess ( ) . getPojoAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantUsageAccess ( ) . getStatementAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantUsageAccess ( ) . getPojoAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingUsageAccess ( ) . getStatementAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingUsageAccess ( ) . getPojoAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnUsageExtAccess ( ) . getStatementAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnUsageExtAccess ( ) . getPojoAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierUsageExtAccess ( ) . getStatementAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierUsageExtAccess ( ) . getPojoAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantUsageExtAccess ( ) . getStatementAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantUsageExtAccess ( ) . getPojoAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingUsageExtAccess ( ) . getStatementAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingUsageExtAccess ( ) . getPojoAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getTableDefinitionAccess ( ) . getNameAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getTableDefinitionAccess ( ) . getTableAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getTableUsageAccess ( ) . getStatementAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getTableUsageAccess ( ) . getTableAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getTableUsageAccess ( ) . getPrefixAssignment_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaStatementAccess ( ) . getNameAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaStatementAccess ( ) . getTypeAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaStatementAccess ( ) . getFiltersAssignment_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaStatementAccess ( ) . getStatementAssignment_6 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlAccess ( ) . getSqlsAssignment ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlFragmentAccess ( ) . getValueAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlFragmentAccess ( ) . getColAssignment_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlFragmentAccess ( ) . getCnstAssignment_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlFragmentAccess ( ) . getIdentAssignment_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlFragmentAccess ( ) . getMetaAssignment_4_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlFragmentAccess ( ) . getDbtabAssignment_5_1_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getSqlFragmentAccess ( ) . getDbcolAssignment_5_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_0_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getTypeAssignment_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getCondAssignment_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_1_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_1_4_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getTypeAssignment_2_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_2_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getTypeAssignment_3_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_3_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getTypeAssignment_4_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getFtypeAssignment_4_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getIfsAssignment_4_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getTypeAssignment_5_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMetaSqlAccess ( ) . getOrdAssignment_5_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlAccess ( ) . getSqlsAssignment ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlFragmentAccess ( ) . getValueAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlFragmentAccess ( ) . getColAssignment_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlFragmentAccess ( ) . getCnstAssignment_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlFragmentAccess ( ) . getIdentAssignment_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlFragmentAccess ( ) . getDbtabAssignment_4_1_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlFragmentAccess ( ) . getDbcolAssignment_4_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlFragmentAccess ( ) . getMetaAssignment_5_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_0_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getTypeAssignment_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getCondAssignment_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_1_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_1_4_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getTypeAssignment_2_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_2_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getTypeAssignment_3_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsAssignment_3_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlCondAccess ( ) . getBool1Assignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlCondAccess ( ) . getOperAssignment_3_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlCondAccess ( ) . getBool2Assignment_3_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlBoolAccess ( ) . getNotAssignment_0_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlBoolAccess ( ) . getCnstAssignment_0_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlBoolAccess ( ) . getNotAssignment_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlBoolAccess ( ) . getIdentAssignment_1_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlBoolAccess ( ) . getNotAssignment_2_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIfSqlBoolAccess ( ) . getCondAssignment_2_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOrdSqlAccess ( ) . getSqlsAssignment ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOrdSql2Access ( ) . getValueAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOrdSql2Access ( ) . getCnstAssignment_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOrdSql2Access ( ) . getIdentAssignment_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOrdSql2Access ( ) . getDbcolAssignment_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnAccess ( ) . getNameAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnAccess ( ) . getTypeAssignment_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getColumnAccess ( ) . getValsAssignment_1_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantAccess ( ) . getCaseAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantAccess ( ) . getNameAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantAccess ( ) . getTypeAssignment_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getConstantAccess ( ) . getValsAssignment_2_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierAccess ( ) . getModeAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierAccess ( ) . getCaseAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierAccess ( ) . getNameAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierAccess ( ) . getTypeAssignment_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getIdentifierAccess ( ) . getValsAssignment_3_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabaseColumnAccess ( ) . getNameAssignment ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getDatabaseTableAccess ( ) . getNameAssignment ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingRuleAccess ( ) . getNameAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingRuleAccess ( ) . getTypeAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingRuleAccess ( ) . getFiltersAssignment_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingRuleAccess ( ) . getMappingAssignment_6 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingAccess ( ) . getMappingItemsAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingAccess ( ) . getMappingItemsAssignment_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingItemAccess ( ) . getColAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingItemAccess ( ) . getTypeAssignment_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingItemAccess ( ) . getAttrAssignment_1_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingColumnAccess ( ) . getNameAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getMappingColumnAccess ( ) . getValsAssignment_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOptionalFeatureAccess ( ) . getNameAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOptionalFeatureAccess ( ) . getTypeAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOptionalFeatureAccess ( ) . getFiltersAssignment_3_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getOptionalFeatureAccess ( ) . getOptionAssignment_6 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getNativeAssignment_0_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getRefAssignment_0_1_0_1_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getTypeAssignment_0_1_0_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getGrefAssignment_0_1_1_1_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getGtypeAssignment_0_1_1_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoTypeAccess ( ) . getArrayAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPackageDeclarationAccess ( ) . getNameAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPackageDeclarationAccess ( ) . getSuffixAssignment_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPackageDeclarationAccess ( ) . getElementsAssignment_4 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getImportAccess ( ) . getImportedNamespaceAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getImplementsAccess ( ) . getImplementsAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getExtendsAccess ( ) . getExtendsAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityModifier1Access ( ) . getFinalAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityModifier1Access ( ) . getAbstractAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityModifier2Access ( ) . getSuperTypeAssignment_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityModifier2Access ( ) . getDiscriminatorAssignment_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityModifier2Access ( ) . getSernumAssignment_2_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityAccess ( ) . getModifiers1Assignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityAccess ( ) . getNameAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityAccess ( ) . getModifiers2Assignment_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoEntityAccess ( ) . getFeaturesAssignment_5 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyModifierAccess ( ) . getRequiredAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyModifierAccess ( ) . getDiscriminatorAssignment_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyModifierAccess ( ) . getPrimaryKeyAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getNameAssignment_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getNativeAssignment_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getAttrsAssignment_1_1_0_1_0_1_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getRefAssignment_1_1_0_1_0_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getTypeAssignment_1_1_0_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getGrefAssignment_1_1_1_1_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getGtypeAssignment_1_1_1_1_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getArrayAssignment_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPojoPropertyAccess ( ) . getModifiersAssignment_3 ( ) , "<STR_LIT>" ) ; } } ; } return nameMappings . get ( element ) ; } @ Override protected Collection < FollowElement > getFollowElements ( AbstractInternalContentAssistParser parser ) { try { org . sqlproc . dsl . ui . contentassist . antlr . internal . InternalProcessorDslParser typedParser = ( org . sqlproc . dsl . ui . contentassist . antlr . internal . InternalProcessorDslParser ) parser ; typedParser . entryRuleArtifacts ( ) ; return typedParser . getFollowElements ( ) ; } catch ( RecognitionException ex ) { throw new RuntimeException ( ex ) ; } } @ Override protected String [ ] getInitialHiddenTokens ( ) { return new String [ ] { "<STR_LIT>" , "<STR_LIT>" } ; } public ProcessorDslGrammarAccess getGrammarAccess ( ) { return this . grammarAccess ; } public void setGrammarAccess ( ProcessorDslGrammarAccess grammarAccess ) { this . grammarAccess = grammarAccess ; } } </s> |
<s> package org . sqlproc . dsl . ui . contentassist ; import org . eclipse . emf . ecore . EObject ; import org . eclipse . xtext . * ; import org . eclipse . xtext . ui . editor . contentassist . AbstractJavaBasedContentProposalProvider ; import org . eclipse . xtext . ui . editor . contentassist . ICompletionProposalAcceptor ; import org . eclipse . xtext . ui . editor . contentassist . ContentAssistContext ; @ SuppressWarnings ( "<STR_LIT:all>" ) public class AbstractProcessorDslProposalProvider extends AbstractJavaBasedContentProposalProvider { public void completeArtifacts_Features ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeArtifacts_Statements ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeArtifacts_Mappings ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeArtifacts_Pojos ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeArtifacts_Usages ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeArtifacts_Properties ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeArtifacts_Tables ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeArtifacts_TableUsages ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeArtifacts_PojoPackages ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeArtifacts_UsagesExt ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeSqlTypeAssignement_TypeName ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeSqlTypeAssignement_Size ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeSqlTypeAssignement_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeColumnTypeAssignement_DbColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeColumnTypeAssignement_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeShowColumnTypeAssignement_DbColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeShowColumnTypeAssignement_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeTableAssignement_DbTable ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeTableAssignement_NewName ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeJoinTableAssignement_DbTable ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeJoinTableAssignement_DbTables ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeColumnAssignement_DbColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeColumnAssignement_NewName ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeImportAssignement_DbColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeImportAssignement_PkTable ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeImportAssignement_PkColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeExportAssignement_DbColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeExportAssignement_FkTable ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeExportAssignement_FkColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeInheritanceAssignement_Discriminator ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeInheritanceAssignement_DbTable ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeInheritanceAssignement_DbColumns ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeManyToManyAssignement_PkColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeManyToManyAssignement_PkTable ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeManyToManyAssignement_FkColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeProperty_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void completeProperty_Database ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeProperty_Pojogen ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeDatabaseProperty_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void completeDatabaseProperty_DbUrl ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeDatabaseProperty_DbUsername ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeDatabaseProperty_DbPassword ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeDatabaseProperty_DbSchema ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeDatabaseProperty_DbDriver ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void completePojogenProperty_SqlTypes ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_DbTable ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_ColumnTypes ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_ColumnType ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_DbTables ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_JoinTables ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_DbColumns ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_Tables ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_Columns ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_Exports ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_Imports ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_Many2s ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_DbColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_Inheritance ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_Methods ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_ToImplements ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojogenProperty_ToExtends ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoDefinition_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoDefinition_Class ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completeColumnUsage_Statement ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeColumnUsage_Pojo ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIdentifierUsage_Statement ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIdentifierUsage_Pojo ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeConstantUsage_Statement ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeConstantUsage_Pojo ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMappingUsage_Statement ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMappingUsage_Pojo ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeColumnUsageExt_Statement ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeColumnUsageExt_Pojo ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIdentifierUsageExt_Statement ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIdentifierUsageExt_Pojo ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeConstantUsageExt_Statement ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeConstantUsageExt_Pojo ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMappingUsageExt_Statement ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMappingUsageExt_Pojo ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeTableDefinition_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeTableDefinition_Table ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeTableUsage_Statement ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeTableUsage_Table ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeTableUsage_Prefix ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMetaStatement_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMetaStatement_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMetaStatement_Filters ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMetaStatement_Statement ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeSql_Sqls ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeSqlFragment_Value ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeSqlFragment_Col ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeSqlFragment_Cnst ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeSqlFragment_Ident ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeSqlFragment_Meta ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeSqlFragment_Dbtab ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeSqlFragment_Dbcol ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMetaSql_Ifs ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMetaSql_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMetaSql_Cond ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMetaSql_Ftype ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMetaSql_Ord ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfSql_Sqls ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfSqlFragment_Value ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfSqlFragment_Col ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfSqlFragment_Cnst ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfSqlFragment_Ident ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfSqlFragment_Dbtab ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfSqlFragment_Dbcol ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfSqlFragment_Meta ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfMetaSql_Ifs ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfMetaSql_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfMetaSql_Cond ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfSqlCond_Bool1 ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfSqlCond_Oper ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completeIfSqlCond_Bool2 ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfSqlBool_Not ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfSqlBool_Cnst ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfSqlBool_Ident ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIfSqlBool_Cond ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeOrdSql_Sqls ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeOrdSql2_Value ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeOrdSql2_Cnst ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeOrdSql2_Ident ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeOrdSql2_Dbcol ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeColumn_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:2> ) ) , context , acceptor ) ; } public void completeColumn_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeColumn_Vals ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completeConstant_Case ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completeConstant_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completeConstant_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeConstant_Vals ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completeIdentifier_Mode ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:2> ) ) , context , acceptor ) ; } public void completeIdentifier_Case ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completeIdentifier_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:2> ) ) , context , acceptor ) ; } public void completeIdentifier_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeIdentifier_Vals ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completeDatabaseColumn_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completeDatabaseTable_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completeMappingRule_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMappingRule_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMappingRule_Filters ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMappingRule_Mapping ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMapping_MappingItems ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMappingItem_Col ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completeMappingItem_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMappingItem_Attr ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeMappingColumn_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completeMappingColumn_Vals ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completeOptionalFeature_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeOptionalFeature_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeOptionalFeature_Filters ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeOptionalFeature_Option ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoType_Native ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void completePojoType_Ref ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoType_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoType_Gref ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoType_Gtype ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoType_Array ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void completePackageDeclaration_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completePackageDeclaration_Suffix ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completePackageDeclaration_Elements ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeImport_ImportedNamespace ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeImplements_Implements ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeExtends_Extends ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoEntityModifier1_Final ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void completePojoEntityModifier1_Abstract ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void completePojoEntityModifier2_SuperType ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoEntityModifier2_Discriminator ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:0> ) ) , context , acceptor ) ; completeRuleCall ( ( ( RuleCall ) ( ( Alternatives ) assignment . getTerminal ( ) ) . getElements ( ) . get ( <NUM_LIT:1> ) ) , context , acceptor ) ; } public void completePojoEntityModifier2_Sernum ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoEntity_Modifiers1 ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoEntity_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoEntity_Modifiers2 ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoEntity_Features ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoPropertyModifier_Required ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void completePojoPropertyModifier_Discriminator ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void completePojoPropertyModifier_PrimaryKey ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void completePojoProperty_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoProperty_Native ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void completePojoProperty_Attrs ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoProperty_Ref ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoProperty_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoProperty_Gref ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoProperty_Gtype ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { lookupCrossReference ( ( ( CrossReference ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completePojoProperty_Array ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void completePojoProperty_Modifiers ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void complete_Artifacts ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_SqlTypeAssignement ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_ColumnTypeAssignement ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_ShowColumnTypeAssignement ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_TableAssignement ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_JoinTableAssignement ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_ColumnAssignement ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_ImportAssignement ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_ExportAssignement ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_InheritanceAssignement ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_ManyToManyAssignement ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_Property ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_DatabaseProperty ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_PojogenProperty ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_PropertyValue ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_PojoDefinition ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_PojoUsage ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_ColumnUsage ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_IdentifierUsage ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_ConstantUsage ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_MappingUsage ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_PojoUsageExt ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_ColumnUsageExt ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_IdentifierUsageExt ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_ConstantUsageExt ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_MappingUsageExt ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_TableDefinition ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_TableUsage ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_MetaStatement ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_Sql ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_SqlFragment ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_SqlValue ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_MetaSql ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_IfSql ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_IfSqlFragment ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_IfSqlValue ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_IfMetaSql ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_IfSqlCond ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_IfSqlBool ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_OrdSql ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_OrdSql2 ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_OrdSqlValue ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_Column ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_Constant ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_Identifier ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_DatabaseColumn ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_DatabaseTable ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_MappingRule ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_Mapping ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_MappingItem ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_MappingColumn ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_OptionalFeature ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_ON_OFF ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_STATEMEN_TYPE ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_MAPPING_TYPE ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_OPTION_TYPE ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_IDENT_DOT ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_IDENT ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_NUMBER ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_ESC_CHAR ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_ML_COMMENT ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_SL_COMMENT ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_WS ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_AND ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_OR ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_COLON ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_SEMICOLON ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_STRING ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_COMMA ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_MINUS ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_PLUS ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_LPAREN ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_RPAREN ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_LBRACE ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_RBRACE ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_QUESTI ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_NOT ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_BAND ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_BOR ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_HASH ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_AT ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_CARET ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_EQUALS ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_LESS_THAN ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_MORE_THAN ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_PERCENT ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_REST ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_FeatureValue ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_PojoType ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_PackageDeclaration ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_AbstractPojoEntity ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_Import ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_Implements ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_Extends ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_PojoEntityModifier1 ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_PojoEntityModifier2 ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_PojoEntity ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_PojoPropertyModifier ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_PojoProperty ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_QualifiedNameWithWildcard ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_QualifiedName ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } } </s> |
<s> package org . sqlproc . dsl . ui ; import org . eclipse . xtext . ui . guice . AbstractGuiceAwareExecutableExtensionFactory ; import org . osgi . framework . Bundle ; import com . google . inject . Injector ; import org . sqlproc . dsl . ui . internal . ProcessorDslActivator ; public class ProcessorDslExecutableExtensionFactory extends AbstractGuiceAwareExecutableExtensionFactory { @ Override protected Bundle getBundle ( ) { return ProcessorDslActivator . getInstance ( ) . getBundle ( ) ; } @ Override protected Injector getInjector ( ) { return ProcessorDslActivator . getInstance ( ) . getInjector ( ProcessorDslActivator . ORG_SQLPROC_DSL_PROCESSORDSL ) ; } } </s> |
<s> package org . sqlproc . dsl . ui . internal ; import java . util . Collections ; import java . util . Map ; import org . apache . log4j . Logger ; import org . eclipse . ui . plugin . AbstractUIPlugin ; import org . eclipse . xtext . ui . shared . SharedStateModule ; import org . eclipse . xtext . util . Modules2 ; import org . osgi . framework . BundleContext ; import com . google . common . collect . Maps ; import com . google . inject . Guice ; import com . google . inject . Injector ; import com . google . inject . Module ; public class ProcessorDslActivator extends AbstractUIPlugin { public static final String ORG_SQLPROC_DSL_PROCESSORDSL = "<STR_LIT>" ; private static final Logger logger = Logger . getLogger ( ProcessorDslActivator . class ) ; private static ProcessorDslActivator INSTANCE ; private Map < String , Injector > injectors = Collections . synchronizedMap ( Maps . < String , Injector > newHashMapWithExpectedSize ( <NUM_LIT:1> ) ) ; @ Override public void start ( BundleContext context ) throws Exception { super . start ( context ) ; INSTANCE = this ; } @ Override public void stop ( BundleContext context ) throws Exception { injectors . clear ( ) ; INSTANCE = null ; super . stop ( context ) ; } public static ProcessorDslActivator getInstance ( ) { return INSTANCE ; } public Injector getInjector ( String language ) { synchronized ( injectors ) { Injector injector = injectors . get ( language ) ; if ( injector == null ) { injectors . put ( language , injector = createInjector ( language ) ) ; } return injector ; } } protected Injector createInjector ( String language ) { try { Module runtimeModule = getRuntimeModule ( language ) ; Module sharedStateModule = getSharedStateModule ( ) ; Module uiModule = getUiModule ( language ) ; Module mergedModule = Modules2 . mixin ( runtimeModule , sharedStateModule , uiModule ) ; return Guice . createInjector ( mergedModule ) ; } catch ( Exception e ) { logger . error ( "<STR_LIT>" + language ) ; logger . error ( e . getMessage ( ) , e ) ; throw new RuntimeException ( "<STR_LIT>" + language , e ) ; } } protected Module getRuntimeModule ( String grammar ) { if ( ORG_SQLPROC_DSL_PROCESSORDSL . equals ( grammar ) ) { return new org . sqlproc . dsl . ProcessorDslRuntimeModule ( ) ; } throw new IllegalArgumentException ( grammar ) ; } protected Module getUiModule ( String grammar ) { if ( ORG_SQLPROC_DSL_PROCESSORDSL . equals ( grammar ) ) { return new org . sqlproc . dsl . ui . ProcessorDslUiModule ( this ) ; } throw new IllegalArgumentException ( grammar ) ; } protected Module getSharedStateModule ( ) { return new SharedStateModule ( ) ; } } </s> |
<s> package org . sqlproc . dsl . ui . quickfix ; import org . eclipse . xtext . ui . editor . quickfix . DefaultQuickfixProvider ; public class ProcessorDslQuickfixProvider extends DefaultQuickfixProvider { } </s> |
<s> package org . sqlproc . dsl . ui . syntaxcoloring ; import org . eclipse . swt . SWT ; import org . eclipse . swt . graphics . RGB ; import org . eclipse . xtext . ui . editor . syntaxcoloring . DefaultHighlightingConfiguration ; import org . eclipse . xtext . ui . editor . syntaxcoloring . IHighlightingConfigurationAcceptor ; import org . eclipse . xtext . ui . editor . utils . TextStyle ; public class HighlightingConfiguration extends DefaultHighlightingConfiguration { public final static String PUNCTATION = "<STR_LIT>" ; public final static String TYPE = "<STR_LIT:type>" ; public static final String DEFAULT = "<STR_LIT:default>" ; public final static String NAME = "<STR_LIT:name>" ; public static final String COMMENT = "<STR_LIT>" ; public static final String CONSTANT = "<STR_LIT>" ; public static final String IDENTIFIER = "<STR_LIT>" ; public static final String COLUMN = "<STR_LIT>" ; public static final String DATABASE_COLUMN = "<STR_LIT>" ; public static final String DATABASE_TABLE = "<STR_LIT>" ; public final static String FILTER = "<STR_LIT>" ; public final static String META_TYPE = "<STR_LIT>" ; public final static String META_IDENT = "<STR_LIT>" ; public final static String PACKAGE_NAME = "<STR_LIT>" ; public final static String ENTITY_NAME = "<STR_LIT>" ; public final static String TYPE_NAME = "<STR_LIT>" ; public final static String PROPERTY_NAME = "<STR_LIT>" ; public void configure ( IHighlightingConfigurationAcceptor acceptor ) { acceptor . acceptDefaultHighlighting ( PUNCTATION , "<STR_LIT>" , punctationStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( TYPE , "<STR_LIT>" , typeStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( COMMENT , "<STR_LIT>" , commentStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( DEFAULT , "<STR_LIT>" , defaultStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( CONSTANT , "<STR_LIT>" , constantStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( IDENTIFIER , "<STR_LIT>" , identifierStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( COLUMN , "<STR_LIT>" , columnStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( DATABASE_COLUMN , "<STR_LIT>" , databaseColumnStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( DATABASE_TABLE , "<STR_LIT>" , databaseTableStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( NAME , "<STR_LIT>" , nameStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( FILTER , "<STR_LIT>" , filterStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( META_TYPE , "<STR_LIT>" , metaTypeStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( META_IDENT , "<STR_LIT>" , metaIdentStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( PACKAGE_NAME , "<STR_LIT>" , packageNameStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( ENTITY_NAME , "<STR_LIT>" , entityNameStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( TYPE_NAME , "<STR_LIT>" , identifierStyle ( ) ) ; acceptor . acceptDefaultHighlighting ( PROPERTY_NAME , "<STR_LIT>" , propertyNameStyle ( ) ) ; } public TextStyle punctationStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setColor ( new RGB ( <NUM_LIT:100> , <NUM_LIT:100> , <NUM_LIT:100> ) ) ; return textStyle ; } public TextStyle typeStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setStyle ( SWT . ITALIC ) ; return textStyle ; } public TextStyle constantStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setColor ( new RGB ( <NUM_LIT> , <NUM_LIT:0> , <NUM_LIT:255> ) ) ; return textStyle ; } public TextStyle columnStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setColor ( new RGB ( <NUM_LIT> , <NUM_LIT:0> , <NUM_LIT:255> ) ) ; return textStyle ; } public TextStyle identifierStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setColor ( new RGB ( <NUM_LIT> , <NUM_LIT:0> , <NUM_LIT:255> ) ) ; return textStyle ; } public TextStyle databaseColumnStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setColor ( new RGB ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; return textStyle ; } public TextStyle databaseTableStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setColor ( new RGB ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; return textStyle ; } public TextStyle packageNameStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setColor ( new RGB ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; return textStyle ; } public TextStyle entityNameStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setColor ( new RGB ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; return textStyle ; } public TextStyle propertyNameStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setColor ( new RGB ( <NUM_LIT> , <NUM_LIT:0> , <NUM_LIT:255> ) ) ; return textStyle ; } public TextStyle metatTypeStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setColor ( new RGB ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT:20> ) ) ; return textStyle ; } public TextStyle commentStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setColor ( new RGB ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; return textStyle ; } public TextStyle defaultStyle ( ) { TextStyle textStyle = new TextStyle ( ) ; textStyle . setStyle ( SWT . NORMAL ) ; textStyle . setColor ( new RGB ( <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ) ; return textStyle ; } public TextStyle nameStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setColor ( new RGB ( <NUM_LIT> , <NUM_LIT:0> , <NUM_LIT> ) ) ; textStyle . setStyle ( SWT . BOLD ) ; return textStyle ; } public TextStyle filterStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setStyle ( SWT . ITALIC ) ; return textStyle ; } public TextStyle metaTypeStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setColor ( new RGB ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT:30> ) ) ; return textStyle ; } public TextStyle metaIdentStyle ( ) { TextStyle textStyle = defaultStyle ( ) ; textStyle . setColor ( new RGB ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; return textStyle ; } } </s> |
<s> package org . sqlproc . dsl . ui . syntaxcoloring ; import org . eclipse . xtext . ui . editor . syntaxcoloring . DefaultAntlrTokenToAttributeIdMapper ; import org . sqlproc . dsl . parser . antlr . internal . InternalProcessorDslLexer ; public class TokenToIdMapper extends DefaultAntlrTokenToAttributeIdMapper { @ Override protected String calculateId ( String tokenName , int tokenType ) { if ( tokenType == InternalProcessorDslLexer . RULE_BAND || tokenType == InternalProcessorDslLexer . RULE_RBRACE || tokenType == InternalProcessorDslLexer . RULE_CARET || tokenType == InternalProcessorDslLexer . RULE_MORE_THAN || tokenType == InternalProcessorDslLexer . RULE_SEMICOLON || tokenType == InternalProcessorDslLexer . RULE_PLUS || tokenType == InternalProcessorDslLexer . RULE_OR || tokenType == InternalProcessorDslLexer . RULE_HASH || tokenType == InternalProcessorDslLexer . RULE_COMMA || tokenType == InternalProcessorDslLexer . RULE_AND || tokenType == InternalProcessorDslLexer . RULE_QUESTI || tokenType == InternalProcessorDslLexer . RULE_NOT || tokenType == InternalProcessorDslLexer . RULE_MINUS || tokenType == InternalProcessorDslLexer . RULE_COLON || tokenType == InternalProcessorDslLexer . RULE_STRING || tokenType == InternalProcessorDslLexer . RULE_REST || tokenType == InternalProcessorDslLexer . RULE_ESC_CHAR || tokenType == InternalProcessorDslLexer . RULE_NUMBER || tokenType == InternalProcessorDslLexer . RULE_IDENT || tokenType == InternalProcessorDslLexer . RULE_LPAREN || tokenType == InternalProcessorDslLexer . RULE_EQUALS || tokenType == InternalProcessorDslLexer . RULE_LBRACE || tokenType == InternalProcessorDslLexer . RULE_RPAREN || tokenType == InternalProcessorDslLexer . RULE_BOR || tokenType == InternalProcessorDslLexer . RULE_LESS_THAN || tokenType == InternalProcessorDslLexer . RULE_PERCENT || tokenType == InternalProcessorDslLexer . RULE_IDENT_DOT || tokenType == InternalProcessorDslLexer . RULE_AT ) return HighlightingConfiguration . PUNCTATION ; if ( tokenType == InternalProcessorDslLexer . RULE_ML_COMMENT || tokenType == InternalProcessorDslLexer . RULE_SL_COMMENT ) return HighlightingConfiguration . COMMENT ; if ( tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . startsWith ( "<STR_LIT>" ) || tokenName . startsWith ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . startsWith ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) || tokenName . equals ( "<STR_LIT>" ) ) return HighlightingConfiguration . TYPE ; return HighlightingConfiguration . DEFAULT ; } } </s> |
<s> package org . sqlproc . dsl . ui . syntaxcoloring ; import java . util . Iterator ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EObject ; import org . eclipse . emf . ecore . util . EcoreUtil ; import org . eclipse . xtext . nodemodel . ICompositeNode ; import org . eclipse . xtext . nodemodel . INode ; import org . eclipse . xtext . nodemodel . util . NodeModelUtils ; import org . eclipse . xtext . nodemodel . util . NodeTreeIterator ; import org . eclipse . xtext . resource . XtextResource ; import org . eclipse . xtext . ui . editor . syntaxcoloring . IHighlightedPositionAcceptor ; import org . eclipse . xtext . ui . editor . syntaxcoloring . ISemanticHighlightingCalculator ; import org . sqlproc . dsl . processorDsl . Column ; import org . sqlproc . dsl . processorDsl . ColumnUsage ; import org . sqlproc . dsl . processorDsl . ColumnUsageExt ; import org . sqlproc . dsl . processorDsl . Constant ; import org . sqlproc . dsl . processorDsl . ConstantUsage ; import org . sqlproc . dsl . processorDsl . ConstantUsageExt ; import org . sqlproc . dsl . processorDsl . DatabaseColumn ; import org . sqlproc . dsl . processorDsl . DatabaseTable ; import org . sqlproc . dsl . processorDsl . Identifier ; import org . sqlproc . dsl . processorDsl . IdentifierUsage ; import org . sqlproc . dsl . processorDsl . IdentifierUsageExt ; import org . sqlproc . dsl . processorDsl . MappingColumn ; import org . sqlproc . dsl . processorDsl . MappingItem ; import org . sqlproc . dsl . processorDsl . MappingRule ; import org . sqlproc . dsl . processorDsl . MappingUsage ; import org . sqlproc . dsl . processorDsl . MappingUsageExt ; import org . sqlproc . dsl . processorDsl . MetaStatement ; import org . sqlproc . dsl . processorDsl . OptionalFeature ; import org . sqlproc . dsl . processorDsl . PackageDeclaration ; import org . sqlproc . dsl . processorDsl . PojoDefinition ; import org . sqlproc . dsl . processorDsl . PojoEntity ; import org . sqlproc . dsl . processorDsl . PojoProperty ; import org . sqlproc . dsl . processorDsl . TableDefinition ; import org . sqlproc . dsl . processorDsl . TableUsage ; import org . sqlproc . dsl . resolver . PojoResolver ; import org . sqlproc . dsl . resolver . PojoResolverFactory ; import com . google . inject . Inject ; public class SemanticHighlightingCalculator implements ISemanticHighlightingCalculator { public static final String CARET = "<STR_LIT>" ; public static final String STRING = "<STR_LIT:$>" ; @ Inject PojoResolver pojoResolver ; @ Inject PojoResolverFactory pojoResolverFactory ; @ Override public void provideHighlightingFor ( XtextResource resource , IHighlightedPositionAcceptor acceptor ) { if ( pojoResolverFactory != null && pojoResolverFactory . getPojoResolver ( ) == null ) pojoResolverFactory . setPojoResolver ( pojoResolver ) ; if ( resource == null ) return ; Iterator < EObject > iter = EcoreUtil . getAllContents ( resource , true ) ; while ( iter . hasNext ( ) ) { EObject current = iter . next ( ) ; if ( current instanceof MetaStatement ) { MetaStatement statement = ( MetaStatement ) current ; if ( statement . getName ( ) != null ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; acceptor . addPosition ( node . getOffset ( ) , statement . getName ( ) . length ( ) , HighlightingConfiguration . NAME ) ; provideHighlightingForFilters ( statement . getFilters ( ) , node , acceptor ) ; } } else if ( current instanceof MappingRule ) { MappingRule rule = ( MappingRule ) current ; if ( rule . getName ( ) != null ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; acceptor . addPosition ( node . getOffset ( ) , rule . getName ( ) . length ( ) , HighlightingConfiguration . NAME ) ; provideHighlightingForFilters ( rule . getFilters ( ) , node , acceptor ) ; } } else if ( current instanceof OptionalFeature ) { OptionalFeature feature = ( OptionalFeature ) current ; if ( feature . getName ( ) != null ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; acceptor . addPosition ( node . getOffset ( ) , feature . getName ( ) . length ( ) , HighlightingConfiguration . NAME ) ; provideHighlightingForFilters ( feature . getFilters ( ) , node , acceptor ) ; } } else if ( current instanceof Constant ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; provideHighlightingForFragment ( HighlightingConfiguration . CONSTANT , node , acceptor ) ; } else if ( current instanceof Identifier ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; provideHighlightingForFragment ( HighlightingConfiguration . IDENTIFIER , node , acceptor ) ; } else if ( current instanceof Column ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; provideHighlightingForFragment ( HighlightingConfiguration . COLUMN , node , acceptor ) ; } else if ( current instanceof MappingColumn ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; acceptor . addPosition ( node . getOffset ( ) , node . getLength ( ) , HighlightingConfiguration . COLUMN ) ; } else if ( current instanceof MappingItem ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; provideHighlightingForMappingItem ( node , acceptor ) ; } else if ( current instanceof DatabaseColumn ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; acceptor . addPosition ( node . getOffset ( ) , node . getLength ( ) , HighlightingConfiguration . DATABASE_COLUMN ) ; } else if ( current instanceof DatabaseTable ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; acceptor . addPosition ( node . getOffset ( ) , node . getLength ( ) , HighlightingConfiguration . DATABASE_TABLE ) ; } else if ( current instanceof PojoDefinition ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; PojoDefinition pojo = ( PojoDefinition ) current ; provideHighlightingForPojo ( null , pojo . getName ( ) , node , acceptor ) ; } else if ( current instanceof ColumnUsage ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; ColumnUsage usage = ( ColumnUsage ) current ; MetaStatement statement = usage . getStatement ( ) ; PojoDefinition pojo = usage . getPojo ( ) ; if ( statement != null && pojo != null ) provideHighlightingForPojo ( statement . getName ( ) , pojo . getName ( ) , node , acceptor ) ; } else if ( current instanceof IdentifierUsage ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; IdentifierUsage usage = ( IdentifierUsage ) current ; MetaStatement statement = usage . getStatement ( ) ; PojoDefinition pojo = usage . getPojo ( ) ; if ( statement != null && pojo != null ) provideHighlightingForPojo ( statement . getName ( ) , pojo . getName ( ) , node , acceptor ) ; } else if ( current instanceof ConstantUsage ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; ConstantUsage usage = ( ConstantUsage ) current ; MetaStatement statement = usage . getStatement ( ) ; PojoDefinition pojo = usage . getPojo ( ) ; if ( statement != null && pojo != null ) provideHighlightingForPojo ( statement . getName ( ) , pojo . getName ( ) , node , acceptor ) ; } else if ( current instanceof MappingUsage ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; MappingUsage usage = ( MappingUsage ) current ; MappingRule rule = usage . getStatement ( ) ; PojoDefinition pojo = usage . getPojo ( ) ; if ( rule != null && pojo != null ) provideHighlightingForPojo ( rule . getName ( ) , pojo . getName ( ) , node , acceptor ) ; } else if ( current instanceof ColumnUsageExt ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; ColumnUsageExt usage = ( ColumnUsageExt ) current ; MetaStatement statement = usage . getStatement ( ) ; PojoEntity pojo = usage . getPojo ( ) ; if ( statement != null && pojo != null ) provideHighlightingForPojoExt ( statement . getName ( ) , pojo . getName ( ) , node , acceptor ) ; } else if ( current instanceof IdentifierUsageExt ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; IdentifierUsageExt usage = ( IdentifierUsageExt ) current ; MetaStatement statement = usage . getStatement ( ) ; PojoEntity pojo = usage . getPojo ( ) ; if ( statement != null && pojo != null ) provideHighlightingForPojoExt ( statement . getName ( ) , pojo . getName ( ) , node , acceptor ) ; } else if ( current instanceof ConstantUsageExt ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; ConstantUsageExt usage = ( ConstantUsageExt ) current ; MetaStatement statement = usage . getStatement ( ) ; PojoEntity pojo = usage . getPojo ( ) ; if ( statement != null && pojo != null ) provideHighlightingForPojoExt ( statement . getName ( ) , pojo . getName ( ) , node , acceptor ) ; } else if ( current instanceof MappingUsageExt ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; MappingUsageExt usage = ( MappingUsageExt ) current ; MappingRule rule = usage . getStatement ( ) ; PojoEntity pojo = usage . getPojo ( ) ; if ( rule != null && pojo != null ) provideHighlightingForPojoExt ( rule . getName ( ) , pojo . getName ( ) , node , acceptor ) ; } else if ( current instanceof TableDefinition ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; TableDefinition table = ( TableDefinition ) current ; provideHighlightingForTable ( null , table . getName ( ) , node , acceptor ) ; } else if ( current instanceof TableUsage ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; TableUsage usage = ( TableUsage ) current ; MetaStatement statement = usage . getStatement ( ) ; TableDefinition table = usage . getTable ( ) ; if ( statement != null && table != null ) provideHighlightingForTable ( statement . getName ( ) , table . getName ( ) , node , acceptor ) ; } else if ( current instanceof PackageDeclaration ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; PackageDeclaration pkg = ( PackageDeclaration ) current ; provideHighlightingForPojoPackage ( pkg . getName ( ) , node , acceptor ) ; } else if ( current instanceof PojoEntity ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; PojoEntity pojo = ( PojoEntity ) current ; provideHighlightingForPojoEntity ( pojo . getName ( ) , node , acceptor ) ; } else if ( current instanceof PojoProperty ) { ICompositeNode node = NodeModelUtils . getNode ( current ) ; PojoProperty property = ( PojoProperty ) current ; provideHighlightingForPojoProperty ( property . getName ( ) , node , acceptor ) ; PojoEntity ref = property . getRef ( ) ; if ( ref != null ) provideHighlightingForPojoEntity ( ref . getName ( ) , node , acceptor ) ; PojoEntity gref = property . getGref ( ) ; if ( gref != null ) provideHighlightingForPojoEntity ( gref . getName ( ) , node , acceptor ) ; } } } private void provideHighlightingForFilters ( EList < String > filters , ICompositeNode node , IHighlightedPositionAcceptor acceptor ) { if ( filters != null && ! filters . isEmpty ( ) ) { int count = filters . size ( ) ; Iterator < INode > iterator = new NodeTreeIterator ( node ) ; while ( iterator . hasNext ( ) ) { INode inode = iterator . next ( ) ; if ( filters . contains ( inode . getText ( ) ) ) { acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , HighlightingConfiguration . FILTER ) ; if ( -- count <= <NUM_LIT:0> ) return ; } } } } private void provideHighlightingForPojo ( String name , String pojo , ICompositeNode node , IHighlightedPositionAcceptor acceptor ) { if ( name == null && pojo == null ) return ; Iterator < INode > iterator = new NodeTreeIterator ( node ) ; while ( iterator . hasNext ( ) ) { INode inode = iterator . next ( ) ; if ( name != null && name . contains ( inode . getText ( ) ) ) { acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , HighlightingConfiguration . NAME ) ; if ( pojo == null ) return ; } if ( pojo != null && pojo . contains ( inode . getText ( ) ) ) { acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , HighlightingConfiguration . IDENTIFIER ) ; return ; } } } private void provideHighlightingForPojoExt ( String name , String pojo , ICompositeNode node , IHighlightedPositionAcceptor acceptor ) { if ( name == null && pojo == null ) return ; Iterator < INode > iterator = new NodeTreeIterator ( node ) ; while ( iterator . hasNext ( ) ) { INode inode = iterator . next ( ) ; if ( name != null && name . contains ( inode . getText ( ) ) ) { acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , HighlightingConfiguration . NAME ) ; if ( pojo == null ) return ; } if ( pojo != null && pojo . contains ( inode . getText ( ) ) ) { acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , HighlightingConfiguration . ENTITY_NAME ) ; return ; } } } private void provideHighlightingForTypeDefinition ( String definition , ICompositeNode node , IHighlightedPositionAcceptor acceptor ) { if ( definition == null ) return ; Iterator < INode > iterator = new NodeTreeIterator ( node ) ; while ( iterator . hasNext ( ) ) { INode inode = iterator . next ( ) ; if ( definition != null && definition . contains ( inode . getText ( ) ) ) { acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , HighlightingConfiguration . TYPE_NAME ) ; return ; } } } private void provideHighlightingForPojoPackage ( String pojo , ICompositeNode node , IHighlightedPositionAcceptor acceptor ) { if ( pojo == null ) return ; Iterator < INode > iterator = new NodeTreeIterator ( node ) ; while ( iterator . hasNext ( ) ) { INode inode = iterator . next ( ) ; if ( pojo != null && pojo . contains ( inode . getText ( ) ) ) { acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , HighlightingConfiguration . PACKAGE_NAME ) ; return ; } } } private void provideHighlightingForPojoEntity ( String pojo , ICompositeNode node , IHighlightedPositionAcceptor acceptor ) { if ( pojo == null ) return ; Iterator < INode > iterator = new NodeTreeIterator ( node ) ; while ( iterator . hasNext ( ) ) { INode inode = iterator . next ( ) ; if ( pojo != null && pojo . contains ( inode . getText ( ) ) ) { acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , HighlightingConfiguration . ENTITY_NAME ) ; return ; } } } private void provideHighlightingForPojoProperty ( String pojo , ICompositeNode node , IHighlightedPositionAcceptor acceptor ) { if ( pojo == null ) return ; Iterator < INode > iterator = new NodeTreeIterator ( node ) ; while ( iterator . hasNext ( ) ) { INode inode = iterator . next ( ) ; if ( pojo != null && pojo . contains ( inode . getText ( ) ) ) { acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , HighlightingConfiguration . PROPERTY_NAME ) ; return ; } } } private void provideHighlightingForTable ( String name , String table , ICompositeNode node , IHighlightedPositionAcceptor acceptor ) { if ( name == null && table == null ) return ; Iterator < INode > iterator = new NodeTreeIterator ( node ) ; while ( iterator . hasNext ( ) ) { INode inode = iterator . next ( ) ; if ( name != null && name . contains ( inode . getText ( ) ) ) { acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , HighlightingConfiguration . NAME ) ; if ( table == null ) return ; } if ( table != null && table . contains ( inode . getText ( ) ) ) { acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , HighlightingConfiguration . IDENTIFIER ) ; return ; } } } private void provideHighlightingForFragment ( String defaultColor , ICompositeNode node , IHighlightedPositionAcceptor acceptor ) { Iterator < INode > iterator = new NodeTreeIterator ( node ) ; int index = <NUM_LIT:0> ; while ( iterator . hasNext ( ) ) { INode inode = iterator . next ( ) ; if ( CARET . equals ( inode . getText ( ) ) ) { index ++ ; continue ; } switch ( index ) { case <NUM_LIT:1> : acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , HighlightingConfiguration . META_TYPE ) ; break ; case <NUM_LIT:2> : acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , HighlightingConfiguration . META_IDENT ) ; break ; default : acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , defaultColor ) ; } } } private void provideHighlightingForMappingItem ( ICompositeNode node , IHighlightedPositionAcceptor acceptor ) { Iterator < INode > iterator = new NodeTreeIterator ( node ) ; int index = <NUM_LIT:0> ; while ( iterator . hasNext ( ) ) { INode inode = iterator . next ( ) ; if ( STRING . equals ( inode . getText ( ) ) ) { index ++ ; continue ; } switch ( index ) { case <NUM_LIT:1> : acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , HighlightingConfiguration . META_TYPE ) ; break ; default : acceptor . addPosition ( inode . getOffset ( ) , inode . getLength ( ) , HighlightingConfiguration . IDENTIFIER ) ; } } } } </s> |
<s> package org . sqlproc . dsl . ui . templates ; import org . eclipse . jface . text . templates . ContextTypeRegistry ; import org . eclipse . jface . text . templates . Template ; import org . eclipse . jface . text . templates . TemplateContext ; import org . eclipse . jface . text . templates . TemplateProposal ; import org . eclipse . jface . text . templates . persistence . TemplateStore ; import org . eclipse . xtext . ui . editor . contentassist . ContentAssistContext ; import org . eclipse . xtext . ui . editor . contentassist . ITemplateAcceptor ; import org . eclipse . xtext . ui . editor . templates . ContextTypeIdHelper ; import org . eclipse . xtext . ui . editor . templates . DefaultTemplateProposalProvider ; import org . sqlproc . dsl . processorDsl . SqlFragment ; import org . sqlproc . dsl . services . ProcessorDslGrammarAccess ; import com . google . inject . Inject ; public class ProcessorTemplateProposalProvider extends DefaultTemplateProposalProvider { ContextTypeIdHelper helper ; @ Inject public ProcessorTemplateProposalProvider ( TemplateStore templateStore , ContextTypeRegistry registry , ContextTypeIdHelper helper ) { super ( templateStore , registry , helper ) ; this . helper = helper ; } @ Inject ProcessorDslGrammarAccess ga ; @ Override protected void createTemplates ( TemplateContext templateContext , ContentAssistContext context , ITemplateAcceptor acceptor ) { super . createTemplates ( templateContext , context , acceptor ) ; String id = helper . getId ( ga . getSqlValueRule ( ) ) ; if ( templateContext . getContextType ( ) . getId ( ) . equals ( id ) && ( context . getPreviousModel ( ) == null || context . getPreviousModel ( ) instanceof SqlFragment ) ) { Template template = new Template ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , false ) ; TemplateProposal tp = createProposal ( template , templateContext , context , getImage ( template ) , getRelevance ( template ) ) ; acceptor . accept ( tp ) ; template = new Template ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , false ) ; tp = createProposal ( template , templateContext , context , getImage ( template ) , getRelevance ( template ) ) ; acceptor . accept ( tp ) ; template = new Template ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , false ) ; tp = createProposal ( template , templateContext , context , getImage ( template ) , getRelevance ( template ) ) ; acceptor . accept ( tp ) ; template = new Template ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , false ) ; tp = createProposal ( template , templateContext , context , getImage ( template ) , getRelevance ( template ) ) ; acceptor . accept ( tp ) ; template = new Template ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , false ) ; tp = createProposal ( template , templateContext , context , getImage ( template ) , getRelevance ( template ) ) ; acceptor . accept ( tp ) ; } String idDef = helper . getId ( ga . getOptionalFeatureRule ( ) ) ; if ( templateContext . getContextType ( ) . getId ( ) . equals ( idDef ) ) { Template template = new Template ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , false ) ; TemplateProposal tp = createProposal ( template , templateContext , context , getImage ( template ) , getRelevance ( template ) ) ; acceptor . accept ( tp ) ; template = new Template ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , false ) ; tp = createProposal ( template , templateContext , context , getImage ( template ) , getRelevance ( template ) ) ; acceptor . accept ( tp ) ; } String idPkg = helper . getId ( ga . getPackageDeclarationRule ( ) ) ; if ( templateContext . getContextType ( ) . getId ( ) . equals ( idPkg ) ) { Template template = new Template ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , false ) ; TemplateProposal tp = createProposal ( template , templateContext , context , getImage ( template ) , getRelevance ( template ) ) ; acceptor . accept ( tp ) ; } } } </s> |
<s> package org . sqlproc . dsl . ui . templates ; import java . util . ArrayList ; import java . util . HashSet ; import java . util . Iterator ; import java . util . List ; import java . util . Map . Entry ; import java . util . Set ; import java . util . TreeMap ; import org . eclipse . emf . ecore . EObject ; import org . eclipse . jface . text . templates . SimpleTemplateVariableResolver ; import org . eclipse . jface . text . templates . TemplateContext ; import org . eclipse . xtext . EcoreUtil2 ; import org . eclipse . xtext . resource . IEObjectDescription ; import org . eclipse . xtext . scoping . IScope ; import org . eclipse . xtext . scoping . IScopeProvider ; import org . eclipse . xtext . ui . editor . templates . XtextTemplateContext ; import org . eclipse . xtext . ui . editor . templates . XtextTemplateContextType ; import org . sqlproc . dsl . processorDsl . AbstractPojoEntity ; import org . sqlproc . dsl . processorDsl . Artifacts ; import org . sqlproc . dsl . processorDsl . MetaStatement ; import org . sqlproc . dsl . processorDsl . PackageDeclaration ; import org . sqlproc . dsl . processorDsl . PojoEntity ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; import org . sqlproc . dsl . processorDsl . TableDefinition ; import org . sqlproc . dsl . processorDsl . TableUsage ; import org . sqlproc . dsl . property . ModelProperty ; import org . sqlproc . dsl . resolver . DbColumn ; import org . sqlproc . dsl . resolver . DbExport ; import org . sqlproc . dsl . resolver . DbImport ; import org . sqlproc . dsl . resolver . DbResolver ; import org . sqlproc . dsl . resolver . PojoResolver ; import org . sqlproc . dsl . util . Utils ; import com . google . inject . Inject ; public class ProcessorDslTemplateContextType extends XtextTemplateContextType { @ Inject PojoResolver pojoResolver ; @ Inject DbResolver dbResolver ; @ Inject IScopeProvider scopeProvider ; @ Inject ModelProperty modelProperty ; @ Override protected void addDefaultTemplateVariables ( ) { super . addDefaultTemplateVariables ( ) ; super . addResolver ( new DbTableResolver ( ) ) ; super . addResolver ( new PojoColumnResolver ( ) ) ; super . addResolver ( new DbSelectColumnResolver ( ) ) ; super . addResolver ( new DbInsertColumnResolver ( ) ) ; super . addResolver ( new DbUpdateColumnResolver ( ) ) ; super . addResolver ( new DbCondColumnResolver ( ) ) ; super . addResolver ( new DbVerUpdateColumnResolver ( ) ) ; super . addResolver ( new DbOptUpdateColumnResolver ( ) ) ; super . addResolver ( new DbOptCondColumnResolver ( ) ) ; super . addResolver ( new PojoDefinitionsResolver ( ) ) ; super . addResolver ( new TableDefinitionsResolver ( ) ) ; super . addResolver ( new PojoGeneratorResolver ( ) ) ; } protected Artifacts getArtifacts ( XtextTemplateContext xtextTemplateContext ) { if ( xtextTemplateContext == null ) return null ; EObject object = xtextTemplateContext . getContentAssistContext ( ) . getCurrentModel ( ) ; return EcoreUtil2 . getContainerOfType ( object , Artifacts . class ) ; } protected MetaStatement getMetaStatement ( XtextTemplateContext xtextTemplateContext ) { if ( xtextTemplateContext == null ) return null ; EObject object = xtextTemplateContext . getContentAssistContext ( ) . getCurrentModel ( ) ; MetaStatement statement = EcoreUtil2 . getContainerOfType ( object , MetaStatement . class ) ; return statement ; } protected TableDefinition getTableDefinition ( MetaStatement statement ) { if ( statement == null ) return null ; TableUsage usage = null ; Artifacts artifacts = EcoreUtil2 . getContainerOfType ( statement , Artifacts . class ) ; IScope scope = scopeProvider . getScope ( artifacts , ProcessorDslPackage . Literals . ARTIFACTS__TABLE_USAGES ) ; Iterable < IEObjectDescription > iterable = scope . getAllElements ( ) ; for ( Iterator < IEObjectDescription > iter = iterable . iterator ( ) ; iter . hasNext ( ) ; ) { IEObjectDescription description = iter . next ( ) ; if ( ProcessorDslPackage . Literals . TABLE_USAGE . getName ( ) . equals ( description . getEClass ( ) . getName ( ) ) ) { TableUsage tableUsage = ( TableUsage ) artifacts . eResource ( ) . getResourceSet ( ) . getEObject ( description . getEObjectURI ( ) , true ) ; if ( tableUsage . getStatement ( ) . getName ( ) . equals ( statement . getName ( ) ) ) { usage = tableUsage ; break ; } } } if ( usage != null && usage . getTable ( ) != null && usage . getTable ( ) . getName ( ) != null ) { scope = scopeProvider . getScope ( artifacts , ProcessorDslPackage . Literals . ARTIFACTS__TABLES ) ; iterable = scope . getAllElements ( ) ; for ( Iterator < IEObjectDescription > iter = iterable . iterator ( ) ; iter . hasNext ( ) ; ) { IEObjectDescription description = iter . next ( ) ; if ( ProcessorDslPackage . Literals . TABLE_DEFINITION . getName ( ) . equals ( description . getEClass ( ) . getName ( ) ) ) { TableDefinition tableDefinition = ( TableDefinition ) artifacts . eResource ( ) . getResourceSet ( ) . getEObject ( description . getEObjectURI ( ) , true ) ; if ( usage . getTable ( ) . getName ( ) . equals ( tableDefinition . getName ( ) ) ) { return tableDefinition ; } } } } return null ; } protected String toCamelCase ( String value ) { if ( value == null ) return null ; String [ ] parts = value . split ( "<STR_LIT:_>" ) ; String camelCaseString = "<STR_LIT>" ; for ( String part : parts ) { if ( camelCaseString . length ( ) == <NUM_LIT:0> ) camelCaseString = camelCaseString + part . toLowerCase ( ) ; else if ( part . length ( ) == <NUM_LIT:1> ) camelCaseString = camelCaseString + part . toUpperCase ( ) ; else if ( part . length ( ) > <NUM_LIT:1> ) camelCaseString = camelCaseString + part . substring ( <NUM_LIT:0> , <NUM_LIT:1> ) . toUpperCase ( ) + part . substring ( <NUM_LIT:1> ) . toLowerCase ( ) ; } return camelCaseString ; } protected String toCamelCase ( Class < ? > clazz ) { if ( clazz == null ) return null ; String camelCaseString = clazz . getSimpleName ( ) ; if ( camelCaseString . length ( ) == <NUM_LIT:1> ) camelCaseString = camelCaseString . toLowerCase ( ) ; else if ( camelCaseString . length ( ) > <NUM_LIT:1> ) camelCaseString = camelCaseString . substring ( <NUM_LIT:0> , <NUM_LIT:1> ) . toLowerCase ( ) + camelCaseString . substring ( <NUM_LIT:1> ) ; return camelCaseString ; } protected String getPojoColumns ( List < String > columns ) { if ( columns == null ) return null ; StringBuilder builder = new StringBuilder ( ) ; for ( int i = <NUM_LIT:0> ; i < columns . size ( ) ; i ++ ) { builder . append ( '<CHAR_LIT::>' ) . append ( toCamelCase ( columns . get ( i ) ) ) ; if ( i < columns . size ( ) - <NUM_LIT:1> ) builder . append ( "<STR_LIT:U+002CU+0020>" ) ; } return builder . toString ( ) ; } protected String getSelectColumns ( List < String > columns ) { if ( columns == null ) return null ; StringBuilder builder = new StringBuilder ( ) ; for ( int i = <NUM_LIT:0> ; i < columns . size ( ) ; i ++ ) { builder . append ( columns . get ( i ) ) . append ( "<STR_LIT>" ) . append ( toCamelCase ( columns . get ( i ) ) ) ; if ( i < columns . size ( ) - <NUM_LIT:1> ) builder . append ( "<STR_LIT:U+002CU+0020>" ) ; } return builder . toString ( ) ; } protected String getInsertColumns ( List < String > columns ) { if ( columns == null ) return null ; StringBuilder builder = new StringBuilder ( ) ; for ( int i = <NUM_LIT:0> ; i < columns . size ( ) ; i ++ ) { builder . append ( columns . get ( i ) ) ; if ( i < columns . size ( ) - <NUM_LIT:1> ) builder . append ( "<STR_LIT:U+002CU+0020>" ) ; } return builder . toString ( ) ; } protected String getUpdateColumns ( List < String > columns ) { if ( columns == null ) return null ; StringBuilder builder = new StringBuilder ( ) ; for ( int i = <NUM_LIT:0> ; i < columns . size ( ) ; i ++ ) { builder . append ( columns . get ( i ) ) . append ( "<STR_LIT>" ) . append ( toCamelCase ( columns . get ( i ) ) ) ; if ( i < columns . size ( ) - <NUM_LIT:1> ) builder . append ( "<STR_LIT:U+002CU+0020>" ) ; } return builder . toString ( ) ; } protected String getCondColumns ( List < String > columns ) { if ( columns == null ) return null ; StringBuilder builder = new StringBuilder ( ) ; for ( int i = <NUM_LIT:0> ; i < columns . size ( ) ; i ++ ) { builder . append ( "<STR_LIT>" ) . append ( columns . get ( i ) ) . append ( "<STR_LIT>" ) . append ( toCamelCase ( columns . get ( i ) ) ) . append ( "<STR_LIT>" ) ; } return builder . toString ( ) ; } protected String getVerUpdateColumns ( List < String > columns ) { if ( columns == null ) return null ; StringBuilder builder = new StringBuilder ( ) ; for ( int i = <NUM_LIT:0> ; i < columns . size ( ) ; i ++ ) { if ( columns . get ( i ) . toUpperCase ( ) . indexOf ( "<STR_LIT>" ) == <NUM_LIT:0> ) { builder . append ( columns . get ( i ) ) . append ( "<STR_LIT>" ) . append ( toCamelCase ( columns . get ( i ) ) ) . append ( "<STR_LIT>" ) ; break ; } } return builder . toString ( ) ; } protected String getOptUpdateColumns ( List < String > columns ) { if ( columns == null ) return null ; boolean idFind = false ; boolean verFind = false ; StringBuilder builder = new StringBuilder ( ) ; for ( int i = <NUM_LIT:0> ; i < columns . size ( ) ; i ++ ) { if ( ! idFind && ( columns . get ( i ) . toUpperCase ( ) . equals ( "<STR_LIT:ID>" ) || columns . get ( i ) . toUpperCase ( ) . indexOf ( "<STR_LIT>" ) == <NUM_LIT:0> ) ) { idFind = true ; continue ; } if ( ! verFind && columns . get ( i ) . toUpperCase ( ) . indexOf ( "<STR_LIT>" ) == <NUM_LIT:0> ) { verFind = true ; continue ; } builder . append ( columns . get ( i ) ) . append ( "<STR_LIT>" ) . append ( toCamelCase ( columns . get ( i ) ) ) ; if ( i < columns . size ( ) - <NUM_LIT:1> ) builder . append ( "<STR_LIT:U+002CU+0020>" ) ; } return builder . toString ( ) ; } protected String getOptCondColumns ( List < String > columns ) { if ( columns == null ) return null ; boolean idFind = false ; boolean verFind = false ; StringBuilder builder = new StringBuilder ( ) ; for ( int i = <NUM_LIT:0> ; i < columns . size ( ) ; i ++ ) { if ( ! idFind && ( columns . get ( i ) . toUpperCase ( ) . equals ( "<STR_LIT:ID>" ) || columns . get ( i ) . toUpperCase ( ) . indexOf ( "<STR_LIT>" ) == <NUM_LIT:0> ) ) { idFind = true ; builder . append ( "<STR_LIT>" ) . append ( columns . get ( i ) ) . append ( "<STR_LIT>" ) . append ( toCamelCase ( columns . get ( i ) ) ) . append ( "<STR_LIT>" ) ; continue ; } if ( ! verFind && columns . get ( i ) . toUpperCase ( ) . indexOf ( "<STR_LIT>" ) == <NUM_LIT:0> ) { verFind = true ; builder . append ( "<STR_LIT>" ) . append ( columns . get ( i ) ) . append ( "<STR_LIT>" ) . append ( toCamelCase ( columns . get ( i ) ) ) . append ( "<STR_LIT>" ) ; continue ; } } return builder . toString ( ) ; } protected String getPojoDefinitions ( List < Class < ? > > pojoClasses ) { if ( pojoClasses == null ) return null ; TreeMap < String , String > map = new TreeMap < String , String > ( ) ; for ( Class < ? > clazz : pojoClasses ) { map . put ( toCamelCase ( clazz ) , clazz . getName ( ) ) ; } StringBuilder builder = new StringBuilder ( ) ; for ( Entry < String , String > pojo : map . entrySet ( ) ) { builder . append ( "<STR_LIT>" ) . append ( pojo . getKey ( ) ) . append ( '<CHAR_LIT:U+0020>' ) . append ( pojo . getValue ( ) ) . append ( "<STR_LIT>" ) ; } return builder . toString ( ) ; } protected String getTableDefinitions ( List < String > tables ) { if ( tables == null ) return null ; TreeMap < String , String > map = new TreeMap < String , String > ( ) ; for ( String table : tables ) { if ( table . toUpperCase ( ) . startsWith ( "<STR_LIT>" ) ) continue ; map . put ( toCamelCase ( table ) , table ) ; } StringBuilder builder = new StringBuilder ( ) ; for ( Entry < String , String > table : map . entrySet ( ) ) { builder . append ( "<STR_LIT>" ) . append ( table . getKey ( ) ) . append ( '<CHAR_LIT:U+0020>' ) . append ( table . getValue ( ) ) . append ( "<STR_LIT>" ) ; } return builder . toString ( ) ; } public class DbTableResolver extends SimpleTemplateVariableResolver { public static final String NAME = "<STR_LIT>" ; public DbTableResolver ( ) { super ( NAME , "<STR_LIT>" ) ; } @ Override protected String resolve ( TemplateContext context ) { TableDefinition tableDefinition = getTableDefinition ( getMetaStatement ( ( XtextTemplateContext ) context ) ) ; if ( tableDefinition != null && dbResolver . isResolveDb ( tableDefinition ) ) { return tableDefinition . getTable ( ) ; } return super . resolve ( context ) ; } @ Override protected boolean isUnambiguous ( TemplateContext context ) { return true ; } } public class DbSelectColumnResolver extends SimpleTemplateVariableResolver { public static final String NAME = "<STR_LIT>" ; public DbSelectColumnResolver ( ) { super ( NAME , "<STR_LIT>" ) ; } @ Override protected String resolve ( TemplateContext context ) { TableDefinition tableDefinition = getTableDefinition ( getMetaStatement ( ( XtextTemplateContext ) context ) ) ; if ( tableDefinition != null && dbResolver . isResolveDb ( tableDefinition ) ) { List < String > dbColumns = dbResolver . getColumns ( tableDefinition , tableDefinition . getTable ( ) ) ; return getSelectColumns ( dbColumns ) ; } return super . resolve ( context ) ; } @ Override protected boolean isUnambiguous ( TemplateContext context ) { return true ; } } public class PojoColumnResolver extends SimpleTemplateVariableResolver { public static final String NAME = "<STR_LIT>" ; public PojoColumnResolver ( ) { super ( NAME , "<STR_LIT>" ) ; } @ Override protected String resolve ( TemplateContext context ) { TableDefinition tableDefinition = getTableDefinition ( getMetaStatement ( ( XtextTemplateContext ) context ) ) ; if ( tableDefinition != null && dbResolver . isResolveDb ( tableDefinition ) ) { List < String > dbColumns = dbResolver . getColumns ( tableDefinition , tableDefinition . getTable ( ) ) ; return getPojoColumns ( dbColumns ) ; } return super . resolve ( context ) ; } @ Override protected boolean isUnambiguous ( TemplateContext context ) { return true ; } } public class DbInsertColumnResolver extends SimpleTemplateVariableResolver { public static final String NAME = "<STR_LIT>" ; public DbInsertColumnResolver ( ) { super ( NAME , "<STR_LIT>" ) ; } @ Override protected String resolve ( TemplateContext context ) { TableDefinition tableDefinition = getTableDefinition ( getMetaStatement ( ( XtextTemplateContext ) context ) ) ; if ( tableDefinition != null && dbResolver . isResolveDb ( tableDefinition ) ) { List < String > dbColumns = dbResolver . getColumns ( tableDefinition , tableDefinition . getTable ( ) ) ; return getInsertColumns ( dbColumns ) ; } return super . resolve ( context ) ; } @ Override protected boolean isUnambiguous ( TemplateContext context ) { return true ; } } public class DbUpdateColumnResolver extends SimpleTemplateVariableResolver { public static final String NAME = "<STR_LIT>" ; public DbUpdateColumnResolver ( ) { super ( NAME , "<STR_LIT>" ) ; } @ Override protected String resolve ( TemplateContext context ) { TableDefinition tableDefinition = getTableDefinition ( getMetaStatement ( ( XtextTemplateContext ) context ) ) ; if ( tableDefinition != null && dbResolver . isResolveDb ( tableDefinition ) ) { List < String > dbColumns = dbResolver . getColumns ( tableDefinition , tableDefinition . getTable ( ) ) ; return getUpdateColumns ( dbColumns ) ; } return super . resolve ( context ) ; } @ Override protected boolean isUnambiguous ( TemplateContext context ) { return true ; } } public class DbCondColumnResolver extends SimpleTemplateVariableResolver { public static final String NAME = "<STR_LIT>" ; public DbCondColumnResolver ( ) { super ( NAME , "<STR_LIT>" ) ; } @ Override protected String resolve ( TemplateContext context ) { TableDefinition tableDefinition = getTableDefinition ( getMetaStatement ( ( XtextTemplateContext ) context ) ) ; if ( tableDefinition != null && dbResolver . isResolveDb ( tableDefinition ) ) { List < String > dbColumns = dbResolver . getColumns ( tableDefinition , tableDefinition . getTable ( ) ) ; return getCondColumns ( dbColumns ) ; } return super . resolve ( context ) ; } @ Override protected boolean isUnambiguous ( TemplateContext context ) { return true ; } } public class DbVerUpdateColumnResolver extends SimpleTemplateVariableResolver { public static final String NAME = "<STR_LIT>" ; public DbVerUpdateColumnResolver ( ) { super ( NAME , "<STR_LIT>" ) ; } @ Override protected String resolve ( TemplateContext context ) { TableDefinition tableDefinition = getTableDefinition ( getMetaStatement ( ( XtextTemplateContext ) context ) ) ; if ( tableDefinition != null && dbResolver . isResolveDb ( tableDefinition ) ) { List < String > dbColumns = dbResolver . getColumns ( tableDefinition , tableDefinition . getTable ( ) ) ; return getVerUpdateColumns ( dbColumns ) ; } return super . resolve ( context ) ; } @ Override protected boolean isUnambiguous ( TemplateContext context ) { return true ; } } public class DbOptUpdateColumnResolver extends SimpleTemplateVariableResolver { public static final String NAME = "<STR_LIT>" ; public DbOptUpdateColumnResolver ( ) { super ( NAME , "<STR_LIT>" ) ; } @ Override protected String resolve ( TemplateContext context ) { TableDefinition tableDefinition = getTableDefinition ( getMetaStatement ( ( XtextTemplateContext ) context ) ) ; if ( tableDefinition != null && dbResolver . isResolveDb ( tableDefinition ) ) { List < String > dbColumns = dbResolver . getColumns ( tableDefinition , tableDefinition . getTable ( ) ) ; return getOptUpdateColumns ( dbColumns ) ; } return super . resolve ( context ) ; } @ Override protected boolean isUnambiguous ( TemplateContext context ) { return true ; } } public class DbOptCondColumnResolver extends SimpleTemplateVariableResolver { public static final String NAME = "<STR_LIT>" ; public DbOptCondColumnResolver ( ) { super ( NAME , "<STR_LIT>" ) ; } @ Override protected String resolve ( TemplateContext context ) { TableDefinition tableDefinition = getTableDefinition ( getMetaStatement ( ( XtextTemplateContext ) context ) ) ; if ( tableDefinition != null && dbResolver . isResolveDb ( tableDefinition ) ) { List < String > dbColumns = dbResolver . getColumns ( tableDefinition , tableDefinition . getTable ( ) ) ; return getOptCondColumns ( dbColumns ) ; } return super . resolve ( context ) ; } @ Override protected boolean isUnambiguous ( TemplateContext context ) { return true ; } } public class PojoDefinitionsResolver extends SimpleTemplateVariableResolver { public static final String NAME = "<STR_LIT>" ; public PojoDefinitionsResolver ( ) { super ( NAME , "<STR_LIT>" ) ; } @ Override protected String resolve ( TemplateContext context ) { Artifacts artifacts = getArtifacts ( ( XtextTemplateContext ) context ) ; if ( artifacts != null && pojoResolver . isResolvePojo ( artifacts ) ) { List < Class < ? > > pojoClasses = pojoResolver . getPojoClasses ( ) ; return getPojoDefinitions ( pojoClasses ) ; } return super . resolve ( context ) ; } @ Override protected boolean isUnambiguous ( TemplateContext context ) { return true ; } } public class TableDefinitionsResolver extends SimpleTemplateVariableResolver { public static final String NAME = "<STR_LIT>" ; public TableDefinitionsResolver ( ) { super ( NAME , "<STR_LIT>" ) ; } @ Override protected String resolve ( TemplateContext context ) { Artifacts artifacts = getArtifacts ( ( XtextTemplateContext ) context ) ; if ( artifacts != null && dbResolver . isResolveDb ( artifacts ) ) { List < String > tables = dbResolver . getTables ( artifacts ) ; return getTableDefinitions ( tables ) ; } return super . resolve ( context ) ; } @ Override protected boolean isUnambiguous ( TemplateContext context ) { return true ; } } protected PackageDeclaration getPackage ( XtextTemplateContext xtextTemplateContext ) { if ( xtextTemplateContext == null ) return null ; EObject object = xtextTemplateContext . getContentAssistContext ( ) . getCurrentModel ( ) ; PackageDeclaration packagex = EcoreUtil2 . getContainerOfType ( object , PackageDeclaration . class ) ; return packagex ; } public class PojoGeneratorResolver extends SimpleTemplateVariableResolver { public static final String NAME = "<STR_LIT>" ; public PojoGeneratorResolver ( ) { super ( NAME , "<STR_LIT>" ) ; } @ Override protected String resolve ( TemplateContext context ) { Artifacts artifacts = getArtifacts ( ( XtextTemplateContext ) context ) ; PackageDeclaration packagex = getPackage ( ( XtextTemplateContext ) context ) ; if ( artifacts != null && dbResolver . isResolveDb ( artifacts ) ) { List < PojoEntity > entitiesToRemove = new ArrayList < PojoEntity > ( ) ; Set < String > finalEntities = new HashSet < String > ( ) ; String suffix = packagex . getSuffix ( ) ; for ( AbstractPojoEntity ape : packagex . getElements ( ) ) { if ( ape instanceof PojoEntity ) { PojoEntity pojo = ( PojoEntity ) ape ; if ( Utils . isFinal ( pojo ) ) { finalEntities . add ( pojo . getName ( ) ) ; } else { entitiesToRemove . add ( pojo ) ; } } } List < String > tables = dbResolver . getTables ( artifacts ) ; if ( tables != null ) { TablePojoConverter converter = new TablePojoConverter ( modelProperty , artifacts , suffix , finalEntities ) ; for ( String table : tables ) { if ( table . toUpperCase ( ) . startsWith ( "<STR_LIT>" ) ) continue ; List < DbColumn > dbColumns = dbResolver . getDbColumns ( artifacts , table ) ; List < String > dbPrimaryKeys = dbResolver . getDbPrimaryKeys ( artifacts , table ) ; List < DbExport > dbExports = dbResolver . getDbExports ( artifacts , table ) ; List < DbImport > dbImports = dbResolver . getDbImports ( artifacts , table ) ; converter . addTableDefinition ( table , dbColumns , dbPrimaryKeys , dbExports , dbImports ) ; } converter . resolveReferencesOnKeys ( ) ; converter . joinTables ( ) ; return converter . getPojoDefinitions ( ) ; } } return super . resolve ( context ) ; } @ Override protected boolean isUnambiguous ( TemplateContext context ) { return true ; } } } </s> |
<s> package org . sqlproc . dsl . ui . templates ; import java . math . BigDecimal ; import java . math . BigInteger ; import java . sql . Types ; import java . util . HashMap ; import java . util . HashSet ; import java . util . LinkedHashMap ; import java . util . List ; import java . util . Map ; import java . util . Map . Entry ; import java . util . Set ; import java . util . Stack ; import java . util . TreeMap ; import org . eclipse . xtext . common . types . JvmType ; import org . sqlproc . dsl . processorDsl . Artifacts ; import org . sqlproc . dsl . property . ModelProperty ; import org . sqlproc . dsl . property . PojoAttrType ; import org . sqlproc . dsl . property . PojoAttribute ; import org . sqlproc . dsl . resolver . DbColumn ; import org . sqlproc . dsl . resolver . DbExport ; import org . sqlproc . dsl . resolver . DbImport ; public class TablePojoConverter { private enum PrimitiveType { BOOLEAN , BYTE , SHORT , INT , LONG , FLOAT , DOUBLE , CHAR , BYTE_ARRAY , CHAR_ARRAY ; public String getName ( ) { if ( this == BYTE_ARRAY ) return "<STR_LIT>" ; if ( this == CHAR_ARRAY ) return "<STR_LIT>" ; return name ( ) . toLowerCase ( ) ; } } private static final String METHOD_TO_STRING = "<STR_LIT>" ; private static final String METHOD_HASH_CODE = "<STR_LIT>" ; private static final String METHOD_EQUALS = "<STR_LIT>" ; private static final String COLLECTION_LIST = "<STR_LIT>" ; private String suffix ; private Set < String > finalEntities ; private Map < String , PojoAttrType > sqlTypes = new HashMap < String , PojoAttrType > ( ) ; private Map < String , Map < String , PojoAttrType > > tableTypes = new HashMap < String , Map < String , PojoAttrType > > ( ) ; private Map < String , Map < String , PojoAttrType > > columnTypes = new HashMap < String , Map < String , PojoAttrType > > ( ) ; private Map < String , String > tableNames = new HashMap < String , String > ( ) ; private Map < String , Map < String , String > > columnNames = new HashMap < String , Map < String , String > > ( ) ; private Set < String > ignoreTables = new HashSet < String > ( ) ; private Set < String > onlyTables = new HashSet < String > ( ) ; private Map < String , Set < String > > ignoreColumns = new HashMap < String , Set < String > > ( ) ; private Map < String , Set < String > > requiredColumns = new HashMap < String , Set < String > > ( ) ; private Map < String , Set < String > > notRequiredColumns = new HashMap < String , Set < String > > ( ) ; private Map < String , Map < String , PojoAttrType > > createColumns = new HashMap < String , Map < String , PojoAttrType > > ( ) ; private Map < String , Map < String , Map < String , String > > > ignoreExports = new HashMap < String , Map < String , Map < String , String > > > ( ) ; private Map < String , Map < String , Map < String , String > > > ignoreImports = new HashMap < String , Map < String , Map < String , String > > > ( ) ; private Map < String , Map < String , Map < String , String > > > createExports = new HashMap < String , Map < String , Map < String , String > > > ( ) ; private Map < String , Map < String , Map < String , String > > > createImports = new HashMap < String , Map < String , Map < String , String > > > ( ) ; private Map < String , Map < String , Map < String , String > > > inheritImports = new HashMap < String , Map < String , Map < String , String > > > ( ) ; private Map < String , Map < String , Map < String , String > > > manyToManyImports = new HashMap < String , Map < String , Map < String , String > > > ( ) ; private Map < String , Map < String , Map < String , List < String > > > > inheritance = new HashMap < String , Map < String , Map < String , List < String > > > > ( ) ; private Map < String , String > inheritanceColumns = new HashMap < String , String > ( ) ; private Set < String > generateMethods = new HashSet < String > ( ) ; private Map < String , JvmType > toImplements = new HashMap < String , JvmType > ( ) ; private JvmType toExtends = null ; private Map < String , List < String > > joinTables = new HashMap < String , List < String > > ( ) ; private Map < String , Map < String , PojoAttribute > > pojos = new TreeMap < String , Map < String , PojoAttribute > > ( ) ; private Map < String , String > pojoExtends = new HashMap < String , String > ( ) ; private Set < String > pojoAbstracts = new HashSet < String > ( ) ; private Map < String , String > pojoDiscriminators = new HashMap < String , String > ( ) ; public TablePojoConverter ( ) { } public TablePojoConverter ( ModelProperty modelProperty , Artifacts artifacts , String suffix , Set < String > finalEntities ) { this . suffix = ( suffix != null ) ? suffix : "<STR_LIT>" ; this . finalEntities = finalEntities ; Map < String , PojoAttrType > sqlTypes = modelProperty . getSqlTypes ( artifacts ) ; if ( sqlTypes != null ) { this . sqlTypes . putAll ( sqlTypes ) ; } Map < String , Map < String , PojoAttrType > > tableTypes = modelProperty . getTableTypes ( artifacts ) ; if ( tableTypes != null ) { this . tableTypes . putAll ( tableTypes ) ; } Map < String , Map < String , PojoAttrType > > columnTypes = modelProperty . getColumnTypes ( artifacts ) ; if ( columnTypes != null ) { this . columnTypes . putAll ( columnTypes ) ; } Map < String , String > tableNames = modelProperty . getTableNames ( artifacts ) ; if ( tableNames != null ) { this . tableNames . putAll ( tableNames ) ; } Map < String , Map < String , String > > columnNames = modelProperty . getColumnNames ( artifacts ) ; if ( columnNames != null ) { this . columnNames . putAll ( columnNames ) ; } Set < String > ignoreTables = modelProperty . getIgnoreTables ( artifacts ) ; if ( ignoreTables != null ) { this . ignoreTables . addAll ( ignoreTables ) ; } Set < String > onlyTables = modelProperty . getOnlyTables ( artifacts ) ; if ( onlyTables != null ) { this . onlyTables . addAll ( onlyTables ) ; } Map < String , Set < String > > ignoreColumns = modelProperty . getIgnoreColumns ( artifacts ) ; if ( ignoreColumns != null ) { this . ignoreColumns . putAll ( ignoreColumns ) ; } Map < String , Set < String > > requiredColumns = modelProperty . getRequiredColumns ( artifacts ) ; if ( requiredColumns != null ) { this . requiredColumns . putAll ( requiredColumns ) ; } Map < String , Set < String > > notRequiredColumns = modelProperty . getNotRequiredColumns ( artifacts ) ; if ( notRequiredColumns != null ) { this . notRequiredColumns . putAll ( notRequiredColumns ) ; } Map < String , Map < String , PojoAttrType > > createColumns = modelProperty . getCreateColumns ( artifacts ) ; if ( createColumns != null ) { this . createColumns . putAll ( createColumns ) ; } Map < String , Map < String , Map < String , String > > > ignoreExports = modelProperty . getIgnoreExports ( artifacts ) ; if ( ignoreExports != null ) { this . ignoreExports . putAll ( ignoreExports ) ; } Map < String , Map < String , Map < String , String > > > ignoreImports = modelProperty . getIgnoreImports ( artifacts ) ; if ( ignoreImports != null ) { this . ignoreImports . putAll ( ignoreImports ) ; } Map < String , Map < String , Map < String , String > > > createExports = modelProperty . getCreateExports ( artifacts ) ; if ( createExports != null ) { this . createExports . putAll ( createExports ) ; } Map < String , Map < String , Map < String , String > > > createImports = modelProperty . getCreateImports ( artifacts ) ; if ( createImports != null ) { this . createImports . putAll ( createImports ) ; } Map < String , Map < String , Map < String , String > > > inheritImports = modelProperty . getInheritImports ( artifacts ) ; if ( inheritImports != null ) { this . inheritImports . putAll ( inheritImports ) ; } Map < String , Map < String , Map < String , String > > > manyToManyImports = modelProperty . getManyToManyImports ( artifacts ) ; if ( manyToManyImports != null ) { this . manyToManyImports . putAll ( manyToManyImports ) ; } Map < String , Map < String , Map < String , List < String > > > > inheritance = modelProperty . getInheritance ( artifacts ) ; if ( inheritance != null ) { this . inheritance . putAll ( inheritance ) ; } Map < String , String > inheritanceColumns = modelProperty . getInheritanceColumns ( artifacts ) ; if ( inheritanceColumns != null ) { this . inheritanceColumns . putAll ( inheritanceColumns ) ; } Set < String > generateMethods = modelProperty . getGenerateMethods ( artifacts ) ; if ( generateMethods != null ) { this . generateMethods . addAll ( generateMethods ) ; } Map < String , JvmType > toImplements = modelProperty . getToImplements ( artifacts ) ; if ( toImplements != null ) { this . toImplements . putAll ( toImplements ) ; } this . toExtends = modelProperty . getToExtends ( artifacts ) ; Map < String , List < String > > joinTables = modelProperty . getJoinTables ( artifacts ) ; if ( joinTables != null ) { this . joinTables . putAll ( joinTables ) ; } for ( Map . Entry < String , Map < String , Map < String , String > > > inheritImport : this . inheritImports . entrySet ( ) ) { for ( Map . Entry < String , Map < String , String > > inherit : inheritImport . getValue ( ) . entrySet ( ) ) { for ( Map . Entry < String , String > tabcol : inherit . getValue ( ) . entrySet ( ) ) { if ( ! this . ignoreExports . containsKey ( tabcol . getKey ( ) ) ) this . ignoreExports . put ( tabcol . getKey ( ) , new HashMap < String , Map < String , String > > ( ) ) ; if ( ! this . ignoreExports . get ( tabcol . getKey ( ) ) . containsKey ( tabcol . getValue ( ) ) ) this . ignoreExports . get ( tabcol . getKey ( ) ) . put ( tabcol . getValue ( ) , new HashMap < String , String > ( ) ) ; this . ignoreExports . get ( tabcol . getKey ( ) ) . get ( tabcol . getValue ( ) ) . put ( inheritImport . getKey ( ) , null ) ; if ( ! this . ignoreColumns . containsKey ( inheritImport . getKey ( ) ) ) this . ignoreColumns . put ( inheritImport . getKey ( ) , new HashSet < String > ( ) ) ; this . ignoreColumns . get ( inheritImport . getKey ( ) ) . add ( inherit . getKey ( ) ) ; } } } for ( Map . Entry < String , Map < String , Map < String , String > > > manyToManyExport : this . manyToManyImports . entrySet ( ) ) { String table = manyToManyExport . getKey ( ) ; if ( ! this . ignoreImports . containsKey ( table ) ) this . ignoreImports . put ( table , null ) ; } } public void addTableDefinition ( String table , List < DbColumn > dbColumns , List < String > dbPrimaryKeys , List < DbExport > dbExports , List < DbImport > dbImports ) { if ( table == null || dbColumns == null ) return ; Map < String , PojoAttribute > attributes = new LinkedHashMap < String , PojoAttribute > ( ) ; for ( DbColumn dbColumn : dbColumns ) { PojoAttribute attribute = convertDbColumnDefinition ( table , dbColumn ) ; if ( attribute != null ) { attributes . put ( dbColumn . getName ( ) , attribute ) ; } else { attribute = convertDbColumnDefault ( table , dbColumn ) ; if ( attribute != null ) attributes . put ( dbColumn . getName ( ) , attribute ) ; } if ( dbPrimaryKeys . contains ( dbColumn . getName ( ) ) ) { attribute . setPrimaryKey ( true ) ; } } if ( createColumns . containsKey ( table ) ) { for ( Map . Entry < String , PojoAttrType > createColumn : createColumns . get ( table ) . entrySet ( ) ) { PojoAttribute attribute = convertDbColumnDefinition ( createColumn . getKey ( ) , createColumn . getValue ( ) ) ; attributes . put ( createColumn . getKey ( ) , attribute ) ; } } pojos . put ( table , attributes ) ; for ( DbImport dbImport : dbImports ) { if ( ignoreImports . containsKey ( table ) && ( ignoreImports . get ( table ) == null || ignoreImports . get ( table ) . containsKey ( dbImport . getFkColumn ( ) ) && ignoreImports . get ( table ) . get ( dbImport . getFkColumn ( ) ) . containsKey ( dbImport . getPkTable ( ) ) ) ) continue ; if ( inheritImports . containsKey ( table ) && inheritImports . get ( table ) . containsKey ( dbImport . getFkColumn ( ) ) && inheritImports . get ( table ) . get ( dbImport . getFkColumn ( ) ) . containsKey ( dbImport . getPkTable ( ) ) ) { PojoAttribute attribute = attributes . get ( dbImport . getFkColumn ( ) ) ; attribute . setParentTable ( dbImport . getPkTable ( ) ) ; } else { PojoAttribute attribute = attributes . get ( dbImport . getFkColumn ( ) ) ; attribute . setPkTable ( dbImport . getPkTable ( ) ) ; } } if ( createImports . containsKey ( table ) ) { for ( Map . Entry < String , Map < String , String > > pentry : createImports . get ( table ) . entrySet ( ) ) { PojoAttribute attribute = attributes . get ( pentry . getKey ( ) ) ; for ( String pkTable : pentry . getValue ( ) . keySet ( ) ) attribute . setPkTable ( pkTable ) ; } } for ( DbExport dbExport : dbExports ) { if ( ignoreExports . containsKey ( table ) && ignoreExports . get ( table ) . containsKey ( dbExport . getPkColumn ( ) ) && ignoreExports . get ( table ) . get ( dbExport . getPkColumn ( ) ) . containsKey ( dbExport . getFkTable ( ) ) ) continue ; if ( manyToManyImports . containsKey ( dbExport . getFkTable ( ) ) ) { if ( manyToManyImports . get ( dbExport . getFkTable ( ) ) . containsKey ( dbExport . getPkColumn ( ) ) ) { for ( Map . Entry < String , String > manyToMany : manyToManyImports . get ( dbExport . getFkTable ( ) ) . get ( dbExport . getPkColumn ( ) ) . entrySet ( ) ) { String fkTable = manyToMany . getKey ( ) ; String fkColumn = manyToMany . getValue ( ) ; if ( ! dbExport . getPkTable ( ) . equals ( fkTable ) ) { PojoAttribute attribute = attributes . get ( dbExport . getPkColumn ( ) ) ; attribute . getFkTables ( ) . put ( fkTable , fkColumn ) ; } } } } else { PojoAttribute attribute = attributes . get ( dbExport . getPkColumn ( ) ) ; attribute . getFkTables ( ) . put ( dbExport . getFkTable ( ) , null ) ; } } if ( createExports . containsKey ( table ) ) { for ( Map . Entry < String , Map < String , String > > pentry : createExports . get ( table ) . entrySet ( ) ) { PojoAttribute attribute = attributes . get ( pentry . getKey ( ) ) ; for ( Map . Entry < String , String > fk : pentry . getValue ( ) . entrySet ( ) ) attribute . getFkTables ( ) . put ( fk . getKey ( ) , fk . getValue ( ) ) ; } } if ( inheritance . containsKey ( table ) ) { Map < String , PojoAttribute > allInheritedAttributes = new LinkedHashMap < String , PojoAttribute > ( ) ; for ( Map . Entry < String , Map < String , List < String > > > inheritance1 : inheritance . get ( table ) . entrySet ( ) ) { String discriminator = inheritance1 . getKey ( ) ; Map < String , PojoAttribute > inheritedAttributes = new LinkedHashMap < String , PojoAttribute > ( ) ; for ( Map . Entry < String , List < String > > tabcols : inheritance1 . getValue ( ) . entrySet ( ) ) { String inheritedTable = tabcols . getKey ( ) ; for ( String dbColumn : tabcols . getValue ( ) ) { if ( attributes . containsKey ( dbColumn ) ) { inheritedAttributes . put ( dbColumn , attributes . get ( dbColumn ) ) ; } } allInheritedAttributes . putAll ( inheritedAttributes ) ; pojos . put ( inheritedTable , inheritedAttributes ) ; pojoDiscriminators . put ( inheritedTable , discriminator ) ; pojoExtends . put ( inheritedTable , tableToCamelCase ( table ) ) ; break ; } } for ( String dbColumn : allInheritedAttributes . keySet ( ) ) { attributes . remove ( dbColumn ) ; } pojoAbstracts . add ( table ) ; } } public void joinTables ( ) { for ( String table : joinTables . keySet ( ) ) { if ( ! pojos . containsKey ( table ) ) continue ; Stack < String > stack = new Stack < String > ( ) ; stack . push ( table ) ; for ( String table1 : joinTables . get ( table ) ) { if ( ! pojos . containsKey ( table1 ) ) break ; stack . push ( table1 ) ; } if ( stack . size ( ) != joinTables . get ( table ) . size ( ) + <NUM_LIT:1> ) continue ; String table0 = stack . pop ( ) ; Set < String > allAttributes = new HashSet < String > ( ) ; allAttributes . addAll ( pojos . get ( table0 ) . keySet ( ) ) ; if ( tableNames . containsKey ( table0 ) ) table0 = tableNames . get ( table0 ) ; while ( stack . size ( ) > <NUM_LIT:0> ) { String table1 = stack . pop ( ) ; String newTable = ( tableNames . containsKey ( table1 ) ? tableNames . get ( table1 ) : table1 ) + "<STR_LIT:_>" + table0 ; Map < String , PojoAttribute > newAttributes = new LinkedHashMap < String , PojoAttribute > ( ) ; for ( Entry < String , PojoAttribute > attr : pojos . get ( table1 ) . entrySet ( ) ) { if ( ! allAttributes . contains ( attr . getKey ( ) ) ) { newAttributes . put ( attr . getKey ( ) , attr . getValue ( ) ) ; allAttributes . add ( attr . getKey ( ) ) ; } } pojos . put ( newTable , newAttributes ) ; pojoExtends . put ( newTable , tableToCamelCase ( table0 ) ) ; if ( ! onlyTables . isEmpty ( ) ) onlyTables . add ( newTable ) ; table0 = newTable ; } } } public void resolveReferencesOnKeys ( ) { for ( String pojo : pojos . keySet ( ) ) { Map < String , PojoAttribute > newAttributes = new HashMap < String , PojoAttribute > ( ) ; for ( PojoAttribute attribute : pojos . get ( pojo ) . values ( ) ) { if ( attribute . getPkTable ( ) != null ) { if ( pojos . containsKey ( attribute . getPkTable ( ) ) ) { attribute . setDependencyClassName ( tableToCamelCase ( attribute . getPkTable ( ) ) ) ; if ( attribute . getName ( ) . length ( ) >= <NUM_LIT:3> ) { if ( attribute . getName ( ) . startsWith ( "<STR_LIT:id>" ) ) { attribute . setName ( lowerFirstChar ( attribute . getName ( ) . substring ( <NUM_LIT:2> ) ) ) ; } else if ( attribute . getName ( ) . endsWith ( "<STR_LIT>" ) ) { attribute . setName ( attribute . getName ( ) . substring ( <NUM_LIT:0> , attribute . getName ( ) . length ( ) - <NUM_LIT:2> ) ) ; } } } } if ( attribute . getParentTable ( ) != null ) { if ( pojos . containsKey ( attribute . getParentTable ( ) ) ) { pojoExtends . put ( pojo , tableToCamelCase ( attribute . getParentTable ( ) ) ) ; pojoAbstracts . add ( attribute . getParentTable ( ) ) ; } } for ( Map . Entry < String , String > fk : attribute . getFkTables ( ) . entrySet ( ) ) { if ( pojos . containsKey ( fk . getKey ( ) ) ) { String referName = null ; if ( fk . getValue ( ) != null ) referName = columnToCamelCase ( fk . getValue ( ) ) ; else { referName = lowerFirstChar ( tableToCamelCase ( fk . getKey ( ) ) ) ; if ( ! referName . endsWith ( "<STR_LIT:s>" ) ) { if ( referName . endsWith ( "<STR_LIT:y>" ) ) { referName = referName . substring ( <NUM_LIT:0> , referName . length ( ) - <NUM_LIT:1> ) ; referName += "<STR_LIT>" ; } else { referName += "<STR_LIT:s>" ; } } } PojoAttribute attrib = new PojoAttribute ( ) ; attrib . setName ( referName ) ; attrib . setClassName ( COLLECTION_LIST + "<STR_LIT>" + tableToCamelCase ( fk . getKey ( ) ) + "<STR_LIT:>>" ) ; newAttributes . put ( columnToDbConv ( attrib . getName ( ) ) , attrib ) ; } } } if ( ! newAttributes . isEmpty ( ) ) pojos . get ( pojo ) . putAll ( newAttributes ) ; } } private String lowerFirstChar ( String s ) { if ( s == null ) return null ; String ss = s . substring ( <NUM_LIT:0> , <NUM_LIT:1> ) . toLowerCase ( ) ; if ( s . length ( ) == <NUM_LIT:1> ) return ss ; ss += s . substring ( <NUM_LIT:1> ) ; return ss ; } public void resolveReferencesOnConvention ( ) { for ( String pojo : pojos . keySet ( ) ) { for ( PojoAttribute attribute : pojos . get ( pojo ) . values ( ) ) { if ( attribute . getName ( ) . startsWith ( "<STR_LIT:id>" ) && attribute . getName ( ) . length ( ) > <NUM_LIT:2> ) { String className = attribute . getName ( ) . substring ( <NUM_LIT:2> ) ; if ( pojo . equals ( className ) ) continue ; Map < String , PojoAttribute > referPojoAttr = pojos . get ( className ) ; if ( referPojoAttr != null ) { String name = className . substring ( <NUM_LIT:0> , <NUM_LIT:1> ) . toLowerCase ( ) ; if ( className . length ( ) > <NUM_LIT:1> ) name += className . substring ( <NUM_LIT:1> ) ; attribute . setName ( name ) ; attribute . setPrimitive ( false ) ; attribute . setDependencyClassName ( className ) ; String referName = pojo . substring ( <NUM_LIT:0> , <NUM_LIT:1> ) . toLowerCase ( ) ; if ( className . length ( ) > <NUM_LIT:1> ) referName += pojo . substring ( <NUM_LIT:1> ) ; PojoAttribute attrib = new PojoAttribute ( ) ; attrib . setName ( referName + "<STR_LIT:s>" ) ; attrib . setClassName ( COLLECTION_LIST + "<STR_LIT>" + pojo + "<STR_LIT:>>" ) ; referPojoAttr . put ( attrib . getName ( ) , attrib ) ; } } } } } public String getPojoDefinitions ( ) { StringBuilder buffer = new StringBuilder ( ) ; boolean isSerializable = false ; if ( ! toImplements . isEmpty ( ) ) { for ( JvmType type : toImplements . values ( ) ) { if ( type . getIdentifier ( ) . endsWith ( "<STR_LIT>" ) ) { isSerializable = true ; continue ; } buffer . append ( "<STR_LIT>" ) . append ( type . getIdentifier ( ) ) ; } } if ( toExtends != null ) { buffer . append ( "<STR_LIT>" ) . append ( toExtends . getIdentifier ( ) ) ; } if ( ! toImplements . isEmpty ( ) || toExtends != null ) { buffer . append ( "<STR_LIT:n>" ) ; } for ( String pojo : pojos . keySet ( ) ) { if ( ! onlyTables . isEmpty ( ) && ! onlyTables . contains ( pojo ) ) continue ; if ( ignoreTables . contains ( pojo ) ) continue ; if ( finalEntities . contains ( tableToCamelCase ( pojo ) ) ) continue ; String pojoName = tableNames . get ( pojo ) ; if ( pojoName == null ) pojoName = pojo ; buffer . append ( "<STR_LIT:n>" ) ; if ( pojoAbstracts . contains ( pojo ) ) buffer . append ( "<STR_LIT>" ) ; buffer . append ( "<STR_LIT>" ) ; buffer . append ( tableToCamelCase ( pojoName ) ) ; if ( pojoExtends . containsKey ( pojo ) ) buffer . append ( "<STR_LIT>" ) . append ( pojoExtends . get ( pojo ) ) ; if ( pojoDiscriminators . containsKey ( pojo ) ) buffer . append ( "<STR_LIT>" ) . append ( pojoDiscriminators . get ( pojo ) ) ; if ( isSerializable ) buffer . append ( "<STR_LIT>" ) ; buffer . append ( "<STR_LIT>" ) ; Set < String > pkeys = new HashSet < String > ( ) ; Set < String > strs = new HashSet < String > ( ) ; for ( Map . Entry < String , PojoAttribute > pentry : pojos . get ( pojo ) . entrySet ( ) ) { if ( ignoreColumns . containsKey ( pojo ) && ignoreColumns . get ( pojo ) . contains ( pentry . getKey ( ) ) ) continue ; PojoAttribute attribute = pentry . getValue ( ) ; String name = ( columnNames . containsKey ( pojo ) ) ? columnNames . get ( pojo ) . get ( pentry . getKey ( ) ) : null ; if ( name == null ) name = attribute . getName ( ) ; else name = columnToCamelCase ( name ) ; buffer . append ( "<STR_LIT>" ) . append ( name ) . append ( '<CHAR_LIT:U+0020>' ) ; if ( attribute . getDependencyClassName ( ) != null ) { buffer . append ( "<STR_LIT>" ) . append ( attribute . getDependencyClassName ( ) ) ; strs . add ( name ) ; } else if ( attribute . isPrimitive ( ) ) { buffer . append ( '<CHAR_LIT:_>' ) . append ( attribute . getClassName ( ) ) ; strs . add ( name ) ; } else { buffer . append ( "<STR_LIT::U+0020>" ) . append ( attribute . getClassName ( ) ) ; if ( ! attribute . getClassName ( ) . startsWith ( COLLECTION_LIST ) ) strs . add ( name ) ; } if ( inheritanceColumns . containsKey ( pojo ) && pentry . getKey ( ) . equals ( inheritanceColumns . get ( pojo ) ) ) { buffer . append ( "<STR_LIT>" ) ; } if ( ( requiredColumns . containsKey ( pojo ) && requiredColumns . get ( pojo ) . contains ( pentry . getKey ( ) ) ) || ( attribute . isRequired ( ) && ! attribute . isPrimaryKey ( ) ) ) { if ( ! notRequiredColumns . containsKey ( pojo ) || ! notRequiredColumns . get ( pojo ) . contains ( pentry . getKey ( ) ) ) buffer . append ( "<STR_LIT>" ) ; } if ( attribute . isPrimaryKey ( ) ) { buffer . append ( "<STR_LIT>" ) ; pkeys . add ( name ) ; } } if ( generateMethods . contains ( METHOD_EQUALS ) && ! pkeys . isEmpty ( ) ) { buffer . append ( "<STR_LIT>" ) . append ( METHOD_EQUALS ) . append ( "<STR_LIT>" ) ; for ( String name : pkeys ) { buffer . append ( "<STR_LIT:U+0020>" ) . append ( name ) ; } } if ( generateMethods . contains ( METHOD_HASH_CODE ) && ! pkeys . isEmpty ( ) ) { buffer . append ( "<STR_LIT>" ) . append ( METHOD_HASH_CODE ) . append ( "<STR_LIT>" ) ; for ( String name : pkeys ) { buffer . append ( "<STR_LIT:U+0020>" ) . append ( name ) ; } } if ( generateMethods . contains ( METHOD_TO_STRING ) && ! strs . isEmpty ( ) ) { buffer . append ( "<STR_LIT>" ) . append ( METHOD_TO_STRING ) . append ( "<STR_LIT>" ) ; for ( String name : strs ) { buffer . append ( "<STR_LIT:U+0020>" ) . append ( name ) ; } } buffer . append ( "<STR_LIT>" ) ; } return buffer . toString ( ) ; } private String tableToCamelCase ( String value ) { if ( value == null ) return null ; String [ ] parts = value . split ( "<STR_LIT:_>" ) ; String camelCaseString = "<STR_LIT>" ; for ( String part : parts ) { if ( camelCaseString . length ( ) == <NUM_LIT:0> ) if ( part . length ( ) > <NUM_LIT:1> ) camelCaseString = camelCaseString + part . substring ( <NUM_LIT:0> , <NUM_LIT:1> ) . toUpperCase ( ) + part . substring ( <NUM_LIT:1> ) . toLowerCase ( ) ; else camelCaseString = camelCaseString + part . toUpperCase ( ) ; else if ( part . length ( ) == <NUM_LIT:1> ) camelCaseString = camelCaseString + part . toUpperCase ( ) ; else if ( part . length ( ) > <NUM_LIT:1> ) camelCaseString = camelCaseString + part . substring ( <NUM_LIT:0> , <NUM_LIT:1> ) . toUpperCase ( ) + part . substring ( <NUM_LIT:1> ) . toLowerCase ( ) ; } return camelCaseString + suffix ; } private String columnToCamelCase ( String value ) { if ( value == null ) return null ; String [ ] parts = value . split ( "<STR_LIT:_>" ) ; String camelCaseString = "<STR_LIT>" ; for ( String part : parts ) { if ( camelCaseString . length ( ) == <NUM_LIT:0> ) camelCaseString = camelCaseString + part . toLowerCase ( ) ; else if ( part . length ( ) == <NUM_LIT:1> ) camelCaseString = camelCaseString + part . toUpperCase ( ) ; else if ( part . length ( ) > <NUM_LIT:1> ) camelCaseString = camelCaseString + part . substring ( <NUM_LIT:0> , <NUM_LIT:1> ) . toUpperCase ( ) + part . substring ( <NUM_LIT:1> ) . toLowerCase ( ) ; } return camelCaseString ; } private String columnToDbConv ( String value ) { if ( value == null ) return null ; String result = "<STR_LIT>" ; int last = <NUM_LIT:0> ; for ( int i = <NUM_LIT:0> , l = value . length ( ) ; i < l ; i ++ ) { if ( Character . isUpperCase ( value . charAt ( i ) ) ) { result = result + value . substring ( last , i ) . toUpperCase ( ) + "<STR_LIT:_>" ; last = i ; } } if ( last < value . length ( ) ) result = result + value . substring ( last ) . toUpperCase ( ) ; return result ; } private PojoAttribute convertDbColumnDefinition ( String dbName , PojoAttrType sqlType ) { PojoAttribute attribute = new PojoAttribute ( ) ; attribute . setName ( columnToCamelCase ( dbName ) ) ; if ( sqlType . getNativeType ( ) != null ) { attribute . setPrimitive ( true ) ; attribute . setClassName ( sqlType . getNativeType ( ) . substring ( <NUM_LIT:1> ) + ( sqlType . isArray ( ) ? "<STR_LIT>" : "<STR_LIT>" ) ) ; } else if ( sqlType . getRef ( ) != null ) { attribute . setPrimitive ( false ) ; attribute . setDependencyClassName ( sqlType . getRef ( ) . getName ( ) ) ; if ( attribute . getDependencyClassName ( ) == null ) { attribute . setDependencyClassName ( sqlType . getText ( ) ) ; } } else { attribute . setPrimitive ( false ) ; attribute . setClassName ( sqlType . getType ( ) . getIdentifier ( ) ) ; } return attribute ; } private PojoAttribute convertDbColumnDefinition ( String table , DbColumn dbColumn ) { if ( dbColumn == null ) return null ; PojoAttrType sqlType = columnTypes . containsKey ( table ) ? columnTypes . get ( table ) . get ( dbColumn . getName ( ) ) : null ; if ( sqlType == null ) sqlType = tableTypes . containsKey ( table ) ? tableTypes . get ( table ) . get ( dbColumn . getType ( ) + dbColumn . getSize ( ) ) : null ; if ( sqlType == null ) sqlType = sqlTypes . get ( dbColumn . getType ( ) + dbColumn . getSize ( ) ) ; if ( sqlType == null ) return null ; PojoAttribute attribute = new PojoAttribute ( ) ; attribute . setName ( columnToCamelCase ( dbColumn . getName ( ) ) ) ; attribute . setRequired ( ! dbColumn . isNullable ( ) ) ; if ( sqlType . getRef ( ) != null ) { attribute . setPrimitive ( false ) ; attribute . setDependencyClassName ( sqlType . getRef ( ) . getName ( ) ) ; } else if ( sqlType . getNativeType ( ) != null ) { attribute . setPrimitive ( true ) ; attribute . setClassName ( sqlType . getNativeType ( ) . substring ( <NUM_LIT:1> ) + ( sqlType . isArray ( ) ? "<STR_LIT>" : "<STR_LIT>" ) ) ; } else { attribute . setPrimitive ( false ) ; attribute . setClassName ( sqlType . getType ( ) . getIdentifier ( ) ) ; } return attribute ; } private PojoAttribute convertDbColumnDefault ( String table , DbColumn dbColumn ) { if ( dbColumn == null ) return null ; PojoAttribute attribute = new PojoAttribute ( ) ; attribute . setName ( columnToCamelCase ( dbColumn . getName ( ) ) ) ; attribute . setRequired ( ! dbColumn . isNullable ( ) ) ; switch ( dbColumn . getSqlType ( ) ) { case Types . BIT : case Types . BOOLEAN : if ( ! dbColumn . isNullable ( ) ) { attribute . setPrimitive ( true ) ; attribute . setClassName ( PrimitiveType . BOOLEAN . getName ( ) ) ; } else { attribute . setPrimitive ( false ) ; attribute . setClassName ( Boolean . class . getName ( ) ) ; } break ; case Types . TINYINT : if ( ! dbColumn . isNullable ( ) ) { attribute . setPrimitive ( true ) ; attribute . setClassName ( PrimitiveType . BYTE . getName ( ) ) ; } else { attribute . setPrimitive ( false ) ; attribute . setClassName ( Byte . class . getName ( ) ) ; } break ; case Types . SMALLINT : if ( ! dbColumn . isNullable ( ) ) { attribute . setPrimitive ( true ) ; attribute . setClassName ( PrimitiveType . SHORT . getName ( ) ) ; } else { attribute . setPrimitive ( false ) ; attribute . setClassName ( Short . class . getName ( ) ) ; } break ; case Types . INTEGER : if ( ! dbColumn . isNullable ( ) ) { attribute . setPrimitive ( true ) ; attribute . setClassName ( PrimitiveType . INT . getName ( ) ) ; } else { attribute . setPrimitive ( false ) ; attribute . setClassName ( Integer . class . getName ( ) ) ; } break ; case Types . BIGINT : if ( ! dbColumn . isNullable ( ) ) { attribute . setPrimitive ( true ) ; attribute . setClassName ( PrimitiveType . LONG . getName ( ) ) ; } else { attribute . setPrimitive ( false ) ; attribute . setClassName ( Long . class . getName ( ) ) ; } break ; case Types . FLOAT : case Types . REAL : if ( ! dbColumn . isNullable ( ) ) { attribute . setPrimitive ( true ) ; attribute . setClassName ( PrimitiveType . FLOAT . getName ( ) ) ; } else { attribute . setPrimitive ( false ) ; attribute . setClassName ( Float . class . getName ( ) ) ; } break ; case Types . DOUBLE : if ( ! dbColumn . isNullable ( ) ) { attribute . setPrimitive ( true ) ; attribute . setClassName ( PrimitiveType . DOUBLE . getName ( ) ) ; } else { attribute . setPrimitive ( false ) ; attribute . setClassName ( Double . class . getName ( ) ) ; } break ; case Types . NUMERIC : attribute . setPrimitive ( false ) ; attribute . setClassName ( BigDecimal . class . getName ( ) ) ; break ; case Types . DECIMAL : attribute . setPrimitive ( false ) ; if ( dbColumn . getSize ( ) < <NUM_LIT:3> ) attribute . setClassName ( Byte . class . getName ( ) ) ; else if ( dbColumn . getSize ( ) < <NUM_LIT:5> ) attribute . setClassName ( Short . class . getName ( ) ) ; else if ( dbColumn . getSize ( ) < <NUM_LIT:10> ) attribute . setClassName ( Integer . class . getName ( ) ) ; else if ( dbColumn . getSize ( ) < <NUM_LIT:20> ) attribute . setClassName ( Long . class . getName ( ) ) ; else attribute . setClassName ( BigInteger . class . getName ( ) ) ; break ; case Types . CHAR : case Types . NCHAR : if ( ! dbColumn . isNullable ( ) && dbColumn . getSize ( ) == <NUM_LIT:1> ) { attribute . setPrimitive ( true ) ; attribute . setClassName ( PrimitiveType . CHAR . getName ( ) ) ; } else { attribute . setPrimitive ( false ) ; attribute . setClassName ( String . class . getName ( ) ) ; } break ; case Types . VARCHAR : case Types . LONGNVARCHAR : case Types . NVARCHAR : attribute . setPrimitive ( false ) ; attribute . setClassName ( String . class . getName ( ) ) ; break ; case Types . DATE : attribute . setPrimitive ( false ) ; attribute . setClassName ( java . util . Date . class . getName ( ) ) ; break ; case Types . TIME : attribute . setPrimitive ( false ) ; attribute . setClassName ( java . sql . Time . class . getName ( ) ) ; break ; case Types . TIMESTAMP : attribute . setPrimitive ( false ) ; attribute . setClassName ( java . sql . Timestamp . class . getName ( ) ) ; break ; case Types . BINARY : case Types . VARBINARY : case Types . LONGVARBINARY : case Types . BLOB : attribute . setPrimitive ( true ) ; attribute . setClassName ( PrimitiveType . BYTE_ARRAY . getName ( ) ) ; break ; case Types . CLOB : attribute . setPrimitive ( false ) ; attribute . setClassName ( String . class . getName ( ) ) ; break ; default : attribute . setPrimitive ( false ) ; if ( dbColumn . getType ( ) . indexOf ( "<STR_LIT>" ) == <NUM_LIT:0> || dbColumn . getType ( ) . indexOf ( "<STR_LIT>" ) == <NUM_LIT:0> ) attribute . setClassName ( java . sql . Timestamp . class . getName ( ) ) ; else attribute . setClassName ( "<STR_LIT>" ) ; } return attribute ; } } </s> |
<s> package org . sqlproc . dsl . ui . labeling ; import org . eclipse . emf . edit . ui . provider . AdapterFactoryLabelProvider ; import org . eclipse . xtext . ui . label . DefaultEObjectLabelProvider ; import org . sqlproc . dsl . processorDsl . Artifacts ; import org . sqlproc . dsl . processorDsl . Column ; import org . sqlproc . dsl . processorDsl . Constant ; import org . sqlproc . dsl . processorDsl . DatabaseColumn ; import org . sqlproc . dsl . processorDsl . DatabaseTable ; import org . sqlproc . dsl . processorDsl . Identifier ; import org . sqlproc . dsl . processorDsl . MappingColumn ; import org . sqlproc . dsl . processorDsl . MappingRule ; import org . sqlproc . dsl . processorDsl . MetaStatement ; import org . sqlproc . dsl . processorDsl . OptionalFeature ; import com . google . inject . Inject ; public class ProcessorDslLabelProvider extends DefaultEObjectLabelProvider { @ Inject public ProcessorDslLabelProvider ( AdapterFactoryLabelProvider delegate ) { super ( delegate ) ; } public String text ( Artifacts ele ) { return "<STR_LIT>" ; } public String text ( MetaStatement ele ) { return ele . getName ( ) ; } public String text ( MappingRule ele ) { return ele . getName ( ) ; } public String text ( OptionalFeature ele ) { return ele . getName ( ) ; } public String text ( Identifier ele ) { return ele . getName ( ) ; } public String text ( Constant ele ) { return ele . getName ( ) ; } public String text ( Column ele ) { return ele . getName ( ) ; } public String text ( MappingColumn ele ) { return ele . getName ( ) ; } public String text ( DatabaseColumn ele ) { return ele . getName ( ) ; } public String text ( DatabaseTable ele ) { return ele . getName ( ) ; } String image ( MetaStatement ele ) { return "<STR_LIT>" ; } String image ( MappingRule ele ) { return "<STR_LIT>" ; } String image ( OptionalFeature ele ) { return "<STR_LIT>" ; } String image ( Identifier ele ) { return "<STR_LIT>" ; } String image ( Constant ele ) { return "<STR_LIT>" ; } String image ( Column ele ) { return "<STR_LIT>" ; } String image ( MappingColumn ele ) { return "<STR_LIT>" ; } String image ( DatabaseColumn ele ) { return "<STR_LIT>" ; } } </s> |
<s> package org . sqlproc . dsl . ui . labeling ; import org . eclipse . xtext . resource . IEObjectDescription ; import org . eclipse . xtext . ui . label . DefaultDescriptionLabelProvider ; public class ProcessorDslDescriptionLabelProvider extends DefaultDescriptionLabelProvider { public String text ( IEObjectDescription ele ) { return "<STR_LIT>" + ele . getName ( ) ; } } </s> |
<s> package org . sqlproc . dsl . ui . resolver ; import java . beans . BeanInfo ; import java . beans . IntrospectionException ; import java . beans . Introspector ; import java . beans . PropertyDescriptor ; import java . lang . annotation . Annotation ; import java . net . MalformedURLException ; import java . net . URL ; import java . net . URLClassLoader ; import java . util . ArrayList ; import java . util . List ; import org . apache . log4j . Logger ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . Path ; import org . eclipse . emf . ecore . EObject ; import org . eclipse . jdt . core . ICompilationUnit ; import org . eclipse . jdt . core . IJavaProject ; import org . eclipse . jdt . core . IPackageFragment ; import org . eclipse . jdt . core . IPackageFragmentRoot ; import org . eclipse . jdt . core . JavaCore ; import org . eclipse . jdt . launching . JavaRuntime ; import org . eclipse . ui . IEditorPart ; import org . eclipse . ui . IFileEditorInput ; import org . eclipse . ui . PlatformUI ; import org . sqlproc . dsl . property . ModelProperty ; import org . sqlproc . dsl . resolver . PojoResolver ; import com . google . inject . Inject ; import com . google . inject . Singleton ; @ Singleton public class WorkspacePojoResolverImpl implements PojoResolver { protected Logger LOGGER = Logger . getLogger ( WorkspacePojoResolverImpl . class ) ; @ Inject ModelProperty modelProperty ; private List < URLClassLoader > allLoaders ; protected void init ( ) { LOGGER . info ( "<STR_LIT>" ) ; List < IJavaProject > javaProjects = new ArrayList < IJavaProject > ( ) ; List < URLClassLoader > loaders = new ArrayList < URLClassLoader > ( ) ; IProject [ ] projects = ResourcesPlugin . getWorkspace ( ) . getRoot ( ) . getProjects ( ) ; for ( IProject project : projects ) { try { project . open ( null ) ; IJavaProject javaProject = JavaCore . create ( project ) ; javaProjects . add ( javaProject ) ; URLClassLoader classLoader = getProjectClassLoader ( javaProject ) ; loaders . add ( classLoader ) ; } catch ( CoreException e ) { LOGGER . warn ( "<STR_LIT>" + project + "<STR_LIT>" + e . getMessage ( ) ) ; } } this . allLoaders = loaders ; } @ SuppressWarnings ( "<STR_LIT:unused>" ) private URLClassLoader getProjectClassLoader ( IJavaProject javaProject ) throws CoreException { String [ ] classPathEntries = JavaRuntime . computeDefaultRuntimeClassPath ( javaProject ) ; List < URL > urlList = new ArrayList < URL > ( ) ; for ( int i = <NUM_LIT:0> ; i < classPathEntries . length ; i ++ ) { String entry = classPathEntries [ i ] ; IPath path = new Path ( entry ) ; URL url ; try { url = path . toFile ( ) . toURI ( ) . toURL ( ) ; urlList . add ( url ) ; } catch ( MalformedURLException e ) { LOGGER . warn ( "<STR_LIT>" + path + "<STR_LIT>" + e . getMessage ( ) ) ; } } ClassLoader parentClassLoader = javaProject . getClass ( ) . getClassLoader ( ) ; URL [ ] urls = ( URL [ ] ) urlList . toArray ( new URL [ urlList . size ( ) ] ) ; URLClassLoader classLoader = new URLClassLoader ( urls , parentClassLoader ) ; return classLoader ; } @ Override public List < URLClassLoader > getAllLoaders ( ) { if ( allLoaders == null ) init ( ) ; return allLoaders ; } @ Override public Class < ? > loadClass ( String name ) { if ( allLoaders == null ) init ( ) ; for ( URLClassLoader loader : allLoaders ) { try { return loader . loadClass ( name ) ; } catch ( ClassNotFoundException ignore ) { } } LOGGER . warn ( "<STR_LIT>" + name + "<STR_LIT>" + allLoaders ) ; return null ; } @ Override public PropertyDescriptor [ ] getPropertyDescriptors ( String name ) { if ( allLoaders == null ) init ( ) ; Class < ? > beanClass = loadClass ( name ) ; if ( beanClass == null ) return null ; PropertyDescriptor [ ] descriptors = null ; BeanInfo beanInfo = null ; try { beanInfo = Introspector . getBeanInfo ( beanClass ) ; } catch ( IntrospectionException e ) { return ( new PropertyDescriptor [ <NUM_LIT:0> ] ) ; } descriptors = beanInfo . getPropertyDescriptors ( ) ; if ( descriptors == null ) { descriptors = new PropertyDescriptor [ <NUM_LIT:0> ] ; } return descriptors ; } @ Override public boolean isResolvePojo ( EObject model ) { if ( ! modelProperty . isDoResolvePojo ( model ) ) { return false ; } if ( allLoaders == null ) { init ( ) ; } return allLoaders != null ; } @ Override public List < Class < ? > > getPojoClasses ( ) { List < Class < ? > > pojos = new ArrayList < Class < ? > > ( ) ; IEditorPart editorPart = PlatformUI . getWorkbench ( ) . getActiveWorkbenchWindow ( ) . getActivePage ( ) . getActiveEditor ( ) ; if ( editorPart != null ) { IFileEditorInput input = ( IFileEditorInput ) editorPart . getEditorInput ( ) ; IProject project = input . getFile ( ) . getProject ( ) ; try { project . open ( null ) ; IJavaProject javaProject = JavaCore . create ( project ) ; URLClassLoader classLoader = getProjectClassLoader ( javaProject ) ; for ( IPackageFragment fragment : javaProject . getPackageFragments ( ) ) { if ( fragment . getKind ( ) == IPackageFragmentRoot . K_SOURCE ) { for ( ICompilationUnit unit : fragment . getCompilationUnits ( ) ) { if ( unit . getTypes ( ) != null && unit . getTypes ( ) . length > <NUM_LIT:0> ) { String classname = unit . getParent ( ) . getElementName ( ) + "<STR_LIT:.>" + unit . getTypes ( ) [ <NUM_LIT:0> ] . getElementName ( ) ; Class < ? > clazz = null ; try { clazz = classLoader . loadClass ( classname ) ; } catch ( ClassNotFoundException ignore ) { } if ( clazz == null ) continue ; for ( Annotation annotation : clazz . getAnnotations ( ) ) { if ( POJO_ANNOTATION_CLASS . equals ( annotation . annotationType ( ) . getName ( ) ) ) { pojos . add ( clazz ) ; break ; } } } } } } } catch ( CoreException e ) { LOGGER . warn ( "<STR_LIT>" + project + "<STR_LIT>" + e . getMessage ( ) ) ; } } return pojos ; } } </s> |
<s> package org . sqlproc . dsl . ui ; import java . net . URL ; import org . apache . log4j . Logger ; import org . apache . log4j . PropertyConfigurator ; import org . eclipse . core . runtime . FileLocator ; import org . osgi . framework . BundleContext ; import org . sqlproc . dsl . ui . internal . ProcessorDslActivator ; public class ProcessorCustomizedActivator extends ProcessorDslActivator { protected Logger LOGGER = Logger . getLogger ( ProcessorCustomizedActivator . class ) ; @ Override public void start ( BundleContext context ) throws Exception { URL confURL = context . getBundle ( ) . getEntry ( "<STR_LIT>" ) ; PropertyConfigurator . configure ( FileLocator . toFileURL ( confURL ) . getFile ( ) ) ; LOGGER . info ( "<STR_LIT>" + FileLocator . toFileURL ( confURL ) . getFile ( ) ) ; super . start ( context ) ; } } </s> |
<s> package org . sqlproc . dsl . ui . contentassist ; import java . beans . PropertyDescriptor ; import java . lang . reflect . ParameterizedType ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . Collection ; import java . util . Collections ; import java . util . Iterator ; import java . util . List ; import org . eclipse . emf . ecore . EObject ; import org . eclipse . emf . ecore . resource . ResourceSet ; import org . eclipse . jface . text . contentassist . ICompletionProposal ; import org . eclipse . xtext . Assignment ; import org . eclipse . xtext . EcoreUtil2 ; import org . eclipse . xtext . RuleCall ; import org . eclipse . xtext . resource . IEObjectDescription ; import org . eclipse . xtext . scoping . IScope ; import org . eclipse . xtext . ui . editor . contentassist . ContentAssistContext ; import org . eclipse . xtext . ui . editor . contentassist . ICompletionProposalAcceptor ; import org . sqlproc . dsl . processorDsl . Artifacts ; import org . sqlproc . dsl . processorDsl . ColumnUsage ; import org . sqlproc . dsl . processorDsl . ColumnUsageExt ; import org . sqlproc . dsl . processorDsl . ConstantUsage ; import org . sqlproc . dsl . processorDsl . ConstantUsageExt ; import org . sqlproc . dsl . processorDsl . ExportAssignement ; import org . sqlproc . dsl . processorDsl . IdentifierUsage ; import org . sqlproc . dsl . processorDsl . IdentifierUsageExt ; import org . sqlproc . dsl . processorDsl . ImportAssignement ; import org . sqlproc . dsl . processorDsl . InheritanceAssignement ; import org . sqlproc . dsl . processorDsl . ManyToManyAssignement ; import org . sqlproc . dsl . processorDsl . MappingRule ; import org . sqlproc . dsl . processorDsl . MappingUsage ; import org . sqlproc . dsl . processorDsl . MappingUsageExt ; import org . sqlproc . dsl . processorDsl . MetaStatement ; import org . sqlproc . dsl . processorDsl . PojoDefinition ; import org . sqlproc . dsl . processorDsl . PojoEntity ; import org . sqlproc . dsl . processorDsl . PojoProperty ; import org . sqlproc . dsl . processorDsl . PojoUsage ; import org . sqlproc . dsl . processorDsl . PojoUsageExt ; import org . sqlproc . dsl . processorDsl . PojogenProperty ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; import org . sqlproc . dsl . processorDsl . ShowColumnTypeAssignement ; import org . sqlproc . dsl . processorDsl . TableDefinition ; import org . sqlproc . dsl . processorDsl . TableUsage ; import org . sqlproc . dsl . resolver . DbExport ; import org . sqlproc . dsl . resolver . DbImport ; import org . sqlproc . dsl . resolver . DbResolver ; import org . sqlproc . dsl . resolver . PojoResolver ; import org . sqlproc . dsl . util . Utils ; import com . google . inject . Inject ; public class ProcessorDslProposalProvider extends AbstractProcessorDslProposalProvider { @ Inject PojoResolver pojoResolver ; @ Inject DbResolver dbResolver ; private static final List < String > ON_OFF = Collections . unmodifiableList ( Arrays . asList ( new String [ ] { "<STR_LIT>" , "<STR_LIT>" } ) ) ; private static final List < String > STATEMEN_TYPE = Collections . unmodifiableList ( Arrays . asList ( new String [ ] { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) ) ; private static final List < String > MAPPING_TYPE = Collections . unmodifiableList ( Arrays . asList ( new String [ ] { "<STR_LIT>" } ) ) ; private static final List < String > OPTION_TYPE = Collections . unmodifiableList ( Arrays . asList ( new String [ ] { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) ) ; private static final List < String > TYPES = Collections . unmodifiableList ( Arrays . asList ( new String [ ] { "<STR_LIT:int>" , "<STR_LIT>" , "<STR_LIT:long>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT:float>" , "<STR_LIT:double>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT:string>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT:date>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT:boolean>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT:text>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) ) ; private static final List < String > F_TYPES = Collections . unmodifiableList ( Arrays . asList ( new String [ ] { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) ) ; private static final List < String > IDENT_VALS = Collections . unmodifiableList ( Arrays . asList ( new String [ ] { "<STR_LIT>" , "<STR_LIT:null>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ) ) ; private static final List < String > COL_VALS = Collections . unmodifiableList ( Arrays . asList ( new String [ ] { "<STR_LIT:id>" } ) ) ; @ Override public void completeMetaStatement_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { addProposalList ( STATEMEN_TYPE , "<STR_LIT>" , context , acceptor ) ; } @ Override public void completeMappingRule_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { addProposalList ( MAPPING_TYPE , "<STR_LIT>" , context , acceptor ) ; } @ Override public void completeOptionalFeature_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { addProposalList ( OPTION_TYPE , "<STR_LIT>" , context , acceptor ) ; } @ Override public void completeColumn_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { addProposalList ( TYPES , "<STR_LIT>" , context , acceptor ) ; } @ Override public void completeConstant_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { addProposalList ( TYPES , "<STR_LIT>" , context , acceptor ) ; } @ Override public void completeIdentifier_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { addProposalList ( TYPES , "<STR_LIT>" , context , acceptor ) ; } @ Override public void completeMappingItem_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { addProposalList ( TYPES , "<STR_LIT>" , context , acceptor ) ; } protected void addProposalList ( List < String > values , String lexerRule , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( values == null ) return ; for ( String value : values ) { String proposal = getValueConverter ( ) . toString ( value , lexerRule ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } @ Override public void completeMetaSql_Ftype ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { addProposalList ( F_TYPES , "<STR_LIT>" , context , acceptor ) ; } @ Override public void completeConstant_Vals ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { addProposalList ( IDENT_VALS , "<STR_LIT>" , context , acceptor ) ; } @ Override public void completeIdentifier_Vals ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { addProposalList ( IDENT_VALS , "<STR_LIT>" , context , acceptor ) ; } @ Override public void completeColumn_Vals ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { addProposalList ( COL_VALS , "<STR_LIT>" , context , acceptor ) ; } @ Override public void completeMappingColumn_Vals ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { addProposalList ( COL_VALS , "<STR_LIT>" , context , acceptor ) ; } @ Override public void completeColumn_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! completeUsage ( model , assignment , context , acceptor , ProcessorDslPackage . Literals . COLUMN_USAGE . getName ( ) , ProcessorDslPackage . Literals . COLUMN_USAGE_EXT . getName ( ) ) ) super . completeColumn_Name ( model , assignment , context , acceptor ) ; } @ Override public void completeConstant_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! completeUsage ( model , assignment , context , acceptor , ProcessorDslPackage . Literals . CONSTANT_USAGE . getName ( ) , ProcessorDslPackage . Literals . CONSTANT_USAGE_EXT . getName ( ) ) ) super . completeConstant_Name ( model , assignment , context , acceptor ) ; } @ Override public void completeIdentifier_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! completeUsage ( model , assignment , context , acceptor , ProcessorDslPackage . Literals . IDENTIFIER_USAGE . getName ( ) , ProcessorDslPackage . Literals . IDENTIFIER_USAGE_EXT . getName ( ) ) ) super . completeIdentifier_Name ( model , assignment , context , acceptor ) ; } public boolean completeUsage ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor , String name , String nameExt ) { if ( ! isResolvePojo ( model ) ) return false ; MetaStatement metaStatement = EcoreUtil2 . getContainerOfType ( model , MetaStatement . class ) ; Artifacts artifacts = EcoreUtil2 . getContainerOfType ( metaStatement , Artifacts . class ) ; PojoDefinition pojoDefinition = findPojo ( artifacts . eResource ( ) . getResourceSet ( ) , getScopeProvider ( ) . getScope ( artifacts , ProcessorDslPackage . Literals . ARTIFACTS__USAGES ) , name , metaStatement . getName ( ) ) ; PojoEntity pojoEntity = ( pojoDefinition != null ) ? null : findEntity ( artifacts . eResource ( ) . getResourceSet ( ) , getScopeProvider ( ) . getScope ( artifacts , ProcessorDslPackage . Literals . ARTIFACTS__USAGES_EXT ) , nameExt , metaStatement . getName ( ) ) ; if ( pojoDefinition == null && pojoEntity == null ) { String proposal = getValueConverter ( ) . toString ( "<STR_LIT>" + model , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; return true ; } String prefix = context . getPrefix ( ) ; int pos = prefix . lastIndexOf ( '<CHAR_LIT:.>' ) ; if ( pos > <NUM_LIT:0> ) { prefix = prefix . substring ( <NUM_LIT:0> , pos + <NUM_LIT:1> ) ; } else { prefix = "<STR_LIT>" ; } if ( pojoDefinition != null ) { String clazz = getClassName ( pojoDefinition . getClass_ ( ) , prefix ) ; if ( clazz == null ) return false ; PropertyDescriptor [ ] descriptors = pojoResolver . getPropertyDescriptors ( clazz ) ; if ( descriptors == null ) { return false ; } else { for ( PropertyDescriptor descriptor : descriptors ) { if ( "<STR_LIT:class>" . equals ( descriptor . getName ( ) ) ) continue ; String proposal = getValueConverter ( ) . toString ( descriptor . getName ( ) , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( prefix + proposal , context ) ; acceptor . accept ( completionProposal ) ; } return true ; } } else { List < PojoProperty > properties = getProperties ( pojoEntity , null ) ; if ( properties . isEmpty ( ) ) { return false ; } for ( PojoProperty pojoProperty : properties ) { String proposal = getValueConverter ( ) . toString ( pojoProperty . getName ( ) , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( prefix + proposal , context ) ; acceptor . accept ( completionProposal ) ; } return true ; } } @ Override public void completeMappingColumn_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolvePojo ( model ) ) { super . completeMappingColumn_Name ( model , assignment , context , acceptor ) ; return ; } MappingRule mappingRule = EcoreUtil2 . getContainerOfType ( model , MappingRule . class ) ; Artifacts artifacts = EcoreUtil2 . getContainerOfType ( mappingRule , Artifacts . class ) ; PojoDefinition pojoDefinition = findPojo ( artifacts . eResource ( ) . getResourceSet ( ) , getScopeProvider ( ) . getScope ( artifacts , ProcessorDslPackage . Literals . ARTIFACTS__USAGES ) , ProcessorDslPackage . Literals . MAPPING_USAGE . getName ( ) , mappingRule . getName ( ) ) ; PojoEntity pojoEntity = ( pojoDefinition != null ) ? null : findEntity ( artifacts . eResource ( ) . getResourceSet ( ) , getScopeProvider ( ) . getScope ( artifacts , ProcessorDslPackage . Literals . ARTIFACTS__USAGES_EXT ) , ProcessorDslPackage . Literals . MAPPING_USAGE_EXT . getName ( ) , mappingRule . getName ( ) ) ; if ( pojoDefinition == null && pojoEntity == null ) { String proposal = getValueConverter ( ) . toString ( "<STR_LIT>" + model , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } String prefix = context . getPrefix ( ) ; int pos = prefix . lastIndexOf ( '<CHAR_LIT:.>' ) ; if ( pos > <NUM_LIT:0> ) { prefix = prefix . substring ( <NUM_LIT:0> , pos + <NUM_LIT:1> ) ; } else { prefix = "<STR_LIT>" ; } if ( pojoDefinition != null ) { String clazz = getClassName ( pojoDefinition . getClass_ ( ) , prefix ) ; if ( clazz == null ) return ; PropertyDescriptor [ ] descriptors = pojoResolver . getPropertyDescriptors ( clazz ) ; if ( descriptors == null ) { super . completeMappingColumn_Name ( model , assignment , context , acceptor ) ; } else { for ( PropertyDescriptor descriptor : descriptors ) { if ( "<STR_LIT:class>" . equals ( descriptor . getName ( ) ) ) continue ; String proposal = getValueConverter ( ) . toString ( descriptor . getName ( ) , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( prefix + proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } else { List < PojoProperty > properties = getProperties ( pojoEntity , null ) ; if ( properties . isEmpty ( ) ) { return ; } for ( PojoProperty pojoProperty : properties ) { String proposal = getValueConverter ( ) . toString ( pojoProperty . getName ( ) , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( prefix + proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } List < PojoProperty > getProperties ( PojoEntity pojoEntity , List < PojoProperty > inproperties ) { List < PojoProperty > properties = ( inproperties != null ) ? inproperties : new ArrayList < PojoProperty > ( ) ; for ( PojoProperty pojoProperty : pojoEntity . getFeatures ( ) ) { properties . add ( pojoProperty ) ; } PojoEntity superType = Utils . getSuperType ( pojoEntity ) ; if ( superType != null ) return getProperties ( superType , properties ) ; return properties ; } protected PojoDefinition findPojo ( ResourceSet resourceSet , IScope scope , String typeName , String name ) { Iterable < IEObjectDescription > iterable = scope . getAllElements ( ) ; for ( Iterator < IEObjectDescription > iter = iterable . iterator ( ) ; iter . hasNext ( ) ; ) { IEObjectDescription description = iter . next ( ) ; if ( typeName . equals ( description . getEClass ( ) . getName ( ) ) ) { PojoUsage pojoUsage = ( PojoUsage ) resourceSet . getEObject ( description . getEObjectURI ( ) , true ) ; if ( name . equals ( getUsageName ( pojoUsage ) ) ) { return pojoUsage . getPojo ( ) ; } } } return null ; } protected PojoEntity findEntity ( ResourceSet resourceSet , IScope scope , String typeName , String name ) { Iterable < IEObjectDescription > iterable = scope . getAllElements ( ) ; for ( Iterator < IEObjectDescription > iter = iterable . iterator ( ) ; iter . hasNext ( ) ; ) { IEObjectDescription description = iter . next ( ) ; if ( typeName . equals ( description . getEClass ( ) . getName ( ) ) ) { PojoUsageExt pojoUsage = ( PojoUsageExt ) resourceSet . getEObject ( description . getEObjectURI ( ) , true ) ; if ( name . equals ( getUsageName ( pojoUsage ) ) ) { return pojoUsage . getPojo ( ) ; } } } return null ; } protected String getUsageName ( EObject pojoUsage ) { if ( pojoUsage instanceof ColumnUsage ) return ( ( ColumnUsage ) pojoUsage ) . getStatement ( ) . getName ( ) ; if ( pojoUsage instanceof IdentifierUsage ) return ( ( IdentifierUsage ) pojoUsage ) . getStatement ( ) . getName ( ) ; if ( pojoUsage instanceof ConstantUsage ) return ( ( ConstantUsage ) pojoUsage ) . getStatement ( ) . getName ( ) ; if ( pojoUsage instanceof MappingUsage ) return ( ( MappingUsage ) pojoUsage ) . getStatement ( ) . getName ( ) ; if ( pojoUsage instanceof ColumnUsageExt ) return ( ( ColumnUsageExt ) pojoUsage ) . getStatement ( ) . getName ( ) ; if ( pojoUsage instanceof IdentifierUsageExt ) return ( ( IdentifierUsageExt ) pojoUsage ) . getStatement ( ) . getName ( ) ; if ( pojoUsage instanceof ConstantUsageExt ) return ( ( ConstantUsageExt ) pojoUsage ) . getStatement ( ) . getName ( ) ; if ( pojoUsage instanceof MappingUsageExt ) return ( ( MappingUsageExt ) pojoUsage ) . getStatement ( ) . getName ( ) ; return "<STR_LIT>" ; } protected boolean isPrimitive ( Class < ? > clazz ) { if ( clazz == null ) return true ; if ( clazz . isPrimitive ( ) ) return true ; if ( clazz == String . class ) return true ; if ( clazz == java . util . Date . class ) return true ; if ( clazz == java . sql . Date . class ) return true ; if ( clazz == java . sql . Time . class ) return true ; if ( clazz == java . sql . Timestamp . class ) return true ; if ( clazz == java . sql . Blob . class ) return true ; if ( clazz == java . sql . Clob . class ) return true ; if ( clazz == java . math . BigDecimal . class ) return true ; if ( clazz == java . math . BigInteger . class ) return true ; return false ; } protected String getClassName ( String baseClass , String property ) { if ( baseClass == null || property == null ) return baseClass ; int pos1 = property . indexOf ( '<CHAR_LIT:.>' ) ; if ( pos1 == - <NUM_LIT:1> ) return baseClass ; String checkProperty = property ; pos1 = checkProperty . indexOf ( '<CHAR_LIT:=>' ) ; if ( pos1 > <NUM_LIT:0> ) { int pos2 = checkProperty . indexOf ( '<CHAR_LIT:.>' , pos1 ) ; if ( pos2 > pos1 ) checkProperty = checkProperty . substring ( <NUM_LIT:0> , pos1 ) + checkProperty . substring ( pos2 ) ; } String innerProperty = null ; pos1 = checkProperty . indexOf ( '<CHAR_LIT:.>' ) ; if ( pos1 > <NUM_LIT:0> ) { innerProperty = checkProperty . substring ( pos1 + <NUM_LIT:1> ) ; checkProperty = checkProperty . substring ( <NUM_LIT:0> , pos1 ) ; } PropertyDescriptor [ ] descriptors = pojoResolver . getPropertyDescriptors ( baseClass ) ; if ( descriptors == null ) return null ; PropertyDescriptor innerDesriptor = null ; for ( PropertyDescriptor descriptor : descriptors ) { if ( descriptor . getName ( ) . equals ( checkProperty ) ) { innerDesriptor = descriptor ; break ; } } if ( innerDesriptor == null ) return null ; Class < ? > innerClass = innerDesriptor . getPropertyType ( ) ; if ( innerClass . isArray ( ) ) { ParameterizedType type = ( ParameterizedType ) innerDesriptor . getReadMethod ( ) . getGenericReturnType ( ) ; if ( type . getActualTypeArguments ( ) == null || type . getActualTypeArguments ( ) . length == <NUM_LIT:0> ) return null ; innerClass = ( Class < ? > ) type . getActualTypeArguments ( ) [ <NUM_LIT:0> ] ; if ( isPrimitive ( innerClass ) ) return null ; return getClassName ( innerClass . getName ( ) , innerProperty ) ; } else if ( Collection . class . isAssignableFrom ( innerClass ) ) { ParameterizedType type = ( ParameterizedType ) innerDesriptor . getReadMethod ( ) . getGenericReturnType ( ) ; if ( type . getActualTypeArguments ( ) == null || type . getActualTypeArguments ( ) . length == <NUM_LIT:0> ) return null ; innerClass = ( Class < ? > ) type . getActualTypeArguments ( ) [ <NUM_LIT:0> ] ; if ( isPrimitive ( innerClass ) ) return null ; return getClassName ( innerClass . getName ( ) , innerProperty ) ; } else { if ( isPrimitive ( innerClass ) ) return null ; return getClassName ( innerClass . getName ( ) , innerProperty ) ; } } protected boolean isResolvePojo ( EObject model ) { return pojoResolver . isResolvePojo ( model ) ; } protected boolean isResolveDb ( EObject model ) { return dbResolver . isResolveDb ( model ) ; } @ Override public void completeTableDefinition_Table ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) ) { super . completeTableDefinition_Table ( model , assignment , context , acceptor ) ; return ; } for ( String table : dbResolver . getTables ( model ) ) { if ( table . indexOf ( '<CHAR_LIT>' ) >= <NUM_LIT:0> ) continue ; String proposal = getValueConverter ( ) . toString ( table , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } @ Override public void complete_DatabaseColumn ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) ) { super . complete_DatabaseColumn ( model , ruleCall , context , acceptor ) ; return ; } String prefix = context . getPrefix ( ) ; int pos = prefix . indexOf ( '<CHAR_LIT:.>' ) ; if ( pos > <NUM_LIT:0> ) { prefix = prefix . substring ( <NUM_LIT:0> , pos ) ; } else { prefix = null ; } MetaStatement metaStatement = EcoreUtil2 . getContainerOfType ( model , MetaStatement . class ) ; Artifacts artifacts = EcoreUtil2 . getContainerOfType ( metaStatement , Artifacts . class ) ; TableDefinition tableDefinition = getTableDefinition ( artifacts , metaStatement , prefix ) ; if ( tableDefinition != null && tableDefinition . getTable ( ) != null ) { for ( String column : dbResolver . getColumns ( model , tableDefinition . getTable ( ) ) ) { String proposal = getValueConverter ( ) . toString ( column , "<STR_LIT>" ) ; String completion = prefix != null ? prefix + '<CHAR_LIT:.>' + proposal : proposal ; ICompletionProposal completionProposal = createCompletionProposal ( completion , context ) ; acceptor . accept ( completionProposal ) ; } } } protected TableDefinition getTableDefinition ( Artifacts artifacts , MetaStatement statement , String prefix ) { TableUsage usage = null ; IScope scope = getScopeProvider ( ) . getScope ( artifacts , ProcessorDslPackage . Literals . ARTIFACTS__TABLE_USAGES ) ; Iterable < IEObjectDescription > iterable = scope . getAllElements ( ) ; for ( Iterator < IEObjectDescription > iter = iterable . iterator ( ) ; iter . hasNext ( ) ; ) { IEObjectDescription description = iter . next ( ) ; if ( ProcessorDslPackage . Literals . TABLE_USAGE . getName ( ) . equals ( description . getEClass ( ) . getName ( ) ) ) { TableUsage tableUsage = ( TableUsage ) artifacts . eResource ( ) . getResourceSet ( ) . getEObject ( description . getEObjectURI ( ) , true ) ; if ( tableUsage . getStatement ( ) . getName ( ) . equals ( statement . getName ( ) ) ) { if ( prefix == null && tableUsage . getPrefix ( ) == null ) { usage = tableUsage ; break ; } if ( prefix != null && prefix . equals ( tableUsage . getPrefix ( ) ) ) { usage = tableUsage ; break ; } } } } if ( usage != null && usage . getTable ( ) != null && usage . getTable ( ) . getName ( ) != null ) { scope = getScopeProvider ( ) . getScope ( artifacts , ProcessorDslPackage . Literals . ARTIFACTS__TABLES ) ; iterable = scope . getAllElements ( ) ; for ( Iterator < IEObjectDescription > iter = iterable . iterator ( ) ; iter . hasNext ( ) ; ) { IEObjectDescription description = iter . next ( ) ; if ( ProcessorDslPackage . Literals . TABLE_DEFINITION . getName ( ) . equals ( description . getEClass ( ) . getName ( ) ) ) { TableDefinition tableDefinition = ( TableDefinition ) artifacts . eResource ( ) . getResourceSet ( ) . getEObject ( description . getEObjectURI ( ) , true ) ; if ( usage . getTable ( ) . getName ( ) . equals ( tableDefinition . getName ( ) ) ) { return tableDefinition ; } } } } return null ; } @ Override public void complete_DatabaseTable ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) ) { super . complete_DatabaseTable ( model , ruleCall , context , acceptor ) ; return ; } MetaStatement metaStatement = EcoreUtil2 . getContainerOfType ( model , MetaStatement . class ) ; Artifacts artifacts = EcoreUtil2 . getContainerOfType ( metaStatement , Artifacts . class ) ; IScope scope = getScopeProvider ( ) . getScope ( artifacts , ProcessorDslPackage . Literals . ARTIFACTS__TABLE_USAGES ) ; Iterable < IEObjectDescription > iterable = scope . getAllElements ( ) ; for ( Iterator < IEObjectDescription > iter = iterable . iterator ( ) ; iter . hasNext ( ) ; ) { IEObjectDescription description = iter . next ( ) ; if ( ProcessorDslPackage . Literals . TABLE_USAGE . getName ( ) . equals ( description . getEClass ( ) . getName ( ) ) ) { TableUsage tableUsage = ( TableUsage ) artifacts . eResource ( ) . getResourceSet ( ) . getEObject ( description . getEObjectURI ( ) , true ) ; if ( tableUsage . getStatement ( ) . getName ( ) . equals ( metaStatement . getName ( ) ) ) { String proposal = getValueConverter ( ) . toString ( tableUsage . getTable ( ) . getTable ( ) , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } } @ Override public void completePojogenProperty_DbTable ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) ) { super . completePojogenProperty_DbTable ( model , assignment , context , acceptor ) ; return ; } for ( String table : dbResolver . getTables ( model ) ) { if ( table . indexOf ( '<CHAR_LIT>' ) >= <NUM_LIT:0> ) continue ; String proposal = getValueConverter ( ) . toString ( table , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } @ Override public void completeTableAssignement_DbTable ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) ) { super . completeTableAssignement_DbTable ( model , assignment , context , acceptor ) ; return ; } for ( String table : dbResolver . getTables ( model ) ) { if ( table . indexOf ( '<CHAR_LIT>' ) >= <NUM_LIT:0> ) continue ; String proposal = getValueConverter ( ) . toString ( table , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } @ Override public void completeInheritanceAssignement_DbTable ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) ) { super . completeInheritanceAssignement_DbTable ( model , assignment , context , acceptor ) ; return ; } for ( String table : dbResolver . getTables ( model ) ) { if ( table . indexOf ( '<CHAR_LIT>' ) >= <NUM_LIT:0> ) continue ; String proposal = getValueConverter ( ) . toString ( table , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } @ Override public void completePojogenProperty_DbTables ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) ) { super . completePojogenProperty_DbTables ( model , assignment , context , acceptor ) ; return ; } for ( String table : dbResolver . getTables ( model ) ) { if ( table . indexOf ( '<CHAR_LIT>' ) >= <NUM_LIT:0> ) continue ; String proposal = getValueConverter ( ) . toString ( table , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } @ Override public void completePojogenProperty_DbColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) && ! ( model instanceof PojogenProperty ) ) { super . completePojogenProperty_DbColumn ( model , assignment , context , acceptor ) ; return ; } PojogenProperty prop = ( PojogenProperty ) model ; if ( prop . getDbTable ( ) != null ) { for ( String column : dbResolver . getColumns ( model , prop . getDbTable ( ) ) ) { String proposal = getValueConverter ( ) . toString ( column , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } @ Override public void completePojogenProperty_DbColumns ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) && ! ( model instanceof PojogenProperty ) ) { super . completePojogenProperty_DbColumns ( model , assignment , context , acceptor ) ; return ; } PojogenProperty prop = ( PojogenProperty ) model ; if ( prop . getDbTable ( ) != null ) { for ( String column : dbResolver . getColumns ( model , prop . getDbTable ( ) ) ) { String proposal = getValueConverter ( ) . toString ( column , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } @ Override public void completeColumnTypeAssignement_DbColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) && ! ( model instanceof PojogenProperty ) ) { super . completeColumnTypeAssignement_DbColumn ( model , assignment , context , acceptor ) ; return ; } PojogenProperty prop = ( PojogenProperty ) model ; if ( prop . getDbTable ( ) != null ) { for ( String column : dbResolver . getColumns ( model , prop . getDbTable ( ) ) ) { String proposal = getValueConverter ( ) . toString ( column , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } @ Override public void completeColumnAssignement_DbColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) && ! ( model instanceof PojogenProperty ) ) { super . completeColumnAssignement_DbColumn ( model , assignment , context , acceptor ) ; return ; } PojogenProperty prop = ( PojogenProperty ) model ; if ( prop . getDbTable ( ) != null ) { for ( String column : dbResolver . getColumns ( model , prop . getDbTable ( ) ) ) { String proposal = getValueConverter ( ) . toString ( column , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } @ Override public void completeImportAssignement_PkTable ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) && ! ( model instanceof ImportAssignement ) ) { super . completeImportAssignement_PkTable ( model , assignment , context , acceptor ) ; return ; } ImportAssignement imp = ( ImportAssignement ) model ; PojogenProperty prop = EcoreUtil2 . getContainerOfType ( imp , PojogenProperty . class ) ; if ( prop . getDbTable ( ) != null && imp . getDbColumn ( ) != null ) { for ( DbImport dbImport : dbResolver . getDbImports ( model , prop . getDbTable ( ) ) ) { if ( dbImport . getFkColumn ( ) != null && dbImport . getFkColumn ( ) . equals ( imp . getDbColumn ( ) ) ) { String proposal = getValueConverter ( ) . toString ( dbImport . getPkTable ( ) , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } } @ Override public void completeImportAssignement_PkColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) && ! ( model instanceof ImportAssignement ) ) { super . completeImportAssignement_PkColumn ( model , assignment , context , acceptor ) ; return ; } ImportAssignement imp = ( ImportAssignement ) model ; PojogenProperty prop = EcoreUtil2 . getContainerOfType ( imp , PojogenProperty . class ) ; if ( prop . getDbTable ( ) != null && imp . getDbColumn ( ) != null & imp . getPkTable ( ) != null ) { for ( DbImport dbImport : dbResolver . getDbImports ( model , prop . getDbTable ( ) ) ) { if ( dbImport . getFkColumn ( ) != null && dbImport . getFkColumn ( ) . equals ( imp . getDbColumn ( ) ) ) { if ( dbImport . getPkTable ( ) != null && dbImport . getPkTable ( ) . equals ( imp . getPkTable ( ) ) ) { String proposal = getValueConverter ( ) . toString ( dbImport . getPkColumn ( ) , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } } } @ Override public void completeImportAssignement_DbColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) && ! ( model instanceof PojogenProperty ) ) { super . completeImportAssignement_DbColumn ( model , assignment , context , acceptor ) ; return ; } PojogenProperty prop = ( PojogenProperty ) model ; if ( prop . getDbTable ( ) != null ) { for ( String column : dbResolver . getColumns ( model , prop . getDbTable ( ) ) ) { String proposal = getValueConverter ( ) . toString ( column , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } @ Override public void completeExportAssignement_FkTable ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) && ! ( model instanceof ExportAssignement ) ) { super . completeExportAssignement_FkTable ( model , assignment , context , acceptor ) ; return ; } ExportAssignement exp = ( ExportAssignement ) model ; PojogenProperty prop = EcoreUtil2 . getContainerOfType ( exp , PojogenProperty . class ) ; if ( prop . getDbTable ( ) != null && exp . getDbColumn ( ) != null ) { for ( DbExport dbExport : dbResolver . getDbExports ( model , prop . getDbTable ( ) ) ) { if ( dbExport . getPkColumn ( ) != null && dbExport . getPkColumn ( ) . equals ( exp . getDbColumn ( ) ) ) { String proposal = getValueConverter ( ) . toString ( dbExport . getFkTable ( ) , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } } @ Override public void completeExportAssignement_FkColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) && ! ( model instanceof ExportAssignement ) ) { super . completeExportAssignement_FkColumn ( model , assignment , context , acceptor ) ; return ; } ExportAssignement exp = ( ExportAssignement ) model ; PojogenProperty prop = EcoreUtil2 . getContainerOfType ( exp , PojogenProperty . class ) ; if ( prop . getDbTable ( ) != null && exp . getDbColumn ( ) != null & exp . getFkTable ( ) != null ) { for ( DbExport dbExport : dbResolver . getDbExports ( model , prop . getDbTable ( ) ) ) { if ( dbExport . getPkColumn ( ) != null && dbExport . getPkColumn ( ) . equals ( exp . getDbColumn ( ) ) ) { if ( dbExport . getFkTable ( ) != null && dbExport . getFkTable ( ) . equals ( exp . getFkTable ( ) ) ) { String proposal = getValueConverter ( ) . toString ( dbExport . getFkColumn ( ) , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } } } @ Override public void completeExportAssignement_DbColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) && ! ( model instanceof PojogenProperty ) ) { super . completeExportAssignement_DbColumn ( model , assignment , context , acceptor ) ; return ; } PojogenProperty prop = ( PojogenProperty ) model ; if ( prop . getDbTable ( ) != null ) { for ( String column : dbResolver . getColumns ( model , prop . getDbTable ( ) ) ) { String proposal = getValueConverter ( ) . toString ( column , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } @ Override public void completeManyToManyAssignement_PkColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) && ! ( model instanceof PojogenProperty ) ) { super . completeManyToManyAssignement_PkColumn ( model , assignment , context , acceptor ) ; return ; } PojogenProperty prop = ( PojogenProperty ) model ; if ( prop . getDbTable ( ) != null ) { for ( DbImport dbImport : dbResolver . getDbImports ( model , prop . getDbTable ( ) ) ) { String proposal = getValueConverter ( ) . toString ( dbImport . getPkColumn ( ) , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } @ Override public void completeManyToManyAssignement_PkTable ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) && ! ( model instanceof ManyToManyAssignement ) ) { super . completeManyToManyAssignement_PkTable ( model , assignment , context , acceptor ) ; return ; } ManyToManyAssignement many2 = ( ManyToManyAssignement ) model ; PojogenProperty prop = EcoreUtil2 . getContainerOfType ( many2 , PojogenProperty . class ) ; if ( prop . getDbTable ( ) != null && many2 . getPkColumn ( ) != null ) { for ( DbImport dbImport : dbResolver . getDbImports ( model , prop . getDbTable ( ) ) ) { if ( dbImport . getPkColumn ( ) != null && dbImport . getPkColumn ( ) . equals ( many2 . getPkColumn ( ) ) ) { String proposal = getValueConverter ( ) . toString ( dbImport . getPkTable ( ) , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } } @ Override public void completeInheritanceAssignement_DbColumns ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) && ! ( model instanceof InheritanceAssignement ) ) { super . completeInheritanceAssignement_DbColumns ( model , assignment , context , acceptor ) ; return ; } InheritanceAssignement prop = ( InheritanceAssignement ) model ; PojogenProperty pojogenProperty = EcoreUtil2 . getContainerOfType ( model , PojogenProperty . class ) ; if ( pojogenProperty . getDbTable ( ) != null ) { for ( String column : dbResolver . getColumns ( model , pojogenProperty . getDbTable ( ) ) ) { String proposal = getValueConverter ( ) . toString ( column , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } private static final String [ ] methods = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; @ Override public void completePojogenProperty_Methods ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! ( model instanceof PojogenProperty ) ) { super . completePojogenProperty_Methods ( model , assignment , context , acceptor ) ; return ; } PojogenProperty prop = ( PojogenProperty ) model ; for ( String method : methods ) { String proposal = getValueConverter ( ) . toString ( method , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } @ Override public void completeShowColumnTypeAssignement_DbColumn ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) && ! ( model instanceof PojogenProperty ) ) { super . completeShowColumnTypeAssignement_DbColumn ( model , assignment , context , acceptor ) ; return ; } PojogenProperty prop = ( PojogenProperty ) model ; if ( prop . getDbTable ( ) != null ) { for ( String column : dbResolver . getColumns ( model , prop . getDbTable ( ) ) ) { String proposal = getValueConverter ( ) . toString ( column , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } @ Override public void completeShowColumnTypeAssignement_Type ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) && ! ( model instanceof ShowColumnTypeAssignement ) ) { super . completeShowColumnTypeAssignement_Type ( model , assignment , context , acceptor ) ; return ; } ShowColumnTypeAssignement prop = ( ShowColumnTypeAssignement ) model ; PojogenProperty pojogenProperty = EcoreUtil2 . getContainerOfType ( model , PojogenProperty . class ) ; String table = pojogenProperty . getDbTable ( ) ; String column = prop . getDbColumn ( ) ; String type = dbResolver . getType ( model , table , column ) ; String proposal = getValueConverter ( ) . toString ( type , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } @ Override public void completeJoinTableAssignement_DbTable ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) ) { super . completeJoinTableAssignement_DbTable ( model , assignment , context , acceptor ) ; return ; } for ( String table : dbResolver . getTables ( model ) ) { if ( table . indexOf ( '<CHAR_LIT>' ) >= <NUM_LIT:0> ) continue ; String proposal = getValueConverter ( ) . toString ( table , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } @ Override public void completeJoinTableAssignement_DbTables ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { if ( ! isResolveDb ( model ) ) { super . completeJoinTableAssignement_DbTables ( model , assignment , context , acceptor ) ; return ; } for ( String table : dbResolver . getTables ( model ) ) { if ( table . indexOf ( '<CHAR_LIT>' ) >= <NUM_LIT:0> ) continue ; String proposal = getValueConverter ( ) . toString ( table , "<STR_LIT>" ) ; ICompletionProposal completionProposal = createCompletionProposal ( proposal , context ) ; acceptor . accept ( completionProposal ) ; } } } </s> |
<s> package org . sqlproc . dsl . ui . outline ; import org . apache . log4j . Logger ; import org . eclipse . jface . action . Action ; import org . eclipse . jface . resource . ImageDescriptor ; import org . eclipse . xtext . ui . PluginImageHelper ; import org . eclipse . xtext . ui . editor . outline . IOutlineNode ; import org . eclipse . xtext . ui . editor . outline . actions . AbstractFilterOutlineContribution ; import org . eclipse . xtext . ui . editor . outline . impl . EObjectNode ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; import com . google . inject . Inject ; public class FilterMappingRulesContribution extends AbstractFilterOutlineContribution { protected Logger LOGGER = Logger . getLogger ( FilterMappingRulesContribution . class ) ; @ Inject private PluginImageHelper imageHelper ; @ Override protected boolean apply ( IOutlineNode node ) { boolean result = ! ( node instanceof EObjectNode ) || ! ( ( EObjectNode ) node ) . getEClass ( ) . equals ( ProcessorDslPackage . Literals . MAPPING_RULE ) ; if ( LOGGER . isTraceEnabled ( ) ) { LOGGER . trace ( "<STR_LIT>" + node + "<STR_LIT:U+0020>" + result ) ; } return result ; } @ Override public String getPreferenceKey ( ) { return "<STR_LIT>" ; } @ Override protected void configureAction ( Action action ) { action . setText ( "<STR_LIT>" ) ; action . setDescription ( "<STR_LIT>" ) ; action . setToolTipText ( "<STR_LIT>" ) ; action . setImageDescriptor ( getImageDescriptor ( "<STR_LIT>" ) ) ; } protected ImageDescriptor getImageDescriptor ( String imagePath ) { return ImageDescriptor . createFromImage ( imageHelper . getImage ( "<STR_LIT>" ) ) ; } } </s> |
<s> package org . sqlproc . dsl . ui . outline ; import java . util . Comparator ; import java . util . Set ; import java . util . TreeSet ; import org . eclipse . emf . ecore . EObject ; import org . eclipse . xtext . ui . editor . outline . IOutlineNode ; import org . eclipse . xtext . ui . editor . outline . impl . DefaultOutlineTreeProvider ; import org . eclipse . xtext . ui . editor . outline . impl . DocumentRootNode ; import org . sqlproc . dsl . processorDsl . Artifacts ; import org . sqlproc . dsl . processorDsl . Column ; import org . sqlproc . dsl . processorDsl . Constant ; import org . sqlproc . dsl . processorDsl . DatabaseColumn ; import org . sqlproc . dsl . processorDsl . Identifier ; import org . sqlproc . dsl . processorDsl . MappingColumn ; import org . sqlproc . dsl . processorDsl . MappingRule ; import org . sqlproc . dsl . processorDsl . MetaStatement ; import org . sqlproc . dsl . processorDsl . OptionalFeature ; import org . sqlproc . dsl . util . Collector ; public class ProcessorDslOutlineTreeProvider extends DefaultOutlineTreeProvider { @ Override protected void _createChildren ( DocumentRootNode parentNode , EObject rootElement ) { Artifacts artifacts = ( Artifacts ) rootElement ; if ( artifacts . getFeatures ( ) != null ) { for ( OptionalFeature optionalFeature : artifacts . getFeatures ( ) ) { createNode ( parentNode , optionalFeature ) ; } } if ( artifacts . getStatements ( ) != null ) { for ( MetaStatement metaStatement : artifacts . getStatements ( ) ) { createNode ( parentNode , metaStatement ) ; } } if ( artifacts . getMappings ( ) != null ) { for ( MappingRule mappingRule : artifacts . getMappings ( ) ) { createNode ( parentNode , mappingRule ) ; } } } @ Override protected void _createChildren ( IOutlineNode parentNode , EObject modelElement ) { if ( modelElement instanceof MetaStatement ) { Set < Identifier > identifiers = new TreeSet < Identifier > ( new Comparator < Identifier > ( ) { @ Override public int compare ( Identifier o1 , Identifier o2 ) { return o1 . getName ( ) . compareTo ( o2 . getName ( ) ) ; } } ) ; Set < Constant > constants = new TreeSet < Constant > ( new Comparator < Constant > ( ) { @ Override public int compare ( Constant o1 , Constant o2 ) { return o1 . getName ( ) . compareTo ( o2 . getName ( ) ) ; } } ) ; Set < Column > columns = new TreeSet < Column > ( new Comparator < Column > ( ) { @ Override public int compare ( Column o1 , Column o2 ) { return o1 . getName ( ) . compareTo ( o2 . getName ( ) ) ; } } ) ; Set < DatabaseColumn > databaseColumns = new TreeSet < DatabaseColumn > ( new Comparator < DatabaseColumn > ( ) { @ Override public int compare ( DatabaseColumn o1 , DatabaseColumn o2 ) { return o1 . getName ( ) . compareTo ( o2 . getName ( ) ) ; } } ) ; Collector . allVariables ( ( MetaStatement ) modelElement , identifiers , constants , columns , databaseColumns ) ; if ( ! identifiers . isEmpty ( ) ) { for ( Identifier identifier : identifiers ) { createNode ( parentNode , identifier ) ; } } if ( ! constants . isEmpty ( ) ) { for ( Constant constant : constants ) { createNode ( parentNode , constant ) ; } } if ( ! columns . isEmpty ( ) ) { for ( Column column : columns ) { createNode ( parentNode , column ) ; } } if ( ! databaseColumns . isEmpty ( ) ) { for ( DatabaseColumn column : databaseColumns ) { createNode ( parentNode , column ) ; } } } else if ( modelElement instanceof MappingRule ) { Set < MappingColumn > columns = new TreeSet < MappingColumn > ( new Comparator < MappingColumn > ( ) { @ Override public int compare ( MappingColumn o1 , MappingColumn o2 ) { return o1 . getName ( ) . compareTo ( o2 . getName ( ) ) ; } } ) ; Collector . allVariables ( ( MappingRule ) modelElement , columns ) ; if ( ! columns . isEmpty ( ) ) { for ( MappingColumn column : columns ) { createNode ( parentNode , column ) ; } } } } protected boolean _isLeaf ( MetaStatement metaStatement ) { return false ; } protected boolean _isLeaf ( MappingRule mappingRule ) { return false ; } protected boolean _isLeaf ( OptionalFeature optionalFeature ) { return true ; } protected boolean _isLeaf ( Identifier identifier ) { return true ; } protected boolean _isLeaf ( Constant constant ) { return true ; } protected boolean _isLeaf ( Column column ) { return true ; } protected boolean _isLeaf ( DatabaseColumn column ) { return true ; } protected boolean _isLeaf ( MappingColumn column ) { return true ; } } </s> |
<s> package org . sqlproc . dsl . ui . outline ; import org . apache . log4j . Logger ; import org . eclipse . jface . action . Action ; import org . eclipse . jface . resource . ImageDescriptor ; import org . eclipse . xtext . ui . PluginImageHelper ; import org . eclipse . xtext . ui . editor . outline . IOutlineNode ; import org . eclipse . xtext . ui . editor . outline . actions . AbstractFilterOutlineContribution ; import org . eclipse . xtext . ui . editor . outline . impl . EObjectNode ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; import com . google . inject . Inject ; public class FilterMetaStatementsContribution extends AbstractFilterOutlineContribution { protected Logger LOGGER = Logger . getLogger ( FilterMetaStatementsContribution . class ) ; @ Inject private PluginImageHelper imageHelper ; @ Override protected boolean apply ( IOutlineNode node ) { boolean result = ! ( node instanceof EObjectNode ) || ! ( ( EObjectNode ) node ) . getEClass ( ) . equals ( ProcessorDslPackage . Literals . META_STATEMENT ) ; if ( LOGGER . isTraceEnabled ( ) ) { LOGGER . trace ( "<STR_LIT>" + node + "<STR_LIT:U+0020>" + result ) ; } return result ; } @ Override public String getPreferenceKey ( ) { return "<STR_LIT>" ; } @ Override protected void configureAction ( Action action ) { action . setText ( "<STR_LIT>" ) ; action . setDescription ( "<STR_LIT>" ) ; action . setToolTipText ( "<STR_LIT>" ) ; action . setImageDescriptor ( getImageDescriptor ( "<STR_LIT>" ) ) ; } protected ImageDescriptor getImageDescriptor ( String imagePath ) { return ImageDescriptor . createFromImage ( imageHelper . getImage ( "<STR_LIT>" ) ) ; } } </s> |
<s> package org . sqlproc . dsl . ui . outline ; import java . util . Arrays ; import org . eclipse . xtext . ui . editor . outline . IOutlineNode ; import org . eclipse . xtext . ui . editor . outline . impl . OutlineFilterAndSorter ; import com . google . common . base . Predicate ; import com . google . common . collect . Iterables ; import com . google . inject . Singleton ; @ Singleton public class FixedOutlineFilterAndSorter extends OutlineFilterAndSorter { private IComparator comparator ; public IOutlineNode [ ] filterAndSort ( Iterable < IOutlineNode > nodes ) { final Iterable < IFilter > enabledFilters = getEnabledFilters ( ) ; Iterable < IOutlineNode > filteredNodes = null ; if ( Iterables . isEmpty ( enabledFilters ) ) { filteredNodes = nodes ; } else { filteredNodes = Iterables . filter ( nodes , new Predicate < IOutlineNode > ( ) { public boolean apply ( final IOutlineNode node ) { return Iterables . all ( enabledFilters , new Predicate < IFilter > ( ) { public boolean apply ( IFilter filter ) { return filter . apply ( node ) ; } } ) ; } } ) ; } IOutlineNode [ ] nodesAsArray = Iterables . toArray ( filteredNodes , IOutlineNode . class ) ; if ( comparator != null && comparator . isEnabled ( ) ) Arrays . sort ( nodesAsArray , comparator ) ; return nodesAsArray ; } public void setComparator ( IComparator comparator ) { this . comparator = comparator ; } } </s> |
<s> package org . sqlproc . dsl . ui . outline ; import org . apache . log4j . Logger ; import org . eclipse . jface . action . Action ; import org . eclipse . jface . resource . ImageDescriptor ; import org . eclipse . xtext . ui . PluginImageHelper ; import org . eclipse . xtext . ui . editor . outline . IOutlineNode ; import org . eclipse . xtext . ui . editor . outline . actions . AbstractFilterOutlineContribution ; import org . eclipse . xtext . ui . editor . outline . impl . EObjectNode ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; import com . google . inject . Inject ; public class FilterOptionalFeaturesContribution extends AbstractFilterOutlineContribution { protected Logger LOGGER = Logger . getLogger ( FilterOptionalFeaturesContribution . class ) ; @ Inject private PluginImageHelper imageHelper ; @ Override protected boolean apply ( IOutlineNode node ) { boolean result = ! ( node instanceof EObjectNode ) || ! ( ( EObjectNode ) node ) . getEClass ( ) . equals ( ProcessorDslPackage . Literals . OPTIONAL_FEATURE ) ; if ( LOGGER . isTraceEnabled ( ) ) { LOGGER . trace ( "<STR_LIT>" + node + "<STR_LIT:U+0020>" + result ) ; } return result ; } @ Override public String getPreferenceKey ( ) { return "<STR_LIT>" ; } @ Override protected void configureAction ( Action action ) { action . setText ( "<STR_LIT>" ) ; action . setDescription ( "<STR_LIT>" ) ; action . setToolTipText ( "<STR_LIT>" ) ; action . setImageDescriptor ( getImageDescriptor ( "<STR_LIT>" ) ) ; } protected ImageDescriptor getImageDescriptor ( String imagePath ) { return ImageDescriptor . createFromImage ( imageHelper . getImage ( "<STR_LIT>" ) ) ; } } </s> |
<s> package org . sqlproc . dsl . ui ; import org . eclipse . ui . plugin . AbstractUIPlugin ; import org . eclipse . xtext . ui . editor . contentassist . ITemplateProposalProvider ; import org . eclipse . xtext . ui . editor . outline . actions . IOutlineContribution ; import org . eclipse . xtext . ui . editor . outline . impl . OutlineFilterAndSorter ; import org . eclipse . xtext . ui . editor . syntaxcoloring . DefaultAntlrTokenToAttributeIdMapper ; import org . eclipse . xtext . ui . editor . syntaxcoloring . IHighlightingConfiguration ; import org . eclipse . xtext . ui . editor . syntaxcoloring . ISemanticHighlightingCalculator ; import org . eclipse . xtext . ui . editor . templates . XtextTemplateContextType ; import org . sqlproc . dsl . resolver . PojoResolver ; import org . sqlproc . dsl . resolver . PojoResolverFactory ; import org . sqlproc . dsl . resolver . PojoResolverFactoryBean ; import org . sqlproc . dsl . ui . outline . FilterMappingRulesContribution ; import org . sqlproc . dsl . ui . outline . FilterMetaStatementsContribution ; import org . sqlproc . dsl . ui . outline . FilterOptionalFeaturesContribution ; import org . sqlproc . dsl . ui . outline . FixedOutlineFilterAndSorter ; import org . sqlproc . dsl . ui . resolver . WorkspacePojoResolverImpl ; import org . sqlproc . dsl . ui . syntaxcoloring . HighlightingConfiguration ; import org . sqlproc . dsl . ui . syntaxcoloring . SemanticHighlightingCalculator ; import org . sqlproc . dsl . ui . syntaxcoloring . TokenToIdMapper ; import org . sqlproc . dsl . ui . templates . ProcessorDslTemplateContextType ; import org . sqlproc . dsl . ui . templates . ProcessorTemplateProposalProvider ; import com . google . inject . Binder ; import com . google . inject . name . Names ; public class ProcessorDslUiModule extends org . sqlproc . dsl . ui . AbstractProcessorDslUiModule { public ProcessorDslUiModule ( AbstractUIPlugin plugin ) { super ( plugin ) ; } public Class < ? extends PojoResolverFactory > bindPojoResolverFactory ( ) { return PojoResolverFactoryBean . class ; } public Class < ? extends PojoResolver > bindPojoResolver ( ) { return WorkspacePojoResolverImpl . class ; } public Class < ? extends IHighlightingConfiguration > bindISemanticHighlightingConfiguration ( ) { return HighlightingConfiguration . class ; } public Class < ? extends DefaultAntlrTokenToAttributeIdMapper > bindDefaultAntlrTokenToAttributeIdMapper ( ) { return TokenToIdMapper . class ; } public Class < ? extends ISemanticHighlightingCalculator > bindISemanticHighlightingCalculator ( ) { return SemanticHighlightingCalculator . class ; } public Class < ? extends OutlineFilterAndSorter > bindOutlineFilterAndSorter ( ) { return FixedOutlineFilterAndSorter . class ; } public void configureFilterOptionalFeaturesOutlineContribution ( Binder binder ) { binder . bind ( IOutlineContribution . class ) . annotatedWith ( Names . named ( "<STR_LIT>" ) ) . to ( FilterOptionalFeaturesContribution . class ) ; } public void configureFilterMetaStatementsOutlineContribution ( Binder binder ) { binder . bind ( IOutlineContribution . class ) . annotatedWith ( Names . named ( "<STR_LIT>" ) ) . to ( ( Class < ? extends IOutlineContribution > ) FilterMetaStatementsContribution . class ) ; } public void configureFilterMappingRulesOutlineContribution ( Binder binder ) { binder . bind ( IOutlineContribution . class ) . annotatedWith ( Names . named ( "<STR_LIT>" ) ) . to ( FilterMappingRulesContribution . class ) ; } @ Override public void configure ( Binder binder ) { super . configure ( binder ) ; binder . bind ( XtextTemplateContextType . class ) . to ( ProcessorDslTemplateContextType . class ) ; } @ Override public Class < ? extends ITemplateProposalProvider > bindITemplateProposalProvider ( ) { return ProcessorTemplateProposalProvider . class ; } } </s> |
<s> package org . sqlproc . dsl ; import org . eclipse . xtext . junit4 . GlobalRegistries ; import org . eclipse . xtext . junit4 . GlobalRegistries . GlobalStateMemento ; import org . eclipse . xtext . junit4 . IInjectorProvider ; import org . eclipse . xtext . junit4 . IRegistryConfigurator ; import com . google . inject . Injector ; public class ProcessorDslInjectorProvider implements IInjectorProvider , IRegistryConfigurator { protected GlobalStateMemento stateBeforeInjectorCreation ; protected GlobalStateMemento stateAfterInjectorCreation ; protected Injector injector ; static { GlobalRegistries . initializeDefaults ( ) ; } public Injector getInjector ( ) { if ( injector == null ) { stateBeforeInjectorCreation = GlobalRegistries . makeCopyOfGlobalState ( ) ; this . injector = internalCreateInjector ( ) ; stateAfterInjectorCreation = GlobalRegistries . makeCopyOfGlobalState ( ) ; } return injector ; } protected Injector internalCreateInjector ( ) { return new ProcessorDslStandaloneSetup ( ) . createInjectorAndDoEMFRegistration ( ) ; } public void restoreRegistry ( ) { stateBeforeInjectorCreation . restoreGlobalState ( ) ; } public void setupRegistry ( ) { getInjector ( ) ; stateAfterInjectorCreation . restoreGlobalState ( ) ; } } </s> |
<s> package org . sqlproc . dsl ; import org . eclipse . xtext . junit4 . IInjectorProvider ; import com . google . inject . Injector ; public class ProcessorDslUiInjectorProvider implements IInjectorProvider { public Injector getInjector ( ) { return org . sqlproc . dsl . ui . internal . ProcessorDslActivator . getInstance ( ) . getInjector ( "<STR_LIT>" ) ; } } </s> |
<s> package org . sqlproc . dsl . generator ; import com . google . common . base . Objects ; import com . google . common . collect . Iterables ; import com . google . inject . Inject ; import java . util . ArrayList ; import java . util . List ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . common . util . TreeIterator ; import org . eclipse . emf . ecore . EObject ; import org . eclipse . emf . ecore . resource . Resource ; import org . eclipse . xtend2 . lib . StringConcatenation ; import org . eclipse . xtext . common . types . JvmType ; import org . eclipse . xtext . generator . IFileSystemAccess ; import org . eclipse . xtext . generator . IGenerator ; import org . eclipse . xtext . naming . IQualifiedNameProvider ; import org . eclipse . xtext . naming . QualifiedName ; import org . eclipse . xtext . xbase . compiler . ImportManager ; import org . eclipse . xtext . xbase . lib . Functions . Function1 ; import org . eclipse . xtext . xbase . lib . IterableExtensions ; import org . eclipse . xtext . xbase . lib . IteratorExtensions ; import org . eclipse . xtext . xbase . lib . StringExtensions ; import org . sqlproc . dsl . processorDsl . Extends ; import org . sqlproc . dsl . processorDsl . Implements ; import org . sqlproc . dsl . processorDsl . PojoEntity ; import org . sqlproc . dsl . processorDsl . PojoProperty ; import org . sqlproc . dsl . util . Utils ; @ SuppressWarnings ( "<STR_LIT:all>" ) public class ProcessorDslGenerator implements IGenerator { @ Inject private IQualifiedNameProvider _iQualifiedNameProvider ; public void doGenerate ( final Resource resource , final IFileSystemAccess fsa ) { TreeIterator < EObject > _allContents = resource . getAllContents ( ) ; Iterable < EObject > _iterable = IteratorExtensions . < EObject > toIterable ( _allContents ) ; Iterable < PojoEntity > _filter = Iterables . < PojoEntity > filter ( _iterable , PojoEntity . class ) ; for ( final PojoEntity e : _filter ) { EObject _eContainer = e . eContainer ( ) ; QualifiedName _fullyQualifiedName = this . _iQualifiedNameProvider . getFullyQualifiedName ( _eContainer ) ; String _string = _fullyQualifiedName . toString ( "<STR_LIT:/>" ) ; String _plus = ( _string + "<STR_LIT:/>" ) ; QualifiedName _fullyQualifiedName_1 = this . _iQualifiedNameProvider . getFullyQualifiedName ( e ) ; String _plus_1 = ( _plus + _fullyQualifiedName_1 ) ; String _plus_2 = ( _plus_1 + "<STR_LIT>" ) ; CharSequence _compile = this . compile ( e ) ; fsa . generateFile ( _plus_2 , _compile ) ; } } public CharSequence compile ( final PojoEntity e ) { StringConcatenation _builder = new StringConcatenation ( ) ; ImportManager _importManager = new ImportManager ( true ) ; final ImportManager importManager = _importManager ; _builder . newLineIfNotEmpty ( ) ; this . addImplements ( e , importManager ) ; _builder . newLineIfNotEmpty ( ) ; this . addExtends ( e , importManager ) ; _builder . newLineIfNotEmpty ( ) ; final CharSequence classBody = this . compile ( e , importManager ) ; _builder . newLineIfNotEmpty ( ) ; { EObject _eContainer = e . eContainer ( ) ; boolean _notEquals = ( ! Objects . equal ( _eContainer , null ) ) ; if ( _notEquals ) { _builder . append ( "<STR_LIT>" ) ; EObject _eContainer_1 = e . eContainer ( ) ; QualifiedName _fullyQualifiedName = this . _iQualifiedNameProvider . getFullyQualifiedName ( _eContainer_1 ) ; _builder . append ( _fullyQualifiedName , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT:;>" ) ; } } _builder . newLineIfNotEmpty ( ) ; { List < String > _imports = importManager . getImports ( ) ; boolean _isEmpty = _imports . isEmpty ( ) ; boolean _not = ( ! _isEmpty ) ; if ( _not ) { _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . newLine ( ) ; { List < String > _imports_1 = importManager . getImports ( ) ; for ( final String i : _imports_1 ) { _builder . append ( "<STR_LIT>" ) ; _builder . append ( i , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT:;>" ) ; _builder . newLineIfNotEmpty ( ) ; } } } } { String _sernum = Utils . getSernum ( e ) ; boolean _notEquals_1 = ( ! Objects . equal ( _sernum , null ) ) ; if ( _notEquals_1 ) { _builder . newLine ( ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; } } { ArrayList < PojoProperty > _listFeatures = this . listFeatures ( e ) ; boolean _isEmpty_1 = _listFeatures . isEmpty ( ) ; boolean _not_1 = ( ! _isEmpty_1 ) ; if ( _not_1 ) { _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; } } _builder . newLine ( ) ; _builder . append ( classBody , "<STR_LIT>" ) ; _builder . newLineIfNotEmpty ( ) ; return _builder ; } public CharSequence compile ( final PojoEntity e , final ImportManager importManager ) { StringConcatenation _builder = new StringConcatenation ( ) ; _builder . append ( "<STR_LIT>" ) ; { boolean _isAbstract = Utils . isAbstract ( e ) ; if ( _isAbstract ) { _builder . append ( "<STR_LIT>" ) ; } } _builder . append ( "<STR_LIT>" ) ; String _name = e . getName ( ) ; _builder . append ( _name , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT:U+0020>" ) ; CharSequence _compileExtends = this . compileExtends ( e ) ; _builder . append ( _compileExtends , "<STR_LIT>" ) ; CharSequence _compileImplements = this . compileImplements ( e ) ; _builder . append ( _compileImplements , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT:{>" ) ; _builder . newLineIfNotEmpty ( ) ; { String _sernum = Utils . getSernum ( e ) ; boolean _notEquals = ( ! Objects . equal ( _sernum , null ) ) ; if ( _notEquals ) { _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; String _sernum_1 = Utils . getSernum ( e ) ; _builder . append ( _sernum_1 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLineIfNotEmpty ( ) ; } } _builder . append ( "<STR_LIT:t>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name_1 = e . getName ( ) ; _builder . append ( _name_1 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLineIfNotEmpty ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT:}>" ) ; _builder . newLine ( ) ; { ArrayList < PojoProperty > _requiredFeatures = this . requiredFeatures ( e ) ; boolean _isEmpty = _requiredFeatures . isEmpty ( ) ; boolean _not = ( ! _isEmpty ) ; if ( _not ) { _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name_2 = e . getName ( ) ; _builder . append ( _name_2 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT:(>" ) ; { ArrayList < PojoProperty > _requiredFeatures_1 = this . requiredFeatures ( e ) ; boolean _hasElements = false ; for ( final PojoProperty f : _requiredFeatures_1 ) { if ( ! _hasElements ) { _hasElements = true ; } else { _builder . appendImmediate ( "<STR_LIT:U+002CU+0020>" , "<STR_LIT:U+0020U+0020>" ) ; } CharSequence _compileType = this . compileType ( f , importManager ) ; _builder . append ( _compileType , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT:U+0020>" ) ; String _name_3 = f . getName ( ) ; _builder . append ( _name_3 , "<STR_LIT:U+0020U+0020>" ) ; } } _builder . append ( "<STR_LIT>" ) ; _builder . newLineIfNotEmpty ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; { ArrayList < PojoProperty > _requiredSuperFeatures = this . requiredSuperFeatures ( e ) ; boolean _hasElements_1 = false ; for ( final PojoProperty f_1 : _requiredSuperFeatures ) { if ( ! _hasElements_1 ) { _hasElements_1 = true ; _builder . append ( "<STR_LIT>" , "<STR_LIT:U+0020U+0020>" ) ; } else { _builder . appendImmediate ( "<STR_LIT:U+002CU+0020>" , "<STR_LIT:U+0020U+0020>" ) ; } String _name_4 = f_1 . getName ( ) ; _builder . append ( _name_4 , "<STR_LIT:U+0020U+0020>" ) ; } if ( _hasElements_1 ) { _builder . append ( "<STR_LIT>" , "<STR_LIT:U+0020U+0020>" ) ; } } _builder . newLineIfNotEmpty ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; { List < PojoProperty > _requiredFeatures1 = this . requiredFeatures1 ( e ) ; boolean _hasElements_2 = false ; for ( final PojoProperty f_2 : _requiredFeatures1 ) { if ( ! _hasElements_2 ) { _hasElements_2 = true ; } else { _builder . appendImmediate ( "<STR_LIT:n>" , "<STR_LIT:U+0020U+0020>" ) ; } _builder . append ( "<STR_LIT>" ) ; String _name_5 = f_2 . getName ( ) ; _builder . append ( _name_5 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT:U+0020=U+0020>" ) ; String _name_6 = f_2 . getName ( ) ; _builder . append ( _name_6 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT:;>" ) ; } } _builder . newLineIfNotEmpty ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT:}>" ) ; _builder . newLine ( ) ; } } { EList < PojoProperty > _features = e . getFeatures ( ) ; final Function1 < PojoProperty , Boolean > _function = new Function1 < PojoProperty , Boolean > ( ) { public Boolean apply ( final PojoProperty x ) { boolean _isAttribute = ProcessorDslGenerator . this . isAttribute ( x ) ; return Boolean . valueOf ( _isAttribute ) ; } } ; Iterable < PojoProperty > _filter = IterableExtensions . < PojoProperty > filter ( _features , _function ) ; for ( final PojoProperty f_3 : _filter ) { _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; CharSequence _compile = this . compile ( f_3 , importManager , e ) ; _builder . append ( _compile , "<STR_LIT:U+0020U+0020>" ) ; _builder . newLineIfNotEmpty ( ) ; } } _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; { EList < PojoProperty > _features_1 = e . getFeatures ( ) ; final Function1 < PojoProperty , Boolean > _function_1 = new Function1 < PojoProperty , Boolean > ( ) { public Boolean apply ( final PojoProperty x ) { boolean _isAttribute = ProcessorDslGenerator . this . isAttribute ( x ) ; boolean _not = ( ! _isAttribute ) ; return Boolean . valueOf ( _not ) ; } } ; Iterable < PojoProperty > _filter_1 = IterableExtensions . < PojoProperty > filter ( _features_1 , _function_1 ) ; for ( final PojoProperty f_4 : _filter_1 ) { { String _name_7 = f_4 . getName ( ) ; boolean _equalsIgnoreCase = _name_7 . equalsIgnoreCase ( "<STR_LIT>" ) ; if ( _equalsIgnoreCase ) { CharSequence _compileHashCode = this . compileHashCode ( f_4 , importManager , e ) ; _builder . append ( _compileHashCode , "<STR_LIT:U+0020U+0020>" ) ; } else { String _name_8 = f_4 . getName ( ) ; boolean _equalsIgnoreCase_1 = _name_8 . equalsIgnoreCase ( "<STR_LIT>" ) ; if ( _equalsIgnoreCase_1 ) { CharSequence _compileEquals = this . compileEquals ( f_4 , importManager , e ) ; _builder . append ( _compileEquals , "<STR_LIT:U+0020U+0020>" ) ; } else { String _name_9 = f_4 . getName ( ) ; boolean _equalsIgnoreCase_2 = _name_9 . equalsIgnoreCase ( "<STR_LIT>" ) ; if ( _equalsIgnoreCase_2 ) { CharSequence _compileToString = this . compileToString ( f_4 , importManager , e ) ; _builder . append ( _compileToString , "<STR_LIT:U+0020U+0020>" ) ; } } } } } } _builder . newLineIfNotEmpty ( ) ; _builder . append ( "<STR_LIT:}>" ) ; _builder . newLine ( ) ; return _builder ; } public CharSequence compile ( final PojoProperty f , final ImportManager importManager , final PojoEntity e ) { StringConcatenation _builder = new StringConcatenation ( ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT>" ) ; CharSequence _compileType = this . compileType ( f , importManager ) ; _builder . append ( _compileType , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT:U+0020>" ) ; String _name = f . getName ( ) ; _builder . append ( _name , "<STR_LIT>" ) ; { boolean _isList = Utils . isList ( f ) ; if ( _isList ) { _builder . append ( "<STR_LIT>" ) ; CharSequence _compileType_1 = this . compileType ( f , importManager ) ; _builder . append ( _compileType_1 , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT>" ) ; } } _builder . append ( "<STR_LIT:;>" ) ; _builder . newLineIfNotEmpty ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT>" ) ; CharSequence _compileType_2 = this . compileType ( f , importManager ) ; _builder . append ( _compileType_2 , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name_1 = f . getName ( ) ; String _firstUpper = StringExtensions . toFirstUpper ( _name_1 ) ; _builder . append ( _firstUpper , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLineIfNotEmpty ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name_2 = f . getName ( ) ; _builder . append ( _name_2 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT:;>" ) ; _builder . newLineIfNotEmpty ( ) ; _builder . append ( "<STR_LIT:}>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT>" ) ; String _name_3 = f . getName ( ) ; String _firstUpper_1 = StringExtensions . toFirstUpper ( _name_3 ) ; _builder . append ( _firstUpper_1 , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT:(>" ) ; CharSequence _compileType_3 = this . compileType ( f , importManager ) ; _builder . append ( _compileType_3 , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT:U+0020>" ) ; String _name_4 = f . getName ( ) ; _builder . append ( _name_4 , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLineIfNotEmpty ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name_5 = f . getName ( ) ; _builder . append ( _name_5 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT:U+0020=U+0020>" ) ; String _name_6 = f . getName ( ) ; _builder . append ( _name_6 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT:;>" ) ; _builder . newLineIfNotEmpty ( ) ; _builder . append ( "<STR_LIT:}>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT>" ) ; String _name_7 = e . getName ( ) ; _builder . append ( _name_7 , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name_8 = f . getName ( ) ; String _firstUpper_2 = StringExtensions . toFirstUpper ( _name_8 ) ; _builder . append ( _firstUpper_2 , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT:(>" ) ; CharSequence _compileType_4 = this . compileType ( f , importManager ) ; _builder . append ( _compileType_4 , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT:U+0020>" ) ; String _name_9 = f . getName ( ) ; _builder . append ( _name_9 , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLineIfNotEmpty ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name_10 = f . getName ( ) ; _builder . append ( _name_10 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT:U+0020=U+0020>" ) ; String _name_11 = f . getName ( ) ; _builder . append ( _name_11 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT:;>" ) ; _builder . newLineIfNotEmpty ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:}>" ) ; _builder . newLine ( ) ; return _builder ; } public CharSequence compileHashCode ( final PojoProperty f , final ImportManager importManager , final PojoEntity e ) { StringConcatenation _builder = new StringConcatenation ( ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; { EList < PojoProperty > _attrs = f . getAttrs ( ) ; for ( final PojoProperty f2 : _attrs ) { _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name = f2 . getName ( ) ; _builder . append ( _name , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name_1 = f2 . getName ( ) ; _builder . append ( _name_1 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLineIfNotEmpty ( ) ; } } _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; return _builder ; } public CharSequence compileEquals ( final PojoProperty f , final ImportManager importManager , final PojoEntity e ) { StringConcatenation _builder = new StringConcatenation ( ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; String _name = e . getName ( ) ; _builder . append ( _name , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name_1 = e . getName ( ) ; _builder . append ( _name_1 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLineIfNotEmpty ( ) ; { EList < PojoProperty > _attrs = f . getAttrs ( ) ; for ( final PojoProperty f2 : _attrs ) { _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name_2 = f2 . getName ( ) ; _builder . append ( _name_2 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name_3 = f2 . getName ( ) ; _builder . append ( _name_3 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT:)>" ) ; _builder . newLineIfNotEmpty ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; } } _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; return _builder ; } public CharSequence compileToString ( final PojoProperty f , final ImportManager importManager , final PojoEntity e ) { StringConcatenation _builder = new StringConcatenation ( ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name = e . getName ( ) ; _builder . append ( _name , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; { List < PojoProperty > _simplAttrs = this . simplAttrs ( f ) ; boolean _hasElements = false ; for ( final PojoProperty f2 : _simplAttrs ) { if ( ! _hasElements ) { _hasElements = true ; } else { _builder . appendImmediate ( "<STR_LIT>" , "<STR_LIT:U+0020U+0020>" ) ; } String _name_1 = f2 . getName ( ) ; _builder . append ( _name_1 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name_2 = f2 . getName ( ) ; _builder . append ( _name_2 , "<STR_LIT:U+0020U+0020>" ) ; } } { PojoEntity _superType = Utils . getSuperType ( e ) ; boolean _notEquals = ( ! Objects . equal ( _superType , null ) ) ; if ( _notEquals ) { _builder . append ( "<STR_LIT>" ) ; } } _builder . append ( "<STR_LIT>" ) ; _builder . newLineIfNotEmpty ( ) ; _builder . append ( "<STR_LIT:}>" ) ; _builder . newLine ( ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT>" ) ; _builder . newLine ( ) ; _builder . append ( "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name_3 = e . getName ( ) ; _builder . append ( _name_3 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; { EList < PojoProperty > _attrs = f . getAttrs ( ) ; boolean _hasElements_1 = false ; for ( final PojoProperty f2_1 : _attrs ) { if ( ! _hasElements_1 ) { _hasElements_1 = true ; } else { _builder . appendImmediate ( "<STR_LIT>" , "<STR_LIT:U+0020U+0020>" ) ; } String _name_4 = f2_1 . getName ( ) ; _builder . append ( _name_4 , "<STR_LIT:U+0020U+0020>" ) ; _builder . append ( "<STR_LIT>" ) ; String _name_5 = f2_1 . getName ( ) ; _builder . append ( _name_5 , "<STR_LIT:U+0020U+0020>" ) ; } } { PojoEntity _superType_1 = Utils . getSuperType ( e ) ; boolean _notEquals_1 = ( ! Objects . equal ( _superType_1 , null ) ) ; if ( _notEquals_1 ) { _builder . append ( "<STR_LIT>" ) ; } } _builder . append ( "<STR_LIT>" ) ; _builder . newLineIfNotEmpty ( ) ; _builder . append ( "<STR_LIT:}>" ) ; _builder . newLine ( ) ; return _builder ; } public CharSequence compileType ( final PojoProperty f , final ImportManager importManager ) { StringConcatenation _builder = new StringConcatenation ( ) ; { String _native = f . getNative ( ) ; boolean _notEquals = ( ! Objects . equal ( _native , null ) ) ; if ( _notEquals ) { String _native_1 = f . getNative ( ) ; String _substring = _native_1 . substring ( <NUM_LIT:1> ) ; _builder . append ( _substring , "<STR_LIT>" ) ; } else { PojoEntity _ref = f . getRef ( ) ; boolean _notEquals_1 = ( ! Objects . equal ( _ref , null ) ) ; if ( _notEquals_1 ) { PojoEntity _ref_1 = f . getRef ( ) ; QualifiedName _fullyQualifiedName = this . _iQualifiedNameProvider . getFullyQualifiedName ( _ref_1 ) ; _builder . append ( _fullyQualifiedName , "<STR_LIT>" ) ; } else { JvmType _type = f . getType ( ) ; boolean _notEquals_2 = ( ! Objects . equal ( _type , null ) ) ; if ( _notEquals_2 ) { JvmType _type_1 = f . getType ( ) ; CharSequence _serialize = importManager . serialize ( _type_1 ) ; _builder . append ( _serialize , "<STR_LIT>" ) ; } } } } { JvmType _gtype = f . getGtype ( ) ; boolean _notEquals_3 = ( ! Objects . equal ( _gtype , null ) ) ; if ( _notEquals_3 ) { _builder . append ( "<STR_LIT:<>" ) ; JvmType _gtype_1 = f . getGtype ( ) ; CharSequence _serialize_1 = importManager . serialize ( _gtype_1 ) ; _builder . append ( _serialize_1 , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT:>>" ) ; } } { PojoEntity _gref = f . getGref ( ) ; boolean _notEquals_4 = ( ! Objects . equal ( _gref , null ) ) ; if ( _notEquals_4 ) { _builder . append ( "<STR_LIT:<>" ) ; PojoEntity _gref_1 = f . getGref ( ) ; QualifiedName _fullyQualifiedName_1 = this . _iQualifiedNameProvider . getFullyQualifiedName ( _gref_1 ) ; _builder . append ( _fullyQualifiedName_1 , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT:>>" ) ; } } { boolean _isArray = f . isArray ( ) ; if ( _isArray ) { _builder . append ( "<STR_LIT:[]>" ) ; } } return _builder ; } public ArrayList < PojoProperty > listFeatures ( final PojoEntity e ) { ArrayList < PojoProperty > _arrayList = new ArrayList < PojoProperty > ( ) ; final ArrayList < PojoProperty > list = _arrayList ; PojoEntity _superType = Utils . getSuperType ( e ) ; boolean _notEquals = ( ! Objects . equal ( _superType , null ) ) ; if ( _notEquals ) { PojoEntity _superType_1 = Utils . getSuperType ( e ) ; ArrayList < PojoProperty > _listFeatures = this . listFeatures ( _superType_1 ) ; list . addAll ( _listFeatures ) ; } List < PojoProperty > _listFeatures1 = this . listFeatures1 ( e ) ; list . addAll ( _listFeatures1 ) ; return list ; } public List < PojoProperty > listFeatures1 ( final PojoEntity e ) { EList < PojoProperty > _features = e . getFeatures ( ) ; final Function1 < PojoProperty , Boolean > _function = new Function1 < PojoProperty , Boolean > ( ) { public Boolean apply ( final PojoProperty f ) { boolean _isList = Utils . isList ( f ) ; return Boolean . valueOf ( _isList ) ; } } ; Iterable < PojoProperty > _filter = IterableExtensions . < PojoProperty > filter ( _features , _function ) ; return IterableExtensions . < PojoProperty > toList ( _filter ) ; } public ArrayList < PojoProperty > requiredFeatures ( final PojoEntity e ) { ArrayList < PojoProperty > _arrayList = new ArrayList < PojoProperty > ( ) ; final ArrayList < PojoProperty > list = _arrayList ; PojoEntity _superType = Utils . getSuperType ( e ) ; boolean _notEquals = ( ! Objects . equal ( _superType , null ) ) ; if ( _notEquals ) { PojoEntity _superType_1 = Utils . getSuperType ( e ) ; ArrayList < PojoProperty > _requiredFeatures = this . requiredFeatures ( _superType_1 ) ; list . addAll ( _requiredFeatures ) ; } List < PojoProperty > _requiredFeatures1 = this . requiredFeatures1 ( e ) ; list . addAll ( _requiredFeatures1 ) ; return list ; } public ArrayList < PojoProperty > requiredSuperFeatures ( final PojoEntity e ) { ArrayList < PojoProperty > _arrayList = new ArrayList < PojoProperty > ( ) ; final ArrayList < PojoProperty > list = _arrayList ; PojoEntity _superType = Utils . getSuperType ( e ) ; boolean _notEquals = ( ! Objects . equal ( _superType , null ) ) ; if ( _notEquals ) { PojoEntity _superType_1 = Utils . getSuperType ( e ) ; ArrayList < PojoProperty > _requiredFeatures = this . requiredFeatures ( _superType_1 ) ; list . addAll ( _requiredFeatures ) ; } return list ; } public List < PojoProperty > requiredFeatures1 ( final PojoEntity e ) { EList < PojoProperty > _features = e . getFeatures ( ) ; final Function1 < PojoProperty , Boolean > _function = new Function1 < PojoProperty , Boolean > ( ) { public Boolean apply ( final PojoProperty f ) { boolean _isRequired = Utils . isRequired ( f ) ; return Boolean . valueOf ( _isRequired ) ; } } ; Iterable < PojoProperty > _filter = IterableExtensions . < PojoProperty > filter ( _features , _function ) ; return IterableExtensions . < PojoProperty > toList ( _filter ) ; } public boolean isAttribute ( final PojoProperty f ) { boolean _or = false ; boolean _or_1 = false ; String _native = f . getNative ( ) ; boolean _notEquals = ( ! Objects . equal ( _native , null ) ) ; if ( _notEquals ) { _or_1 = true ; } else { PojoEntity _ref = f . getRef ( ) ; boolean _notEquals_1 = ( ! Objects . equal ( _ref , null ) ) ; _or_1 = ( _notEquals || _notEquals_1 ) ; } if ( _or_1 ) { _or = true ; } else { JvmType _type = f . getType ( ) ; boolean _notEquals_2 = ( ! Objects . equal ( _type , null ) ) ; _or = ( _or_1 || _notEquals_2 ) ; } return _or ; } public List < PojoProperty > simplAttrs ( final PojoProperty f ) { EList < PojoProperty > _attrs = f . getAttrs ( ) ; final Function1 < PojoProperty , Boolean > _function = new Function1 < PojoProperty , Boolean > ( ) { public Boolean apply ( final PojoProperty f2 ) { boolean _or = false ; String _native = f2 . getNative ( ) ; boolean _notEquals = ( ! Objects . equal ( _native , null ) ) ; if ( _notEquals ) { _or = true ; } else { JvmType _type = f2 . getType ( ) ; boolean _notEquals_1 = ( ! Objects . equal ( _type , null ) ) ; _or = ( _notEquals || _notEquals_1 ) ; } return Boolean . valueOf ( _or ) ; } } ; Iterable < PojoProperty > _filter = IterableExtensions . < PojoProperty > filter ( _attrs , _function ) ; return IterableExtensions . < PojoProperty > toList ( _filter ) ; } public CharSequence compileExtends ( final PojoEntity e ) { StringConcatenation _builder = new StringConcatenation ( ) ; { PojoEntity _superType = Utils . getSuperType ( e ) ; boolean _notEquals = ( ! Objects . equal ( _superType , null ) ) ; if ( _notEquals ) { _builder . append ( "<STR_LIT>" ) ; PojoEntity _superType_1 = Utils . getSuperType ( e ) ; QualifiedName _fullyQualifiedName = this . _iQualifiedNameProvider . getFullyQualifiedName ( _superType_1 ) ; _builder . append ( _fullyQualifiedName , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT:U+0020>" ) ; } else { String _extends = this . getExtends ( e ) ; boolean _notEquals_1 = ( ! Objects . equal ( _extends , "<STR_LIT>" ) ) ; if ( _notEquals_1 ) { _builder . append ( "<STR_LIT>" ) ; String _extends_1 = this . getExtends ( e ) ; _builder . append ( _extends_1 , "<STR_LIT>" ) ; _builder . append ( "<STR_LIT:U+0020>" ) ; } } } return _builder ; } public CharSequence compileImplements ( final PojoEntity e ) { StringConcatenation _builder = new StringConcatenation ( ) ; { boolean _or = false ; boolean _isImplements = this . isImplements ( e ) ; if ( _isImplements ) { _or = true ; } else { String _sernum = Utils . getSernum ( e ) ; boolean _notEquals = ( ! Objects . equal ( _sernum , null ) ) ; _or = ( _isImplements || _notEquals ) ; } if ( _or ) { _builder . append ( "<STR_LIT>" ) ; { EObject _eContainer = e . eContainer ( ) ; EList < EObject > _eContents = _eContainer . eContents ( ) ; Iterable < Implements > _filter = Iterables . < Implements > filter ( _eContents , Implements . class ) ; boolean _hasElements = false ; for ( final Implements f : _filter ) { if ( ! _hasElements ) { _hasElements = true ; } else { _builder . appendImmediate ( "<STR_LIT:U+002CU+0020>" , "<STR_LIT>" ) ; } JvmType _implements = f . getImplements ( ) ; String _simpleName = _implements . getSimpleName ( ) ; _builder . append ( _simpleName , "<STR_LIT>" ) ; } } { String _sernum_1 = Utils . getSernum ( e ) ; boolean _notEquals_1 = ( ! Objects . equal ( _sernum_1 , null ) ) ; if ( _notEquals_1 ) { { boolean _isImplements_1 = this . isImplements ( e ) ; if ( _isImplements_1 ) { _builder . append ( "<STR_LIT:U+002CU+0020>" ) ; } } _builder . append ( "<STR_LIT>" ) ; } } _builder . append ( "<STR_LIT:U+0020>" ) ; } } return _builder ; } public boolean compile ( final Extends e , final ImportManager importManager ) { JvmType _extends = e . getExtends ( ) ; boolean _addImportFor = importManager . addImportFor ( _extends ) ; return _addImportFor ; } public void addImplements ( final PojoEntity e , final ImportManager importManager ) { EObject _eContainer = e . eContainer ( ) ; EList < EObject > _eContents = _eContainer . eContents ( ) ; Iterable < Implements > _filter = Iterables . < Implements > filter ( _eContents , Implements . class ) ; for ( final Implements impl : _filter ) { JvmType _implements = impl . getImplements ( ) ; importManager . addImportFor ( _implements ) ; } } public void addExtends ( final PojoEntity e , final ImportManager importManager ) { EObject _eContainer = e . eContainer ( ) ; EList < EObject > _eContents = _eContainer . eContents ( ) ; Iterable < Extends > _filter = Iterables . < Extends > filter ( _eContents , Extends . class ) ; for ( final Extends ext : _filter ) { JvmType _extends = ext . getExtends ( ) ; importManager . addImportFor ( _extends ) ; } } public String getExtends ( final PojoEntity e ) { EObject _eContainer = e . eContainer ( ) ; EList < EObject > _eContents = _eContainer . eContents ( ) ; Iterable < Extends > _filter = Iterables . < Extends > filter ( _eContents , Extends . class ) ; for ( final Extends ext : _filter ) { JvmType _extends = ext . getExtends ( ) ; return _extends . getSimpleName ( ) ; } return "<STR_LIT>" ; } public boolean isImplements ( final PojoEntity e ) { EObject _eContainer = e . eContainer ( ) ; EList < EObject > _eContents = _eContainer . eContents ( ) ; Iterable < Implements > _filter = Iterables . < Implements > filter ( _eContents , Implements . class ) ; for ( final Implements ext : _filter ) { return true ; } return false ; } } </s> |
<s> package org . sqlproc . dsl . jvmmodel ; import com . google . inject . Inject ; import java . util . Arrays ; import org . eclipse . emf . ecore . EObject ; import org . eclipse . xtext . xbase . jvmmodel . AbstractModelInferrer ; import org . eclipse . xtext . xbase . jvmmodel . IJvmDeclaredTypeAcceptor ; import org . eclipse . xtext . xbase . jvmmodel . JvmTypesBuilder ; import org . sqlproc . dsl . processorDsl . Artifacts ; @ SuppressWarnings ( "<STR_LIT:all>" ) public class ProcessorDslJvmModelInferrer extends AbstractModelInferrer { @ Inject private JvmTypesBuilder _jvmTypesBuilder ; protected void _infer ( final Artifacts element , final IJvmDeclaredTypeAcceptor acceptor , final boolean isPreIndexingPhase ) { } public void infer ( final EObject element , final IJvmDeclaredTypeAcceptor acceptor , final boolean isPreIndexingPhase ) { if ( element instanceof Artifacts ) { _infer ( ( Artifacts ) element , acceptor , isPreIndexingPhase ) ; return ; } else if ( element != null ) { _infer ( element , acceptor , isPreIndexingPhase ) ; return ; } else { throw new IllegalArgumentException ( "<STR_LIT>" + Arrays . < Object > asList ( element , acceptor , isPreIndexingPhase ) . toString ( ) ) ; } } } </s> |
<s> package org . sqlproc . dsl ; import java . util . Properties ; import org . eclipse . xtext . Constants ; import org . eclipse . xtext . service . DefaultRuntimeModule ; import com . google . inject . Binder ; import com . google . inject . name . Names ; @ SuppressWarnings ( "<STR_LIT:all>" ) public abstract class AbstractProcessorDslRuntimeModule extends DefaultRuntimeModule { protected Properties properties = null ; @ Override public void configure ( Binder binder ) { properties = tryBindProperties ( binder , "<STR_LIT>" ) ; super . configure ( binder ) ; } public void configureLanguageName ( Binder binder ) { binder . bind ( String . class ) . annotatedWith ( Names . named ( Constants . LANGUAGE_NAME ) ) . toInstance ( "<STR_LIT>" ) ; } public void configureFileExtensions ( Binder binder ) { if ( properties == null || properties . getProperty ( Constants . FILE_EXTENSIONS ) == null ) binder . bind ( String . class ) . annotatedWith ( Names . named ( Constants . FILE_EXTENSIONS ) ) . toInstance ( "<STR_LIT>" ) ; } public Class < ? extends org . eclipse . xtext . IGrammarAccess > bindIGrammarAccess ( ) { return org . sqlproc . dsl . services . ProcessorDslGrammarAccess . class ; } public Class < ? extends org . eclipse . xtext . serializer . sequencer . ISemanticSequencer > bindISemanticSequencer ( ) { return org . sqlproc . dsl . serializer . ProcessorDslSemanticSequencer . class ; } public Class < ? extends org . eclipse . xtext . serializer . sequencer . ISyntacticSequencer > bindISyntacticSequencer ( ) { return org . sqlproc . dsl . serializer . ProcessorDslSyntacticSequencer . class ; } public Class < ? extends org . eclipse . xtext . serializer . ISerializer > bindISerializer ( ) { return org . eclipse . xtext . serializer . impl . Serializer . class ; } public Class < ? extends org . eclipse . xtext . parser . IParser > bindIParser ( ) { return org . sqlproc . dsl . parser . antlr . ProcessorDslParser . class ; } public Class < ? extends org . eclipse . xtext . parser . ITokenToStringConverter > bindITokenToStringConverter ( ) { return org . eclipse . xtext . parser . antlr . AntlrTokenToStringConverter . class ; } public Class < ? extends org . eclipse . xtext . parser . antlr . IAntlrTokenFileProvider > bindIAntlrTokenFileProvider ( ) { return org . sqlproc . dsl . parser . antlr . ProcessorDslAntlrTokenFileProvider . class ; } public Class < ? extends org . eclipse . xtext . parser . antlr . Lexer > bindLexer ( ) { return org . sqlproc . dsl . parser . antlr . internal . InternalProcessorDslLexer . class ; } public com . google . inject . Provider < org . sqlproc . dsl . parser . antlr . internal . InternalProcessorDslLexer > provideInternalProcessorDslLexer ( ) { return org . eclipse . xtext . parser . antlr . LexerProvider . create ( org . sqlproc . dsl . parser . antlr . internal . InternalProcessorDslLexer . class ) ; } public void configureRuntimeLexer ( com . google . inject . Binder binder ) { binder . bind ( org . eclipse . xtext . parser . antlr . Lexer . class ) . annotatedWith ( com . google . inject . name . Names . named ( org . eclipse . xtext . parser . antlr . LexerBindings . RUNTIME ) ) . to ( org . sqlproc . dsl . parser . antlr . internal . InternalProcessorDslLexer . class ) ; } public Class < ? extends org . eclipse . xtext . parser . antlr . ITokenDefProvider > bindITokenDefProvider ( ) { return org . eclipse . xtext . parser . antlr . AntlrTokenDefProvider . class ; } @ org . eclipse . xtext . service . SingletonBinding ( eager = true ) public Class < ? extends org . sqlproc . dsl . validation . ProcessorDslJavaValidator > bindProcessorDslJavaValidator ( ) { return org . sqlproc . dsl . validation . ProcessorDslJavaValidator . class ; } public Class < ? extends org . eclipse . xtext . scoping . IScopeProvider > bindIScopeProvider ( ) { return org . sqlproc . dsl . scoping . ProcessorDslScopeProvider . class ; } public void configureIScopeProviderDelegate ( com . google . inject . Binder binder ) { binder . bind ( org . eclipse . xtext . scoping . IScopeProvider . class ) . annotatedWith ( com . google . inject . name . Names . named ( org . eclipse . xtext . scoping . impl . AbstractDeclarativeScopeProvider . NAMED_DELEGATE ) ) . to ( org . eclipse . xtext . scoping . impl . ImportedNamespaceAwareLocalScopeProvider . class ) ; } public void configureIgnoreCaseLinking ( com . google . inject . Binder binder ) { binder . bindConstant ( ) . annotatedWith ( org . eclipse . xtext . scoping . IgnoreCaseLinking . class ) . to ( false ) ; } public Class < ? extends org . eclipse . xtext . naming . IQualifiedNameProvider > bindIQualifiedNameProvider ( ) { return org . eclipse . xtext . naming . DefaultDeclarativeQualifiedNameProvider . class ; } public Class < ? extends org . eclipse . xtext . resource . IContainer . Manager > bindIContainer$Manager ( ) { return org . eclipse . xtext . resource . containers . StateBasedContainerManager . class ; } public Class < ? extends org . eclipse . xtext . resource . containers . IAllContainersState . Provider > bindIAllContainersState$Provider ( ) { return org . eclipse . xtext . resource . containers . ResourceSetBasedAllContainersStateProvider . class ; } public void configureIResourceDescriptions ( com . google . inject . Binder binder ) { binder . bind ( org . eclipse . xtext . resource . IResourceDescriptions . class ) . to ( org . eclipse . xtext . resource . impl . ResourceSetBasedResourceDescriptions . class ) ; } public void configureIResourceDescriptionsBuilderScope ( com . google . inject . Binder binder ) { binder . bind ( org . eclipse . xtext . resource . IResourceDescriptions . class ) . annotatedWith ( com . google . inject . name . Names . named ( org . eclipse . xtext . resource . impl . ResourceDescriptionsProvider . NAMED_BUILDER_SCOPE ) ) . to ( org . eclipse . xtext . resource . impl . ResourceSetBasedResourceDescriptions . class ) ; } public Class < ? extends org . eclipse . xtext . generator . IGenerator > bindIGenerator ( ) { return org . sqlproc . dsl . generator . ProcessorDslGenerator . class ; } public Class < ? extends org . eclipse . xtext . formatting . IFormatter > bindIFormatter ( ) { return org . sqlproc . dsl . formatting . ProcessorDslFormatter . class ; } public java . lang . ClassLoader bindClassLoaderToInstance ( ) { return getClass ( ) . getClassLoader ( ) ; } public org . eclipse . xtext . common . types . TypesFactory bindTypesFactoryToInstance ( ) { return org . eclipse . xtext . common . types . TypesFactory . eINSTANCE ; } public Class < ? extends org . eclipse . xtext . common . types . access . IJvmTypeProvider . Factory > bindIJvmTypeProvider$Factory ( ) { return org . eclipse . xtext . common . types . access . ClasspathTypeProviderFactory . class ; } public Class < ? extends org . eclipse . xtext . common . types . xtext . AbstractTypeScopeProvider > bindAbstractTypeScopeProvider ( ) { return org . eclipse . xtext . common . types . xtext . ClasspathBasedTypeScopeProvider . class ; } public Class < ? extends org . eclipse . xtext . scoping . IGlobalScopeProvider > bindIGlobalScopeProvider ( ) { return org . eclipse . xtext . common . types . xtext . TypesAwareDefaultGlobalScopeProvider . class ; } } </s> |
<s> package org . sqlproc . dsl ; import org . eclipse . emf . ecore . EPackage ; import org . eclipse . xtext . ISetup ; import org . eclipse . emf . ecore . resource . Resource ; import com . google . inject . Guice ; import com . google . inject . Injector ; @ SuppressWarnings ( "<STR_LIT:all>" ) public class ProcessorDslStandaloneSetupGenerated implements ISetup { public Injector createInjectorAndDoEMFRegistration ( ) { if ( ! Resource . Factory . Registry . INSTANCE . getExtensionToFactoryMap ( ) . containsKey ( "<STR_LIT>" ) ) Resource . Factory . Registry . INSTANCE . getExtensionToFactoryMap ( ) . put ( "<STR_LIT>" , new org . eclipse . emf . ecore . xmi . impl . EcoreResourceFactoryImpl ( ) ) ; if ( ! Resource . Factory . Registry . INSTANCE . getExtensionToFactoryMap ( ) . containsKey ( "<STR_LIT>" ) ) Resource . Factory . Registry . INSTANCE . getExtensionToFactoryMap ( ) . put ( "<STR_LIT>" , new org . eclipse . emf . ecore . xmi . impl . XMIResourceFactoryImpl ( ) ) ; if ( ! EPackage . Registry . INSTANCE . containsKey ( org . eclipse . xtext . XtextPackage . eNS_URI ) ) EPackage . Registry . INSTANCE . put ( org . eclipse . xtext . XtextPackage . eNS_URI , org . eclipse . xtext . XtextPackage . eINSTANCE ) ; Injector injector = createInjector ( ) ; register ( injector ) ; return injector ; } public Injector createInjector ( ) { return Guice . createInjector ( new org . sqlproc . dsl . ProcessorDslRuntimeModule ( ) ) ; } public void register ( Injector injector ) { if ( ! EPackage . Registry . INSTANCE . containsKey ( "<STR_LIT>" ) ) { EPackage . Registry . INSTANCE . put ( "<STR_LIT>" , org . sqlproc . dsl . processorDsl . ProcessorDslPackage . eINSTANCE ) ; } org . eclipse . xtext . resource . IResourceFactory resourceFactory = injector . getInstance ( org . eclipse . xtext . resource . IResourceFactory . class ) ; org . eclipse . xtext . resource . IResourceServiceProvider serviceProvider = injector . getInstance ( org . eclipse . xtext . resource . IResourceServiceProvider . class ) ; Resource . Factory . Registry . INSTANCE . getExtensionToFactoryMap ( ) . put ( "<STR_LIT>" , resourceFactory ) ; org . eclipse . xtext . resource . IResourceServiceProvider . Registry . INSTANCE . getExtensionToFactoryMap ( ) . put ( "<STR_LIT>" , serviceProvider ) ; } } </s> |
<s> package org . sqlproc . dsl . services ; import com . google . inject . Singleton ; import com . google . inject . Inject ; import java . util . List ; import org . eclipse . xtext . * ; import org . eclipse . xtext . service . GrammarProvider ; import org . eclipse . xtext . service . AbstractElementFinder . * ; @ Singleton public class ProcessorDslGrammarAccess extends AbstractGrammarElementFinder { public class ArtifactsElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cWSTerminalRuleCall_0 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cAlternatives_1 = ( Alternatives ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1_0 = ( Group ) cAlternatives_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cFeaturesAssignment_1_0_0 = ( Assignment ) cGroup_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cFeaturesOptionalFeatureParserRuleCall_1_0_0_0 = ( RuleCall ) cFeaturesAssignment_1_0_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_1_0_1 = ( RuleCall ) cGroup_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1_1 = ( Group ) cAlternatives_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cStatementsAssignment_1_1_0 = ( Assignment ) cGroup_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cStatementsMetaStatementParserRuleCall_1_1_0_0 = ( RuleCall ) cStatementsAssignment_1_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_1_1_1 = ( RuleCall ) cGroup_1_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1_2 = ( Group ) cAlternatives_1 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Assignment cMappingsAssignment_1_2_0 = ( Assignment ) cGroup_1_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cMappingsMappingRuleParserRuleCall_1_2_0_0 = ( RuleCall ) cMappingsAssignment_1_2_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_1_2_1 = ( RuleCall ) cGroup_1_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1_3 = ( Group ) cAlternatives_1 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Assignment cPojosAssignment_1_3_0 = ( Assignment ) cGroup_1_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cPojosPojoDefinitionParserRuleCall_1_3_0_0 = ( RuleCall ) cPojosAssignment_1_3_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_1_3_1 = ( RuleCall ) cGroup_1_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1_4 = ( Group ) cAlternatives_1 . eContents ( ) . get ( <NUM_LIT:4> ) ; private final Assignment cUsagesAssignment_1_4_0 = ( Assignment ) cGroup_1_4 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cUsagesPojoUsageParserRuleCall_1_4_0_0 = ( RuleCall ) cUsagesAssignment_1_4_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_1_4_1 = ( RuleCall ) cGroup_1_4 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1_5 = ( Group ) cAlternatives_1 . eContents ( ) . get ( <NUM_LIT:5> ) ; private final Assignment cPropertiesAssignment_1_5_0 = ( Assignment ) cGroup_1_5 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cPropertiesPropertyParserRuleCall_1_5_0_0 = ( RuleCall ) cPropertiesAssignment_1_5_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_1_5_1 = ( RuleCall ) cGroup_1_5 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1_6 = ( Group ) cAlternatives_1 . eContents ( ) . get ( <NUM_LIT:6> ) ; private final Assignment cTablesAssignment_1_6_0 = ( Assignment ) cGroup_1_6 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cTablesTableDefinitionParserRuleCall_1_6_0_0 = ( RuleCall ) cTablesAssignment_1_6_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_1_6_1 = ( RuleCall ) cGroup_1_6 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1_7 = ( Group ) cAlternatives_1 . eContents ( ) . get ( <NUM_LIT:7> ) ; private final Assignment cTableUsagesAssignment_1_7_0 = ( Assignment ) cGroup_1_7 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cTableUsagesTableUsageParserRuleCall_1_7_0_0 = ( RuleCall ) cTableUsagesAssignment_1_7_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_1_7_1 = ( RuleCall ) cGroup_1_7 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1_8 = ( Group ) cAlternatives_1 . eContents ( ) . get ( <NUM_LIT:8> ) ; private final Assignment cPojoPackagesAssignment_1_8_0 = ( Assignment ) cGroup_1_8 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cPojoPackagesPackageDeclarationParserRuleCall_1_8_0_0 = ( RuleCall ) cPojoPackagesAssignment_1_8_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_1_8_1 = ( RuleCall ) cGroup_1_8 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1_9 = ( Group ) cAlternatives_1 . eContents ( ) . get ( <NUM_LIT:9> ) ; private final Assignment cUsagesExtAssignment_1_9_0 = ( Assignment ) cGroup_1_9 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cUsagesExtPojoUsageExtParserRuleCall_1_9_0_0 = ( RuleCall ) cUsagesExtAssignment_1_9_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_1_9_1 = ( RuleCall ) cGroup_1_9 . eContents ( ) . get ( <NUM_LIT:1> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public RuleCall getWSTerminalRuleCall_0 ( ) { return cWSTerminalRuleCall_0 ; } public Alternatives getAlternatives_1 ( ) { return cAlternatives_1 ; } public Group getGroup_1_0 ( ) { return cGroup_1_0 ; } public Assignment getFeaturesAssignment_1_0_0 ( ) { return cFeaturesAssignment_1_0_0 ; } public RuleCall getFeaturesOptionalFeatureParserRuleCall_1_0_0_0 ( ) { return cFeaturesOptionalFeatureParserRuleCall_1_0_0_0 ; } public RuleCall getWSTerminalRuleCall_1_0_1 ( ) { return cWSTerminalRuleCall_1_0_1 ; } public Group getGroup_1_1 ( ) { return cGroup_1_1 ; } public Assignment getStatementsAssignment_1_1_0 ( ) { return cStatementsAssignment_1_1_0 ; } public RuleCall getStatementsMetaStatementParserRuleCall_1_1_0_0 ( ) { return cStatementsMetaStatementParserRuleCall_1_1_0_0 ; } public RuleCall getWSTerminalRuleCall_1_1_1 ( ) { return cWSTerminalRuleCall_1_1_1 ; } public Group getGroup_1_2 ( ) { return cGroup_1_2 ; } public Assignment getMappingsAssignment_1_2_0 ( ) { return cMappingsAssignment_1_2_0 ; } public RuleCall getMappingsMappingRuleParserRuleCall_1_2_0_0 ( ) { return cMappingsMappingRuleParserRuleCall_1_2_0_0 ; } public RuleCall getWSTerminalRuleCall_1_2_1 ( ) { return cWSTerminalRuleCall_1_2_1 ; } public Group getGroup_1_3 ( ) { return cGroup_1_3 ; } public Assignment getPojosAssignment_1_3_0 ( ) { return cPojosAssignment_1_3_0 ; } public RuleCall getPojosPojoDefinitionParserRuleCall_1_3_0_0 ( ) { return cPojosPojoDefinitionParserRuleCall_1_3_0_0 ; } public RuleCall getWSTerminalRuleCall_1_3_1 ( ) { return cWSTerminalRuleCall_1_3_1 ; } public Group getGroup_1_4 ( ) { return cGroup_1_4 ; } public Assignment getUsagesAssignment_1_4_0 ( ) { return cUsagesAssignment_1_4_0 ; } public RuleCall getUsagesPojoUsageParserRuleCall_1_4_0_0 ( ) { return cUsagesPojoUsageParserRuleCall_1_4_0_0 ; } public RuleCall getWSTerminalRuleCall_1_4_1 ( ) { return cWSTerminalRuleCall_1_4_1 ; } public Group getGroup_1_5 ( ) { return cGroup_1_5 ; } public Assignment getPropertiesAssignment_1_5_0 ( ) { return cPropertiesAssignment_1_5_0 ; } public RuleCall getPropertiesPropertyParserRuleCall_1_5_0_0 ( ) { return cPropertiesPropertyParserRuleCall_1_5_0_0 ; } public RuleCall getWSTerminalRuleCall_1_5_1 ( ) { return cWSTerminalRuleCall_1_5_1 ; } public Group getGroup_1_6 ( ) { return cGroup_1_6 ; } public Assignment getTablesAssignment_1_6_0 ( ) { return cTablesAssignment_1_6_0 ; } public RuleCall getTablesTableDefinitionParserRuleCall_1_6_0_0 ( ) { return cTablesTableDefinitionParserRuleCall_1_6_0_0 ; } public RuleCall getWSTerminalRuleCall_1_6_1 ( ) { return cWSTerminalRuleCall_1_6_1 ; } public Group getGroup_1_7 ( ) { return cGroup_1_7 ; } public Assignment getTableUsagesAssignment_1_7_0 ( ) { return cTableUsagesAssignment_1_7_0 ; } public RuleCall getTableUsagesTableUsageParserRuleCall_1_7_0_0 ( ) { return cTableUsagesTableUsageParserRuleCall_1_7_0_0 ; } public RuleCall getWSTerminalRuleCall_1_7_1 ( ) { return cWSTerminalRuleCall_1_7_1 ; } public Group getGroup_1_8 ( ) { return cGroup_1_8 ; } public Assignment getPojoPackagesAssignment_1_8_0 ( ) { return cPojoPackagesAssignment_1_8_0 ; } public RuleCall getPojoPackagesPackageDeclarationParserRuleCall_1_8_0_0 ( ) { return cPojoPackagesPackageDeclarationParserRuleCall_1_8_0_0 ; } public RuleCall getWSTerminalRuleCall_1_8_1 ( ) { return cWSTerminalRuleCall_1_8_1 ; } public Group getGroup_1_9 ( ) { return cGroup_1_9 ; } public Assignment getUsagesExtAssignment_1_9_0 ( ) { return cUsagesExtAssignment_1_9_0 ; } public RuleCall getUsagesExtPojoUsageExtParserRuleCall_1_9_0_0 ( ) { return cUsagesExtPojoUsageExtParserRuleCall_1_9_0_0 ; } public RuleCall getWSTerminalRuleCall_1_9_1 ( ) { return cWSTerminalRuleCall_1_9_1 ; } } public class SqlTypeAssignementElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cTypeNameAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cTypeNameIDENTTerminalRuleCall_0_0 = ( RuleCall ) cTypeNameAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_1 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cLPARENTerminalRuleCall_1_0 = ( RuleCall ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cSizeAssignment_1_1 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSizeNUMBERTerminalRuleCall_1_1_0 = ( RuleCall ) cSizeAssignment_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRPARENTerminalRuleCall_1_2 = ( RuleCall ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Keyword cHyphenMinusGreaterThanSignKeyword_2 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Assignment cTypeAssignment_3 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cTypePojoTypeParserRuleCall_3_0 = ( RuleCall ) cTypeAssignment_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getTypeNameAssignment_0 ( ) { return cTypeNameAssignment_0 ; } public RuleCall getTypeNameIDENTTerminalRuleCall_0_0 ( ) { return cTypeNameIDENTTerminalRuleCall_0_0 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public RuleCall getLPARENTerminalRuleCall_1_0 ( ) { return cLPARENTerminalRuleCall_1_0 ; } public Assignment getSizeAssignment_1_1 ( ) { return cSizeAssignment_1_1 ; } public RuleCall getSizeNUMBERTerminalRuleCall_1_1_0 ( ) { return cSizeNUMBERTerminalRuleCall_1_1_0 ; } public RuleCall getRPARENTerminalRuleCall_1_2 ( ) { return cRPARENTerminalRuleCall_1_2 ; } public Keyword getHyphenMinusGreaterThanSignKeyword_2 ( ) { return cHyphenMinusGreaterThanSignKeyword_2 ; } public Assignment getTypeAssignment_3 ( ) { return cTypeAssignment_3 ; } public RuleCall getTypePojoTypeParserRuleCall_3_0 ( ) { return cTypePojoTypeParserRuleCall_3_0 ; } } public class ColumnTypeAssignementElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbColumnAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cDbColumnIDENTTerminalRuleCall_0_0 = ( RuleCall ) cDbColumnAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cHyphenMinusGreaterThanSignKeyword_1 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cTypeAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cTypePojoTypeParserRuleCall_2_0 = ( RuleCall ) cTypeAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getDbColumnAssignment_0 ( ) { return cDbColumnAssignment_0 ; } public RuleCall getDbColumnIDENTTerminalRuleCall_0_0 ( ) { return cDbColumnIDENTTerminalRuleCall_0_0 ; } public Keyword getHyphenMinusGreaterThanSignKeyword_1 ( ) { return cHyphenMinusGreaterThanSignKeyword_1 ; } public Assignment getTypeAssignment_2 ( ) { return cTypeAssignment_2 ; } public RuleCall getTypePojoTypeParserRuleCall_2_0 ( ) { return cTypePojoTypeParserRuleCall_2_0 ; } } public class ShowColumnTypeAssignementElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbColumnAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cDbColumnIDENTTerminalRuleCall_0_0 = ( RuleCall ) cDbColumnAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cHyphenMinusGreaterThanSignKeyword_1 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cTypeAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cTypePropertyValueParserRuleCall_2_0 = ( RuleCall ) cTypeAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getDbColumnAssignment_0 ( ) { return cDbColumnAssignment_0 ; } public RuleCall getDbColumnIDENTTerminalRuleCall_0_0 ( ) { return cDbColumnIDENTTerminalRuleCall_0_0 ; } public Keyword getHyphenMinusGreaterThanSignKeyword_1 ( ) { return cHyphenMinusGreaterThanSignKeyword_1 ; } public Assignment getTypeAssignment_2 ( ) { return cTypeAssignment_2 ; } public RuleCall getTypePropertyValueParserRuleCall_2_0 ( ) { return cTypePropertyValueParserRuleCall_2_0 ; } } public class TableAssignementElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_0_0 = ( RuleCall ) cDbTableAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cHyphenMinusGreaterThanSignKeyword_1 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cNewNameAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cNewNameIDENTTerminalRuleCall_2_0 = ( RuleCall ) cNewNameAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getDbTableAssignment_0 ( ) { return cDbTableAssignment_0 ; } public RuleCall getDbTableIDENTTerminalRuleCall_0_0 ( ) { return cDbTableIDENTTerminalRuleCall_0_0 ; } public Keyword getHyphenMinusGreaterThanSignKeyword_1 ( ) { return cHyphenMinusGreaterThanSignKeyword_1 ; } public Assignment getNewNameAssignment_2 ( ) { return cNewNameAssignment_2 ; } public RuleCall getNewNameIDENTTerminalRuleCall_2_0 ( ) { return cNewNameIDENTTerminalRuleCall_2_0 ; } } public class JoinTableAssignementElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_0_0 = ( RuleCall ) cDbTableAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_1 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cHyphenMinusGreaterThanSignKeyword_1_0 = ( Keyword ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cDbTablesAssignment_1_1 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cDbTablesIDENTTerminalRuleCall_1_1_0 = ( RuleCall ) cDbTablesAssignment_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getDbTableAssignment_0 ( ) { return cDbTableAssignment_0 ; } public RuleCall getDbTableIDENTTerminalRuleCall_0_0 ( ) { return cDbTableIDENTTerminalRuleCall_0_0 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public Keyword getHyphenMinusGreaterThanSignKeyword_1_0 ( ) { return cHyphenMinusGreaterThanSignKeyword_1_0 ; } public Assignment getDbTablesAssignment_1_1 ( ) { return cDbTablesAssignment_1_1 ; } public RuleCall getDbTablesIDENTTerminalRuleCall_1_1_0 ( ) { return cDbTablesIDENTTerminalRuleCall_1_1_0 ; } } public class ColumnAssignementElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbColumnAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cDbColumnIDENTTerminalRuleCall_0_0 = ( RuleCall ) cDbColumnAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cHyphenMinusGreaterThanSignKeyword_1 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cNewNameAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cNewNameIDENTTerminalRuleCall_2_0 = ( RuleCall ) cNewNameAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getDbColumnAssignment_0 ( ) { return cDbColumnAssignment_0 ; } public RuleCall getDbColumnIDENTTerminalRuleCall_0_0 ( ) { return cDbColumnIDENTTerminalRuleCall_0_0 ; } public Keyword getHyphenMinusGreaterThanSignKeyword_1 ( ) { return cHyphenMinusGreaterThanSignKeyword_1 ; } public Assignment getNewNameAssignment_2 ( ) { return cNewNameAssignment_2 ; } public RuleCall getNewNameIDENTTerminalRuleCall_2_0 ( ) { return cNewNameIDENTTerminalRuleCall_2_0 ; } } public class ImportAssignementElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbColumnAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cDbColumnIDENTTerminalRuleCall_0_0 = ( RuleCall ) cDbColumnAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cHyphenMinusGreaterThanSignKeyword_1 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cPkTableAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cPkTableIDENTTerminalRuleCall_2_0 = ( RuleCall ) cPkTableAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Keyword cHyphenMinusGreaterThanSignKeyword_3_0 = ( Keyword ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cPkColumnAssignment_3_1 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cPkColumnIDENTTerminalRuleCall_3_1_0 = ( RuleCall ) cPkColumnAssignment_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getDbColumnAssignment_0 ( ) { return cDbColumnAssignment_0 ; } public RuleCall getDbColumnIDENTTerminalRuleCall_0_0 ( ) { return cDbColumnIDENTTerminalRuleCall_0_0 ; } public Keyword getHyphenMinusGreaterThanSignKeyword_1 ( ) { return cHyphenMinusGreaterThanSignKeyword_1 ; } public Assignment getPkTableAssignment_2 ( ) { return cPkTableAssignment_2 ; } public RuleCall getPkTableIDENTTerminalRuleCall_2_0 ( ) { return cPkTableIDENTTerminalRuleCall_2_0 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public Keyword getHyphenMinusGreaterThanSignKeyword_3_0 ( ) { return cHyphenMinusGreaterThanSignKeyword_3_0 ; } public Assignment getPkColumnAssignment_3_1 ( ) { return cPkColumnAssignment_3_1 ; } public RuleCall getPkColumnIDENTTerminalRuleCall_3_1_0 ( ) { return cPkColumnIDENTTerminalRuleCall_3_1_0 ; } } public class ExportAssignementElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbColumnAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cDbColumnIDENTTerminalRuleCall_0_0 = ( RuleCall ) cDbColumnAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cHyphenMinusGreaterThanSignKeyword_1 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cFkTableAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cFkTableIDENTTerminalRuleCall_2_0 = ( RuleCall ) cFkTableAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Keyword cHyphenMinusGreaterThanSignKeyword_3_0 = ( Keyword ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cFkColumnAssignment_3_1 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cFkColumnIDENTTerminalRuleCall_3_1_0 = ( RuleCall ) cFkColumnAssignment_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getDbColumnAssignment_0 ( ) { return cDbColumnAssignment_0 ; } public RuleCall getDbColumnIDENTTerminalRuleCall_0_0 ( ) { return cDbColumnIDENTTerminalRuleCall_0_0 ; } public Keyword getHyphenMinusGreaterThanSignKeyword_1 ( ) { return cHyphenMinusGreaterThanSignKeyword_1 ; } public Assignment getFkTableAssignment_2 ( ) { return cFkTableAssignment_2 ; } public RuleCall getFkTableIDENTTerminalRuleCall_2_0 ( ) { return cFkTableIDENTTerminalRuleCall_2_0 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public Keyword getHyphenMinusGreaterThanSignKeyword_3_0 ( ) { return cHyphenMinusGreaterThanSignKeyword_3_0 ; } public Assignment getFkColumnAssignment_3_1 ( ) { return cFkColumnAssignment_3_1 ; } public RuleCall getFkColumnIDENTTerminalRuleCall_3_1_0 ( ) { return cFkColumnIDENTTerminalRuleCall_3_1_0 ; } } public class InheritanceAssignementElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDiscriminatorAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cDiscriminatorIDENTTerminalRuleCall_0_0 = ( RuleCall ) cDiscriminatorAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cHyphenMinusGreaterThanSignKeyword_1 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_2_0 = ( RuleCall ) cDbTableAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Keyword cHyphenMinusGreaterThanSignKeyword_3_0 = ( Keyword ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cDbColumnsAssignment_3_1 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cDbColumnsIDENTTerminalRuleCall_3_1_0 = ( RuleCall ) cDbColumnsAssignment_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getDiscriminatorAssignment_0 ( ) { return cDiscriminatorAssignment_0 ; } public RuleCall getDiscriminatorIDENTTerminalRuleCall_0_0 ( ) { return cDiscriminatorIDENTTerminalRuleCall_0_0 ; } public Keyword getHyphenMinusGreaterThanSignKeyword_1 ( ) { return cHyphenMinusGreaterThanSignKeyword_1 ; } public Assignment getDbTableAssignment_2 ( ) { return cDbTableAssignment_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_2_0 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public Keyword getHyphenMinusGreaterThanSignKeyword_3_0 ( ) { return cHyphenMinusGreaterThanSignKeyword_3_0 ; } public Assignment getDbColumnsAssignment_3_1 ( ) { return cDbColumnsAssignment_3_1 ; } public RuleCall getDbColumnsIDENTTerminalRuleCall_3_1_0 ( ) { return cDbColumnsIDENTTerminalRuleCall_3_1_0 ; } } public class ManyToManyAssignementElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cPkColumnAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cPkColumnIDENTTerminalRuleCall_0_0 = ( RuleCall ) cPkColumnAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cHyphenMinusGreaterThanSignKeyword_1 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cPkTableAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cPkTableIDENTTerminalRuleCall_2_0 = ( RuleCall ) cPkTableAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Keyword cHyphenMinusGreaterThanSignKeyword_3_0 = ( Keyword ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cFkColumnAssignment_3_1 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cFkColumnIDENTTerminalRuleCall_3_1_0 = ( RuleCall ) cFkColumnAssignment_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getPkColumnAssignment_0 ( ) { return cPkColumnAssignment_0 ; } public RuleCall getPkColumnIDENTTerminalRuleCall_0_0 ( ) { return cPkColumnIDENTTerminalRuleCall_0_0 ; } public Keyword getHyphenMinusGreaterThanSignKeyword_1 ( ) { return cHyphenMinusGreaterThanSignKeyword_1 ; } public Assignment getPkTableAssignment_2 ( ) { return cPkTableAssignment_2 ; } public RuleCall getPkTableIDENTTerminalRuleCall_2_0 ( ) { return cPkTableIDENTTerminalRuleCall_2_0 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public Keyword getHyphenMinusGreaterThanSignKeyword_3_0 ( ) { return cHyphenMinusGreaterThanSignKeyword_3_0 ; } public Assignment getFkColumnAssignment_3_1 ( ) { return cFkColumnAssignment_3_1 ; } public RuleCall getFkColumnIDENTTerminalRuleCall_3_1_0 ( ) { return cFkColumnIDENTTerminalRuleCall_3_1_0 ; } } public class PropertyElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cAlternatives_0 = ( Alternatives ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cNameAssignment_0_0 = ( Assignment ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameResolvePojoOnKeyword_0_0_0 = ( Keyword ) cNameAssignment_0_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cNameAssignment_0_1 = ( Assignment ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cNameResolvePojoOffKeyword_0_1_0 = ( Keyword ) cNameAssignment_0_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_0_2 = ( Group ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Assignment cNameAssignment_0_2_0 = ( Assignment ) cGroup_0_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameDatabaseKeyword_0_2_0_0 = ( Keyword ) cNameAssignment_0_2_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cDatabaseAssignment_0_2_1 = ( Assignment ) cGroup_0_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cDatabaseDatabasePropertyParserRuleCall_0_2_1_0 = ( RuleCall ) cDatabaseAssignment_0_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_0_3 = ( Group ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Assignment cNameAssignment_0_3_0 = ( Assignment ) cGroup_0_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNamePojogenKeyword_0_3_0_0 = ( Keyword ) cNameAssignment_0_3_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cPojogenAssignment_0_3_1 = ( Assignment ) cGroup_0_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cPojogenPojogenPropertyParserRuleCall_0_3_1_0 = ( RuleCall ) cPojogenAssignment_0_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_1 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Alternatives getAlternatives_0 ( ) { return cAlternatives_0 ; } public Assignment getNameAssignment_0_0 ( ) { return cNameAssignment_0_0 ; } public Keyword getNameResolvePojoOnKeyword_0_0_0 ( ) { return cNameResolvePojoOnKeyword_0_0_0 ; } public Assignment getNameAssignment_0_1 ( ) { return cNameAssignment_0_1 ; } public Keyword getNameResolvePojoOffKeyword_0_1_0 ( ) { return cNameResolvePojoOffKeyword_0_1_0 ; } public Group getGroup_0_2 ( ) { return cGroup_0_2 ; } public Assignment getNameAssignment_0_2_0 ( ) { return cNameAssignment_0_2_0 ; } public Keyword getNameDatabaseKeyword_0_2_0_0 ( ) { return cNameDatabaseKeyword_0_2_0_0 ; } public Assignment getDatabaseAssignment_0_2_1 ( ) { return cDatabaseAssignment_0_2_1 ; } public RuleCall getDatabaseDatabasePropertyParserRuleCall_0_2_1_0 ( ) { return cDatabaseDatabasePropertyParserRuleCall_0_2_1_0 ; } public Group getGroup_0_3 ( ) { return cGroup_0_3 ; } public Assignment getNameAssignment_0_3_0 ( ) { return cNameAssignment_0_3_0 ; } public Keyword getNamePojogenKeyword_0_3_0_0 ( ) { return cNamePojogenKeyword_0_3_0_0 ; } public Assignment getPojogenAssignment_0_3_1 ( ) { return cPojogenAssignment_0_3_1 ; } public RuleCall getPojogenPojogenPropertyParserRuleCall_0_3_1_0 ( ) { return cPojogenPojogenPropertyParserRuleCall_0_3_1_0 ; } public RuleCall getSEMICOLONTerminalRuleCall_1 ( ) { return cSEMICOLONTerminalRuleCall_1 ; } } public class DatabasePropertyElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cNameAssignment_0 = ( Assignment ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameIsOnlineKeyword_0_0 = ( Keyword ) cNameAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cNameAssignment_1 = ( Assignment ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cNameIsOfflineKeyword_1_0 = ( Keyword ) cNameAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_2 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Assignment cNameAssignment_2_0 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameHasUrlKeyword_2_0_0 = ( Keyword ) cNameAssignment_2_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_2_1 = ( RuleCall ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbUrlAssignment_2_2 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbUrlPropertyValueParserRuleCall_2_2_0 = ( RuleCall ) cDbUrlAssignment_2_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Assignment cNameAssignment_3_0 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameLoginUsernameKeyword_3_0_0 = ( Keyword ) cNameAssignment_3_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_3_1 = ( RuleCall ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbUsernameAssignment_3_2 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbUsernamePropertyValueParserRuleCall_3_2_0 = ( RuleCall ) cDbUsernameAssignment_3_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_4 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:4> ) ; private final Assignment cNameAssignment_4_0 = ( Assignment ) cGroup_4 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameLoginPasswordKeyword_4_0_0 = ( Keyword ) cNameAssignment_4_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_4_1 = ( RuleCall ) cGroup_4 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbPasswordAssignment_4_2 = ( Assignment ) cGroup_4 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbPasswordPropertyValueParserRuleCall_4_2_0 = ( RuleCall ) cDbPasswordAssignment_4_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_5 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:5> ) ; private final Assignment cNameAssignment_5_0 = ( Assignment ) cGroup_5 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameActiveSchemaKeyword_5_0_0 = ( Keyword ) cNameAssignment_5_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_5_1 = ( RuleCall ) cGroup_5 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbSchemaAssignment_5_2 = ( Assignment ) cGroup_5 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbSchemaPropertyValueParserRuleCall_5_2_0 = ( RuleCall ) cDbSchemaAssignment_5_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_6 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:6> ) ; private final Assignment cNameAssignment_6_0 = ( Assignment ) cGroup_6 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameJdbcDriverKeyword_6_0_0 = ( Keyword ) cNameAssignment_6_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_6_1 = ( RuleCall ) cGroup_6 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbDriverAssignment_6_2 = ( Assignment ) cGroup_6 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbDriverPropertyValueParserRuleCall_6_2_0 = ( RuleCall ) cDbDriverAssignment_6_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public Assignment getNameAssignment_0 ( ) { return cNameAssignment_0 ; } public Keyword getNameIsOnlineKeyword_0_0 ( ) { return cNameIsOnlineKeyword_0_0 ; } public Assignment getNameAssignment_1 ( ) { return cNameAssignment_1 ; } public Keyword getNameIsOfflineKeyword_1_0 ( ) { return cNameIsOfflineKeyword_1_0 ; } public Group getGroup_2 ( ) { return cGroup_2 ; } public Assignment getNameAssignment_2_0 ( ) { return cNameAssignment_2_0 ; } public Keyword getNameHasUrlKeyword_2_0_0 ( ) { return cNameHasUrlKeyword_2_0_0 ; } public RuleCall getWSTerminalRuleCall_2_1 ( ) { return cWSTerminalRuleCall_2_1 ; } public Assignment getDbUrlAssignment_2_2 ( ) { return cDbUrlAssignment_2_2 ; } public RuleCall getDbUrlPropertyValueParserRuleCall_2_2_0 ( ) { return cDbUrlPropertyValueParserRuleCall_2_2_0 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public Assignment getNameAssignment_3_0 ( ) { return cNameAssignment_3_0 ; } public Keyword getNameLoginUsernameKeyword_3_0_0 ( ) { return cNameLoginUsernameKeyword_3_0_0 ; } public RuleCall getWSTerminalRuleCall_3_1 ( ) { return cWSTerminalRuleCall_3_1 ; } public Assignment getDbUsernameAssignment_3_2 ( ) { return cDbUsernameAssignment_3_2 ; } public RuleCall getDbUsernamePropertyValueParserRuleCall_3_2_0 ( ) { return cDbUsernamePropertyValueParserRuleCall_3_2_0 ; } public Group getGroup_4 ( ) { return cGroup_4 ; } public Assignment getNameAssignment_4_0 ( ) { return cNameAssignment_4_0 ; } public Keyword getNameLoginPasswordKeyword_4_0_0 ( ) { return cNameLoginPasswordKeyword_4_0_0 ; } public RuleCall getWSTerminalRuleCall_4_1 ( ) { return cWSTerminalRuleCall_4_1 ; } public Assignment getDbPasswordAssignment_4_2 ( ) { return cDbPasswordAssignment_4_2 ; } public RuleCall getDbPasswordPropertyValueParserRuleCall_4_2_0 ( ) { return cDbPasswordPropertyValueParserRuleCall_4_2_0 ; } public Group getGroup_5 ( ) { return cGroup_5 ; } public Assignment getNameAssignment_5_0 ( ) { return cNameAssignment_5_0 ; } public Keyword getNameActiveSchemaKeyword_5_0_0 ( ) { return cNameActiveSchemaKeyword_5_0_0 ; } public RuleCall getWSTerminalRuleCall_5_1 ( ) { return cWSTerminalRuleCall_5_1 ; } public Assignment getDbSchemaAssignment_5_2 ( ) { return cDbSchemaAssignment_5_2 ; } public RuleCall getDbSchemaPropertyValueParserRuleCall_5_2_0 ( ) { return cDbSchemaPropertyValueParserRuleCall_5_2_0 ; } public Group getGroup_6 ( ) { return cGroup_6 ; } public Assignment getNameAssignment_6_0 ( ) { return cNameAssignment_6_0 ; } public Keyword getNameJdbcDriverKeyword_6_0_0 ( ) { return cNameJdbcDriverKeyword_6_0_0 ; } public RuleCall getWSTerminalRuleCall_6_1 ( ) { return cWSTerminalRuleCall_6_1 ; } public Assignment getDbDriverAssignment_6_2 ( ) { return cDbDriverAssignment_6_2 ; } public RuleCall getDbDriverPropertyValueParserRuleCall_6_2_0 ( ) { return cDbDriverPropertyValueParserRuleCall_6_2_0 ; } } public class PojogenPropertyElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_0 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cNameAssignment_0_0 = ( Assignment ) cGroup_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameTypesSqltypesKeyword_0_0_0 = ( Keyword ) cNameAssignment_0_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_0_1 = ( Group ) cGroup_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cWSTerminalRuleCall_0_1_0 = ( RuleCall ) cGroup_0_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cSqlTypesAssignment_0_1_1 = ( Assignment ) cGroup_0_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSqlTypesSqlTypeAssignementParserRuleCall_0_1_1_0 = ( RuleCall ) cSqlTypesAssignment_0_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_1 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cNameAssignment_1_0 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameTypesInTableKeyword_1_0_0 = ( Keyword ) cNameAssignment_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_1_1 = ( RuleCall ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_1_2 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_1_2_0 = ( RuleCall ) cDbTableAssignment_1_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_1_3 = ( Group ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_1_3_0 = ( RuleCall ) cGroup_1_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cSqlTypesAssignment_1_3_1 = ( Assignment ) cGroup_1_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSqlTypesSqlTypeAssignementParserRuleCall_1_3_1_0 = ( RuleCall ) cSqlTypesAssignment_1_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_2 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Assignment cNameAssignment_2_0 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameTypesForColumnsKeyword_2_0_0 = ( Keyword ) cNameAssignment_2_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_2_1 = ( RuleCall ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_2_2 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_2_2_0 = ( RuleCall ) cDbTableAssignment_2_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_2_3 = ( Group ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_2_3_0 = ( RuleCall ) cGroup_2_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cColumnTypesAssignment_2_3_1 = ( Assignment ) cGroup_2_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cColumnTypesColumnTypeAssignementParserRuleCall_2_3_1_0 = ( RuleCall ) cColumnTypesAssignment_2_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Assignment cNameAssignment_3_0 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameShowTypeForColumnKeyword_3_0_0 = ( Keyword ) cNameAssignment_3_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_3_1 = ( RuleCall ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_3_2 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_3_2_0 = ( RuleCall ) cDbTableAssignment_3_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_3_3 = ( RuleCall ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Assignment cColumnTypeAssignment_3_4 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cColumnTypeShowColumnTypeAssignementParserRuleCall_3_4_0 = ( RuleCall ) cColumnTypeAssignment_3_4 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_4 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:4> ) ; private final Assignment cNameAssignment_4_0 = ( Assignment ) cGroup_4 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameIgnoreTablesKeyword_4_0_0 = ( Keyword ) cNameAssignment_4_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_4_1 = ( Group ) cGroup_4 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cWSTerminalRuleCall_4_1_0 = ( RuleCall ) cGroup_4_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cDbTablesAssignment_4_1_1 = ( Assignment ) cGroup_4_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cDbTablesIDENTTerminalRuleCall_4_1_1_0 = ( RuleCall ) cDbTablesAssignment_4_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_5 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:5> ) ; private final Assignment cNameAssignment_5_0 = ( Assignment ) cGroup_5 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameOnlyTablesKeyword_5_0_0 = ( Keyword ) cNameAssignment_5_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_5_1 = ( Group ) cGroup_5 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cWSTerminalRuleCall_5_1_0 = ( RuleCall ) cGroup_5_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cDbTablesAssignment_5_1_1 = ( Assignment ) cGroup_5_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cDbTablesIDENTTerminalRuleCall_5_1_1_0 = ( RuleCall ) cDbTablesAssignment_5_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_6 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:6> ) ; private final Assignment cNameAssignment_6_0 = ( Assignment ) cGroup_6 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameJoinTablesKeyword_6_0_0 = ( Keyword ) cNameAssignment_6_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_6_1 = ( Group ) cGroup_6 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cWSTerminalRuleCall_6_1_0 = ( RuleCall ) cGroup_6_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cJoinTablesAssignment_6_1_1 = ( Assignment ) cGroup_6_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cJoinTablesJoinTableAssignementParserRuleCall_6_1_1_0 = ( RuleCall ) cJoinTablesAssignment_6_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_7 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:7> ) ; private final Assignment cNameAssignment_7_0 = ( Assignment ) cGroup_7 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameIgnoreColumnsKeyword_7_0_0 = ( Keyword ) cNameAssignment_7_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_7_1 = ( RuleCall ) cGroup_7 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_7_2 = ( Assignment ) cGroup_7 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_7_2_0 = ( RuleCall ) cDbTableAssignment_7_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_7_3 = ( Group ) cGroup_7 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_7_3_0 = ( RuleCall ) cGroup_7_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cDbColumnsAssignment_7_3_1 = ( Assignment ) cGroup_7_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cDbColumnsIDENTTerminalRuleCall_7_3_1_0 = ( RuleCall ) cDbColumnsAssignment_7_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_8 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:8> ) ; private final Assignment cNameAssignment_8_0 = ( Assignment ) cGroup_8 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameRequiredColumnsKeyword_8_0_0 = ( Keyword ) cNameAssignment_8_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_8_1 = ( RuleCall ) cGroup_8 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_8_2 = ( Assignment ) cGroup_8 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_8_2_0 = ( RuleCall ) cDbTableAssignment_8_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_8_3 = ( Group ) cGroup_8 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_8_3_0 = ( RuleCall ) cGroup_8_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cDbColumnsAssignment_8_3_1 = ( Assignment ) cGroup_8_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cDbColumnsIDENTTerminalRuleCall_8_3_1_0 = ( RuleCall ) cDbColumnsAssignment_8_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_9 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:9> ) ; private final Assignment cNameAssignment_9_0 = ( Assignment ) cGroup_9 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameNotRequiredColumnsKeyword_9_0_0 = ( Keyword ) cNameAssignment_9_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_9_1 = ( RuleCall ) cGroup_9 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_9_2 = ( Assignment ) cGroup_9 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_9_2_0 = ( RuleCall ) cDbTableAssignment_9_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_9_3 = ( Group ) cGroup_9 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_9_3_0 = ( RuleCall ) cGroup_9_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cDbColumnsAssignment_9_3_1 = ( Assignment ) cGroup_9_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cDbColumnsIDENTTerminalRuleCall_9_3_1_0 = ( RuleCall ) cDbColumnsAssignment_9_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_10 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:10> ) ; private final Assignment cNameAssignment_10_0 = ( Assignment ) cGroup_10 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameCreateColumnsKeyword_10_0_0 = ( Keyword ) cNameAssignment_10_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_10_1 = ( RuleCall ) cGroup_10 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_10_2 = ( Assignment ) cGroup_10 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_10_2_0 = ( RuleCall ) cDbTableAssignment_10_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_10_3 = ( Group ) cGroup_10 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_10_3_0 = ( RuleCall ) cGroup_10_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cColumnTypesAssignment_10_3_1 = ( Assignment ) cGroup_10_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cColumnTypesColumnTypeAssignementParserRuleCall_10_3_1_0 = ( RuleCall ) cColumnTypesAssignment_10_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_11 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:11> ) ; private final Assignment cNameAssignment_11_0 = ( Assignment ) cGroup_11 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameRenameTablesKeyword_11_0_0 = ( Keyword ) cNameAssignment_11_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_11_1 = ( Group ) cGroup_11 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cWSTerminalRuleCall_11_1_0 = ( RuleCall ) cGroup_11_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cTablesAssignment_11_1_1 = ( Assignment ) cGroup_11_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cTablesTableAssignementParserRuleCall_11_1_1_0 = ( RuleCall ) cTablesAssignment_11_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_12 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:12> ) ; private final Assignment cNameAssignment_12_0 = ( Assignment ) cGroup_12 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameRenameColumnsKeyword_12_0_0 = ( Keyword ) cNameAssignment_12_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_12_1 = ( RuleCall ) cGroup_12 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_12_2 = ( Assignment ) cGroup_12 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_12_2_0 = ( RuleCall ) cDbTableAssignment_12_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_12_3 = ( Group ) cGroup_12 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_12_3_0 = ( RuleCall ) cGroup_12_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cColumnsAssignment_12_3_1 = ( Assignment ) cGroup_12_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cColumnsColumnAssignementParserRuleCall_12_3_1_0 = ( RuleCall ) cColumnsAssignment_12_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_13 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final Assignment cNameAssignment_13_0 = ( Assignment ) cGroup_13 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameIgnoreOneToManyKeyword_13_0_0 = ( Keyword ) cNameAssignment_13_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_13_1 = ( RuleCall ) cGroup_13 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_13_2 = ( Assignment ) cGroup_13 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_13_2_0 = ( RuleCall ) cDbTableAssignment_13_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_13_3 = ( Group ) cGroup_13 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_13_3_0 = ( RuleCall ) cGroup_13_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cExportsAssignment_13_3_1 = ( Assignment ) cGroup_13_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cExportsExportAssignementParserRuleCall_13_3_1_0 = ( RuleCall ) cExportsAssignment_13_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_14 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final Assignment cNameAssignment_14_0 = ( Assignment ) cGroup_14 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameIgnoreManyToOneKeyword_14_0_0 = ( Keyword ) cNameAssignment_14_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_14_1 = ( RuleCall ) cGroup_14 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_14_2 = ( Assignment ) cGroup_14 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_14_2_0 = ( RuleCall ) cDbTableAssignment_14_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_14_3 = ( Group ) cGroup_14 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_14_3_0 = ( RuleCall ) cGroup_14_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cImportsAssignment_14_3_1 = ( Assignment ) cGroup_14_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cImportsImportAssignementParserRuleCall_14_3_1_0 = ( RuleCall ) cImportsAssignment_14_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_15 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:15> ) ; private final Assignment cNameAssignment_15_0 = ( Assignment ) cGroup_15 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameInheritManyToOneKeyword_15_0_0 = ( Keyword ) cNameAssignment_15_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_15_1 = ( RuleCall ) cGroup_15 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_15_2 = ( Assignment ) cGroup_15 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_15_2_0 = ( RuleCall ) cDbTableAssignment_15_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_15_3 = ( Group ) cGroup_15 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_15_3_0 = ( RuleCall ) cGroup_15_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cImportsAssignment_15_3_1 = ( Assignment ) cGroup_15_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cImportsImportAssignementParserRuleCall_15_3_1_0 = ( RuleCall ) cImportsAssignment_15_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_16 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:16> ) ; private final Assignment cNameAssignment_16_0 = ( Assignment ) cGroup_16 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameCreateOneToManyKeyword_16_0_0 = ( Keyword ) cNameAssignment_16_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_16_1 = ( RuleCall ) cGroup_16 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_16_2 = ( Assignment ) cGroup_16 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_16_2_0 = ( RuleCall ) cDbTableAssignment_16_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_16_3 = ( Group ) cGroup_16 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_16_3_0 = ( RuleCall ) cGroup_16_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cExportsAssignment_16_3_1 = ( Assignment ) cGroup_16_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cExportsExportAssignementParserRuleCall_16_3_1_0 = ( RuleCall ) cExportsAssignment_16_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_17 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final Assignment cNameAssignment_17_0 = ( Assignment ) cGroup_17 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameCreateManyToOneKeyword_17_0_0 = ( Keyword ) cNameAssignment_17_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_17_1 = ( RuleCall ) cGroup_17 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_17_2 = ( Assignment ) cGroup_17 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_17_2_0 = ( RuleCall ) cDbTableAssignment_17_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_17_3 = ( Group ) cGroup_17 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_17_3_0 = ( RuleCall ) cGroup_17_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cImportsAssignment_17_3_1 = ( Assignment ) cGroup_17_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cImportsImportAssignementParserRuleCall_17_3_1_0 = ( RuleCall ) cImportsAssignment_17_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_18 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final Assignment cNameAssignment_18_0 = ( Assignment ) cGroup_18 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameTableManyToManyKeyword_18_0_0 = ( Keyword ) cNameAssignment_18_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_18_1 = ( RuleCall ) cGroup_18 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_18_2 = ( Assignment ) cGroup_18 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_18_2_0 = ( RuleCall ) cDbTableAssignment_18_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_18_3 = ( Group ) cGroup_18 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_18_3_0 = ( RuleCall ) cGroup_18_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cMany2sAssignment_18_3_1 = ( Assignment ) cGroup_18_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cMany2sManyToManyAssignementParserRuleCall_18_3_1_0 = ( RuleCall ) cMany2sAssignment_18_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_19 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final Assignment cNameAssignment_19_0 = ( Assignment ) cGroup_19 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameInheritDiscriminatorKeyword_19_0_0 = ( Keyword ) cNameAssignment_19_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_19_1 = ( RuleCall ) cGroup_19 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cDbTableAssignment_19_2 = ( Assignment ) cGroup_19 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cDbTableIDENTTerminalRuleCall_19_2_0 = ( RuleCall ) cDbTableAssignment_19_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_19_3 = ( RuleCall ) cGroup_19 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Assignment cDbColumnAssignment_19_4 = ( Assignment ) cGroup_19 . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cDbColumnIDENTTerminalRuleCall_19_4_0 = ( RuleCall ) cDbColumnAssignment_19_4 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_19_5 = ( Group ) cGroup_19 . eContents ( ) . get ( <NUM_LIT:5> ) ; private final RuleCall cWSTerminalRuleCall_19_5_0 = ( RuleCall ) cGroup_19_5 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cInheritanceAssignment_19_5_1 = ( Assignment ) cGroup_19_5 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cInheritanceInheritanceAssignementParserRuleCall_19_5_1_0 = ( RuleCall ) cInheritanceAssignment_19_5_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_20 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:20> ) ; private final Assignment cNameAssignment_20_0 = ( Assignment ) cGroup_20 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameGenerateMethodsKeyword_20_0_0 = ( Keyword ) cNameAssignment_20_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_20_1 = ( Group ) cGroup_20 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cWSTerminalRuleCall_20_1_0 = ( RuleCall ) cGroup_20_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cMethodsAssignment_20_1_1 = ( Assignment ) cGroup_20_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cMethodsIDENTTerminalRuleCall_20_1_1_0 = ( RuleCall ) cMethodsAssignment_20_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_21 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final Assignment cNameAssignment_21_0 = ( Assignment ) cGroup_21 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameImplementsInterfacesKeyword_21_0_0 = ( Keyword ) cNameAssignment_21_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_21_1 = ( Group ) cGroup_21 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cWSTerminalRuleCall_21_1_0 = ( RuleCall ) cGroup_21_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cToImplementsAssignment_21_1_1 = ( Assignment ) cGroup_21_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cToImplementsJvmTypeCrossReference_21_1_1_0 = ( CrossReference ) cToImplementsAssignment_21_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cToImplementsJvmTypeQualifiedNameParserRuleCall_21_1_1_0_1 = ( RuleCall ) cToImplementsJvmTypeCrossReference_21_1_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_22 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final Assignment cNameAssignment_22_0 = ( Assignment ) cGroup_22 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNameExtendsClassKeyword_22_0_0 = ( Keyword ) cNameAssignment_22_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_22_1 = ( RuleCall ) cGroup_22 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cToExtendsAssignment_22_2 = ( Assignment ) cGroup_22 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final CrossReference cToExtendsJvmTypeCrossReference_22_2_0 = ( CrossReference ) cToExtendsAssignment_22_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cToExtendsJvmTypeQualifiedNameParserRuleCall_22_2_0_1 = ( RuleCall ) cToExtendsJvmTypeCrossReference_22_2_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public Group getGroup_0 ( ) { return cGroup_0 ; } public Assignment getNameAssignment_0_0 ( ) { return cNameAssignment_0_0 ; } public Keyword getNameTypesSqltypesKeyword_0_0_0 ( ) { return cNameTypesSqltypesKeyword_0_0_0 ; } public Group getGroup_0_1 ( ) { return cGroup_0_1 ; } public RuleCall getWSTerminalRuleCall_0_1_0 ( ) { return cWSTerminalRuleCall_0_1_0 ; } public Assignment getSqlTypesAssignment_0_1_1 ( ) { return cSqlTypesAssignment_0_1_1 ; } public RuleCall getSqlTypesSqlTypeAssignementParserRuleCall_0_1_1_0 ( ) { return cSqlTypesSqlTypeAssignementParserRuleCall_0_1_1_0 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public Assignment getNameAssignment_1_0 ( ) { return cNameAssignment_1_0 ; } public Keyword getNameTypesInTableKeyword_1_0_0 ( ) { return cNameTypesInTableKeyword_1_0_0 ; } public RuleCall getWSTerminalRuleCall_1_1 ( ) { return cWSTerminalRuleCall_1_1 ; } public Assignment getDbTableAssignment_1_2 ( ) { return cDbTableAssignment_1_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_1_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_1_2_0 ; } public Group getGroup_1_3 ( ) { return cGroup_1_3 ; } public RuleCall getWSTerminalRuleCall_1_3_0 ( ) { return cWSTerminalRuleCall_1_3_0 ; } public Assignment getSqlTypesAssignment_1_3_1 ( ) { return cSqlTypesAssignment_1_3_1 ; } public RuleCall getSqlTypesSqlTypeAssignementParserRuleCall_1_3_1_0 ( ) { return cSqlTypesSqlTypeAssignementParserRuleCall_1_3_1_0 ; } public Group getGroup_2 ( ) { return cGroup_2 ; } public Assignment getNameAssignment_2_0 ( ) { return cNameAssignment_2_0 ; } public Keyword getNameTypesForColumnsKeyword_2_0_0 ( ) { return cNameTypesForColumnsKeyword_2_0_0 ; } public RuleCall getWSTerminalRuleCall_2_1 ( ) { return cWSTerminalRuleCall_2_1 ; } public Assignment getDbTableAssignment_2_2 ( ) { return cDbTableAssignment_2_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_2_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_2_2_0 ; } public Group getGroup_2_3 ( ) { return cGroup_2_3 ; } public RuleCall getWSTerminalRuleCall_2_3_0 ( ) { return cWSTerminalRuleCall_2_3_0 ; } public Assignment getColumnTypesAssignment_2_3_1 ( ) { return cColumnTypesAssignment_2_3_1 ; } public RuleCall getColumnTypesColumnTypeAssignementParserRuleCall_2_3_1_0 ( ) { return cColumnTypesColumnTypeAssignementParserRuleCall_2_3_1_0 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public Assignment getNameAssignment_3_0 ( ) { return cNameAssignment_3_0 ; } public Keyword getNameShowTypeForColumnKeyword_3_0_0 ( ) { return cNameShowTypeForColumnKeyword_3_0_0 ; } public RuleCall getWSTerminalRuleCall_3_1 ( ) { return cWSTerminalRuleCall_3_1 ; } public Assignment getDbTableAssignment_3_2 ( ) { return cDbTableAssignment_3_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_3_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_3_2_0 ; } public RuleCall getWSTerminalRuleCall_3_3 ( ) { return cWSTerminalRuleCall_3_3 ; } public Assignment getColumnTypeAssignment_3_4 ( ) { return cColumnTypeAssignment_3_4 ; } public RuleCall getColumnTypeShowColumnTypeAssignementParserRuleCall_3_4_0 ( ) { return cColumnTypeShowColumnTypeAssignementParserRuleCall_3_4_0 ; } public Group getGroup_4 ( ) { return cGroup_4 ; } public Assignment getNameAssignment_4_0 ( ) { return cNameAssignment_4_0 ; } public Keyword getNameIgnoreTablesKeyword_4_0_0 ( ) { return cNameIgnoreTablesKeyword_4_0_0 ; } public Group getGroup_4_1 ( ) { return cGroup_4_1 ; } public RuleCall getWSTerminalRuleCall_4_1_0 ( ) { return cWSTerminalRuleCall_4_1_0 ; } public Assignment getDbTablesAssignment_4_1_1 ( ) { return cDbTablesAssignment_4_1_1 ; } public RuleCall getDbTablesIDENTTerminalRuleCall_4_1_1_0 ( ) { return cDbTablesIDENTTerminalRuleCall_4_1_1_0 ; } public Group getGroup_5 ( ) { return cGroup_5 ; } public Assignment getNameAssignment_5_0 ( ) { return cNameAssignment_5_0 ; } public Keyword getNameOnlyTablesKeyword_5_0_0 ( ) { return cNameOnlyTablesKeyword_5_0_0 ; } public Group getGroup_5_1 ( ) { return cGroup_5_1 ; } public RuleCall getWSTerminalRuleCall_5_1_0 ( ) { return cWSTerminalRuleCall_5_1_0 ; } public Assignment getDbTablesAssignment_5_1_1 ( ) { return cDbTablesAssignment_5_1_1 ; } public RuleCall getDbTablesIDENTTerminalRuleCall_5_1_1_0 ( ) { return cDbTablesIDENTTerminalRuleCall_5_1_1_0 ; } public Group getGroup_6 ( ) { return cGroup_6 ; } public Assignment getNameAssignment_6_0 ( ) { return cNameAssignment_6_0 ; } public Keyword getNameJoinTablesKeyword_6_0_0 ( ) { return cNameJoinTablesKeyword_6_0_0 ; } public Group getGroup_6_1 ( ) { return cGroup_6_1 ; } public RuleCall getWSTerminalRuleCall_6_1_0 ( ) { return cWSTerminalRuleCall_6_1_0 ; } public Assignment getJoinTablesAssignment_6_1_1 ( ) { return cJoinTablesAssignment_6_1_1 ; } public RuleCall getJoinTablesJoinTableAssignementParserRuleCall_6_1_1_0 ( ) { return cJoinTablesJoinTableAssignementParserRuleCall_6_1_1_0 ; } public Group getGroup_7 ( ) { return cGroup_7 ; } public Assignment getNameAssignment_7_0 ( ) { return cNameAssignment_7_0 ; } public Keyword getNameIgnoreColumnsKeyword_7_0_0 ( ) { return cNameIgnoreColumnsKeyword_7_0_0 ; } public RuleCall getWSTerminalRuleCall_7_1 ( ) { return cWSTerminalRuleCall_7_1 ; } public Assignment getDbTableAssignment_7_2 ( ) { return cDbTableAssignment_7_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_7_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_7_2_0 ; } public Group getGroup_7_3 ( ) { return cGroup_7_3 ; } public RuleCall getWSTerminalRuleCall_7_3_0 ( ) { return cWSTerminalRuleCall_7_3_0 ; } public Assignment getDbColumnsAssignment_7_3_1 ( ) { return cDbColumnsAssignment_7_3_1 ; } public RuleCall getDbColumnsIDENTTerminalRuleCall_7_3_1_0 ( ) { return cDbColumnsIDENTTerminalRuleCall_7_3_1_0 ; } public Group getGroup_8 ( ) { return cGroup_8 ; } public Assignment getNameAssignment_8_0 ( ) { return cNameAssignment_8_0 ; } public Keyword getNameRequiredColumnsKeyword_8_0_0 ( ) { return cNameRequiredColumnsKeyword_8_0_0 ; } public RuleCall getWSTerminalRuleCall_8_1 ( ) { return cWSTerminalRuleCall_8_1 ; } public Assignment getDbTableAssignment_8_2 ( ) { return cDbTableAssignment_8_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_8_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_8_2_0 ; } public Group getGroup_8_3 ( ) { return cGroup_8_3 ; } public RuleCall getWSTerminalRuleCall_8_3_0 ( ) { return cWSTerminalRuleCall_8_3_0 ; } public Assignment getDbColumnsAssignment_8_3_1 ( ) { return cDbColumnsAssignment_8_3_1 ; } public RuleCall getDbColumnsIDENTTerminalRuleCall_8_3_1_0 ( ) { return cDbColumnsIDENTTerminalRuleCall_8_3_1_0 ; } public Group getGroup_9 ( ) { return cGroup_9 ; } public Assignment getNameAssignment_9_0 ( ) { return cNameAssignment_9_0 ; } public Keyword getNameNotRequiredColumnsKeyword_9_0_0 ( ) { return cNameNotRequiredColumnsKeyword_9_0_0 ; } public RuleCall getWSTerminalRuleCall_9_1 ( ) { return cWSTerminalRuleCall_9_1 ; } public Assignment getDbTableAssignment_9_2 ( ) { return cDbTableAssignment_9_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_9_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_9_2_0 ; } public Group getGroup_9_3 ( ) { return cGroup_9_3 ; } public RuleCall getWSTerminalRuleCall_9_3_0 ( ) { return cWSTerminalRuleCall_9_3_0 ; } public Assignment getDbColumnsAssignment_9_3_1 ( ) { return cDbColumnsAssignment_9_3_1 ; } public RuleCall getDbColumnsIDENTTerminalRuleCall_9_3_1_0 ( ) { return cDbColumnsIDENTTerminalRuleCall_9_3_1_0 ; } public Group getGroup_10 ( ) { return cGroup_10 ; } public Assignment getNameAssignment_10_0 ( ) { return cNameAssignment_10_0 ; } public Keyword getNameCreateColumnsKeyword_10_0_0 ( ) { return cNameCreateColumnsKeyword_10_0_0 ; } public RuleCall getWSTerminalRuleCall_10_1 ( ) { return cWSTerminalRuleCall_10_1 ; } public Assignment getDbTableAssignment_10_2 ( ) { return cDbTableAssignment_10_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_10_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_10_2_0 ; } public Group getGroup_10_3 ( ) { return cGroup_10_3 ; } public RuleCall getWSTerminalRuleCall_10_3_0 ( ) { return cWSTerminalRuleCall_10_3_0 ; } public Assignment getColumnTypesAssignment_10_3_1 ( ) { return cColumnTypesAssignment_10_3_1 ; } public RuleCall getColumnTypesColumnTypeAssignementParserRuleCall_10_3_1_0 ( ) { return cColumnTypesColumnTypeAssignementParserRuleCall_10_3_1_0 ; } public Group getGroup_11 ( ) { return cGroup_11 ; } public Assignment getNameAssignment_11_0 ( ) { return cNameAssignment_11_0 ; } public Keyword getNameRenameTablesKeyword_11_0_0 ( ) { return cNameRenameTablesKeyword_11_0_0 ; } public Group getGroup_11_1 ( ) { return cGroup_11_1 ; } public RuleCall getWSTerminalRuleCall_11_1_0 ( ) { return cWSTerminalRuleCall_11_1_0 ; } public Assignment getTablesAssignment_11_1_1 ( ) { return cTablesAssignment_11_1_1 ; } public RuleCall getTablesTableAssignementParserRuleCall_11_1_1_0 ( ) { return cTablesTableAssignementParserRuleCall_11_1_1_0 ; } public Group getGroup_12 ( ) { return cGroup_12 ; } public Assignment getNameAssignment_12_0 ( ) { return cNameAssignment_12_0 ; } public Keyword getNameRenameColumnsKeyword_12_0_0 ( ) { return cNameRenameColumnsKeyword_12_0_0 ; } public RuleCall getWSTerminalRuleCall_12_1 ( ) { return cWSTerminalRuleCall_12_1 ; } public Assignment getDbTableAssignment_12_2 ( ) { return cDbTableAssignment_12_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_12_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_12_2_0 ; } public Group getGroup_12_3 ( ) { return cGroup_12_3 ; } public RuleCall getWSTerminalRuleCall_12_3_0 ( ) { return cWSTerminalRuleCall_12_3_0 ; } public Assignment getColumnsAssignment_12_3_1 ( ) { return cColumnsAssignment_12_3_1 ; } public RuleCall getColumnsColumnAssignementParserRuleCall_12_3_1_0 ( ) { return cColumnsColumnAssignementParserRuleCall_12_3_1_0 ; } public Group getGroup_13 ( ) { return cGroup_13 ; } public Assignment getNameAssignment_13_0 ( ) { return cNameAssignment_13_0 ; } public Keyword getNameIgnoreOneToManyKeyword_13_0_0 ( ) { return cNameIgnoreOneToManyKeyword_13_0_0 ; } public RuleCall getWSTerminalRuleCall_13_1 ( ) { return cWSTerminalRuleCall_13_1 ; } public Assignment getDbTableAssignment_13_2 ( ) { return cDbTableAssignment_13_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_13_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_13_2_0 ; } public Group getGroup_13_3 ( ) { return cGroup_13_3 ; } public RuleCall getWSTerminalRuleCall_13_3_0 ( ) { return cWSTerminalRuleCall_13_3_0 ; } public Assignment getExportsAssignment_13_3_1 ( ) { return cExportsAssignment_13_3_1 ; } public RuleCall getExportsExportAssignementParserRuleCall_13_3_1_0 ( ) { return cExportsExportAssignementParserRuleCall_13_3_1_0 ; } public Group getGroup_14 ( ) { return cGroup_14 ; } public Assignment getNameAssignment_14_0 ( ) { return cNameAssignment_14_0 ; } public Keyword getNameIgnoreManyToOneKeyword_14_0_0 ( ) { return cNameIgnoreManyToOneKeyword_14_0_0 ; } public RuleCall getWSTerminalRuleCall_14_1 ( ) { return cWSTerminalRuleCall_14_1 ; } public Assignment getDbTableAssignment_14_2 ( ) { return cDbTableAssignment_14_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_14_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_14_2_0 ; } public Group getGroup_14_3 ( ) { return cGroup_14_3 ; } public RuleCall getWSTerminalRuleCall_14_3_0 ( ) { return cWSTerminalRuleCall_14_3_0 ; } public Assignment getImportsAssignment_14_3_1 ( ) { return cImportsAssignment_14_3_1 ; } public RuleCall getImportsImportAssignementParserRuleCall_14_3_1_0 ( ) { return cImportsImportAssignementParserRuleCall_14_3_1_0 ; } public Group getGroup_15 ( ) { return cGroup_15 ; } public Assignment getNameAssignment_15_0 ( ) { return cNameAssignment_15_0 ; } public Keyword getNameInheritManyToOneKeyword_15_0_0 ( ) { return cNameInheritManyToOneKeyword_15_0_0 ; } public RuleCall getWSTerminalRuleCall_15_1 ( ) { return cWSTerminalRuleCall_15_1 ; } public Assignment getDbTableAssignment_15_2 ( ) { return cDbTableAssignment_15_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_15_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_15_2_0 ; } public Group getGroup_15_3 ( ) { return cGroup_15_3 ; } public RuleCall getWSTerminalRuleCall_15_3_0 ( ) { return cWSTerminalRuleCall_15_3_0 ; } public Assignment getImportsAssignment_15_3_1 ( ) { return cImportsAssignment_15_3_1 ; } public RuleCall getImportsImportAssignementParserRuleCall_15_3_1_0 ( ) { return cImportsImportAssignementParserRuleCall_15_3_1_0 ; } public Group getGroup_16 ( ) { return cGroup_16 ; } public Assignment getNameAssignment_16_0 ( ) { return cNameAssignment_16_0 ; } public Keyword getNameCreateOneToManyKeyword_16_0_0 ( ) { return cNameCreateOneToManyKeyword_16_0_0 ; } public RuleCall getWSTerminalRuleCall_16_1 ( ) { return cWSTerminalRuleCall_16_1 ; } public Assignment getDbTableAssignment_16_2 ( ) { return cDbTableAssignment_16_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_16_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_16_2_0 ; } public Group getGroup_16_3 ( ) { return cGroup_16_3 ; } public RuleCall getWSTerminalRuleCall_16_3_0 ( ) { return cWSTerminalRuleCall_16_3_0 ; } public Assignment getExportsAssignment_16_3_1 ( ) { return cExportsAssignment_16_3_1 ; } public RuleCall getExportsExportAssignementParserRuleCall_16_3_1_0 ( ) { return cExportsExportAssignementParserRuleCall_16_3_1_0 ; } public Group getGroup_17 ( ) { return cGroup_17 ; } public Assignment getNameAssignment_17_0 ( ) { return cNameAssignment_17_0 ; } public Keyword getNameCreateManyToOneKeyword_17_0_0 ( ) { return cNameCreateManyToOneKeyword_17_0_0 ; } public RuleCall getWSTerminalRuleCall_17_1 ( ) { return cWSTerminalRuleCall_17_1 ; } public Assignment getDbTableAssignment_17_2 ( ) { return cDbTableAssignment_17_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_17_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_17_2_0 ; } public Group getGroup_17_3 ( ) { return cGroup_17_3 ; } public RuleCall getWSTerminalRuleCall_17_3_0 ( ) { return cWSTerminalRuleCall_17_3_0 ; } public Assignment getImportsAssignment_17_3_1 ( ) { return cImportsAssignment_17_3_1 ; } public RuleCall getImportsImportAssignementParserRuleCall_17_3_1_0 ( ) { return cImportsImportAssignementParserRuleCall_17_3_1_0 ; } public Group getGroup_18 ( ) { return cGroup_18 ; } public Assignment getNameAssignment_18_0 ( ) { return cNameAssignment_18_0 ; } public Keyword getNameTableManyToManyKeyword_18_0_0 ( ) { return cNameTableManyToManyKeyword_18_0_0 ; } public RuleCall getWSTerminalRuleCall_18_1 ( ) { return cWSTerminalRuleCall_18_1 ; } public Assignment getDbTableAssignment_18_2 ( ) { return cDbTableAssignment_18_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_18_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_18_2_0 ; } public Group getGroup_18_3 ( ) { return cGroup_18_3 ; } public RuleCall getWSTerminalRuleCall_18_3_0 ( ) { return cWSTerminalRuleCall_18_3_0 ; } public Assignment getMany2sAssignment_18_3_1 ( ) { return cMany2sAssignment_18_3_1 ; } public RuleCall getMany2sManyToManyAssignementParserRuleCall_18_3_1_0 ( ) { return cMany2sManyToManyAssignementParserRuleCall_18_3_1_0 ; } public Group getGroup_19 ( ) { return cGroup_19 ; } public Assignment getNameAssignment_19_0 ( ) { return cNameAssignment_19_0 ; } public Keyword getNameInheritDiscriminatorKeyword_19_0_0 ( ) { return cNameInheritDiscriminatorKeyword_19_0_0 ; } public RuleCall getWSTerminalRuleCall_19_1 ( ) { return cWSTerminalRuleCall_19_1 ; } public Assignment getDbTableAssignment_19_2 ( ) { return cDbTableAssignment_19_2 ; } public RuleCall getDbTableIDENTTerminalRuleCall_19_2_0 ( ) { return cDbTableIDENTTerminalRuleCall_19_2_0 ; } public RuleCall getWSTerminalRuleCall_19_3 ( ) { return cWSTerminalRuleCall_19_3 ; } public Assignment getDbColumnAssignment_19_4 ( ) { return cDbColumnAssignment_19_4 ; } public RuleCall getDbColumnIDENTTerminalRuleCall_19_4_0 ( ) { return cDbColumnIDENTTerminalRuleCall_19_4_0 ; } public Group getGroup_19_5 ( ) { return cGroup_19_5 ; } public RuleCall getWSTerminalRuleCall_19_5_0 ( ) { return cWSTerminalRuleCall_19_5_0 ; } public Assignment getInheritanceAssignment_19_5_1 ( ) { return cInheritanceAssignment_19_5_1 ; } public RuleCall getInheritanceInheritanceAssignementParserRuleCall_19_5_1_0 ( ) { return cInheritanceInheritanceAssignementParserRuleCall_19_5_1_0 ; } public Group getGroup_20 ( ) { return cGroup_20 ; } public Assignment getNameAssignment_20_0 ( ) { return cNameAssignment_20_0 ; } public Keyword getNameGenerateMethodsKeyword_20_0_0 ( ) { return cNameGenerateMethodsKeyword_20_0_0 ; } public Group getGroup_20_1 ( ) { return cGroup_20_1 ; } public RuleCall getWSTerminalRuleCall_20_1_0 ( ) { return cWSTerminalRuleCall_20_1_0 ; } public Assignment getMethodsAssignment_20_1_1 ( ) { return cMethodsAssignment_20_1_1 ; } public RuleCall getMethodsIDENTTerminalRuleCall_20_1_1_0 ( ) { return cMethodsIDENTTerminalRuleCall_20_1_1_0 ; } public Group getGroup_21 ( ) { return cGroup_21 ; } public Assignment getNameAssignment_21_0 ( ) { return cNameAssignment_21_0 ; } public Keyword getNameImplementsInterfacesKeyword_21_0_0 ( ) { return cNameImplementsInterfacesKeyword_21_0_0 ; } public Group getGroup_21_1 ( ) { return cGroup_21_1 ; } public RuleCall getWSTerminalRuleCall_21_1_0 ( ) { return cWSTerminalRuleCall_21_1_0 ; } public Assignment getToImplementsAssignment_21_1_1 ( ) { return cToImplementsAssignment_21_1_1 ; } public CrossReference getToImplementsJvmTypeCrossReference_21_1_1_0 ( ) { return cToImplementsJvmTypeCrossReference_21_1_1_0 ; } public RuleCall getToImplementsJvmTypeQualifiedNameParserRuleCall_21_1_1_0_1 ( ) { return cToImplementsJvmTypeQualifiedNameParserRuleCall_21_1_1_0_1 ; } public Group getGroup_22 ( ) { return cGroup_22 ; } public Assignment getNameAssignment_22_0 ( ) { return cNameAssignment_22_0 ; } public Keyword getNameExtendsClassKeyword_22_0_0 ( ) { return cNameExtendsClassKeyword_22_0_0 ; } public RuleCall getWSTerminalRuleCall_22_1 ( ) { return cWSTerminalRuleCall_22_1 ; } public Assignment getToExtendsAssignment_22_2 ( ) { return cToExtendsAssignment_22_2 ; } public CrossReference getToExtendsJvmTypeCrossReference_22_2_0 ( ) { return cToExtendsJvmTypeCrossReference_22_2_0 ; } public RuleCall getToExtendsJvmTypeQualifiedNameParserRuleCall_22_2_0_1 ( ) { return cToExtendsJvmTypeQualifiedNameParserRuleCall_22_2_0_1 ; } } public class PropertyValueElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cAlternatives_0 = ( Alternatives ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRESTTerminalRuleCall_0_0 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cIDENT_DOTTerminalRuleCall_0_1 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIDENTTerminalRuleCall_0_2 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cNUMBERTerminalRuleCall_0_3 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cCOLONTerminalRuleCall_0_4 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cSTRINGTerminalRuleCall_0_5 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:5> ) ; private final RuleCall cCOMMATerminalRuleCall_0_6 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:6> ) ; private final RuleCall cMINUSTerminalRuleCall_0_7 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:7> ) ; private final RuleCall cPLUSTerminalRuleCall_0_8 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:8> ) ; private final RuleCall cLPARENTerminalRuleCall_0_9 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:9> ) ; private final RuleCall cRPARENTerminalRuleCall_0_10 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:10> ) ; private final RuleCall cLBRACETerminalRuleCall_0_11 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:11> ) ; private final RuleCall cRBRACETerminalRuleCall_0_12 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:12> ) ; private final RuleCall cQUESTITerminalRuleCall_0_13 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cNOTTerminalRuleCall_0_14 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cBANDTerminalRuleCall_0_15 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:15> ) ; private final RuleCall cBORTerminalRuleCall_0_16 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:16> ) ; private final RuleCall cHASHTerminalRuleCall_0_17 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cATTerminalRuleCall_0_18 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cCARETTerminalRuleCall_0_19 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cEQUALSTerminalRuleCall_0_20 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:20> ) ; private final RuleCall cLESS_THANTerminalRuleCall_0_21 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cMORE_THANTerminalRuleCall_0_22 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cPERCENTTerminalRuleCall_0_23 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cANDTerminalRuleCall_0_24 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:24> ) ; private final RuleCall cORTerminalRuleCall_0_25 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cESC_CHARTerminalRuleCall_0_26 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cON_OFFTerminalRuleCall_0_27 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cSTATEMEN_TYPETerminalRuleCall_0_28 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cMAPPING_TYPETerminalRuleCall_0_29 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cOPTION_TYPETerminalRuleCall_0_30 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:30> ) ; private final Group cGroup_1 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cAlternatives_1_0 = ( Alternatives ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRESTTerminalRuleCall_1_0_0 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cIDENT_DOTTerminalRuleCall_1_0_1 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIDENTTerminalRuleCall_1_0_2 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cNUMBERTerminalRuleCall_1_0_3 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_1_0_4 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cCOLONTerminalRuleCall_1_0_5 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:5> ) ; private final RuleCall cSTRINGTerminalRuleCall_1_0_6 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:6> ) ; private final RuleCall cCOMMATerminalRuleCall_1_0_7 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:7> ) ; private final RuleCall cMINUSTerminalRuleCall_1_0_8 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:8> ) ; private final RuleCall cPLUSTerminalRuleCall_1_0_9 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:9> ) ; private final RuleCall cLPARENTerminalRuleCall_1_0_10 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:10> ) ; private final RuleCall cRPARENTerminalRuleCall_1_0_11 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:11> ) ; private final RuleCall cLBRACETerminalRuleCall_1_0_12 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:12> ) ; private final RuleCall cRBRACETerminalRuleCall_1_0_13 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cQUESTITerminalRuleCall_1_0_14 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cNOTTerminalRuleCall_1_0_15 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:15> ) ; private final RuleCall cBANDTerminalRuleCall_1_0_16 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:16> ) ; private final RuleCall cBORTerminalRuleCall_1_0_17 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cHASHTerminalRuleCall_1_0_18 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cATTerminalRuleCall_1_0_19 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cCARETTerminalRuleCall_1_0_20 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:20> ) ; private final RuleCall cEQUALSTerminalRuleCall_1_0_21 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cLESS_THANTerminalRuleCall_1_0_22 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cMORE_THANTerminalRuleCall_1_0_23 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cPERCENTTerminalRuleCall_1_0_24 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:24> ) ; private final RuleCall cANDTerminalRuleCall_1_0_25 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cORTerminalRuleCall_1_0_26 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cESC_CHARTerminalRuleCall_1_0_27 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cON_OFFTerminalRuleCall_1_0_28 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cSTATEMEN_TYPETerminalRuleCall_1_0_29 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cMAPPING_TYPETerminalRuleCall_1_0_30 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:30> ) ; private final RuleCall cOPTION_TYPETerminalRuleCall_1_0_31 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:31> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Alternatives getAlternatives_0 ( ) { return cAlternatives_0 ; } public RuleCall getRESTTerminalRuleCall_0_0 ( ) { return cRESTTerminalRuleCall_0_0 ; } public RuleCall getIDENT_DOTTerminalRuleCall_0_1 ( ) { return cIDENT_DOTTerminalRuleCall_0_1 ; } public RuleCall getIDENTTerminalRuleCall_0_2 ( ) { return cIDENTTerminalRuleCall_0_2 ; } public RuleCall getNUMBERTerminalRuleCall_0_3 ( ) { return cNUMBERTerminalRuleCall_0_3 ; } public RuleCall getCOLONTerminalRuleCall_0_4 ( ) { return cCOLONTerminalRuleCall_0_4 ; } public RuleCall getSTRINGTerminalRuleCall_0_5 ( ) { return cSTRINGTerminalRuleCall_0_5 ; } public RuleCall getCOMMATerminalRuleCall_0_6 ( ) { return cCOMMATerminalRuleCall_0_6 ; } public RuleCall getMINUSTerminalRuleCall_0_7 ( ) { return cMINUSTerminalRuleCall_0_7 ; } public RuleCall getPLUSTerminalRuleCall_0_8 ( ) { return cPLUSTerminalRuleCall_0_8 ; } public RuleCall getLPARENTerminalRuleCall_0_9 ( ) { return cLPARENTerminalRuleCall_0_9 ; } public RuleCall getRPARENTerminalRuleCall_0_10 ( ) { return cRPARENTerminalRuleCall_0_10 ; } public RuleCall getLBRACETerminalRuleCall_0_11 ( ) { return cLBRACETerminalRuleCall_0_11 ; } public RuleCall getRBRACETerminalRuleCall_0_12 ( ) { return cRBRACETerminalRuleCall_0_12 ; } public RuleCall getQUESTITerminalRuleCall_0_13 ( ) { return cQUESTITerminalRuleCall_0_13 ; } public RuleCall getNOTTerminalRuleCall_0_14 ( ) { return cNOTTerminalRuleCall_0_14 ; } public RuleCall getBANDTerminalRuleCall_0_15 ( ) { return cBANDTerminalRuleCall_0_15 ; } public RuleCall getBORTerminalRuleCall_0_16 ( ) { return cBORTerminalRuleCall_0_16 ; } public RuleCall getHASHTerminalRuleCall_0_17 ( ) { return cHASHTerminalRuleCall_0_17 ; } public RuleCall getATTerminalRuleCall_0_18 ( ) { return cATTerminalRuleCall_0_18 ; } public RuleCall getCARETTerminalRuleCall_0_19 ( ) { return cCARETTerminalRuleCall_0_19 ; } public RuleCall getEQUALSTerminalRuleCall_0_20 ( ) { return cEQUALSTerminalRuleCall_0_20 ; } public RuleCall getLESS_THANTerminalRuleCall_0_21 ( ) { return cLESS_THANTerminalRuleCall_0_21 ; } public RuleCall getMORE_THANTerminalRuleCall_0_22 ( ) { return cMORE_THANTerminalRuleCall_0_22 ; } public RuleCall getPERCENTTerminalRuleCall_0_23 ( ) { return cPERCENTTerminalRuleCall_0_23 ; } public RuleCall getANDTerminalRuleCall_0_24 ( ) { return cANDTerminalRuleCall_0_24 ; } public RuleCall getORTerminalRuleCall_0_25 ( ) { return cORTerminalRuleCall_0_25 ; } public RuleCall getESC_CHARTerminalRuleCall_0_26 ( ) { return cESC_CHARTerminalRuleCall_0_26 ; } public RuleCall getON_OFFTerminalRuleCall_0_27 ( ) { return cON_OFFTerminalRuleCall_0_27 ; } public RuleCall getSTATEMEN_TYPETerminalRuleCall_0_28 ( ) { return cSTATEMEN_TYPETerminalRuleCall_0_28 ; } public RuleCall getMAPPING_TYPETerminalRuleCall_0_29 ( ) { return cMAPPING_TYPETerminalRuleCall_0_29 ; } public RuleCall getOPTION_TYPETerminalRuleCall_0_30 ( ) { return cOPTION_TYPETerminalRuleCall_0_30 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public Alternatives getAlternatives_1_0 ( ) { return cAlternatives_1_0 ; } public RuleCall getRESTTerminalRuleCall_1_0_0 ( ) { return cRESTTerminalRuleCall_1_0_0 ; } public RuleCall getIDENT_DOTTerminalRuleCall_1_0_1 ( ) { return cIDENT_DOTTerminalRuleCall_1_0_1 ; } public RuleCall getIDENTTerminalRuleCall_1_0_2 ( ) { return cIDENTTerminalRuleCall_1_0_2 ; } public RuleCall getNUMBERTerminalRuleCall_1_0_3 ( ) { return cNUMBERTerminalRuleCall_1_0_3 ; } public RuleCall getWSTerminalRuleCall_1_0_4 ( ) { return cWSTerminalRuleCall_1_0_4 ; } public RuleCall getCOLONTerminalRuleCall_1_0_5 ( ) { return cCOLONTerminalRuleCall_1_0_5 ; } public RuleCall getSTRINGTerminalRuleCall_1_0_6 ( ) { return cSTRINGTerminalRuleCall_1_0_6 ; } public RuleCall getCOMMATerminalRuleCall_1_0_7 ( ) { return cCOMMATerminalRuleCall_1_0_7 ; } public RuleCall getMINUSTerminalRuleCall_1_0_8 ( ) { return cMINUSTerminalRuleCall_1_0_8 ; } public RuleCall getPLUSTerminalRuleCall_1_0_9 ( ) { return cPLUSTerminalRuleCall_1_0_9 ; } public RuleCall getLPARENTerminalRuleCall_1_0_10 ( ) { return cLPARENTerminalRuleCall_1_0_10 ; } public RuleCall getRPARENTerminalRuleCall_1_0_11 ( ) { return cRPARENTerminalRuleCall_1_0_11 ; } public RuleCall getLBRACETerminalRuleCall_1_0_12 ( ) { return cLBRACETerminalRuleCall_1_0_12 ; } public RuleCall getRBRACETerminalRuleCall_1_0_13 ( ) { return cRBRACETerminalRuleCall_1_0_13 ; } public RuleCall getQUESTITerminalRuleCall_1_0_14 ( ) { return cQUESTITerminalRuleCall_1_0_14 ; } public RuleCall getNOTTerminalRuleCall_1_0_15 ( ) { return cNOTTerminalRuleCall_1_0_15 ; } public RuleCall getBANDTerminalRuleCall_1_0_16 ( ) { return cBANDTerminalRuleCall_1_0_16 ; } public RuleCall getBORTerminalRuleCall_1_0_17 ( ) { return cBORTerminalRuleCall_1_0_17 ; } public RuleCall getHASHTerminalRuleCall_1_0_18 ( ) { return cHASHTerminalRuleCall_1_0_18 ; } public RuleCall getATTerminalRuleCall_1_0_19 ( ) { return cATTerminalRuleCall_1_0_19 ; } public RuleCall getCARETTerminalRuleCall_1_0_20 ( ) { return cCARETTerminalRuleCall_1_0_20 ; } public RuleCall getEQUALSTerminalRuleCall_1_0_21 ( ) { return cEQUALSTerminalRuleCall_1_0_21 ; } public RuleCall getLESS_THANTerminalRuleCall_1_0_22 ( ) { return cLESS_THANTerminalRuleCall_1_0_22 ; } public RuleCall getMORE_THANTerminalRuleCall_1_0_23 ( ) { return cMORE_THANTerminalRuleCall_1_0_23 ; } public RuleCall getPERCENTTerminalRuleCall_1_0_24 ( ) { return cPERCENTTerminalRuleCall_1_0_24 ; } public RuleCall getANDTerminalRuleCall_1_0_25 ( ) { return cANDTerminalRuleCall_1_0_25 ; } public RuleCall getORTerminalRuleCall_1_0_26 ( ) { return cORTerminalRuleCall_1_0_26 ; } public RuleCall getESC_CHARTerminalRuleCall_1_0_27 ( ) { return cESC_CHARTerminalRuleCall_1_0_27 ; } public RuleCall getON_OFFTerminalRuleCall_1_0_28 ( ) { return cON_OFFTerminalRuleCall_1_0_28 ; } public RuleCall getSTATEMEN_TYPETerminalRuleCall_1_0_29 ( ) { return cSTATEMEN_TYPETerminalRuleCall_1_0_29 ; } public RuleCall getMAPPING_TYPETerminalRuleCall_1_0_30 ( ) { return cMAPPING_TYPETerminalRuleCall_1_0_30 ; } public RuleCall getOPTION_TYPETerminalRuleCall_1_0_31 ( ) { return cOPTION_TYPETerminalRuleCall_1_0_31 ; } } public class PojoDefinitionElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cPojoKeyword_0 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cNameAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cNameIDENTTerminalRuleCall_1_0 = ( RuleCall ) cNameAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cClassAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Alternatives cClassAlternatives_2_0 = ( Alternatives ) cClassAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cClassIDENTTerminalRuleCall_2_0_0 = ( RuleCall ) cClassAlternatives_2_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cClassIDENT_DOTTerminalRuleCall_2_0_1 = ( RuleCall ) cClassAlternatives_2_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_3 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Keyword getPojoKeyword_0 ( ) { return cPojoKeyword_0 ; } public Assignment getNameAssignment_1 ( ) { return cNameAssignment_1 ; } public RuleCall getNameIDENTTerminalRuleCall_1_0 ( ) { return cNameIDENTTerminalRuleCall_1_0 ; } public Assignment getClassAssignment_2 ( ) { return cClassAssignment_2 ; } public Alternatives getClassAlternatives_2_0 ( ) { return cClassAlternatives_2_0 ; } public RuleCall getClassIDENTTerminalRuleCall_2_0_0 ( ) { return cClassIDENTTerminalRuleCall_2_0_0 ; } public RuleCall getClassIDENT_DOTTerminalRuleCall_2_0_1 ( ) { return cClassIDENT_DOTTerminalRuleCall_2_0_1 ; } public RuleCall getSEMICOLONTerminalRuleCall_3 ( ) { return cSEMICOLONTerminalRuleCall_3 ; } } public class PojoUsageElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cColumnUsageParserRuleCall_0 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cIdentifierUsageParserRuleCall_1 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cConstantUsageParserRuleCall_2 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cMappingUsageParserRuleCall_3 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:3> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public RuleCall getColumnUsageParserRuleCall_0 ( ) { return cColumnUsageParserRuleCall_0 ; } public RuleCall getIdentifierUsageParserRuleCall_1 ( ) { return cIdentifierUsageParserRuleCall_1 ; } public RuleCall getConstantUsageParserRuleCall_2 ( ) { return cConstantUsageParserRuleCall_2 ; } public RuleCall getMappingUsageParserRuleCall_3 ( ) { return cMappingUsageParserRuleCall_3 ; } } public class ColumnUsageElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cColKeyword_0 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cStatementAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cStatementMetaStatementCrossReference_1_0 = ( CrossReference ) cStatementAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cStatementMetaStatementIDENTTerminalRuleCall_1_0_1 = ( RuleCall ) cStatementMetaStatementCrossReference_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cPojoAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final CrossReference cPojoPojoDefinitionCrossReference_2_0 = ( CrossReference ) cPojoAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 = ( RuleCall ) cPojoPojoDefinitionCrossReference_2_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_3 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Keyword getColKeyword_0 ( ) { return cColKeyword_0 ; } public Assignment getStatementAssignment_1 ( ) { return cStatementAssignment_1 ; } public CrossReference getStatementMetaStatementCrossReference_1_0 ( ) { return cStatementMetaStatementCrossReference_1_0 ; } public RuleCall getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) { return cStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ; } public Assignment getPojoAssignment_2 ( ) { return cPojoAssignment_2 ; } public CrossReference getPojoPojoDefinitionCrossReference_2_0 ( ) { return cPojoPojoDefinitionCrossReference_2_0 ; } public RuleCall getPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ( ) { return cPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ; } public RuleCall getSEMICOLONTerminalRuleCall_3 ( ) { return cSEMICOLONTerminalRuleCall_3 ; } } public class IdentifierUsageElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cIdentKeyword_0 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cStatementAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cStatementMetaStatementCrossReference_1_0 = ( CrossReference ) cStatementAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cStatementMetaStatementIDENTTerminalRuleCall_1_0_1 = ( RuleCall ) cStatementMetaStatementCrossReference_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cPojoAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final CrossReference cPojoPojoDefinitionCrossReference_2_0 = ( CrossReference ) cPojoAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 = ( RuleCall ) cPojoPojoDefinitionCrossReference_2_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_3 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Keyword getIdentKeyword_0 ( ) { return cIdentKeyword_0 ; } public Assignment getStatementAssignment_1 ( ) { return cStatementAssignment_1 ; } public CrossReference getStatementMetaStatementCrossReference_1_0 ( ) { return cStatementMetaStatementCrossReference_1_0 ; } public RuleCall getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) { return cStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ; } public Assignment getPojoAssignment_2 ( ) { return cPojoAssignment_2 ; } public CrossReference getPojoPojoDefinitionCrossReference_2_0 ( ) { return cPojoPojoDefinitionCrossReference_2_0 ; } public RuleCall getPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ( ) { return cPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ; } public RuleCall getSEMICOLONTerminalRuleCall_3 ( ) { return cSEMICOLONTerminalRuleCall_3 ; } } public class ConstantUsageElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cConstKeyword_0 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cStatementAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cStatementMetaStatementCrossReference_1_0 = ( CrossReference ) cStatementAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cStatementMetaStatementIDENTTerminalRuleCall_1_0_1 = ( RuleCall ) cStatementMetaStatementCrossReference_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cPojoAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final CrossReference cPojoPojoDefinitionCrossReference_2_0 = ( CrossReference ) cPojoAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 = ( RuleCall ) cPojoPojoDefinitionCrossReference_2_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_3 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Keyword getConstKeyword_0 ( ) { return cConstKeyword_0 ; } public Assignment getStatementAssignment_1 ( ) { return cStatementAssignment_1 ; } public CrossReference getStatementMetaStatementCrossReference_1_0 ( ) { return cStatementMetaStatementCrossReference_1_0 ; } public RuleCall getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) { return cStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ; } public Assignment getPojoAssignment_2 ( ) { return cPojoAssignment_2 ; } public CrossReference getPojoPojoDefinitionCrossReference_2_0 ( ) { return cPojoPojoDefinitionCrossReference_2_0 ; } public RuleCall getPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ( ) { return cPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ; } public RuleCall getSEMICOLONTerminalRuleCall_3 ( ) { return cSEMICOLONTerminalRuleCall_3 ; } } public class MappingUsageElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cOutKeyword_0 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cStatementAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cStatementMappingRuleCrossReference_1_0 = ( CrossReference ) cStatementAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cStatementMappingRuleIDENTTerminalRuleCall_1_0_1 = ( RuleCall ) cStatementMappingRuleCrossReference_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cPojoAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final CrossReference cPojoPojoDefinitionCrossReference_2_0 = ( CrossReference ) cPojoAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 = ( RuleCall ) cPojoPojoDefinitionCrossReference_2_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_3 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Keyword getOutKeyword_0 ( ) { return cOutKeyword_0 ; } public Assignment getStatementAssignment_1 ( ) { return cStatementAssignment_1 ; } public CrossReference getStatementMappingRuleCrossReference_1_0 ( ) { return cStatementMappingRuleCrossReference_1_0 ; } public RuleCall getStatementMappingRuleIDENTTerminalRuleCall_1_0_1 ( ) { return cStatementMappingRuleIDENTTerminalRuleCall_1_0_1 ; } public Assignment getPojoAssignment_2 ( ) { return cPojoAssignment_2 ; } public CrossReference getPojoPojoDefinitionCrossReference_2_0 ( ) { return cPojoPojoDefinitionCrossReference_2_0 ; } public RuleCall getPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ( ) { return cPojoPojoDefinitionIDENTTerminalRuleCall_2_0_1 ; } public RuleCall getSEMICOLONTerminalRuleCall_3 ( ) { return cSEMICOLONTerminalRuleCall_3 ; } } public class PojoUsageExtElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cColumnUsageExtParserRuleCall_0 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cIdentifierUsageExtParserRuleCall_1 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cConstantUsageExtParserRuleCall_2 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cMappingUsageExtParserRuleCall_3 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:3> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public RuleCall getColumnUsageExtParserRuleCall_0 ( ) { return cColumnUsageExtParserRuleCall_0 ; } public RuleCall getIdentifierUsageExtParserRuleCall_1 ( ) { return cIdentifierUsageExtParserRuleCall_1 ; } public RuleCall getConstantUsageExtParserRuleCall_2 ( ) { return cConstantUsageExtParserRuleCall_2 ; } public RuleCall getMappingUsageExtParserRuleCall_3 ( ) { return cMappingUsageExtParserRuleCall_3 ; } } public class ColumnUsageExtElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cColxKeyword_0 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cStatementAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cStatementMetaStatementCrossReference_1_0 = ( CrossReference ) cStatementAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cStatementMetaStatementIDENTTerminalRuleCall_1_0_1 = ( RuleCall ) cStatementMetaStatementCrossReference_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cPojoAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final CrossReference cPojoPojoEntityCrossReference_2_0 = ( CrossReference ) cPojoAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cPojoPojoEntityIDENTTerminalRuleCall_2_0_1 = ( RuleCall ) cPojoPojoEntityCrossReference_2_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_3 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Keyword getColxKeyword_0 ( ) { return cColxKeyword_0 ; } public Assignment getStatementAssignment_1 ( ) { return cStatementAssignment_1 ; } public CrossReference getStatementMetaStatementCrossReference_1_0 ( ) { return cStatementMetaStatementCrossReference_1_0 ; } public RuleCall getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) { return cStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ; } public Assignment getPojoAssignment_2 ( ) { return cPojoAssignment_2 ; } public CrossReference getPojoPojoEntityCrossReference_2_0 ( ) { return cPojoPojoEntityCrossReference_2_0 ; } public RuleCall getPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ( ) { return cPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ; } public RuleCall getSEMICOLONTerminalRuleCall_3 ( ) { return cSEMICOLONTerminalRuleCall_3 ; } } public class IdentifierUsageExtElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cIdentxKeyword_0 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cStatementAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cStatementMetaStatementCrossReference_1_0 = ( CrossReference ) cStatementAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cStatementMetaStatementIDENTTerminalRuleCall_1_0_1 = ( RuleCall ) cStatementMetaStatementCrossReference_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cPojoAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final CrossReference cPojoPojoEntityCrossReference_2_0 = ( CrossReference ) cPojoAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cPojoPojoEntityIDENTTerminalRuleCall_2_0_1 = ( RuleCall ) cPojoPojoEntityCrossReference_2_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_3 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Keyword getIdentxKeyword_0 ( ) { return cIdentxKeyword_0 ; } public Assignment getStatementAssignment_1 ( ) { return cStatementAssignment_1 ; } public CrossReference getStatementMetaStatementCrossReference_1_0 ( ) { return cStatementMetaStatementCrossReference_1_0 ; } public RuleCall getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) { return cStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ; } public Assignment getPojoAssignment_2 ( ) { return cPojoAssignment_2 ; } public CrossReference getPojoPojoEntityCrossReference_2_0 ( ) { return cPojoPojoEntityCrossReference_2_0 ; } public RuleCall getPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ( ) { return cPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ; } public RuleCall getSEMICOLONTerminalRuleCall_3 ( ) { return cSEMICOLONTerminalRuleCall_3 ; } } public class ConstantUsageExtElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cConstxKeyword_0 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cStatementAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cStatementMetaStatementCrossReference_1_0 = ( CrossReference ) cStatementAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cStatementMetaStatementIDENTTerminalRuleCall_1_0_1 = ( RuleCall ) cStatementMetaStatementCrossReference_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cPojoAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final CrossReference cPojoPojoEntityCrossReference_2_0 = ( CrossReference ) cPojoAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cPojoPojoEntityIDENTTerminalRuleCall_2_0_1 = ( RuleCall ) cPojoPojoEntityCrossReference_2_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_3 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Keyword getConstxKeyword_0 ( ) { return cConstxKeyword_0 ; } public Assignment getStatementAssignment_1 ( ) { return cStatementAssignment_1 ; } public CrossReference getStatementMetaStatementCrossReference_1_0 ( ) { return cStatementMetaStatementCrossReference_1_0 ; } public RuleCall getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) { return cStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ; } public Assignment getPojoAssignment_2 ( ) { return cPojoAssignment_2 ; } public CrossReference getPojoPojoEntityCrossReference_2_0 ( ) { return cPojoPojoEntityCrossReference_2_0 ; } public RuleCall getPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ( ) { return cPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ; } public RuleCall getSEMICOLONTerminalRuleCall_3 ( ) { return cSEMICOLONTerminalRuleCall_3 ; } } public class MappingUsageExtElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cOutxKeyword_0 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cStatementAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cStatementMappingRuleCrossReference_1_0 = ( CrossReference ) cStatementAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cStatementMappingRuleIDENTTerminalRuleCall_1_0_1 = ( RuleCall ) cStatementMappingRuleCrossReference_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cPojoAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final CrossReference cPojoPojoEntityCrossReference_2_0 = ( CrossReference ) cPojoAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cPojoPojoEntityIDENTTerminalRuleCall_2_0_1 = ( RuleCall ) cPojoPojoEntityCrossReference_2_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_3 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Keyword getOutxKeyword_0 ( ) { return cOutxKeyword_0 ; } public Assignment getStatementAssignment_1 ( ) { return cStatementAssignment_1 ; } public CrossReference getStatementMappingRuleCrossReference_1_0 ( ) { return cStatementMappingRuleCrossReference_1_0 ; } public RuleCall getStatementMappingRuleIDENTTerminalRuleCall_1_0_1 ( ) { return cStatementMappingRuleIDENTTerminalRuleCall_1_0_1 ; } public Assignment getPojoAssignment_2 ( ) { return cPojoAssignment_2 ; } public CrossReference getPojoPojoEntityCrossReference_2_0 ( ) { return cPojoPojoEntityCrossReference_2_0 ; } public RuleCall getPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ( ) { return cPojoPojoEntityIDENTTerminalRuleCall_2_0_1 ; } public RuleCall getSEMICOLONTerminalRuleCall_3 ( ) { return cSEMICOLONTerminalRuleCall_3 ; } } public class TableDefinitionElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cTableKeyword_0 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cNameAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cNameIDENTTerminalRuleCall_1_0 = ( RuleCall ) cNameAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cTableAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cTableIDENTTerminalRuleCall_2_0 = ( RuleCall ) cTableAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_3 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Keyword getTableKeyword_0 ( ) { return cTableKeyword_0 ; } public Assignment getNameAssignment_1 ( ) { return cNameAssignment_1 ; } public RuleCall getNameIDENTTerminalRuleCall_1_0 ( ) { return cNameIDENTTerminalRuleCall_1_0 ; } public Assignment getTableAssignment_2 ( ) { return cTableAssignment_2 ; } public RuleCall getTableIDENTTerminalRuleCall_2_0 ( ) { return cTableIDENTTerminalRuleCall_2_0 ; } public RuleCall getSEMICOLONTerminalRuleCall_3 ( ) { return cSEMICOLONTerminalRuleCall_3 ; } } public class TableUsageElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cDbcolKeyword_0 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cStatementAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cStatementMetaStatementCrossReference_1_0 = ( CrossReference ) cStatementAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cStatementMetaStatementIDENTTerminalRuleCall_1_0_1 = ( RuleCall ) cStatementMetaStatementCrossReference_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cTableAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final CrossReference cTableTableDefinitionCrossReference_2_0 = ( CrossReference ) cTableAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cTableTableDefinitionIDENTTerminalRuleCall_2_0_1 = ( RuleCall ) cTableTableDefinitionCrossReference_2_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_3 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Keyword cPrefixKeyword_3_0 = ( Keyword ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cPrefixAssignment_3_1 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cPrefixIDENTTerminalRuleCall_3_1_0 = ( RuleCall ) cPrefixAssignment_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_4 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:4> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Keyword getDbcolKeyword_0 ( ) { return cDbcolKeyword_0 ; } public Assignment getStatementAssignment_1 ( ) { return cStatementAssignment_1 ; } public CrossReference getStatementMetaStatementCrossReference_1_0 ( ) { return cStatementMetaStatementCrossReference_1_0 ; } public RuleCall getStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ( ) { return cStatementMetaStatementIDENTTerminalRuleCall_1_0_1 ; } public Assignment getTableAssignment_2 ( ) { return cTableAssignment_2 ; } public CrossReference getTableTableDefinitionCrossReference_2_0 ( ) { return cTableTableDefinitionCrossReference_2_0 ; } public RuleCall getTableTableDefinitionIDENTTerminalRuleCall_2_0_1 ( ) { return cTableTableDefinitionIDENTTerminalRuleCall_2_0_1 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public Keyword getPrefixKeyword_3_0 ( ) { return cPrefixKeyword_3_0 ; } public Assignment getPrefixAssignment_3_1 ( ) { return cPrefixAssignment_3_1 ; } public RuleCall getPrefixIDENTTerminalRuleCall_3_1_0 ( ) { return cPrefixIDENTTerminalRuleCall_3_1_0 ; } public RuleCall getSEMICOLONTerminalRuleCall_4 ( ) { return cSEMICOLONTerminalRuleCall_4 ; } } public class MetaStatementElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cNameAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENTTerminalRuleCall_0_0 = ( RuleCall ) cNameAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cLPARENTerminalRuleCall_1 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cTypeAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cTypeSTATEMEN_TYPETerminalRuleCall_2_0 = ( RuleCall ) cTypeAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cCOMMATerminalRuleCall_3_0 = ( RuleCall ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cFiltersAssignment_3_1 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cFiltersIDENTTerminalRuleCall_3_1_0 = ( RuleCall ) cFiltersAssignment_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRPARENTerminalRuleCall_4 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cEQUALSTerminalRuleCall_5 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:5> ) ; private final Assignment cStatementAssignment_6 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:6> ) ; private final RuleCall cStatementSqlParserRuleCall_6_0 = ( RuleCall ) cStatementAssignment_6 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_7 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:7> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getNameAssignment_0 ( ) { return cNameAssignment_0 ; } public RuleCall getNameIDENTTerminalRuleCall_0_0 ( ) { return cNameIDENTTerminalRuleCall_0_0 ; } public RuleCall getLPARENTerminalRuleCall_1 ( ) { return cLPARENTerminalRuleCall_1 ; } public Assignment getTypeAssignment_2 ( ) { return cTypeAssignment_2 ; } public RuleCall getTypeSTATEMEN_TYPETerminalRuleCall_2_0 ( ) { return cTypeSTATEMEN_TYPETerminalRuleCall_2_0 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public RuleCall getCOMMATerminalRuleCall_3_0 ( ) { return cCOMMATerminalRuleCall_3_0 ; } public Assignment getFiltersAssignment_3_1 ( ) { return cFiltersAssignment_3_1 ; } public RuleCall getFiltersIDENTTerminalRuleCall_3_1_0 ( ) { return cFiltersIDENTTerminalRuleCall_3_1_0 ; } public RuleCall getRPARENTerminalRuleCall_4 ( ) { return cRPARENTerminalRuleCall_4 ; } public RuleCall getEQUALSTerminalRuleCall_5 ( ) { return cEQUALSTerminalRuleCall_5 ; } public Assignment getStatementAssignment_6 ( ) { return cStatementAssignment_6 ; } public RuleCall getStatementSqlParserRuleCall_6_0 ( ) { return cStatementSqlParserRuleCall_6_0 ; } public RuleCall getSEMICOLONTerminalRuleCall_7 ( ) { return cSEMICOLONTerminalRuleCall_7 ; } } public class SqlElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Assignment cSqlsAssignment = ( Assignment ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSqlsSqlFragmentParserRuleCall_0 = ( RuleCall ) cSqlsAssignment . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Assignment getSqlsAssignment ( ) { return cSqlsAssignment ; } public RuleCall getSqlsSqlFragmentParserRuleCall_0 ( ) { return cSqlsSqlFragmentParserRuleCall_0 ; } } public class SqlFragmentElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cValueAssignment_0 = ( Assignment ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cValueSqlValueParserRuleCall_0_0 = ( RuleCall ) cValueAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_1 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cATTerminalRuleCall_1_0 = ( RuleCall ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cColAssignment_1_1 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cColColumnParserRuleCall_1_1_0 = ( RuleCall ) cColAssignment_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_2 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cSTRINGTerminalRuleCall_2_0 = ( RuleCall ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cCnstAssignment_2_1 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cCnstConstantParserRuleCall_2_1_0 = ( RuleCall ) cCnstAssignment_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cCOLONTerminalRuleCall_3_0 = ( RuleCall ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIdentAssignment_3_1 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIdentIdentifierParserRuleCall_3_1_0 = ( RuleCall ) cIdentAssignment_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_4 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cLBRACETerminalRuleCall_4_0 = ( RuleCall ) cGroup_4 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cMetaAssignment_4_1 = ( Assignment ) cGroup_4 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cMetaMetaSqlParserRuleCall_4_1_0 = ( RuleCall ) cMetaAssignment_4_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRBRACETerminalRuleCall_4_2 = ( RuleCall ) cGroup_4 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Group cGroup_5 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:5> ) ; private final RuleCall cPERCENTTerminalRuleCall_5_0 = ( RuleCall ) cGroup_5 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cAlternatives_5_1 = ( Alternatives ) cGroup_5 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_5_1_0 = ( Group ) cAlternatives_5_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cPERCENTTerminalRuleCall_5_1_0_0 = ( RuleCall ) cGroup_5_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cDbtabAssignment_5_1_0_1 = ( Assignment ) cGroup_5_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cDbtabDatabaseTableParserRuleCall_5_1_0_1_0 = ( RuleCall ) cDbtabAssignment_5_1_0_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cDbcolAssignment_5_1_1 = ( Assignment ) cAlternatives_5_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cDbcolDatabaseColumnParserRuleCall_5_1_1_0 = ( RuleCall ) cDbcolAssignment_5_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public Assignment getValueAssignment_0 ( ) { return cValueAssignment_0 ; } public RuleCall getValueSqlValueParserRuleCall_0_0 ( ) { return cValueSqlValueParserRuleCall_0_0 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public RuleCall getATTerminalRuleCall_1_0 ( ) { return cATTerminalRuleCall_1_0 ; } public Assignment getColAssignment_1_1 ( ) { return cColAssignment_1_1 ; } public RuleCall getColColumnParserRuleCall_1_1_0 ( ) { return cColColumnParserRuleCall_1_1_0 ; } public Group getGroup_2 ( ) { return cGroup_2 ; } public RuleCall getSTRINGTerminalRuleCall_2_0 ( ) { return cSTRINGTerminalRuleCall_2_0 ; } public Assignment getCnstAssignment_2_1 ( ) { return cCnstAssignment_2_1 ; } public RuleCall getCnstConstantParserRuleCall_2_1_0 ( ) { return cCnstConstantParserRuleCall_2_1_0 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public RuleCall getCOLONTerminalRuleCall_3_0 ( ) { return cCOLONTerminalRuleCall_3_0 ; } public Assignment getIdentAssignment_3_1 ( ) { return cIdentAssignment_3_1 ; } public RuleCall getIdentIdentifierParserRuleCall_3_1_0 ( ) { return cIdentIdentifierParserRuleCall_3_1_0 ; } public Group getGroup_4 ( ) { return cGroup_4 ; } public RuleCall getLBRACETerminalRuleCall_4_0 ( ) { return cLBRACETerminalRuleCall_4_0 ; } public Assignment getMetaAssignment_4_1 ( ) { return cMetaAssignment_4_1 ; } public RuleCall getMetaMetaSqlParserRuleCall_4_1_0 ( ) { return cMetaMetaSqlParserRuleCall_4_1_0 ; } public RuleCall getRBRACETerminalRuleCall_4_2 ( ) { return cRBRACETerminalRuleCall_4_2 ; } public Group getGroup_5 ( ) { return cGroup_5 ; } public RuleCall getPERCENTTerminalRuleCall_5_0 ( ) { return cPERCENTTerminalRuleCall_5_0 ; } public Alternatives getAlternatives_5_1 ( ) { return cAlternatives_5_1 ; } public Group getGroup_5_1_0 ( ) { return cGroup_5_1_0 ; } public RuleCall getPERCENTTerminalRuleCall_5_1_0_0 ( ) { return cPERCENTTerminalRuleCall_5_1_0_0 ; } public Assignment getDbtabAssignment_5_1_0_1 ( ) { return cDbtabAssignment_5_1_0_1 ; } public RuleCall getDbtabDatabaseTableParserRuleCall_5_1_0_1_0 ( ) { return cDbtabDatabaseTableParserRuleCall_5_1_0_1_0 ; } public Assignment getDbcolAssignment_5_1_1 ( ) { return cDbcolAssignment_5_1_1 ; } public RuleCall getDbcolDatabaseColumnParserRuleCall_5_1_1_0 ( ) { return cDbcolDatabaseColumnParserRuleCall_5_1_1_0 ; } } public class SqlValueElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cAlternatives_0 = ( Alternatives ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRESTTerminalRuleCall_0_0 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cIDENT_DOTTerminalRuleCall_0_1 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIDENTTerminalRuleCall_0_2 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cNUMBERTerminalRuleCall_0_3 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_0_4 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cCOMMATerminalRuleCall_0_5 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:5> ) ; private final RuleCall cMINUSTerminalRuleCall_0_6 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:6> ) ; private final RuleCall cPLUSTerminalRuleCall_0_7 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:7> ) ; private final RuleCall cLPARENTerminalRuleCall_0_8 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:8> ) ; private final RuleCall cRPARENTerminalRuleCall_0_9 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:9> ) ; private final RuleCall cRBRACETerminalRuleCall_0_10 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:10> ) ; private final RuleCall cQUESTITerminalRuleCall_0_11 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:11> ) ; private final RuleCall cNOTTerminalRuleCall_0_12 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:12> ) ; private final RuleCall cBANDTerminalRuleCall_0_13 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cBORTerminalRuleCall_0_14 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cHASHTerminalRuleCall_0_15 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:15> ) ; private final RuleCall cCARETTerminalRuleCall_0_16 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:16> ) ; private final RuleCall cEQUALSTerminalRuleCall_0_17 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cLESS_THANTerminalRuleCall_0_18 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cMORE_THANTerminalRuleCall_0_19 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cANDTerminalRuleCall_0_20 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:20> ) ; private final RuleCall cORTerminalRuleCall_0_21 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cESC_CHARTerminalRuleCall_0_22 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cON_OFFTerminalRuleCall_0_23 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cSTATEMEN_TYPETerminalRuleCall_0_24 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:24> ) ; private final RuleCall cMAPPING_TYPETerminalRuleCall_0_25 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cOPTION_TYPETerminalRuleCall_0_26 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final Group cGroup_1 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cAlternatives_1_0 = ( Alternatives ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRESTTerminalRuleCall_1_0_0 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cIDENT_DOTTerminalRuleCall_1_0_1 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIDENTTerminalRuleCall_1_0_2 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cNUMBERTerminalRuleCall_1_0_3 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_1_0_4 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cCOMMATerminalRuleCall_1_0_5 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:5> ) ; private final RuleCall cMINUSTerminalRuleCall_1_0_6 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:6> ) ; private final RuleCall cPLUSTerminalRuleCall_1_0_7 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:7> ) ; private final RuleCall cLPARENTerminalRuleCall_1_0_8 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:8> ) ; private final RuleCall cRPARENTerminalRuleCall_1_0_9 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:9> ) ; private final RuleCall cRBRACETerminalRuleCall_1_0_10 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:10> ) ; private final RuleCall cQUESTITerminalRuleCall_1_0_11 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:11> ) ; private final RuleCall cNOTTerminalRuleCall_1_0_12 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:12> ) ; private final RuleCall cBANDTerminalRuleCall_1_0_13 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cBORTerminalRuleCall_1_0_14 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cHASHTerminalRuleCall_1_0_15 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:15> ) ; private final RuleCall cCARETTerminalRuleCall_1_0_16 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:16> ) ; private final RuleCall cEQUALSTerminalRuleCall_1_0_17 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cLESS_THANTerminalRuleCall_1_0_18 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cMORE_THANTerminalRuleCall_1_0_19 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cANDTerminalRuleCall_1_0_20 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:20> ) ; private final RuleCall cORTerminalRuleCall_1_0_21 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cESC_CHARTerminalRuleCall_1_0_22 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cON_OFFTerminalRuleCall_1_0_23 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cSTATEMEN_TYPETerminalRuleCall_1_0_24 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:24> ) ; private final RuleCall cMAPPING_TYPETerminalRuleCall_1_0_25 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cOPTION_TYPETerminalRuleCall_1_0_26 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Alternatives getAlternatives_0 ( ) { return cAlternatives_0 ; } public RuleCall getRESTTerminalRuleCall_0_0 ( ) { return cRESTTerminalRuleCall_0_0 ; } public RuleCall getIDENT_DOTTerminalRuleCall_0_1 ( ) { return cIDENT_DOTTerminalRuleCall_0_1 ; } public RuleCall getIDENTTerminalRuleCall_0_2 ( ) { return cIDENTTerminalRuleCall_0_2 ; } public RuleCall getNUMBERTerminalRuleCall_0_3 ( ) { return cNUMBERTerminalRuleCall_0_3 ; } public RuleCall getWSTerminalRuleCall_0_4 ( ) { return cWSTerminalRuleCall_0_4 ; } public RuleCall getCOMMATerminalRuleCall_0_5 ( ) { return cCOMMATerminalRuleCall_0_5 ; } public RuleCall getMINUSTerminalRuleCall_0_6 ( ) { return cMINUSTerminalRuleCall_0_6 ; } public RuleCall getPLUSTerminalRuleCall_0_7 ( ) { return cPLUSTerminalRuleCall_0_7 ; } public RuleCall getLPARENTerminalRuleCall_0_8 ( ) { return cLPARENTerminalRuleCall_0_8 ; } public RuleCall getRPARENTerminalRuleCall_0_9 ( ) { return cRPARENTerminalRuleCall_0_9 ; } public RuleCall getRBRACETerminalRuleCall_0_10 ( ) { return cRBRACETerminalRuleCall_0_10 ; } public RuleCall getQUESTITerminalRuleCall_0_11 ( ) { return cQUESTITerminalRuleCall_0_11 ; } public RuleCall getNOTTerminalRuleCall_0_12 ( ) { return cNOTTerminalRuleCall_0_12 ; } public RuleCall getBANDTerminalRuleCall_0_13 ( ) { return cBANDTerminalRuleCall_0_13 ; } public RuleCall getBORTerminalRuleCall_0_14 ( ) { return cBORTerminalRuleCall_0_14 ; } public RuleCall getHASHTerminalRuleCall_0_15 ( ) { return cHASHTerminalRuleCall_0_15 ; } public RuleCall getCARETTerminalRuleCall_0_16 ( ) { return cCARETTerminalRuleCall_0_16 ; } public RuleCall getEQUALSTerminalRuleCall_0_17 ( ) { return cEQUALSTerminalRuleCall_0_17 ; } public RuleCall getLESS_THANTerminalRuleCall_0_18 ( ) { return cLESS_THANTerminalRuleCall_0_18 ; } public RuleCall getMORE_THANTerminalRuleCall_0_19 ( ) { return cMORE_THANTerminalRuleCall_0_19 ; } public RuleCall getANDTerminalRuleCall_0_20 ( ) { return cANDTerminalRuleCall_0_20 ; } public RuleCall getORTerminalRuleCall_0_21 ( ) { return cORTerminalRuleCall_0_21 ; } public RuleCall getESC_CHARTerminalRuleCall_0_22 ( ) { return cESC_CHARTerminalRuleCall_0_22 ; } public RuleCall getON_OFFTerminalRuleCall_0_23 ( ) { return cON_OFFTerminalRuleCall_0_23 ; } public RuleCall getSTATEMEN_TYPETerminalRuleCall_0_24 ( ) { return cSTATEMEN_TYPETerminalRuleCall_0_24 ; } public RuleCall getMAPPING_TYPETerminalRuleCall_0_25 ( ) { return cMAPPING_TYPETerminalRuleCall_0_25 ; } public RuleCall getOPTION_TYPETerminalRuleCall_0_26 ( ) { return cOPTION_TYPETerminalRuleCall_0_26 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public Alternatives getAlternatives_1_0 ( ) { return cAlternatives_1_0 ; } public RuleCall getRESTTerminalRuleCall_1_0_0 ( ) { return cRESTTerminalRuleCall_1_0_0 ; } public RuleCall getIDENT_DOTTerminalRuleCall_1_0_1 ( ) { return cIDENT_DOTTerminalRuleCall_1_0_1 ; } public RuleCall getIDENTTerminalRuleCall_1_0_2 ( ) { return cIDENTTerminalRuleCall_1_0_2 ; } public RuleCall getNUMBERTerminalRuleCall_1_0_3 ( ) { return cNUMBERTerminalRuleCall_1_0_3 ; } public RuleCall getWSTerminalRuleCall_1_0_4 ( ) { return cWSTerminalRuleCall_1_0_4 ; } public RuleCall getCOMMATerminalRuleCall_1_0_5 ( ) { return cCOMMATerminalRuleCall_1_0_5 ; } public RuleCall getMINUSTerminalRuleCall_1_0_6 ( ) { return cMINUSTerminalRuleCall_1_0_6 ; } public RuleCall getPLUSTerminalRuleCall_1_0_7 ( ) { return cPLUSTerminalRuleCall_1_0_7 ; } public RuleCall getLPARENTerminalRuleCall_1_0_8 ( ) { return cLPARENTerminalRuleCall_1_0_8 ; } public RuleCall getRPARENTerminalRuleCall_1_0_9 ( ) { return cRPARENTerminalRuleCall_1_0_9 ; } public RuleCall getRBRACETerminalRuleCall_1_0_10 ( ) { return cRBRACETerminalRuleCall_1_0_10 ; } public RuleCall getQUESTITerminalRuleCall_1_0_11 ( ) { return cQUESTITerminalRuleCall_1_0_11 ; } public RuleCall getNOTTerminalRuleCall_1_0_12 ( ) { return cNOTTerminalRuleCall_1_0_12 ; } public RuleCall getBANDTerminalRuleCall_1_0_13 ( ) { return cBANDTerminalRuleCall_1_0_13 ; } public RuleCall getBORTerminalRuleCall_1_0_14 ( ) { return cBORTerminalRuleCall_1_0_14 ; } public RuleCall getHASHTerminalRuleCall_1_0_15 ( ) { return cHASHTerminalRuleCall_1_0_15 ; } public RuleCall getCARETTerminalRuleCall_1_0_16 ( ) { return cCARETTerminalRuleCall_1_0_16 ; } public RuleCall getEQUALSTerminalRuleCall_1_0_17 ( ) { return cEQUALSTerminalRuleCall_1_0_17 ; } public RuleCall getLESS_THANTerminalRuleCall_1_0_18 ( ) { return cLESS_THANTerminalRuleCall_1_0_18 ; } public RuleCall getMORE_THANTerminalRuleCall_1_0_19 ( ) { return cMORE_THANTerminalRuleCall_1_0_19 ; } public RuleCall getANDTerminalRuleCall_1_0_20 ( ) { return cANDTerminalRuleCall_1_0_20 ; } public RuleCall getORTerminalRuleCall_1_0_21 ( ) { return cORTerminalRuleCall_1_0_21 ; } public RuleCall getESC_CHARTerminalRuleCall_1_0_22 ( ) { return cESC_CHARTerminalRuleCall_1_0_22 ; } public RuleCall getON_OFFTerminalRuleCall_1_0_23 ( ) { return cON_OFFTerminalRuleCall_1_0_23 ; } public RuleCall getSTATEMEN_TYPETerminalRuleCall_1_0_24 ( ) { return cSTATEMEN_TYPETerminalRuleCall_1_0_24 ; } public RuleCall getMAPPING_TYPETerminalRuleCall_1_0_25 ( ) { return cMAPPING_TYPETerminalRuleCall_1_0_25 ; } public RuleCall getOPTION_TYPETerminalRuleCall_1_0_26 ( ) { return cOPTION_TYPETerminalRuleCall_1_0_26 ; } } public class MetaSqlElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_0 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_0_0 = ( RuleCall ) cGroup_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIfsAssignment_0_1 = ( Assignment ) cGroup_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIfsIfSqlParserRuleCall_0_1_0 = ( RuleCall ) cIfsAssignment_0_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_0_2 = ( Group ) cGroup_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cBORTerminalRuleCall_0_2_0 = ( RuleCall ) cGroup_0_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIfsAssignment_0_2_1 = ( Assignment ) cGroup_0_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIfsIfSqlParserRuleCall_0_2_1_0 = ( RuleCall ) cIfsAssignment_0_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_1 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cTypeAssignment_1_0 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cTypeQUESTITerminalRuleCall_1_0_0 = ( RuleCall ) cTypeAssignment_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cCondAssignment_1_1 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cCondIfSqlCondParserRuleCall_1_1_0 = ( RuleCall ) cCondAssignment_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cBORTerminalRuleCall_1_2 = ( RuleCall ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Assignment cIfsAssignment_1_3 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cIfsIfSqlParserRuleCall_1_3_0 = ( RuleCall ) cIfsAssignment_1_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_1_4 = ( Group ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cBORTerminalRuleCall_1_4_0 = ( RuleCall ) cGroup_1_4 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIfsAssignment_1_4_1 = ( Assignment ) cGroup_1_4 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIfsIfSqlParserRuleCall_1_4_1_0 = ( RuleCall ) cIfsAssignment_1_4_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_2 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Assignment cTypeAssignment_2_0 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cTypeBANDTerminalRuleCall_2_0_0 = ( RuleCall ) cTypeAssignment_2_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIfsAssignment_2_1 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIfsIfSqlParserRuleCall_2_1_0 = ( RuleCall ) cIfsAssignment_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_2_2 = ( Group ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cBORTerminalRuleCall_2_2_0 = ( RuleCall ) cGroup_2_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIfsAssignment_2_2_1 = ( Assignment ) cGroup_2_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIfsIfSqlParserRuleCall_2_2_1_0 = ( RuleCall ) cIfsAssignment_2_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Assignment cTypeAssignment_3_0 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cTypeBORTerminalRuleCall_3_0_0 = ( RuleCall ) cTypeAssignment_3_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIfsAssignment_3_1 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIfsIfSqlParserRuleCall_3_1_0 = ( RuleCall ) cIfsAssignment_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3_2 = ( Group ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cBORTerminalRuleCall_3_2_0 = ( RuleCall ) cGroup_3_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIfsAssignment_3_2_1 = ( Assignment ) cGroup_3_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIfsIfSqlParserRuleCall_3_2_1_0 = ( RuleCall ) cIfsAssignment_3_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_4 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:4> ) ; private final Assignment cTypeAssignment_4_0 = ( Assignment ) cGroup_4 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cTypeEQUALSTerminalRuleCall_4_0_0 = ( RuleCall ) cTypeAssignment_4_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_4_1 = ( RuleCall ) cGroup_4 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cFtypeAssignment_4_2 = ( Assignment ) cGroup_4 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cFtypeIDENTTerminalRuleCall_4_2_0 = ( RuleCall ) cFtypeAssignment_4_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIfsAssignment_4_3 = ( Assignment ) cGroup_4 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cIfsIfSqlParserRuleCall_4_3_0 = ( RuleCall ) cIfsAssignment_4_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_5 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:5> ) ; private final Assignment cTypeAssignment_5_0 = ( Assignment ) cGroup_5 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cTypeHASHTerminalRuleCall_5_0_0 = ( RuleCall ) cTypeAssignment_5_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNUMBERTerminalRuleCall_5_1 = ( RuleCall ) cGroup_5 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cOrdAssignment_5_2 = ( Assignment ) cGroup_5 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cOrdOrdSqlParserRuleCall_5_2_0 = ( RuleCall ) cOrdAssignment_5_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public Group getGroup_0 ( ) { return cGroup_0 ; } public RuleCall getWSTerminalRuleCall_0_0 ( ) { return cWSTerminalRuleCall_0_0 ; } public Assignment getIfsAssignment_0_1 ( ) { return cIfsAssignment_0_1 ; } public RuleCall getIfsIfSqlParserRuleCall_0_1_0 ( ) { return cIfsIfSqlParserRuleCall_0_1_0 ; } public Group getGroup_0_2 ( ) { return cGroup_0_2 ; } public RuleCall getBORTerminalRuleCall_0_2_0 ( ) { return cBORTerminalRuleCall_0_2_0 ; } public Assignment getIfsAssignment_0_2_1 ( ) { return cIfsAssignment_0_2_1 ; } public RuleCall getIfsIfSqlParserRuleCall_0_2_1_0 ( ) { return cIfsIfSqlParserRuleCall_0_2_1_0 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public Assignment getTypeAssignment_1_0 ( ) { return cTypeAssignment_1_0 ; } public RuleCall getTypeQUESTITerminalRuleCall_1_0_0 ( ) { return cTypeQUESTITerminalRuleCall_1_0_0 ; } public Assignment getCondAssignment_1_1 ( ) { return cCondAssignment_1_1 ; } public RuleCall getCondIfSqlCondParserRuleCall_1_1_0 ( ) { return cCondIfSqlCondParserRuleCall_1_1_0 ; } public RuleCall getBORTerminalRuleCall_1_2 ( ) { return cBORTerminalRuleCall_1_2 ; } public Assignment getIfsAssignment_1_3 ( ) { return cIfsAssignment_1_3 ; } public RuleCall getIfsIfSqlParserRuleCall_1_3_0 ( ) { return cIfsIfSqlParserRuleCall_1_3_0 ; } public Group getGroup_1_4 ( ) { return cGroup_1_4 ; } public RuleCall getBORTerminalRuleCall_1_4_0 ( ) { return cBORTerminalRuleCall_1_4_0 ; } public Assignment getIfsAssignment_1_4_1 ( ) { return cIfsAssignment_1_4_1 ; } public RuleCall getIfsIfSqlParserRuleCall_1_4_1_0 ( ) { return cIfsIfSqlParserRuleCall_1_4_1_0 ; } public Group getGroup_2 ( ) { return cGroup_2 ; } public Assignment getTypeAssignment_2_0 ( ) { return cTypeAssignment_2_0 ; } public RuleCall getTypeBANDTerminalRuleCall_2_0_0 ( ) { return cTypeBANDTerminalRuleCall_2_0_0 ; } public Assignment getIfsAssignment_2_1 ( ) { return cIfsAssignment_2_1 ; } public RuleCall getIfsIfSqlParserRuleCall_2_1_0 ( ) { return cIfsIfSqlParserRuleCall_2_1_0 ; } public Group getGroup_2_2 ( ) { return cGroup_2_2 ; } public RuleCall getBORTerminalRuleCall_2_2_0 ( ) { return cBORTerminalRuleCall_2_2_0 ; } public Assignment getIfsAssignment_2_2_1 ( ) { return cIfsAssignment_2_2_1 ; } public RuleCall getIfsIfSqlParserRuleCall_2_2_1_0 ( ) { return cIfsIfSqlParserRuleCall_2_2_1_0 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public Assignment getTypeAssignment_3_0 ( ) { return cTypeAssignment_3_0 ; } public RuleCall getTypeBORTerminalRuleCall_3_0_0 ( ) { return cTypeBORTerminalRuleCall_3_0_0 ; } public Assignment getIfsAssignment_3_1 ( ) { return cIfsAssignment_3_1 ; } public RuleCall getIfsIfSqlParserRuleCall_3_1_0 ( ) { return cIfsIfSqlParserRuleCall_3_1_0 ; } public Group getGroup_3_2 ( ) { return cGroup_3_2 ; } public RuleCall getBORTerminalRuleCall_3_2_0 ( ) { return cBORTerminalRuleCall_3_2_0 ; } public Assignment getIfsAssignment_3_2_1 ( ) { return cIfsAssignment_3_2_1 ; } public RuleCall getIfsIfSqlParserRuleCall_3_2_1_0 ( ) { return cIfsIfSqlParserRuleCall_3_2_1_0 ; } public Group getGroup_4 ( ) { return cGroup_4 ; } public Assignment getTypeAssignment_4_0 ( ) { return cTypeAssignment_4_0 ; } public RuleCall getTypeEQUALSTerminalRuleCall_4_0_0 ( ) { return cTypeEQUALSTerminalRuleCall_4_0_0 ; } public RuleCall getWSTerminalRuleCall_4_1 ( ) { return cWSTerminalRuleCall_4_1 ; } public Assignment getFtypeAssignment_4_2 ( ) { return cFtypeAssignment_4_2 ; } public RuleCall getFtypeIDENTTerminalRuleCall_4_2_0 ( ) { return cFtypeIDENTTerminalRuleCall_4_2_0 ; } public Assignment getIfsAssignment_4_3 ( ) { return cIfsAssignment_4_3 ; } public RuleCall getIfsIfSqlParserRuleCall_4_3_0 ( ) { return cIfsIfSqlParserRuleCall_4_3_0 ; } public Group getGroup_5 ( ) { return cGroup_5 ; } public Assignment getTypeAssignment_5_0 ( ) { return cTypeAssignment_5_0 ; } public RuleCall getTypeHASHTerminalRuleCall_5_0_0 ( ) { return cTypeHASHTerminalRuleCall_5_0_0 ; } public RuleCall getNUMBERTerminalRuleCall_5_1 ( ) { return cNUMBERTerminalRuleCall_5_1 ; } public Assignment getOrdAssignment_5_2 ( ) { return cOrdAssignment_5_2 ; } public RuleCall getOrdOrdSqlParserRuleCall_5_2_0 ( ) { return cOrdOrdSqlParserRuleCall_5_2_0 ; } } public class IfSqlElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Assignment cSqlsAssignment = ( Assignment ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSqlsIfSqlFragmentParserRuleCall_0 = ( RuleCall ) cSqlsAssignment . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Assignment getSqlsAssignment ( ) { return cSqlsAssignment ; } public RuleCall getSqlsIfSqlFragmentParserRuleCall_0 ( ) { return cSqlsIfSqlFragmentParserRuleCall_0 ; } } public class IfSqlFragmentElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cValueAssignment_0 = ( Assignment ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cValueIfSqlValueParserRuleCall_0_0 = ( RuleCall ) cValueAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_1 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cATTerminalRuleCall_1_0 = ( RuleCall ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cColAssignment_1_1 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cColColumnParserRuleCall_1_1_0 = ( RuleCall ) cColAssignment_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_2 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cSTRINGTerminalRuleCall_2_0 = ( RuleCall ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cCnstAssignment_2_1 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cCnstConstantParserRuleCall_2_1_0 = ( RuleCall ) cCnstAssignment_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cCOLONTerminalRuleCall_3_0 = ( RuleCall ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIdentAssignment_3_1 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIdentIdentifierParserRuleCall_3_1_0 = ( RuleCall ) cIdentAssignment_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_4 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cPERCENTTerminalRuleCall_4_0 = ( RuleCall ) cGroup_4 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cAlternatives_4_1 = ( Alternatives ) cGroup_4 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_4_1_0 = ( Group ) cAlternatives_4_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cPERCENTTerminalRuleCall_4_1_0_0 = ( RuleCall ) cGroup_4_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cDbtabAssignment_4_1_0_1 = ( Assignment ) cGroup_4_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cDbtabDatabaseTableParserRuleCall_4_1_0_1_0 = ( RuleCall ) cDbtabAssignment_4_1_0_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cDbcolAssignment_4_1_1 = ( Assignment ) cAlternatives_4_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cDbcolDatabaseColumnParserRuleCall_4_1_1_0 = ( RuleCall ) cDbcolAssignment_4_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_5 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:5> ) ; private final RuleCall cLBRACETerminalRuleCall_5_0 = ( RuleCall ) cGroup_5 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cMetaAssignment_5_1 = ( Assignment ) cGroup_5 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cMetaIfMetaSqlParserRuleCall_5_1_0 = ( RuleCall ) cMetaAssignment_5_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRBRACETerminalRuleCall_5_2 = ( RuleCall ) cGroup_5 . eContents ( ) . get ( <NUM_LIT:2> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public Assignment getValueAssignment_0 ( ) { return cValueAssignment_0 ; } public RuleCall getValueIfSqlValueParserRuleCall_0_0 ( ) { return cValueIfSqlValueParserRuleCall_0_0 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public RuleCall getATTerminalRuleCall_1_0 ( ) { return cATTerminalRuleCall_1_0 ; } public Assignment getColAssignment_1_1 ( ) { return cColAssignment_1_1 ; } public RuleCall getColColumnParserRuleCall_1_1_0 ( ) { return cColColumnParserRuleCall_1_1_0 ; } public Group getGroup_2 ( ) { return cGroup_2 ; } public RuleCall getSTRINGTerminalRuleCall_2_0 ( ) { return cSTRINGTerminalRuleCall_2_0 ; } public Assignment getCnstAssignment_2_1 ( ) { return cCnstAssignment_2_1 ; } public RuleCall getCnstConstantParserRuleCall_2_1_0 ( ) { return cCnstConstantParserRuleCall_2_1_0 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public RuleCall getCOLONTerminalRuleCall_3_0 ( ) { return cCOLONTerminalRuleCall_3_0 ; } public Assignment getIdentAssignment_3_1 ( ) { return cIdentAssignment_3_1 ; } public RuleCall getIdentIdentifierParserRuleCall_3_1_0 ( ) { return cIdentIdentifierParserRuleCall_3_1_0 ; } public Group getGroup_4 ( ) { return cGroup_4 ; } public RuleCall getPERCENTTerminalRuleCall_4_0 ( ) { return cPERCENTTerminalRuleCall_4_0 ; } public Alternatives getAlternatives_4_1 ( ) { return cAlternatives_4_1 ; } public Group getGroup_4_1_0 ( ) { return cGroup_4_1_0 ; } public RuleCall getPERCENTTerminalRuleCall_4_1_0_0 ( ) { return cPERCENTTerminalRuleCall_4_1_0_0 ; } public Assignment getDbtabAssignment_4_1_0_1 ( ) { return cDbtabAssignment_4_1_0_1 ; } public RuleCall getDbtabDatabaseTableParserRuleCall_4_1_0_1_0 ( ) { return cDbtabDatabaseTableParserRuleCall_4_1_0_1_0 ; } public Assignment getDbcolAssignment_4_1_1 ( ) { return cDbcolAssignment_4_1_1 ; } public RuleCall getDbcolDatabaseColumnParserRuleCall_4_1_1_0 ( ) { return cDbcolDatabaseColumnParserRuleCall_4_1_1_0 ; } public Group getGroup_5 ( ) { return cGroup_5 ; } public RuleCall getLBRACETerminalRuleCall_5_0 ( ) { return cLBRACETerminalRuleCall_5_0 ; } public Assignment getMetaAssignment_5_1 ( ) { return cMetaAssignment_5_1 ; } public RuleCall getMetaIfMetaSqlParserRuleCall_5_1_0 ( ) { return cMetaIfMetaSqlParserRuleCall_5_1_0 ; } public RuleCall getRBRACETerminalRuleCall_5_2 ( ) { return cRBRACETerminalRuleCall_5_2 ; } } public class IfSqlValueElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cAlternatives_0 = ( Alternatives ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRESTTerminalRuleCall_0_0 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cIDENT_DOTTerminalRuleCall_0_1 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIDENTTerminalRuleCall_0_2 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cNUMBERTerminalRuleCall_0_3 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_0_4 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_0_5 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:5> ) ; private final RuleCall cCOMMATerminalRuleCall_0_6 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:6> ) ; private final RuleCall cMINUSTerminalRuleCall_0_7 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:7> ) ; private final RuleCall cPLUSTerminalRuleCall_0_8 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:8> ) ; private final RuleCall cLPARENTerminalRuleCall_0_9 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:9> ) ; private final RuleCall cRPARENTerminalRuleCall_0_10 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:10> ) ; private final RuleCall cQUESTITerminalRuleCall_0_11 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:11> ) ; private final RuleCall cNOTTerminalRuleCall_0_12 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:12> ) ; private final RuleCall cBANDTerminalRuleCall_0_13 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cHASHTerminalRuleCall_0_14 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cCARETTerminalRuleCall_0_15 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:15> ) ; private final RuleCall cEQUALSTerminalRuleCall_0_16 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:16> ) ; private final RuleCall cLESS_THANTerminalRuleCall_0_17 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cMORE_THANTerminalRuleCall_0_18 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cANDTerminalRuleCall_0_19 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cORTerminalRuleCall_0_20 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:20> ) ; private final RuleCall cESC_CHARTerminalRuleCall_0_21 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cON_OFFTerminalRuleCall_0_22 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cSTATEMEN_TYPETerminalRuleCall_0_23 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cMAPPING_TYPETerminalRuleCall_0_24 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:24> ) ; private final RuleCall cOPTION_TYPETerminalRuleCall_0_25 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final Group cGroup_1 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cAlternatives_1_0 = ( Alternatives ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRESTTerminalRuleCall_1_0_0 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cIDENT_DOTTerminalRuleCall_1_0_1 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIDENTTerminalRuleCall_1_0_2 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cNUMBERTerminalRuleCall_1_0_3 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_1_0_4 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_1_0_5 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:5> ) ; private final RuleCall cCOMMATerminalRuleCall_1_0_6 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:6> ) ; private final RuleCall cMINUSTerminalRuleCall_1_0_7 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:7> ) ; private final RuleCall cPLUSTerminalRuleCall_1_0_8 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:8> ) ; private final RuleCall cLPARENTerminalRuleCall_1_0_9 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:9> ) ; private final RuleCall cRPARENTerminalRuleCall_1_0_10 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:10> ) ; private final RuleCall cQUESTITerminalRuleCall_1_0_11 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:11> ) ; private final RuleCall cNOTTerminalRuleCall_1_0_12 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:12> ) ; private final RuleCall cBANDTerminalRuleCall_1_0_13 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cHASHTerminalRuleCall_1_0_14 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cCARETTerminalRuleCall_1_0_15 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:15> ) ; private final RuleCall cEQUALSTerminalRuleCall_1_0_16 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:16> ) ; private final RuleCall cLESS_THANTerminalRuleCall_1_0_17 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cMORE_THANTerminalRuleCall_1_0_18 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cANDTerminalRuleCall_1_0_19 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cORTerminalRuleCall_1_0_20 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:20> ) ; private final RuleCall cESC_CHARTerminalRuleCall_1_0_21 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cON_OFFTerminalRuleCall_1_0_22 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cSTATEMEN_TYPETerminalRuleCall_1_0_23 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cMAPPING_TYPETerminalRuleCall_1_0_24 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:24> ) ; private final RuleCall cOPTION_TYPETerminalRuleCall_1_0_25 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Alternatives getAlternatives_0 ( ) { return cAlternatives_0 ; } public RuleCall getRESTTerminalRuleCall_0_0 ( ) { return cRESTTerminalRuleCall_0_0 ; } public RuleCall getIDENT_DOTTerminalRuleCall_0_1 ( ) { return cIDENT_DOTTerminalRuleCall_0_1 ; } public RuleCall getIDENTTerminalRuleCall_0_2 ( ) { return cIDENTTerminalRuleCall_0_2 ; } public RuleCall getNUMBERTerminalRuleCall_0_3 ( ) { return cNUMBERTerminalRuleCall_0_3 ; } public RuleCall getWSTerminalRuleCall_0_4 ( ) { return cWSTerminalRuleCall_0_4 ; } public RuleCall getSEMICOLONTerminalRuleCall_0_5 ( ) { return cSEMICOLONTerminalRuleCall_0_5 ; } public RuleCall getCOMMATerminalRuleCall_0_6 ( ) { return cCOMMATerminalRuleCall_0_6 ; } public RuleCall getMINUSTerminalRuleCall_0_7 ( ) { return cMINUSTerminalRuleCall_0_7 ; } public RuleCall getPLUSTerminalRuleCall_0_8 ( ) { return cPLUSTerminalRuleCall_0_8 ; } public RuleCall getLPARENTerminalRuleCall_0_9 ( ) { return cLPARENTerminalRuleCall_0_9 ; } public RuleCall getRPARENTerminalRuleCall_0_10 ( ) { return cRPARENTerminalRuleCall_0_10 ; } public RuleCall getQUESTITerminalRuleCall_0_11 ( ) { return cQUESTITerminalRuleCall_0_11 ; } public RuleCall getNOTTerminalRuleCall_0_12 ( ) { return cNOTTerminalRuleCall_0_12 ; } public RuleCall getBANDTerminalRuleCall_0_13 ( ) { return cBANDTerminalRuleCall_0_13 ; } public RuleCall getHASHTerminalRuleCall_0_14 ( ) { return cHASHTerminalRuleCall_0_14 ; } public RuleCall getCARETTerminalRuleCall_0_15 ( ) { return cCARETTerminalRuleCall_0_15 ; } public RuleCall getEQUALSTerminalRuleCall_0_16 ( ) { return cEQUALSTerminalRuleCall_0_16 ; } public RuleCall getLESS_THANTerminalRuleCall_0_17 ( ) { return cLESS_THANTerminalRuleCall_0_17 ; } public RuleCall getMORE_THANTerminalRuleCall_0_18 ( ) { return cMORE_THANTerminalRuleCall_0_18 ; } public RuleCall getANDTerminalRuleCall_0_19 ( ) { return cANDTerminalRuleCall_0_19 ; } public RuleCall getORTerminalRuleCall_0_20 ( ) { return cORTerminalRuleCall_0_20 ; } public RuleCall getESC_CHARTerminalRuleCall_0_21 ( ) { return cESC_CHARTerminalRuleCall_0_21 ; } public RuleCall getON_OFFTerminalRuleCall_0_22 ( ) { return cON_OFFTerminalRuleCall_0_22 ; } public RuleCall getSTATEMEN_TYPETerminalRuleCall_0_23 ( ) { return cSTATEMEN_TYPETerminalRuleCall_0_23 ; } public RuleCall getMAPPING_TYPETerminalRuleCall_0_24 ( ) { return cMAPPING_TYPETerminalRuleCall_0_24 ; } public RuleCall getOPTION_TYPETerminalRuleCall_0_25 ( ) { return cOPTION_TYPETerminalRuleCall_0_25 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public Alternatives getAlternatives_1_0 ( ) { return cAlternatives_1_0 ; } public RuleCall getRESTTerminalRuleCall_1_0_0 ( ) { return cRESTTerminalRuleCall_1_0_0 ; } public RuleCall getIDENT_DOTTerminalRuleCall_1_0_1 ( ) { return cIDENT_DOTTerminalRuleCall_1_0_1 ; } public RuleCall getIDENTTerminalRuleCall_1_0_2 ( ) { return cIDENTTerminalRuleCall_1_0_2 ; } public RuleCall getNUMBERTerminalRuleCall_1_0_3 ( ) { return cNUMBERTerminalRuleCall_1_0_3 ; } public RuleCall getWSTerminalRuleCall_1_0_4 ( ) { return cWSTerminalRuleCall_1_0_4 ; } public RuleCall getSEMICOLONTerminalRuleCall_1_0_5 ( ) { return cSEMICOLONTerminalRuleCall_1_0_5 ; } public RuleCall getCOMMATerminalRuleCall_1_0_6 ( ) { return cCOMMATerminalRuleCall_1_0_6 ; } public RuleCall getMINUSTerminalRuleCall_1_0_7 ( ) { return cMINUSTerminalRuleCall_1_0_7 ; } public RuleCall getPLUSTerminalRuleCall_1_0_8 ( ) { return cPLUSTerminalRuleCall_1_0_8 ; } public RuleCall getLPARENTerminalRuleCall_1_0_9 ( ) { return cLPARENTerminalRuleCall_1_0_9 ; } public RuleCall getRPARENTerminalRuleCall_1_0_10 ( ) { return cRPARENTerminalRuleCall_1_0_10 ; } public RuleCall getQUESTITerminalRuleCall_1_0_11 ( ) { return cQUESTITerminalRuleCall_1_0_11 ; } public RuleCall getNOTTerminalRuleCall_1_0_12 ( ) { return cNOTTerminalRuleCall_1_0_12 ; } public RuleCall getBANDTerminalRuleCall_1_0_13 ( ) { return cBANDTerminalRuleCall_1_0_13 ; } public RuleCall getHASHTerminalRuleCall_1_0_14 ( ) { return cHASHTerminalRuleCall_1_0_14 ; } public RuleCall getCARETTerminalRuleCall_1_0_15 ( ) { return cCARETTerminalRuleCall_1_0_15 ; } public RuleCall getEQUALSTerminalRuleCall_1_0_16 ( ) { return cEQUALSTerminalRuleCall_1_0_16 ; } public RuleCall getLESS_THANTerminalRuleCall_1_0_17 ( ) { return cLESS_THANTerminalRuleCall_1_0_17 ; } public RuleCall getMORE_THANTerminalRuleCall_1_0_18 ( ) { return cMORE_THANTerminalRuleCall_1_0_18 ; } public RuleCall getANDTerminalRuleCall_1_0_19 ( ) { return cANDTerminalRuleCall_1_0_19 ; } public RuleCall getORTerminalRuleCall_1_0_20 ( ) { return cORTerminalRuleCall_1_0_20 ; } public RuleCall getESC_CHARTerminalRuleCall_1_0_21 ( ) { return cESC_CHARTerminalRuleCall_1_0_21 ; } public RuleCall getON_OFFTerminalRuleCall_1_0_22 ( ) { return cON_OFFTerminalRuleCall_1_0_22 ; } public RuleCall getSTATEMEN_TYPETerminalRuleCall_1_0_23 ( ) { return cSTATEMEN_TYPETerminalRuleCall_1_0_23 ; } public RuleCall getMAPPING_TYPETerminalRuleCall_1_0_24 ( ) { return cMAPPING_TYPETerminalRuleCall_1_0_24 ; } public RuleCall getOPTION_TYPETerminalRuleCall_1_0_25 ( ) { return cOPTION_TYPETerminalRuleCall_1_0_25 ; } } public class IfMetaSqlElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_0 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_0_0 = ( RuleCall ) cGroup_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIfsAssignment_0_1 = ( Assignment ) cGroup_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIfsIfSqlParserRuleCall_0_1_0 = ( RuleCall ) cIfsAssignment_0_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_0_2 = ( Group ) cGroup_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cBORTerminalRuleCall_0_2_0 = ( RuleCall ) cGroup_0_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIfsAssignment_0_2_1 = ( Assignment ) cGroup_0_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIfsIfSqlParserRuleCall_0_2_1_0 = ( RuleCall ) cIfsAssignment_0_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_1 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cTypeAssignment_1_0 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cTypeQUESTITerminalRuleCall_1_0_0 = ( RuleCall ) cTypeAssignment_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cCondAssignment_1_1 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cCondIfSqlCondParserRuleCall_1_1_0 = ( RuleCall ) cCondAssignment_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cBORTerminalRuleCall_1_2 = ( RuleCall ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Assignment cIfsAssignment_1_3 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cIfsIfSqlParserRuleCall_1_3_0 = ( RuleCall ) cIfsAssignment_1_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_1_4 = ( Group ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cBORTerminalRuleCall_1_4_0 = ( RuleCall ) cGroup_1_4 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIfsAssignment_1_4_1 = ( Assignment ) cGroup_1_4 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIfsIfSqlParserRuleCall_1_4_1_0 = ( RuleCall ) cIfsAssignment_1_4_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_2 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Assignment cTypeAssignment_2_0 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cTypeBANDTerminalRuleCall_2_0_0 = ( RuleCall ) cTypeAssignment_2_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIfsAssignment_2_1 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIfsIfSqlParserRuleCall_2_1_0 = ( RuleCall ) cIfsAssignment_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_2_2 = ( Group ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cBORTerminalRuleCall_2_2_0 = ( RuleCall ) cGroup_2_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIfsAssignment_2_2_1 = ( Assignment ) cGroup_2_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIfsIfSqlParserRuleCall_2_2_1_0 = ( RuleCall ) cIfsAssignment_2_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Assignment cTypeAssignment_3_0 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cTypeBORTerminalRuleCall_3_0_0 = ( RuleCall ) cTypeAssignment_3_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIfsAssignment_3_1 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIfsIfSqlParserRuleCall_3_1_0 = ( RuleCall ) cIfsAssignment_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3_2 = ( Group ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cBORTerminalRuleCall_3_2_0 = ( RuleCall ) cGroup_3_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIfsAssignment_3_2_1 = ( Assignment ) cGroup_3_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIfsIfSqlParserRuleCall_3_2_1_0 = ( RuleCall ) cIfsAssignment_3_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public Group getGroup_0 ( ) { return cGroup_0 ; } public RuleCall getWSTerminalRuleCall_0_0 ( ) { return cWSTerminalRuleCall_0_0 ; } public Assignment getIfsAssignment_0_1 ( ) { return cIfsAssignment_0_1 ; } public RuleCall getIfsIfSqlParserRuleCall_0_1_0 ( ) { return cIfsIfSqlParserRuleCall_0_1_0 ; } public Group getGroup_0_2 ( ) { return cGroup_0_2 ; } public RuleCall getBORTerminalRuleCall_0_2_0 ( ) { return cBORTerminalRuleCall_0_2_0 ; } public Assignment getIfsAssignment_0_2_1 ( ) { return cIfsAssignment_0_2_1 ; } public RuleCall getIfsIfSqlParserRuleCall_0_2_1_0 ( ) { return cIfsIfSqlParserRuleCall_0_2_1_0 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public Assignment getTypeAssignment_1_0 ( ) { return cTypeAssignment_1_0 ; } public RuleCall getTypeQUESTITerminalRuleCall_1_0_0 ( ) { return cTypeQUESTITerminalRuleCall_1_0_0 ; } public Assignment getCondAssignment_1_1 ( ) { return cCondAssignment_1_1 ; } public RuleCall getCondIfSqlCondParserRuleCall_1_1_0 ( ) { return cCondIfSqlCondParserRuleCall_1_1_0 ; } public RuleCall getBORTerminalRuleCall_1_2 ( ) { return cBORTerminalRuleCall_1_2 ; } public Assignment getIfsAssignment_1_3 ( ) { return cIfsAssignment_1_3 ; } public RuleCall getIfsIfSqlParserRuleCall_1_3_0 ( ) { return cIfsIfSqlParserRuleCall_1_3_0 ; } public Group getGroup_1_4 ( ) { return cGroup_1_4 ; } public RuleCall getBORTerminalRuleCall_1_4_0 ( ) { return cBORTerminalRuleCall_1_4_0 ; } public Assignment getIfsAssignment_1_4_1 ( ) { return cIfsAssignment_1_4_1 ; } public RuleCall getIfsIfSqlParserRuleCall_1_4_1_0 ( ) { return cIfsIfSqlParserRuleCall_1_4_1_0 ; } public Group getGroup_2 ( ) { return cGroup_2 ; } public Assignment getTypeAssignment_2_0 ( ) { return cTypeAssignment_2_0 ; } public RuleCall getTypeBANDTerminalRuleCall_2_0_0 ( ) { return cTypeBANDTerminalRuleCall_2_0_0 ; } public Assignment getIfsAssignment_2_1 ( ) { return cIfsAssignment_2_1 ; } public RuleCall getIfsIfSqlParserRuleCall_2_1_0 ( ) { return cIfsIfSqlParserRuleCall_2_1_0 ; } public Group getGroup_2_2 ( ) { return cGroup_2_2 ; } public RuleCall getBORTerminalRuleCall_2_2_0 ( ) { return cBORTerminalRuleCall_2_2_0 ; } public Assignment getIfsAssignment_2_2_1 ( ) { return cIfsAssignment_2_2_1 ; } public RuleCall getIfsIfSqlParserRuleCall_2_2_1_0 ( ) { return cIfsIfSqlParserRuleCall_2_2_1_0 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public Assignment getTypeAssignment_3_0 ( ) { return cTypeAssignment_3_0 ; } public RuleCall getTypeBORTerminalRuleCall_3_0_0 ( ) { return cTypeBORTerminalRuleCall_3_0_0 ; } public Assignment getIfsAssignment_3_1 ( ) { return cIfsAssignment_3_1 ; } public RuleCall getIfsIfSqlParserRuleCall_3_1_0 ( ) { return cIfsIfSqlParserRuleCall_3_1_0 ; } public Group getGroup_3_2 ( ) { return cGroup_3_2 ; } public RuleCall getBORTerminalRuleCall_3_2_0 ( ) { return cBORTerminalRuleCall_3_2_0 ; } public Assignment getIfsAssignment_3_2_1 ( ) { return cIfsAssignment_3_2_1 ; } public RuleCall getIfsIfSqlParserRuleCall_3_2_1_0 ( ) { return cIfsIfSqlParserRuleCall_3_2_1_0 ; } } public class IfSqlCondElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cWSTerminalRuleCall_0 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cBool1Assignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cBool1IfSqlBoolParserRuleCall_1_0 = ( RuleCall ) cBool1Assignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_2 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Group cGroup_3 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Assignment cOperAssignment_3_0 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cOperAlternatives_3_0_0 = ( Alternatives ) cOperAssignment_3_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cOperANDTerminalRuleCall_3_0_0_0 = ( RuleCall ) cOperAlternatives_3_0_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cOperORTerminalRuleCall_3_0_0_1 = ( RuleCall ) cOperAlternatives_3_0_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cWSTerminalRuleCall_3_1 = ( RuleCall ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cBool2Assignment_3_2 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cBool2IfSqlBoolParserRuleCall_3_2_0 = ( RuleCall ) cBool2Assignment_3_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_3_3 = ( RuleCall ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:3> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public RuleCall getWSTerminalRuleCall_0 ( ) { return cWSTerminalRuleCall_0 ; } public Assignment getBool1Assignment_1 ( ) { return cBool1Assignment_1 ; } public RuleCall getBool1IfSqlBoolParserRuleCall_1_0 ( ) { return cBool1IfSqlBoolParserRuleCall_1_0 ; } public RuleCall getWSTerminalRuleCall_2 ( ) { return cWSTerminalRuleCall_2 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public Assignment getOperAssignment_3_0 ( ) { return cOperAssignment_3_0 ; } public Alternatives getOperAlternatives_3_0_0 ( ) { return cOperAlternatives_3_0_0 ; } public RuleCall getOperANDTerminalRuleCall_3_0_0_0 ( ) { return cOperANDTerminalRuleCall_3_0_0_0 ; } public RuleCall getOperORTerminalRuleCall_3_0_0_1 ( ) { return cOperORTerminalRuleCall_3_0_0_1 ; } public RuleCall getWSTerminalRuleCall_3_1 ( ) { return cWSTerminalRuleCall_3_1 ; } public Assignment getBool2Assignment_3_2 ( ) { return cBool2Assignment_3_2 ; } public RuleCall getBool2IfSqlBoolParserRuleCall_3_2_0 ( ) { return cBool2IfSqlBoolParserRuleCall_3_2_0 ; } public RuleCall getWSTerminalRuleCall_3_3 ( ) { return cWSTerminalRuleCall_3_3 ; } } public class IfSqlBoolElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_0 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cNotAssignment_0_0 = ( Assignment ) cGroup_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNotNOTTerminalRuleCall_0_0_0 = ( RuleCall ) cNotAssignment_0_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cSTRINGTerminalRuleCall_0_1 = ( RuleCall ) cGroup_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cCnstAssignment_0_2 = ( Assignment ) cGroup_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cCnstConstantParserRuleCall_0_2_0 = ( RuleCall ) cCnstAssignment_0_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_1 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cNotAssignment_1_0 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNotNOTTerminalRuleCall_1_0_0 = ( RuleCall ) cNotAssignment_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cCOLONTerminalRuleCall_1_1 = ( RuleCall ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cIdentAssignment_1_2 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cIdentIdentifierParserRuleCall_1_2_0 = ( RuleCall ) cIdentAssignment_1_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_2 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Assignment cNotAssignment_2_0 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNotNOTTerminalRuleCall_2_0_0 = ( RuleCall ) cNotAssignment_2_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cLPARENTerminalRuleCall_2_1 = ( RuleCall ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cCondAssignment_2_2 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cCondIfSqlCondParserRuleCall_2_2_0 = ( RuleCall ) cCondAssignment_2_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRPARENTerminalRuleCall_2_3 = ( RuleCall ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:3> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public Group getGroup_0 ( ) { return cGroup_0 ; } public Assignment getNotAssignment_0_0 ( ) { return cNotAssignment_0_0 ; } public RuleCall getNotNOTTerminalRuleCall_0_0_0 ( ) { return cNotNOTTerminalRuleCall_0_0_0 ; } public RuleCall getSTRINGTerminalRuleCall_0_1 ( ) { return cSTRINGTerminalRuleCall_0_1 ; } public Assignment getCnstAssignment_0_2 ( ) { return cCnstAssignment_0_2 ; } public RuleCall getCnstConstantParserRuleCall_0_2_0 ( ) { return cCnstConstantParserRuleCall_0_2_0 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public Assignment getNotAssignment_1_0 ( ) { return cNotAssignment_1_0 ; } public RuleCall getNotNOTTerminalRuleCall_1_0_0 ( ) { return cNotNOTTerminalRuleCall_1_0_0 ; } public RuleCall getCOLONTerminalRuleCall_1_1 ( ) { return cCOLONTerminalRuleCall_1_1 ; } public Assignment getIdentAssignment_1_2 ( ) { return cIdentAssignment_1_2 ; } public RuleCall getIdentIdentifierParserRuleCall_1_2_0 ( ) { return cIdentIdentifierParserRuleCall_1_2_0 ; } public Group getGroup_2 ( ) { return cGroup_2 ; } public Assignment getNotAssignment_2_0 ( ) { return cNotAssignment_2_0 ; } public RuleCall getNotNOTTerminalRuleCall_2_0_0 ( ) { return cNotNOTTerminalRuleCall_2_0_0 ; } public RuleCall getLPARENTerminalRuleCall_2_1 ( ) { return cLPARENTerminalRuleCall_2_1 ; } public Assignment getCondAssignment_2_2 ( ) { return cCondAssignment_2_2 ; } public RuleCall getCondIfSqlCondParserRuleCall_2_2_0 ( ) { return cCondIfSqlCondParserRuleCall_2_2_0 ; } public RuleCall getRPARENTerminalRuleCall_2_3 ( ) { return cRPARENTerminalRuleCall_2_3 ; } } public class OrdSqlElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Assignment cSqlsAssignment = ( Assignment ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSqlsOrdSql2ParserRuleCall_0 = ( RuleCall ) cSqlsAssignment . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Assignment getSqlsAssignment ( ) { return cSqlsAssignment ; } public RuleCall getSqlsOrdSql2ParserRuleCall_0 ( ) { return cSqlsOrdSql2ParserRuleCall_0 ; } } public class OrdSql2Elements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cValueAssignment_0 = ( Assignment ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cValueOrdSqlValueParserRuleCall_0_0 = ( RuleCall ) cValueAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_1 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSTRINGTerminalRuleCall_1_0 = ( RuleCall ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cCnstAssignment_1_1 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cCnstConstantParserRuleCall_1_1_0 = ( RuleCall ) cCnstAssignment_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_2 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cCOLONTerminalRuleCall_2_0 = ( RuleCall ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cIdentAssignment_2_1 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIdentIdentifierParserRuleCall_2_1_0 = ( RuleCall ) cIdentAssignment_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cPERCENTTerminalRuleCall_3_0 = ( RuleCall ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cDbcolAssignment_3_1 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cDbcolDatabaseColumnParserRuleCall_3_1_0 = ( RuleCall ) cDbcolAssignment_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public Assignment getValueAssignment_0 ( ) { return cValueAssignment_0 ; } public RuleCall getValueOrdSqlValueParserRuleCall_0_0 ( ) { return cValueOrdSqlValueParserRuleCall_0_0 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public RuleCall getSTRINGTerminalRuleCall_1_0 ( ) { return cSTRINGTerminalRuleCall_1_0 ; } public Assignment getCnstAssignment_1_1 ( ) { return cCnstAssignment_1_1 ; } public RuleCall getCnstConstantParserRuleCall_1_1_0 ( ) { return cCnstConstantParserRuleCall_1_1_0 ; } public Group getGroup_2 ( ) { return cGroup_2 ; } public RuleCall getCOLONTerminalRuleCall_2_0 ( ) { return cCOLONTerminalRuleCall_2_0 ; } public Assignment getIdentAssignment_2_1 ( ) { return cIdentAssignment_2_1 ; } public RuleCall getIdentIdentifierParserRuleCall_2_1_0 ( ) { return cIdentIdentifierParserRuleCall_2_1_0 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public RuleCall getPERCENTTerminalRuleCall_3_0 ( ) { return cPERCENTTerminalRuleCall_3_0 ; } public Assignment getDbcolAssignment_3_1 ( ) { return cDbcolAssignment_3_1 ; } public RuleCall getDbcolDatabaseColumnParserRuleCall_3_1_0 ( ) { return cDbcolDatabaseColumnParserRuleCall_3_1_0 ; } } public class OrdSqlValueElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cAlternatives_0 = ( Alternatives ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRESTTerminalRuleCall_0_0 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cIDENT_DOTTerminalRuleCall_0_1 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIDENTTerminalRuleCall_0_2 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cNUMBERTerminalRuleCall_0_3 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_0_4 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_0_5 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:5> ) ; private final RuleCall cCOMMATerminalRuleCall_0_6 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:6> ) ; private final RuleCall cMINUSTerminalRuleCall_0_7 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:7> ) ; private final RuleCall cPLUSTerminalRuleCall_0_8 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:8> ) ; private final RuleCall cLPARENTerminalRuleCall_0_9 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:9> ) ; private final RuleCall cRPARENTerminalRuleCall_0_10 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:10> ) ; private final RuleCall cLBRACETerminalRuleCall_0_11 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:11> ) ; private final RuleCall cQUESTITerminalRuleCall_0_12 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:12> ) ; private final RuleCall cNOTTerminalRuleCall_0_13 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cBANDTerminalRuleCall_0_14 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cBORTerminalRuleCall_0_15 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:15> ) ; private final RuleCall cHASHTerminalRuleCall_0_16 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:16> ) ; private final RuleCall cATTerminalRuleCall_0_17 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cCARETTerminalRuleCall_0_18 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cEQUALSTerminalRuleCall_0_19 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cLESS_THANTerminalRuleCall_0_20 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:20> ) ; private final RuleCall cMORE_THANTerminalRuleCall_0_21 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cANDTerminalRuleCall_0_22 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cORTerminalRuleCall_0_23 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cESC_CHARTerminalRuleCall_0_24 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:24> ) ; private final RuleCall cON_OFFTerminalRuleCall_0_25 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cSTATEMEN_TYPETerminalRuleCall_0_26 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cMAPPING_TYPETerminalRuleCall_0_27 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cOPTION_TYPETerminalRuleCall_0_28 = ( RuleCall ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final Group cGroup_1 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cAlternatives_1_0 = ( Alternatives ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRESTTerminalRuleCall_1_0_0 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cIDENT_DOTTerminalRuleCall_1_0_1 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIDENTTerminalRuleCall_1_0_2 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cNUMBERTerminalRuleCall_1_0_3 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_1_0_4 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_1_0_5 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:5> ) ; private final RuleCall cCOMMATerminalRuleCall_1_0_6 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:6> ) ; private final RuleCall cMINUSTerminalRuleCall_1_0_7 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:7> ) ; private final RuleCall cPLUSTerminalRuleCall_1_0_8 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:8> ) ; private final RuleCall cLPARENTerminalRuleCall_1_0_9 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:9> ) ; private final RuleCall cRPARENTerminalRuleCall_1_0_10 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:10> ) ; private final RuleCall cLBRACETerminalRuleCall_1_0_11 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:11> ) ; private final RuleCall cQUESTITerminalRuleCall_1_0_12 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:12> ) ; private final RuleCall cNOTTerminalRuleCall_1_0_13 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cBANDTerminalRuleCall_1_0_14 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cBORTerminalRuleCall_1_0_15 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:15> ) ; private final RuleCall cHASHTerminalRuleCall_1_0_16 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:16> ) ; private final RuleCall cATTerminalRuleCall_1_0_17 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cCARETTerminalRuleCall_1_0_18 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cEQUALSTerminalRuleCall_1_0_19 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cLESS_THANTerminalRuleCall_1_0_20 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:20> ) ; private final RuleCall cMORE_THANTerminalRuleCall_1_0_21 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cANDTerminalRuleCall_1_0_22 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cORTerminalRuleCall_1_0_23 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cESC_CHARTerminalRuleCall_1_0_24 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:24> ) ; private final RuleCall cON_OFFTerminalRuleCall_1_0_25 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cSTATEMEN_TYPETerminalRuleCall_1_0_26 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cMAPPING_TYPETerminalRuleCall_1_0_27 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cOPTION_TYPETerminalRuleCall_1_0_28 = ( RuleCall ) cAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Alternatives getAlternatives_0 ( ) { return cAlternatives_0 ; } public RuleCall getRESTTerminalRuleCall_0_0 ( ) { return cRESTTerminalRuleCall_0_0 ; } public RuleCall getIDENT_DOTTerminalRuleCall_0_1 ( ) { return cIDENT_DOTTerminalRuleCall_0_1 ; } public RuleCall getIDENTTerminalRuleCall_0_2 ( ) { return cIDENTTerminalRuleCall_0_2 ; } public RuleCall getNUMBERTerminalRuleCall_0_3 ( ) { return cNUMBERTerminalRuleCall_0_3 ; } public RuleCall getWSTerminalRuleCall_0_4 ( ) { return cWSTerminalRuleCall_0_4 ; } public RuleCall getSEMICOLONTerminalRuleCall_0_5 ( ) { return cSEMICOLONTerminalRuleCall_0_5 ; } public RuleCall getCOMMATerminalRuleCall_0_6 ( ) { return cCOMMATerminalRuleCall_0_6 ; } public RuleCall getMINUSTerminalRuleCall_0_7 ( ) { return cMINUSTerminalRuleCall_0_7 ; } public RuleCall getPLUSTerminalRuleCall_0_8 ( ) { return cPLUSTerminalRuleCall_0_8 ; } public RuleCall getLPARENTerminalRuleCall_0_9 ( ) { return cLPARENTerminalRuleCall_0_9 ; } public RuleCall getRPARENTerminalRuleCall_0_10 ( ) { return cRPARENTerminalRuleCall_0_10 ; } public RuleCall getLBRACETerminalRuleCall_0_11 ( ) { return cLBRACETerminalRuleCall_0_11 ; } public RuleCall getQUESTITerminalRuleCall_0_12 ( ) { return cQUESTITerminalRuleCall_0_12 ; } public RuleCall getNOTTerminalRuleCall_0_13 ( ) { return cNOTTerminalRuleCall_0_13 ; } public RuleCall getBANDTerminalRuleCall_0_14 ( ) { return cBANDTerminalRuleCall_0_14 ; } public RuleCall getBORTerminalRuleCall_0_15 ( ) { return cBORTerminalRuleCall_0_15 ; } public RuleCall getHASHTerminalRuleCall_0_16 ( ) { return cHASHTerminalRuleCall_0_16 ; } public RuleCall getATTerminalRuleCall_0_17 ( ) { return cATTerminalRuleCall_0_17 ; } public RuleCall getCARETTerminalRuleCall_0_18 ( ) { return cCARETTerminalRuleCall_0_18 ; } public RuleCall getEQUALSTerminalRuleCall_0_19 ( ) { return cEQUALSTerminalRuleCall_0_19 ; } public RuleCall getLESS_THANTerminalRuleCall_0_20 ( ) { return cLESS_THANTerminalRuleCall_0_20 ; } public RuleCall getMORE_THANTerminalRuleCall_0_21 ( ) { return cMORE_THANTerminalRuleCall_0_21 ; } public RuleCall getANDTerminalRuleCall_0_22 ( ) { return cANDTerminalRuleCall_0_22 ; } public RuleCall getORTerminalRuleCall_0_23 ( ) { return cORTerminalRuleCall_0_23 ; } public RuleCall getESC_CHARTerminalRuleCall_0_24 ( ) { return cESC_CHARTerminalRuleCall_0_24 ; } public RuleCall getON_OFFTerminalRuleCall_0_25 ( ) { return cON_OFFTerminalRuleCall_0_25 ; } public RuleCall getSTATEMEN_TYPETerminalRuleCall_0_26 ( ) { return cSTATEMEN_TYPETerminalRuleCall_0_26 ; } public RuleCall getMAPPING_TYPETerminalRuleCall_0_27 ( ) { return cMAPPING_TYPETerminalRuleCall_0_27 ; } public RuleCall getOPTION_TYPETerminalRuleCall_0_28 ( ) { return cOPTION_TYPETerminalRuleCall_0_28 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public Alternatives getAlternatives_1_0 ( ) { return cAlternatives_1_0 ; } public RuleCall getRESTTerminalRuleCall_1_0_0 ( ) { return cRESTTerminalRuleCall_1_0_0 ; } public RuleCall getIDENT_DOTTerminalRuleCall_1_0_1 ( ) { return cIDENT_DOTTerminalRuleCall_1_0_1 ; } public RuleCall getIDENTTerminalRuleCall_1_0_2 ( ) { return cIDENTTerminalRuleCall_1_0_2 ; } public RuleCall getNUMBERTerminalRuleCall_1_0_3 ( ) { return cNUMBERTerminalRuleCall_1_0_3 ; } public RuleCall getWSTerminalRuleCall_1_0_4 ( ) { return cWSTerminalRuleCall_1_0_4 ; } public RuleCall getSEMICOLONTerminalRuleCall_1_0_5 ( ) { return cSEMICOLONTerminalRuleCall_1_0_5 ; } public RuleCall getCOMMATerminalRuleCall_1_0_6 ( ) { return cCOMMATerminalRuleCall_1_0_6 ; } public RuleCall getMINUSTerminalRuleCall_1_0_7 ( ) { return cMINUSTerminalRuleCall_1_0_7 ; } public RuleCall getPLUSTerminalRuleCall_1_0_8 ( ) { return cPLUSTerminalRuleCall_1_0_8 ; } public RuleCall getLPARENTerminalRuleCall_1_0_9 ( ) { return cLPARENTerminalRuleCall_1_0_9 ; } public RuleCall getRPARENTerminalRuleCall_1_0_10 ( ) { return cRPARENTerminalRuleCall_1_0_10 ; } public RuleCall getLBRACETerminalRuleCall_1_0_11 ( ) { return cLBRACETerminalRuleCall_1_0_11 ; } public RuleCall getQUESTITerminalRuleCall_1_0_12 ( ) { return cQUESTITerminalRuleCall_1_0_12 ; } public RuleCall getNOTTerminalRuleCall_1_0_13 ( ) { return cNOTTerminalRuleCall_1_0_13 ; } public RuleCall getBANDTerminalRuleCall_1_0_14 ( ) { return cBANDTerminalRuleCall_1_0_14 ; } public RuleCall getBORTerminalRuleCall_1_0_15 ( ) { return cBORTerminalRuleCall_1_0_15 ; } public RuleCall getHASHTerminalRuleCall_1_0_16 ( ) { return cHASHTerminalRuleCall_1_0_16 ; } public RuleCall getATTerminalRuleCall_1_0_17 ( ) { return cATTerminalRuleCall_1_0_17 ; } public RuleCall getCARETTerminalRuleCall_1_0_18 ( ) { return cCARETTerminalRuleCall_1_0_18 ; } public RuleCall getEQUALSTerminalRuleCall_1_0_19 ( ) { return cEQUALSTerminalRuleCall_1_0_19 ; } public RuleCall getLESS_THANTerminalRuleCall_1_0_20 ( ) { return cLESS_THANTerminalRuleCall_1_0_20 ; } public RuleCall getMORE_THANTerminalRuleCall_1_0_21 ( ) { return cMORE_THANTerminalRuleCall_1_0_21 ; } public RuleCall getANDTerminalRuleCall_1_0_22 ( ) { return cANDTerminalRuleCall_1_0_22 ; } public RuleCall getORTerminalRuleCall_1_0_23 ( ) { return cORTerminalRuleCall_1_0_23 ; } public RuleCall getESC_CHARTerminalRuleCall_1_0_24 ( ) { return cESC_CHARTerminalRuleCall_1_0_24 ; } public RuleCall getON_OFFTerminalRuleCall_1_0_25 ( ) { return cON_OFFTerminalRuleCall_1_0_25 ; } public RuleCall getSTATEMEN_TYPETerminalRuleCall_1_0_26 ( ) { return cSTATEMEN_TYPETerminalRuleCall_1_0_26 ; } public RuleCall getMAPPING_TYPETerminalRuleCall_1_0_27 ( ) { return cMAPPING_TYPETerminalRuleCall_1_0_27 ; } public RuleCall getOPTION_TYPETerminalRuleCall_1_0_28 ( ) { return cOPTION_TYPETerminalRuleCall_1_0_28 ; } } public class ColumnElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cNameAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cNameAlternatives_0_0 = ( Alternatives ) cNameAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENTTerminalRuleCall_0_0_0 = ( RuleCall ) cNameAlternatives_0_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENT_DOTTerminalRuleCall_0_0_1 = ( RuleCall ) cNameAlternatives_0_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cNameNUMBERTerminalRuleCall_0_0_2 = ( RuleCall ) cNameAlternatives_0_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Group cGroup_1 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cCARETTerminalRuleCall_1_0 = ( RuleCall ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cTypeAssignment_1_1 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cTypeIDENTTerminalRuleCall_1_1_0 = ( RuleCall ) cTypeAssignment_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_1_2 = ( Group ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cCARETTerminalRuleCall_1_2_0 = ( RuleCall ) cGroup_1_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cValsAssignment_1_2_1 = ( Assignment ) cGroup_1_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cValsAlternatives_1_2_1_0 = ( Alternatives ) cValsAssignment_1_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cValsIDENTTerminalRuleCall_1_2_1_0_0 = ( RuleCall ) cValsAlternatives_1_2_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cValsNUMBERTerminalRuleCall_1_2_1_0_1 = ( RuleCall ) cValsAlternatives_1_2_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getNameAssignment_0 ( ) { return cNameAssignment_0 ; } public Alternatives getNameAlternatives_0_0 ( ) { return cNameAlternatives_0_0 ; } public RuleCall getNameIDENTTerminalRuleCall_0_0_0 ( ) { return cNameIDENTTerminalRuleCall_0_0_0 ; } public RuleCall getNameIDENT_DOTTerminalRuleCall_0_0_1 ( ) { return cNameIDENT_DOTTerminalRuleCall_0_0_1 ; } public RuleCall getNameNUMBERTerminalRuleCall_0_0_2 ( ) { return cNameNUMBERTerminalRuleCall_0_0_2 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public RuleCall getCARETTerminalRuleCall_1_0 ( ) { return cCARETTerminalRuleCall_1_0 ; } public Assignment getTypeAssignment_1_1 ( ) { return cTypeAssignment_1_1 ; } public RuleCall getTypeIDENTTerminalRuleCall_1_1_0 ( ) { return cTypeIDENTTerminalRuleCall_1_1_0 ; } public Group getGroup_1_2 ( ) { return cGroup_1_2 ; } public RuleCall getCARETTerminalRuleCall_1_2_0 ( ) { return cCARETTerminalRuleCall_1_2_0 ; } public Assignment getValsAssignment_1_2_1 ( ) { return cValsAssignment_1_2_1 ; } public Alternatives getValsAlternatives_1_2_1_0 ( ) { return cValsAlternatives_1_2_1_0 ; } public RuleCall getValsIDENTTerminalRuleCall_1_2_1_0_0 ( ) { return cValsIDENTTerminalRuleCall_1_2_1_0_0 ; } public RuleCall getValsNUMBERTerminalRuleCall_1_2_1_0_1 ( ) { return cValsNUMBERTerminalRuleCall_1_2_1_0_1 ; } } public class ConstantElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cCaseAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cCaseAlternatives_0_0 = ( Alternatives ) cCaseAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cCasePLUSTerminalRuleCall_0_0_0 = ( RuleCall ) cCaseAlternatives_0_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cCaseMINUSTerminalRuleCall_0_0_1 = ( RuleCall ) cCaseAlternatives_0_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cNameAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cNameAlternatives_1_0 = ( Alternatives ) cNameAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENTTerminalRuleCall_1_0_0 = ( RuleCall ) cNameAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENT_DOTTerminalRuleCall_1_0_1 = ( RuleCall ) cNameAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_2 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cCARETTerminalRuleCall_2_0 = ( RuleCall ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cTypeAssignment_2_1 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cTypeIDENTTerminalRuleCall_2_1_0 = ( RuleCall ) cTypeAssignment_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_2_2 = ( Group ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cCARETTerminalRuleCall_2_2_0 = ( RuleCall ) cGroup_2_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cValsAssignment_2_2_1 = ( Assignment ) cGroup_2_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cValsAlternatives_2_2_1_0 = ( Alternatives ) cValsAssignment_2_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cValsIDENTTerminalRuleCall_2_2_1_0_0 = ( RuleCall ) cValsAlternatives_2_2_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cValsNUMBERTerminalRuleCall_2_2_1_0_1 = ( RuleCall ) cValsAlternatives_2_2_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getCaseAssignment_0 ( ) { return cCaseAssignment_0 ; } public Alternatives getCaseAlternatives_0_0 ( ) { return cCaseAlternatives_0_0 ; } public RuleCall getCasePLUSTerminalRuleCall_0_0_0 ( ) { return cCasePLUSTerminalRuleCall_0_0_0 ; } public RuleCall getCaseMINUSTerminalRuleCall_0_0_1 ( ) { return cCaseMINUSTerminalRuleCall_0_0_1 ; } public Assignment getNameAssignment_1 ( ) { return cNameAssignment_1 ; } public Alternatives getNameAlternatives_1_0 ( ) { return cNameAlternatives_1_0 ; } public RuleCall getNameIDENTTerminalRuleCall_1_0_0 ( ) { return cNameIDENTTerminalRuleCall_1_0_0 ; } public RuleCall getNameIDENT_DOTTerminalRuleCall_1_0_1 ( ) { return cNameIDENT_DOTTerminalRuleCall_1_0_1 ; } public Group getGroup_2 ( ) { return cGroup_2 ; } public RuleCall getCARETTerminalRuleCall_2_0 ( ) { return cCARETTerminalRuleCall_2_0 ; } public Assignment getTypeAssignment_2_1 ( ) { return cTypeAssignment_2_1 ; } public RuleCall getTypeIDENTTerminalRuleCall_2_1_0 ( ) { return cTypeIDENTTerminalRuleCall_2_1_0 ; } public Group getGroup_2_2 ( ) { return cGroup_2_2 ; } public RuleCall getCARETTerminalRuleCall_2_2_0 ( ) { return cCARETTerminalRuleCall_2_2_0 ; } public Assignment getValsAssignment_2_2_1 ( ) { return cValsAssignment_2_2_1 ; } public Alternatives getValsAlternatives_2_2_1_0 ( ) { return cValsAlternatives_2_2_1_0 ; } public RuleCall getValsIDENTTerminalRuleCall_2_2_1_0_0 ( ) { return cValsIDENTTerminalRuleCall_2_2_1_0_0 ; } public RuleCall getValsNUMBERTerminalRuleCall_2_2_1_0_1 ( ) { return cValsNUMBERTerminalRuleCall_2_2_1_0_1 ; } } public class IdentifierElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cModeAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cModeAlternatives_0_0 = ( Alternatives ) cModeAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cModeEQUALSTerminalRuleCall_0_0_0 = ( RuleCall ) cModeAlternatives_0_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cModeLESS_THANTerminalRuleCall_0_0_1 = ( RuleCall ) cModeAlternatives_0_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cModeMORE_THANTerminalRuleCall_0_0_2 = ( RuleCall ) cModeAlternatives_0_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Assignment cCaseAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cCaseAlternatives_1_0 = ( Alternatives ) cCaseAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cCasePLUSTerminalRuleCall_1_0_0 = ( RuleCall ) cCaseAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cCaseMINUSTerminalRuleCall_1_0_1 = ( RuleCall ) cCaseAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cNameAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Alternatives cNameAlternatives_2_0 = ( Alternatives ) cNameAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENTTerminalRuleCall_2_0_0 = ( RuleCall ) cNameAlternatives_2_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENT_DOTTerminalRuleCall_2_0_1 = ( RuleCall ) cNameAlternatives_2_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cNameNUMBERTerminalRuleCall_2_0_2 = ( RuleCall ) cNameAlternatives_2_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Group cGroup_3 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cCARETTerminalRuleCall_3_0 = ( RuleCall ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cTypeAssignment_3_1 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cTypeIDENTTerminalRuleCall_3_1_0 = ( RuleCall ) cTypeAssignment_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3_2 = ( Group ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cCARETTerminalRuleCall_3_2_0 = ( RuleCall ) cGroup_3_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cValsAssignment_3_2_1 = ( Assignment ) cGroup_3_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cValsAlternatives_3_2_1_0 = ( Alternatives ) cValsAssignment_3_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cValsIDENTTerminalRuleCall_3_2_1_0_0 = ( RuleCall ) cValsAlternatives_3_2_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cValsNUMBERTerminalRuleCall_3_2_1_0_1 = ( RuleCall ) cValsAlternatives_3_2_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getModeAssignment_0 ( ) { return cModeAssignment_0 ; } public Alternatives getModeAlternatives_0_0 ( ) { return cModeAlternatives_0_0 ; } public RuleCall getModeEQUALSTerminalRuleCall_0_0_0 ( ) { return cModeEQUALSTerminalRuleCall_0_0_0 ; } public RuleCall getModeLESS_THANTerminalRuleCall_0_0_1 ( ) { return cModeLESS_THANTerminalRuleCall_0_0_1 ; } public RuleCall getModeMORE_THANTerminalRuleCall_0_0_2 ( ) { return cModeMORE_THANTerminalRuleCall_0_0_2 ; } public Assignment getCaseAssignment_1 ( ) { return cCaseAssignment_1 ; } public Alternatives getCaseAlternatives_1_0 ( ) { return cCaseAlternatives_1_0 ; } public RuleCall getCasePLUSTerminalRuleCall_1_0_0 ( ) { return cCasePLUSTerminalRuleCall_1_0_0 ; } public RuleCall getCaseMINUSTerminalRuleCall_1_0_1 ( ) { return cCaseMINUSTerminalRuleCall_1_0_1 ; } public Assignment getNameAssignment_2 ( ) { return cNameAssignment_2 ; } public Alternatives getNameAlternatives_2_0 ( ) { return cNameAlternatives_2_0 ; } public RuleCall getNameIDENTTerminalRuleCall_2_0_0 ( ) { return cNameIDENTTerminalRuleCall_2_0_0 ; } public RuleCall getNameIDENT_DOTTerminalRuleCall_2_0_1 ( ) { return cNameIDENT_DOTTerminalRuleCall_2_0_1 ; } public RuleCall getNameNUMBERTerminalRuleCall_2_0_2 ( ) { return cNameNUMBERTerminalRuleCall_2_0_2 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public RuleCall getCARETTerminalRuleCall_3_0 ( ) { return cCARETTerminalRuleCall_3_0 ; } public Assignment getTypeAssignment_3_1 ( ) { return cTypeAssignment_3_1 ; } public RuleCall getTypeIDENTTerminalRuleCall_3_1_0 ( ) { return cTypeIDENTTerminalRuleCall_3_1_0 ; } public Group getGroup_3_2 ( ) { return cGroup_3_2 ; } public RuleCall getCARETTerminalRuleCall_3_2_0 ( ) { return cCARETTerminalRuleCall_3_2_0 ; } public Assignment getValsAssignment_3_2_1 ( ) { return cValsAssignment_3_2_1 ; } public Alternatives getValsAlternatives_3_2_1_0 ( ) { return cValsAlternatives_3_2_1_0 ; } public RuleCall getValsIDENTTerminalRuleCall_3_2_1_0_0 ( ) { return cValsIDENTTerminalRuleCall_3_2_1_0_0 ; } public RuleCall getValsNUMBERTerminalRuleCall_3_2_1_0_1 ( ) { return cValsNUMBERTerminalRuleCall_3_2_1_0_1 ; } } public class DatabaseColumnElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Assignment cNameAssignment = ( Assignment ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cNameAlternatives_0 = ( Alternatives ) cNameAssignment . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENTTerminalRuleCall_0_0 = ( RuleCall ) cNameAlternatives_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENT_DOTTerminalRuleCall_0_1 = ( RuleCall ) cNameAlternatives_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; public ParserRule getRule ( ) { return rule ; } public Assignment getNameAssignment ( ) { return cNameAssignment ; } public Alternatives getNameAlternatives_0 ( ) { return cNameAlternatives_0 ; } public RuleCall getNameIDENTTerminalRuleCall_0_0 ( ) { return cNameIDENTTerminalRuleCall_0_0 ; } public RuleCall getNameIDENT_DOTTerminalRuleCall_0_1 ( ) { return cNameIDENT_DOTTerminalRuleCall_0_1 ; } } public class DatabaseTableElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Assignment cNameAssignment = ( Assignment ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cNameAlternatives_0 = ( Alternatives ) cNameAssignment . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENTTerminalRuleCall_0_0 = ( RuleCall ) cNameAlternatives_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENT_DOTTerminalRuleCall_0_1 = ( RuleCall ) cNameAlternatives_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; public ParserRule getRule ( ) { return rule ; } public Assignment getNameAssignment ( ) { return cNameAssignment ; } public Alternatives getNameAlternatives_0 ( ) { return cNameAlternatives_0 ; } public RuleCall getNameIDENTTerminalRuleCall_0_0 ( ) { return cNameIDENTTerminalRuleCall_0_0 ; } public RuleCall getNameIDENT_DOTTerminalRuleCall_0_1 ( ) { return cNameIDENT_DOTTerminalRuleCall_0_1 ; } } public class MappingRuleElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cNameAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENTTerminalRuleCall_0_0 = ( RuleCall ) cNameAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cLPARENTerminalRuleCall_1 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cTypeAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cTypeMAPPING_TYPETerminalRuleCall_2_0 = ( RuleCall ) cTypeAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cCOMMATerminalRuleCall_3_0 = ( RuleCall ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cFiltersAssignment_3_1 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cFiltersIDENTTerminalRuleCall_3_1_0 = ( RuleCall ) cFiltersAssignment_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRPARENTerminalRuleCall_4 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cEQUALSTerminalRuleCall_5 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:5> ) ; private final Assignment cMappingAssignment_6 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:6> ) ; private final RuleCall cMappingMappingParserRuleCall_6_0 = ( RuleCall ) cMappingAssignment_6 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_7 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:7> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getNameAssignment_0 ( ) { return cNameAssignment_0 ; } public RuleCall getNameIDENTTerminalRuleCall_0_0 ( ) { return cNameIDENTTerminalRuleCall_0_0 ; } public RuleCall getLPARENTerminalRuleCall_1 ( ) { return cLPARENTerminalRuleCall_1 ; } public Assignment getTypeAssignment_2 ( ) { return cTypeAssignment_2 ; } public RuleCall getTypeMAPPING_TYPETerminalRuleCall_2_0 ( ) { return cTypeMAPPING_TYPETerminalRuleCall_2_0 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public RuleCall getCOMMATerminalRuleCall_3_0 ( ) { return cCOMMATerminalRuleCall_3_0 ; } public Assignment getFiltersAssignment_3_1 ( ) { return cFiltersAssignment_3_1 ; } public RuleCall getFiltersIDENTTerminalRuleCall_3_1_0 ( ) { return cFiltersIDENTTerminalRuleCall_3_1_0 ; } public RuleCall getRPARENTerminalRuleCall_4 ( ) { return cRPARENTerminalRuleCall_4 ; } public RuleCall getEQUALSTerminalRuleCall_5 ( ) { return cEQUALSTerminalRuleCall_5 ; } public Assignment getMappingAssignment_6 ( ) { return cMappingAssignment_6 ; } public RuleCall getMappingMappingParserRuleCall_6_0 ( ) { return cMappingMappingParserRuleCall_6_0 ; } public RuleCall getSEMICOLONTerminalRuleCall_7 ( ) { return cSEMICOLONTerminalRuleCall_7 ; } } public class MappingElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cWSTerminalRuleCall_0 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cMappingItemsAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cMappingItemsMappingItemParserRuleCall_1_0 = ( RuleCall ) cMappingItemsAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_2 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cWSTerminalRuleCall_2_0 = ( RuleCall ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cMappingItemsAssignment_2_1 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cMappingItemsMappingItemParserRuleCall_2_1_0 = ( RuleCall ) cMappingItemsAssignment_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cWSTerminalRuleCall_3 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public RuleCall getWSTerminalRuleCall_0 ( ) { return cWSTerminalRuleCall_0 ; } public Assignment getMappingItemsAssignment_1 ( ) { return cMappingItemsAssignment_1 ; } public RuleCall getMappingItemsMappingItemParserRuleCall_1_0 ( ) { return cMappingItemsMappingItemParserRuleCall_1_0 ; } public Group getGroup_2 ( ) { return cGroup_2 ; } public RuleCall getWSTerminalRuleCall_2_0 ( ) { return cWSTerminalRuleCall_2_0 ; } public Assignment getMappingItemsAssignment_2_1 ( ) { return cMappingItemsAssignment_2_1 ; } public RuleCall getMappingItemsMappingItemParserRuleCall_2_1_0 ( ) { return cMappingItemsMappingItemParserRuleCall_2_1_0 ; } public RuleCall getWSTerminalRuleCall_3 ( ) { return cWSTerminalRuleCall_3 ; } } public class MappingItemElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cColAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cColAlternatives_0_0 = ( Alternatives ) cColAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cColIDENTTerminalRuleCall_0_0_0 = ( RuleCall ) cColAlternatives_0_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cColNUMBERTerminalRuleCall_0_0_1 = ( RuleCall ) cColAlternatives_0_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSTRINGTerminalRuleCall_1_0 = ( RuleCall ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cTypeAssignment_1_1 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cTypeIDENTTerminalRuleCall_1_1_0 = ( RuleCall ) cTypeAssignment_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_1_2 = ( Group ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cSTRINGTerminalRuleCall_1_2_0 = ( RuleCall ) cGroup_1_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cAttrAssignment_1_2_1 = ( Assignment ) cGroup_1_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cAttrMappingColumnParserRuleCall_1_2_1_0 = ( RuleCall ) cAttrAssignment_1_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getColAssignment_0 ( ) { return cColAssignment_0 ; } public Alternatives getColAlternatives_0_0 ( ) { return cColAlternatives_0_0 ; } public RuleCall getColIDENTTerminalRuleCall_0_0_0 ( ) { return cColIDENTTerminalRuleCall_0_0_0 ; } public RuleCall getColNUMBERTerminalRuleCall_0_0_1 ( ) { return cColNUMBERTerminalRuleCall_0_0_1 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public RuleCall getSTRINGTerminalRuleCall_1_0 ( ) { return cSTRINGTerminalRuleCall_1_0 ; } public Assignment getTypeAssignment_1_1 ( ) { return cTypeAssignment_1_1 ; } public RuleCall getTypeIDENTTerminalRuleCall_1_1_0 ( ) { return cTypeIDENTTerminalRuleCall_1_1_0 ; } public Group getGroup_1_2 ( ) { return cGroup_1_2 ; } public RuleCall getSTRINGTerminalRuleCall_1_2_0 ( ) { return cSTRINGTerminalRuleCall_1_2_0 ; } public Assignment getAttrAssignment_1_2_1 ( ) { return cAttrAssignment_1_2_1 ; } public RuleCall getAttrMappingColumnParserRuleCall_1_2_1_0 ( ) { return cAttrMappingColumnParserRuleCall_1_2_1_0 ; } } public class MappingColumnElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cNameAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cNameAlternatives_0_0 = ( Alternatives ) cNameAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENTTerminalRuleCall_0_0_0 = ( RuleCall ) cNameAlternatives_0_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENT_DOTTerminalRuleCall_0_0_1 = ( RuleCall ) cNameAlternatives_0_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cCARETTerminalRuleCall_1_0 = ( RuleCall ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cValsAssignment_1_1 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cValsAlternatives_1_1_0 = ( Alternatives ) cValsAssignment_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cValsIDENTTerminalRuleCall_1_1_0_0 = ( RuleCall ) cValsAlternatives_1_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cValsNUMBERTerminalRuleCall_1_1_0_1 = ( RuleCall ) cValsAlternatives_1_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getNameAssignment_0 ( ) { return cNameAssignment_0 ; } public Alternatives getNameAlternatives_0_0 ( ) { return cNameAlternatives_0_0 ; } public RuleCall getNameIDENTTerminalRuleCall_0_0_0 ( ) { return cNameIDENTTerminalRuleCall_0_0_0 ; } public RuleCall getNameIDENT_DOTTerminalRuleCall_0_0_1 ( ) { return cNameIDENT_DOTTerminalRuleCall_0_0_1 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public RuleCall getCARETTerminalRuleCall_1_0 ( ) { return cCARETTerminalRuleCall_1_0 ; } public Assignment getValsAssignment_1_1 ( ) { return cValsAssignment_1_1 ; } public Alternatives getValsAlternatives_1_1_0 ( ) { return cValsAlternatives_1_1_0 ; } public RuleCall getValsIDENTTerminalRuleCall_1_1_0_0 ( ) { return cValsIDENTTerminalRuleCall_1_1_0_0 ; } public RuleCall getValsNUMBERTerminalRuleCall_1_1_0_1 ( ) { return cValsNUMBERTerminalRuleCall_1_1_0_1 ; } } public class OptionalFeatureElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cNameAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENTTerminalRuleCall_0_0 = ( RuleCall ) cNameAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cLPARENTerminalRuleCall_1 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cTypeAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cTypeOPTION_TYPETerminalRuleCall_2_0 = ( RuleCall ) cTypeAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Group cGroup_3 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cCOMMATerminalRuleCall_3_0 = ( RuleCall ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cFiltersAssignment_3_1 = ( Assignment ) cGroup_3 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cFiltersIDENTTerminalRuleCall_3_1_0 = ( RuleCall ) cFiltersAssignment_3_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRPARENTerminalRuleCall_4 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cEQUALSTerminalRuleCall_5 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:5> ) ; private final Assignment cOptionAssignment_6 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:6> ) ; private final RuleCall cOptionFeatureValueParserRuleCall_6_0 = ( RuleCall ) cOptionAssignment_6 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cSEMICOLONTerminalRuleCall_7 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:7> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getNameAssignment_0 ( ) { return cNameAssignment_0 ; } public RuleCall getNameIDENTTerminalRuleCall_0_0 ( ) { return cNameIDENTTerminalRuleCall_0_0 ; } public RuleCall getLPARENTerminalRuleCall_1 ( ) { return cLPARENTerminalRuleCall_1 ; } public Assignment getTypeAssignment_2 ( ) { return cTypeAssignment_2 ; } public RuleCall getTypeOPTION_TYPETerminalRuleCall_2_0 ( ) { return cTypeOPTION_TYPETerminalRuleCall_2_0 ; } public Group getGroup_3 ( ) { return cGroup_3 ; } public RuleCall getCOMMATerminalRuleCall_3_0 ( ) { return cCOMMATerminalRuleCall_3_0 ; } public Assignment getFiltersAssignment_3_1 ( ) { return cFiltersAssignment_3_1 ; } public RuleCall getFiltersIDENTTerminalRuleCall_3_1_0 ( ) { return cFiltersIDENTTerminalRuleCall_3_1_0 ; } public RuleCall getRPARENTerminalRuleCall_4 ( ) { return cRPARENTerminalRuleCall_4 ; } public RuleCall getEQUALSTerminalRuleCall_5 ( ) { return cEQUALSTerminalRuleCall_5 ; } public Assignment getOptionAssignment_6 ( ) { return cOptionAssignment_6 ; } public RuleCall getOptionFeatureValueParserRuleCall_6_0 ( ) { return cOptionFeatureValueParserRuleCall_6_0 ; } public RuleCall getSEMICOLONTerminalRuleCall_7 ( ) { return cSEMICOLONTerminalRuleCall_7 ; } } public class FeatureValueElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cRESTTerminalRuleCall_0 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cIDENT_DOTTerminalRuleCall_1 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIDENTTerminalRuleCall_2 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cNUMBERTerminalRuleCall_3 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cWSTerminalRuleCall_4 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cCOLONTerminalRuleCall_5 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:5> ) ; private final RuleCall cSTRINGTerminalRuleCall_6 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:6> ) ; private final RuleCall cCOMMATerminalRuleCall_7 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:7> ) ; private final RuleCall cMINUSTerminalRuleCall_8 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:8> ) ; private final RuleCall cPLUSTerminalRuleCall_9 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:9> ) ; private final RuleCall cLPARENTerminalRuleCall_10 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:10> ) ; private final RuleCall cRPARENTerminalRuleCall_11 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:11> ) ; private final RuleCall cLBRACETerminalRuleCall_12 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:12> ) ; private final RuleCall cRBRACETerminalRuleCall_13 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cQUESTITerminalRuleCall_14 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cNOTTerminalRuleCall_15 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:15> ) ; private final RuleCall cBANDTerminalRuleCall_16 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:16> ) ; private final RuleCall cBORTerminalRuleCall_17 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cHASHTerminalRuleCall_18 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cATTerminalRuleCall_19 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cCARETTerminalRuleCall_20 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:20> ) ; private final RuleCall cEQUALSTerminalRuleCall_21 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cLESS_THANTerminalRuleCall_22 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cMORE_THANTerminalRuleCall_23 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cPERCENTTerminalRuleCall_24 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:24> ) ; private final RuleCall cANDTerminalRuleCall_25 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cORTerminalRuleCall_26 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cESC_CHARTerminalRuleCall_27 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cON_OFFTerminalRuleCall_28 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cSTATEMEN_TYPETerminalRuleCall_29 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT> ) ; private final RuleCall cMAPPING_TYPETerminalRuleCall_30 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:30> ) ; private final RuleCall cOPTION_TYPETerminalRuleCall_31 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:31> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public RuleCall getRESTTerminalRuleCall_0 ( ) { return cRESTTerminalRuleCall_0 ; } public RuleCall getIDENT_DOTTerminalRuleCall_1 ( ) { return cIDENT_DOTTerminalRuleCall_1 ; } public RuleCall getIDENTTerminalRuleCall_2 ( ) { return cIDENTTerminalRuleCall_2 ; } public RuleCall getNUMBERTerminalRuleCall_3 ( ) { return cNUMBERTerminalRuleCall_3 ; } public RuleCall getWSTerminalRuleCall_4 ( ) { return cWSTerminalRuleCall_4 ; } public RuleCall getCOLONTerminalRuleCall_5 ( ) { return cCOLONTerminalRuleCall_5 ; } public RuleCall getSTRINGTerminalRuleCall_6 ( ) { return cSTRINGTerminalRuleCall_6 ; } public RuleCall getCOMMATerminalRuleCall_7 ( ) { return cCOMMATerminalRuleCall_7 ; } public RuleCall getMINUSTerminalRuleCall_8 ( ) { return cMINUSTerminalRuleCall_8 ; } public RuleCall getPLUSTerminalRuleCall_9 ( ) { return cPLUSTerminalRuleCall_9 ; } public RuleCall getLPARENTerminalRuleCall_10 ( ) { return cLPARENTerminalRuleCall_10 ; } public RuleCall getRPARENTerminalRuleCall_11 ( ) { return cRPARENTerminalRuleCall_11 ; } public RuleCall getLBRACETerminalRuleCall_12 ( ) { return cLBRACETerminalRuleCall_12 ; } public RuleCall getRBRACETerminalRuleCall_13 ( ) { return cRBRACETerminalRuleCall_13 ; } public RuleCall getQUESTITerminalRuleCall_14 ( ) { return cQUESTITerminalRuleCall_14 ; } public RuleCall getNOTTerminalRuleCall_15 ( ) { return cNOTTerminalRuleCall_15 ; } public RuleCall getBANDTerminalRuleCall_16 ( ) { return cBANDTerminalRuleCall_16 ; } public RuleCall getBORTerminalRuleCall_17 ( ) { return cBORTerminalRuleCall_17 ; } public RuleCall getHASHTerminalRuleCall_18 ( ) { return cHASHTerminalRuleCall_18 ; } public RuleCall getATTerminalRuleCall_19 ( ) { return cATTerminalRuleCall_19 ; } public RuleCall getCARETTerminalRuleCall_20 ( ) { return cCARETTerminalRuleCall_20 ; } public RuleCall getEQUALSTerminalRuleCall_21 ( ) { return cEQUALSTerminalRuleCall_21 ; } public RuleCall getLESS_THANTerminalRuleCall_22 ( ) { return cLESS_THANTerminalRuleCall_22 ; } public RuleCall getMORE_THANTerminalRuleCall_23 ( ) { return cMORE_THANTerminalRuleCall_23 ; } public RuleCall getPERCENTTerminalRuleCall_24 ( ) { return cPERCENTTerminalRuleCall_24 ; } public RuleCall getANDTerminalRuleCall_25 ( ) { return cANDTerminalRuleCall_25 ; } public RuleCall getORTerminalRuleCall_26 ( ) { return cORTerminalRuleCall_26 ; } public RuleCall getESC_CHARTerminalRuleCall_27 ( ) { return cESC_CHARTerminalRuleCall_27 ; } public RuleCall getON_OFFTerminalRuleCall_28 ( ) { return cON_OFFTerminalRuleCall_28 ; } public RuleCall getSTATEMEN_TYPETerminalRuleCall_29 ( ) { return cSTATEMEN_TYPETerminalRuleCall_29 ; } public RuleCall getMAPPING_TYPETerminalRuleCall_30 ( ) { return cMAPPING_TYPETerminalRuleCall_30 ; } public RuleCall getOPTION_TYPETerminalRuleCall_31 ( ) { return cOPTION_TYPETerminalRuleCall_31 ; } } public class PojoTypeElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cAlternatives_0 = ( Alternatives ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cNativeAssignment_0_0 = ( Assignment ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cNativeAlternatives_0_0_0 = ( Alternatives ) cNativeAssignment_0_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNative_charKeyword_0_0_0_0 = ( Keyword ) cNativeAlternatives_0_0_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNative_byteKeyword_0_0_0_1 = ( Keyword ) cNativeAlternatives_0_0_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cNative_shortKeyword_0_0_0_2 = ( Keyword ) cNativeAlternatives_0_0_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Keyword cNative_intKeyword_0_0_0_3 = ( Keyword ) cNativeAlternatives_0_0_0 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Keyword cNative_longKeyword_0_0_0_4 = ( Keyword ) cNativeAlternatives_0_0_0 . eContents ( ) . get ( <NUM_LIT:4> ) ; private final Keyword cNative_floatKeyword_0_0_0_5 = ( Keyword ) cNativeAlternatives_0_0_0 . eContents ( ) . get ( <NUM_LIT:5> ) ; private final Keyword cNative_doubleKeyword_0_0_0_6 = ( Keyword ) cNativeAlternatives_0_0_0 . eContents ( ) . get ( <NUM_LIT:6> ) ; private final Keyword cNative_booleanKeyword_0_0_0_7 = ( Keyword ) cNativeAlternatives_0_0_0 . eContents ( ) . get ( <NUM_LIT:7> ) ; private final Group cGroup_0_1 = ( Group ) cAlternatives_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_0_1_0 = ( Group ) cGroup_0_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cCOLONTerminalRuleCall_0_1_0_0 = ( RuleCall ) cGroup_0_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cAlternatives_0_1_0_1 = ( Alternatives ) cGroup_0_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_0_1_0_1_0 = ( Group ) cAlternatives_0_1_0_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cCOLONTerminalRuleCall_0_1_0_1_0_0 = ( RuleCall ) cGroup_0_1_0_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cRefAssignment_0_1_0_1_0_1 = ( Assignment ) cGroup_0_1_0_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cRefPojoEntityCrossReference_0_1_0_1_0_1_0 = ( CrossReference ) cRefAssignment_0_1_0_1_0_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRefPojoEntityIDENTTerminalRuleCall_0_1_0_1_0_1_0_1 = ( RuleCall ) cRefPojoEntityCrossReference_0_1_0_1_0_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cTypeAssignment_0_1_0_1_1 = ( Assignment ) cAlternatives_0_1_0_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cTypeJvmTypeCrossReference_0_1_0_1_1_0 = ( CrossReference ) cTypeAssignment_0_1_0_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cTypeJvmTypeQualifiedNameParserRuleCall_0_1_0_1_1_0_1 = ( RuleCall ) cTypeJvmTypeCrossReference_0_1_0_1_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_0_1_1 = ( Group ) cGroup_0_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cLESS_THANTerminalRuleCall_0_1_1_0 = ( RuleCall ) cGroup_0_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cAlternatives_0_1_1_1 = ( Alternatives ) cGroup_0_1_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_0_1_1_1_0 = ( Group ) cAlternatives_0_1_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cCOLONTerminalRuleCall_0_1_1_1_0_0 = ( RuleCall ) cGroup_0_1_1_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cGrefAssignment_0_1_1_1_0_1 = ( Assignment ) cGroup_0_1_1_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cGrefPojoEntityCrossReference_0_1_1_1_0_1_0 = ( CrossReference ) cGrefAssignment_0_1_1_1_0_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cGrefPojoEntityIDENTTerminalRuleCall_0_1_1_1_0_1_0_1 = ( RuleCall ) cGrefPojoEntityCrossReference_0_1_1_1_0_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cGtypeAssignment_0_1_1_1_1 = ( Assignment ) cAlternatives_0_1_1_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cGtypeJvmTypeCrossReference_0_1_1_1_1_0 = ( CrossReference ) cGtypeAssignment_0_1_1_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cGtypeJvmTypeQualifiedNameParserRuleCall_0_1_1_1_1_0_1 = ( RuleCall ) cGtypeJvmTypeCrossReference_0_1_1_1_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cMORE_THANTerminalRuleCall_0_1_1_2 = ( RuleCall ) cGroup_0_1_1 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Assignment cArrayAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cArrayLeftSquareBracketRightSquareBracketKeyword_1_0 = ( Keyword ) cArrayAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Alternatives getAlternatives_0 ( ) { return cAlternatives_0 ; } public Assignment getNativeAssignment_0_0 ( ) { return cNativeAssignment_0_0 ; } public Alternatives getNativeAlternatives_0_0_0 ( ) { return cNativeAlternatives_0_0_0 ; } public Keyword getNative_charKeyword_0_0_0_0 ( ) { return cNative_charKeyword_0_0_0_0 ; } public Keyword getNative_byteKeyword_0_0_0_1 ( ) { return cNative_byteKeyword_0_0_0_1 ; } public Keyword getNative_shortKeyword_0_0_0_2 ( ) { return cNative_shortKeyword_0_0_0_2 ; } public Keyword getNative_intKeyword_0_0_0_3 ( ) { return cNative_intKeyword_0_0_0_3 ; } public Keyword getNative_longKeyword_0_0_0_4 ( ) { return cNative_longKeyword_0_0_0_4 ; } public Keyword getNative_floatKeyword_0_0_0_5 ( ) { return cNative_floatKeyword_0_0_0_5 ; } public Keyword getNative_doubleKeyword_0_0_0_6 ( ) { return cNative_doubleKeyword_0_0_0_6 ; } public Keyword getNative_booleanKeyword_0_0_0_7 ( ) { return cNative_booleanKeyword_0_0_0_7 ; } public Group getGroup_0_1 ( ) { return cGroup_0_1 ; } public Group getGroup_0_1_0 ( ) { return cGroup_0_1_0 ; } public RuleCall getCOLONTerminalRuleCall_0_1_0_0 ( ) { return cCOLONTerminalRuleCall_0_1_0_0 ; } public Alternatives getAlternatives_0_1_0_1 ( ) { return cAlternatives_0_1_0_1 ; } public Group getGroup_0_1_0_1_0 ( ) { return cGroup_0_1_0_1_0 ; } public RuleCall getCOLONTerminalRuleCall_0_1_0_1_0_0 ( ) { return cCOLONTerminalRuleCall_0_1_0_1_0_0 ; } public Assignment getRefAssignment_0_1_0_1_0_1 ( ) { return cRefAssignment_0_1_0_1_0_1 ; } public CrossReference getRefPojoEntityCrossReference_0_1_0_1_0_1_0 ( ) { return cRefPojoEntityCrossReference_0_1_0_1_0_1_0 ; } public RuleCall getRefPojoEntityIDENTTerminalRuleCall_0_1_0_1_0_1_0_1 ( ) { return cRefPojoEntityIDENTTerminalRuleCall_0_1_0_1_0_1_0_1 ; } public Assignment getTypeAssignment_0_1_0_1_1 ( ) { return cTypeAssignment_0_1_0_1_1 ; } public CrossReference getTypeJvmTypeCrossReference_0_1_0_1_1_0 ( ) { return cTypeJvmTypeCrossReference_0_1_0_1_1_0 ; } public RuleCall getTypeJvmTypeQualifiedNameParserRuleCall_0_1_0_1_1_0_1 ( ) { return cTypeJvmTypeQualifiedNameParserRuleCall_0_1_0_1_1_0_1 ; } public Group getGroup_0_1_1 ( ) { return cGroup_0_1_1 ; } public RuleCall getLESS_THANTerminalRuleCall_0_1_1_0 ( ) { return cLESS_THANTerminalRuleCall_0_1_1_0 ; } public Alternatives getAlternatives_0_1_1_1 ( ) { return cAlternatives_0_1_1_1 ; } public Group getGroup_0_1_1_1_0 ( ) { return cGroup_0_1_1_1_0 ; } public RuleCall getCOLONTerminalRuleCall_0_1_1_1_0_0 ( ) { return cCOLONTerminalRuleCall_0_1_1_1_0_0 ; } public Assignment getGrefAssignment_0_1_1_1_0_1 ( ) { return cGrefAssignment_0_1_1_1_0_1 ; } public CrossReference getGrefPojoEntityCrossReference_0_1_1_1_0_1_0 ( ) { return cGrefPojoEntityCrossReference_0_1_1_1_0_1_0 ; } public RuleCall getGrefPojoEntityIDENTTerminalRuleCall_0_1_1_1_0_1_0_1 ( ) { return cGrefPojoEntityIDENTTerminalRuleCall_0_1_1_1_0_1_0_1 ; } public Assignment getGtypeAssignment_0_1_1_1_1 ( ) { return cGtypeAssignment_0_1_1_1_1 ; } public CrossReference getGtypeJvmTypeCrossReference_0_1_1_1_1_0 ( ) { return cGtypeJvmTypeCrossReference_0_1_1_1_1_0 ; } public RuleCall getGtypeJvmTypeQualifiedNameParserRuleCall_0_1_1_1_1_0_1 ( ) { return cGtypeJvmTypeQualifiedNameParserRuleCall_0_1_1_1_1_0_1 ; } public RuleCall getMORE_THANTerminalRuleCall_0_1_1_2 ( ) { return cMORE_THANTerminalRuleCall_0_1_1_2 ; } public Assignment getArrayAssignment_1 ( ) { return cArrayAssignment_1 ; } public Keyword getArrayLeftSquareBracketRightSquareBracketKeyword_1_0 ( ) { return cArrayLeftSquareBracketRightSquareBracketKeyword_1_0 ; } } public class PackageDeclarationElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cPackageKeyword_0 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cNameAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cNameAlternatives_1_0 = ( Alternatives ) cNameAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENTTerminalRuleCall_1_0_0 = ( RuleCall ) cNameAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENT_DOTTerminalRuleCall_1_0_1 = ( RuleCall ) cNameAlternatives_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_2 = ( Group ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Keyword cSuffixKeyword_2_0 = ( Keyword ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cSuffixAssignment_2_1 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cSuffixAlternatives_2_1_0 = ( Alternatives ) cSuffixAssignment_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cSuffixIDENTTerminalRuleCall_2_1_0_0 = ( RuleCall ) cSuffixAlternatives_2_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cSuffixNUMBERTerminalRuleCall_2_1_0_1 = ( RuleCall ) cSuffixAlternatives_2_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cLBRACETerminalRuleCall_3 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Assignment cElementsAssignment_4 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:4> ) ; private final RuleCall cElementsAbstractPojoEntityParserRuleCall_4_0 = ( RuleCall ) cElementsAssignment_4 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRBRACETerminalRuleCall_5 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:5> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Keyword getPackageKeyword_0 ( ) { return cPackageKeyword_0 ; } public Assignment getNameAssignment_1 ( ) { return cNameAssignment_1 ; } public Alternatives getNameAlternatives_1_0 ( ) { return cNameAlternatives_1_0 ; } public RuleCall getNameIDENTTerminalRuleCall_1_0_0 ( ) { return cNameIDENTTerminalRuleCall_1_0_0 ; } public RuleCall getNameIDENT_DOTTerminalRuleCall_1_0_1 ( ) { return cNameIDENT_DOTTerminalRuleCall_1_0_1 ; } public Group getGroup_2 ( ) { return cGroup_2 ; } public Keyword getSuffixKeyword_2_0 ( ) { return cSuffixKeyword_2_0 ; } public Assignment getSuffixAssignment_2_1 ( ) { return cSuffixAssignment_2_1 ; } public Alternatives getSuffixAlternatives_2_1_0 ( ) { return cSuffixAlternatives_2_1_0 ; } public RuleCall getSuffixIDENTTerminalRuleCall_2_1_0_0 ( ) { return cSuffixIDENTTerminalRuleCall_2_1_0_0 ; } public RuleCall getSuffixNUMBERTerminalRuleCall_2_1_0_1 ( ) { return cSuffixNUMBERTerminalRuleCall_2_1_0_1 ; } public RuleCall getLBRACETerminalRuleCall_3 ( ) { return cLBRACETerminalRuleCall_3 ; } public Assignment getElementsAssignment_4 ( ) { return cElementsAssignment_4 ; } public RuleCall getElementsAbstractPojoEntityParserRuleCall_4_0 ( ) { return cElementsAbstractPojoEntityParserRuleCall_4_0 ; } public RuleCall getRBRACETerminalRuleCall_5 ( ) { return cRBRACETerminalRuleCall_5 ; } } public class AbstractPojoEntityElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cPackageDeclarationParserRuleCall_0 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cPojoEntityParserRuleCall_1 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cImportParserRuleCall_2 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cImplementsParserRuleCall_3 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cExtendsParserRuleCall_4 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:4> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public RuleCall getPackageDeclarationParserRuleCall_0 ( ) { return cPackageDeclarationParserRuleCall_0 ; } public RuleCall getPojoEntityParserRuleCall_1 ( ) { return cPojoEntityParserRuleCall_1 ; } public RuleCall getImportParserRuleCall_2 ( ) { return cImportParserRuleCall_2 ; } public RuleCall getImplementsParserRuleCall_3 ( ) { return cImplementsParserRuleCall_3 ; } public RuleCall getExtendsParserRuleCall_4 ( ) { return cExtendsParserRuleCall_4 ; } } public class ImportElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cImportKeyword_0 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cImportedNamespaceAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_0 = ( RuleCall ) cImportedNamespaceAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Keyword getImportKeyword_0 ( ) { return cImportKeyword_0 ; } public Assignment getImportedNamespaceAssignment_1 ( ) { return cImportedNamespaceAssignment_1 ; } public RuleCall getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_0 ( ) { return cImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_0 ; } } public class ImplementsElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cImplementsKeyword_0 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cImplementsAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cImplementsJvmTypeCrossReference_1_0 = ( CrossReference ) cImplementsAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cImplementsJvmTypeQualifiedNameParserRuleCall_1_0_1 = ( RuleCall ) cImplementsJvmTypeCrossReference_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Keyword getImplementsKeyword_0 ( ) { return cImplementsKeyword_0 ; } public Assignment getImplementsAssignment_1 ( ) { return cImplementsAssignment_1 ; } public CrossReference getImplementsJvmTypeCrossReference_1_0 ( ) { return cImplementsJvmTypeCrossReference_1_0 ; } public RuleCall getImplementsJvmTypeQualifiedNameParserRuleCall_1_0_1 ( ) { return cImplementsJvmTypeQualifiedNameParserRuleCall_1_0_1 ; } } public class ExtendsElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cExtendsKeyword_0 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cExtendsAssignment_1 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cExtendsJvmTypeCrossReference_1_0 = ( CrossReference ) cExtendsAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cExtendsJvmTypeQualifiedNameParserRuleCall_1_0_1 = ( RuleCall ) cExtendsJvmTypeCrossReference_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Keyword getExtendsKeyword_0 ( ) { return cExtendsKeyword_0 ; } public Assignment getExtendsAssignment_1 ( ) { return cExtendsAssignment_1 ; } public CrossReference getExtendsJvmTypeCrossReference_1_0 ( ) { return cExtendsJvmTypeCrossReference_1_0 ; } public RuleCall getExtendsJvmTypeQualifiedNameParserRuleCall_1_0_1 ( ) { return cExtendsJvmTypeQualifiedNameParserRuleCall_1_0_1 ; } } public class PojoEntityModifier1Elements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cFinalAssignment_0 = ( Assignment ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cFinalFinalKeyword_0_0 = ( Keyword ) cFinalAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cAbstractAssignment_1 = ( Assignment ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cAbstractAbstractKeyword_1_0 = ( Keyword ) cAbstractAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public Assignment getFinalAssignment_0 ( ) { return cFinalAssignment_0 ; } public Keyword getFinalFinalKeyword_0_0 ( ) { return cFinalFinalKeyword_0_0 ; } public Assignment getAbstractAssignment_1 ( ) { return cAbstractAssignment_1 ; } public Keyword getAbstractAbstractKeyword_1_0 ( ) { return cAbstractAbstractKeyword_1_0 ; } } public class PojoEntityModifier2Elements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_0 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cExtendsKeyword_0_0 = ( Keyword ) cGroup_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cSuperTypeAssignment_0_1 = ( Assignment ) cGroup_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cSuperTypePojoEntityCrossReference_0_1_0 = ( CrossReference ) cSuperTypeAssignment_0_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cSuperTypePojoEntityIDENTTerminalRuleCall_0_1_0_1 = ( RuleCall ) cSuperTypePojoEntityCrossReference_0_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cDiscriminatorKeyword_1_0 = ( Keyword ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cDiscriminatorAssignment_1_1 = ( Assignment ) cGroup_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Alternatives cDiscriminatorAlternatives_1_1_0 = ( Alternatives ) cDiscriminatorAssignment_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cDiscriminatorIDENTTerminalRuleCall_1_1_0_0 = ( RuleCall ) cDiscriminatorAlternatives_1_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cDiscriminatorNUMBERTerminalRuleCall_1_1_0_1 = ( RuleCall ) cDiscriminatorAlternatives_1_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_2 = ( Group ) cAlternatives . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Keyword cSerializableKeyword_2_0 = ( Keyword ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cSernumAssignment_2_1 = ( Assignment ) cGroup_2 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cSernumNUMBERTerminalRuleCall_2_1_0 = ( RuleCall ) cSernumAssignment_2_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public Group getGroup_0 ( ) { return cGroup_0 ; } public Keyword getExtendsKeyword_0_0 ( ) { return cExtendsKeyword_0_0 ; } public Assignment getSuperTypeAssignment_0_1 ( ) { return cSuperTypeAssignment_0_1 ; } public CrossReference getSuperTypePojoEntityCrossReference_0_1_0 ( ) { return cSuperTypePojoEntityCrossReference_0_1_0 ; } public RuleCall getSuperTypePojoEntityIDENTTerminalRuleCall_0_1_0_1 ( ) { return cSuperTypePojoEntityIDENTTerminalRuleCall_0_1_0_1 ; } public Group getGroup_1 ( ) { return cGroup_1 ; } public Keyword getDiscriminatorKeyword_1_0 ( ) { return cDiscriminatorKeyword_1_0 ; } public Assignment getDiscriminatorAssignment_1_1 ( ) { return cDiscriminatorAssignment_1_1 ; } public Alternatives getDiscriminatorAlternatives_1_1_0 ( ) { return cDiscriminatorAlternatives_1_1_0 ; } public RuleCall getDiscriminatorIDENTTerminalRuleCall_1_1_0_0 ( ) { return cDiscriminatorIDENTTerminalRuleCall_1_1_0_0 ; } public RuleCall getDiscriminatorNUMBERTerminalRuleCall_1_1_0_1 ( ) { return cDiscriminatorNUMBERTerminalRuleCall_1_1_0_1 ; } public Group getGroup_2 ( ) { return cGroup_2 ; } public Keyword getSerializableKeyword_2_0 ( ) { return cSerializableKeyword_2_0 ; } public Assignment getSernumAssignment_2_1 ( ) { return cSernumAssignment_2_1 ; } public RuleCall getSernumNUMBERTerminalRuleCall_2_1_0 ( ) { return cSernumNUMBERTerminalRuleCall_2_1_0 ; } } public class PojoEntityElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cModifiers1Assignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cModifiers1PojoEntityModifier1ParserRuleCall_0_0 = ( RuleCall ) cModifiers1Assignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cPojoKeyword_1 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cNameAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final RuleCall cNameIDENTTerminalRuleCall_2_0 = ( RuleCall ) cNameAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cModifiers2Assignment_3 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cModifiers2PojoEntityModifier2ParserRuleCall_3_0 = ( RuleCall ) cModifiers2Assignment_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cLBRACETerminalRuleCall_4 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:4> ) ; private final Assignment cFeaturesAssignment_5 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:5> ) ; private final RuleCall cFeaturesPojoPropertyParserRuleCall_5_0 = ( RuleCall ) cFeaturesAssignment_5 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRBRACETerminalRuleCall_6 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:6> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getModifiers1Assignment_0 ( ) { return cModifiers1Assignment_0 ; } public RuleCall getModifiers1PojoEntityModifier1ParserRuleCall_0_0 ( ) { return cModifiers1PojoEntityModifier1ParserRuleCall_0_0 ; } public Keyword getPojoKeyword_1 ( ) { return cPojoKeyword_1 ; } public Assignment getNameAssignment_2 ( ) { return cNameAssignment_2 ; } public RuleCall getNameIDENTTerminalRuleCall_2_0 ( ) { return cNameIDENTTerminalRuleCall_2_0 ; } public Assignment getModifiers2Assignment_3 ( ) { return cModifiers2Assignment_3 ; } public RuleCall getModifiers2PojoEntityModifier2ParserRuleCall_3_0 ( ) { return cModifiers2PojoEntityModifier2ParserRuleCall_3_0 ; } public RuleCall getLBRACETerminalRuleCall_4 ( ) { return cLBRACETerminalRuleCall_4 ; } public Assignment getFeaturesAssignment_5 ( ) { return cFeaturesAssignment_5 ; } public RuleCall getFeaturesPojoPropertyParserRuleCall_5_0 ( ) { return cFeaturesPojoPropertyParserRuleCall_5_0 ; } public RuleCall getRBRACETerminalRuleCall_6 ( ) { return cRBRACETerminalRuleCall_6 ; } } public class PojoPropertyModifierElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cRequiredAssignment_0 = ( Assignment ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cRequiredRequiredKeyword_0_0 = ( Keyword ) cRequiredAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cDiscriminatorAssignment_1 = ( Assignment ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cDiscriminatorDiscriminatorKeyword_1_0 = ( Keyword ) cDiscriminatorAssignment_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cPrimaryKeyAssignment_2 = ( Assignment ) cAlternatives . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Keyword cPrimaryKeyPrimaryKeyKeyword_2_0 = ( Keyword ) cPrimaryKeyAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public Assignment getRequiredAssignment_0 ( ) { return cRequiredAssignment_0 ; } public Keyword getRequiredRequiredKeyword_0_0 ( ) { return cRequiredRequiredKeyword_0_0 ; } public Assignment getDiscriminatorAssignment_1 ( ) { return cDiscriminatorAssignment_1 ; } public Keyword getDiscriminatorDiscriminatorKeyword_1_0 ( ) { return cDiscriminatorDiscriminatorKeyword_1_0 ; } public Assignment getPrimaryKeyAssignment_2 ( ) { return cPrimaryKeyAssignment_2 ; } public Keyword getPrimaryKeyPrimaryKeyKeyword_2_0 ( ) { return cPrimaryKeyPrimaryKeyKeyword_2_0 ; } } public class PojoPropertyElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cNameAssignment_0 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cNameIDENTTerminalRuleCall_0_0 = ( RuleCall ) cNameAssignment_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cAlternatives_1 = ( Alternatives ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cNativeAssignment_1_0 = ( Assignment ) cAlternatives_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cNativeAlternatives_1_0_0 = ( Alternatives ) cNativeAssignment_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNative_charKeyword_1_0_0_0 = ( Keyword ) cNativeAlternatives_1_0_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cNative_byteKeyword_1_0_0_1 = ( Keyword ) cNativeAlternatives_1_0_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Keyword cNative_shortKeyword_1_0_0_2 = ( Keyword ) cNativeAlternatives_1_0_0 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Keyword cNative_intKeyword_1_0_0_3 = ( Keyword ) cNativeAlternatives_1_0_0 . eContents ( ) . get ( <NUM_LIT:3> ) ; private final Keyword cNative_longKeyword_1_0_0_4 = ( Keyword ) cNativeAlternatives_1_0_0 . eContents ( ) . get ( <NUM_LIT:4> ) ; private final Keyword cNative_floatKeyword_1_0_0_5 = ( Keyword ) cNativeAlternatives_1_0_0 . eContents ( ) . get ( <NUM_LIT:5> ) ; private final Keyword cNative_doubleKeyword_1_0_0_6 = ( Keyword ) cNativeAlternatives_1_0_0 . eContents ( ) . get ( <NUM_LIT:6> ) ; private final Keyword cNative_booleanKeyword_1_0_0_7 = ( Keyword ) cNativeAlternatives_1_0_0 . eContents ( ) . get ( <NUM_LIT:7> ) ; private final Group cGroup_1_1 = ( Group ) cAlternatives_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1_1_0 = ( Group ) cGroup_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cCOLONTerminalRuleCall_1_1_0_0 = ( RuleCall ) cGroup_1_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cAlternatives_1_1_0_1 = ( Alternatives ) cGroup_1_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1_1_0_1_0 = ( Group ) cAlternatives_1_1_0_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cCOLONTerminalRuleCall_1_1_0_1_0_0 = ( RuleCall ) cGroup_1_1_0_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cAlternatives_1_1_0_1_0_1 = ( Alternatives ) cGroup_1_1_0_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1_1_0_1_0_1_0 = ( Group ) cAlternatives_1_1_0_1_0_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cCOLONTerminalRuleCall_1_1_0_1_0_1_0_0 = ( RuleCall ) cGroup_1_1_0_1_0_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cAttrsAssignment_1_1_0_1_0_1_0_1 = ( Assignment ) cGroup_1_1_0_1_0_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cAttrsPojoPropertyCrossReference_1_1_0_1_0_1_0_1_0 = ( CrossReference ) cAttrsAssignment_1_1_0_1_0_1_0_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cAttrsPojoPropertyIDENTTerminalRuleCall_1_1_0_1_0_1_0_1_0_1 = ( RuleCall ) cAttrsPojoPropertyCrossReference_1_1_0_1_0_1_0_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cRefAssignment_1_1_0_1_0_1_1 = ( Assignment ) cAlternatives_1_1_0_1_0_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cRefPojoEntityCrossReference_1_1_0_1_0_1_1_0 = ( CrossReference ) cRefAssignment_1_1_0_1_0_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cRefPojoEntityIDENTTerminalRuleCall_1_1_0_1_0_1_1_0_1 = ( RuleCall ) cRefPojoEntityCrossReference_1_1_0_1_0_1_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cTypeAssignment_1_1_0_1_1 = ( Assignment ) cAlternatives_1_1_0_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cTypeJvmTypeCrossReference_1_1_0_1_1_0 = ( CrossReference ) cTypeAssignment_1_1_0_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cTypeJvmTypeQualifiedNameParserRuleCall_1_1_0_1_1_0_1 = ( RuleCall ) cTypeJvmTypeCrossReference_1_1_0_1_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1_1_1 = ( Group ) cGroup_1_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cLESS_THANTerminalRuleCall_1_1_1_0 = ( RuleCall ) cGroup_1_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Alternatives cAlternatives_1_1_1_1 = ( Alternatives ) cGroup_1_1_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Group cGroup_1_1_1_1_0 = ( Group ) cAlternatives_1_1_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cCOLONTerminalRuleCall_1_1_1_1_0_0 = ( RuleCall ) cGroup_1_1_1_1_0 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cGrefAssignment_1_1_1_1_0_1 = ( Assignment ) cGroup_1_1_1_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cGrefPojoEntityCrossReference_1_1_1_1_0_1_0 = ( CrossReference ) cGrefAssignment_1_1_1_1_0_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cGrefPojoEntityIDENTTerminalRuleCall_1_1_1_1_0_1_0_1 = ( RuleCall ) cGrefPojoEntityCrossReference_1_1_1_1_0_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final Assignment cGtypeAssignment_1_1_1_1_1 = ( Assignment ) cAlternatives_1_1_1_1 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final CrossReference cGtypeJvmTypeCrossReference_1_1_1_1_1_0 = ( CrossReference ) cGtypeAssignment_1_1_1_1_1 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cGtypeJvmTypeQualifiedNameParserRuleCall_1_1_1_1_1_0_1 = ( RuleCall ) cGtypeJvmTypeCrossReference_1_1_1_1_1_0 . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cMORE_THANTerminalRuleCall_1_1_1_2 = ( RuleCall ) cGroup_1_1_1 . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Assignment cArrayAssignment_2 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:2> ) ; private final Keyword cArrayLeftSquareBracketRightSquareBracketKeyword_2_0 = ( Keyword ) cArrayAssignment_2 . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Assignment cModifiersAssignment_3 = ( Assignment ) cGroup . eContents ( ) . get ( <NUM_LIT:3> ) ; private final RuleCall cModifiersPojoPropertyModifierParserRuleCall_3_0 = ( RuleCall ) cModifiersAssignment_3 . eContents ( ) . get ( <NUM_LIT:0> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public Assignment getNameAssignment_0 ( ) { return cNameAssignment_0 ; } public RuleCall getNameIDENTTerminalRuleCall_0_0 ( ) { return cNameIDENTTerminalRuleCall_0_0 ; } public Alternatives getAlternatives_1 ( ) { return cAlternatives_1 ; } public Assignment getNativeAssignment_1_0 ( ) { return cNativeAssignment_1_0 ; } public Alternatives getNativeAlternatives_1_0_0 ( ) { return cNativeAlternatives_1_0_0 ; } public Keyword getNative_charKeyword_1_0_0_0 ( ) { return cNative_charKeyword_1_0_0_0 ; } public Keyword getNative_byteKeyword_1_0_0_1 ( ) { return cNative_byteKeyword_1_0_0_1 ; } public Keyword getNative_shortKeyword_1_0_0_2 ( ) { return cNative_shortKeyword_1_0_0_2 ; } public Keyword getNative_intKeyword_1_0_0_3 ( ) { return cNative_intKeyword_1_0_0_3 ; } public Keyword getNative_longKeyword_1_0_0_4 ( ) { return cNative_longKeyword_1_0_0_4 ; } public Keyword getNative_floatKeyword_1_0_0_5 ( ) { return cNative_floatKeyword_1_0_0_5 ; } public Keyword getNative_doubleKeyword_1_0_0_6 ( ) { return cNative_doubleKeyword_1_0_0_6 ; } public Keyword getNative_booleanKeyword_1_0_0_7 ( ) { return cNative_booleanKeyword_1_0_0_7 ; } public Group getGroup_1_1 ( ) { return cGroup_1_1 ; } public Group getGroup_1_1_0 ( ) { return cGroup_1_1_0 ; } public RuleCall getCOLONTerminalRuleCall_1_1_0_0 ( ) { return cCOLONTerminalRuleCall_1_1_0_0 ; } public Alternatives getAlternatives_1_1_0_1 ( ) { return cAlternatives_1_1_0_1 ; } public Group getGroup_1_1_0_1_0 ( ) { return cGroup_1_1_0_1_0 ; } public RuleCall getCOLONTerminalRuleCall_1_1_0_1_0_0 ( ) { return cCOLONTerminalRuleCall_1_1_0_1_0_0 ; } public Alternatives getAlternatives_1_1_0_1_0_1 ( ) { return cAlternatives_1_1_0_1_0_1 ; } public Group getGroup_1_1_0_1_0_1_0 ( ) { return cGroup_1_1_0_1_0_1_0 ; } public RuleCall getCOLONTerminalRuleCall_1_1_0_1_0_1_0_0 ( ) { return cCOLONTerminalRuleCall_1_1_0_1_0_1_0_0 ; } public Assignment getAttrsAssignment_1_1_0_1_0_1_0_1 ( ) { return cAttrsAssignment_1_1_0_1_0_1_0_1 ; } public CrossReference getAttrsPojoPropertyCrossReference_1_1_0_1_0_1_0_1_0 ( ) { return cAttrsPojoPropertyCrossReference_1_1_0_1_0_1_0_1_0 ; } public RuleCall getAttrsPojoPropertyIDENTTerminalRuleCall_1_1_0_1_0_1_0_1_0_1 ( ) { return cAttrsPojoPropertyIDENTTerminalRuleCall_1_1_0_1_0_1_0_1_0_1 ; } public Assignment getRefAssignment_1_1_0_1_0_1_1 ( ) { return cRefAssignment_1_1_0_1_0_1_1 ; } public CrossReference getRefPojoEntityCrossReference_1_1_0_1_0_1_1_0 ( ) { return cRefPojoEntityCrossReference_1_1_0_1_0_1_1_0 ; } public RuleCall getRefPojoEntityIDENTTerminalRuleCall_1_1_0_1_0_1_1_0_1 ( ) { return cRefPojoEntityIDENTTerminalRuleCall_1_1_0_1_0_1_1_0_1 ; } public Assignment getTypeAssignment_1_1_0_1_1 ( ) { return cTypeAssignment_1_1_0_1_1 ; } public CrossReference getTypeJvmTypeCrossReference_1_1_0_1_1_0 ( ) { return cTypeJvmTypeCrossReference_1_1_0_1_1_0 ; } public RuleCall getTypeJvmTypeQualifiedNameParserRuleCall_1_1_0_1_1_0_1 ( ) { return cTypeJvmTypeQualifiedNameParserRuleCall_1_1_0_1_1_0_1 ; } public Group getGroup_1_1_1 ( ) { return cGroup_1_1_1 ; } public RuleCall getLESS_THANTerminalRuleCall_1_1_1_0 ( ) { return cLESS_THANTerminalRuleCall_1_1_1_0 ; } public Alternatives getAlternatives_1_1_1_1 ( ) { return cAlternatives_1_1_1_1 ; } public Group getGroup_1_1_1_1_0 ( ) { return cGroup_1_1_1_1_0 ; } public RuleCall getCOLONTerminalRuleCall_1_1_1_1_0_0 ( ) { return cCOLONTerminalRuleCall_1_1_1_1_0_0 ; } public Assignment getGrefAssignment_1_1_1_1_0_1 ( ) { return cGrefAssignment_1_1_1_1_0_1 ; } public CrossReference getGrefPojoEntityCrossReference_1_1_1_1_0_1_0 ( ) { return cGrefPojoEntityCrossReference_1_1_1_1_0_1_0 ; } public RuleCall getGrefPojoEntityIDENTTerminalRuleCall_1_1_1_1_0_1_0_1 ( ) { return cGrefPojoEntityIDENTTerminalRuleCall_1_1_1_1_0_1_0_1 ; } public Assignment getGtypeAssignment_1_1_1_1_1 ( ) { return cGtypeAssignment_1_1_1_1_1 ; } public CrossReference getGtypeJvmTypeCrossReference_1_1_1_1_1_0 ( ) { return cGtypeJvmTypeCrossReference_1_1_1_1_1_0 ; } public RuleCall getGtypeJvmTypeQualifiedNameParserRuleCall_1_1_1_1_1_0_1 ( ) { return cGtypeJvmTypeQualifiedNameParserRuleCall_1_1_1_1_1_0_1 ; } public RuleCall getMORE_THANTerminalRuleCall_1_1_1_2 ( ) { return cMORE_THANTerminalRuleCall_1_1_1_2 ; } public Assignment getArrayAssignment_2 ( ) { return cArrayAssignment_2 ; } public Keyword getArrayLeftSquareBracketRightSquareBracketKeyword_2_0 ( ) { return cArrayLeftSquareBracketRightSquareBracketKeyword_2_0 ; } public Assignment getModifiersAssignment_3 ( ) { return cModifiersAssignment_3 ; } public RuleCall getModifiersPojoPropertyModifierParserRuleCall_3_0 ( ) { return cModifiersPojoPropertyModifierParserRuleCall_3_0 ; } } public class QualifiedNameWithWildcardElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Group cGroup = ( Group ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cQualifiedNameParserRuleCall_0 = ( RuleCall ) cGroup . eContents ( ) . get ( <NUM_LIT:0> ) ; private final Keyword cFullStopAsteriskKeyword_1 = ( Keyword ) cGroup . eContents ( ) . get ( <NUM_LIT:1> ) ; public ParserRule getRule ( ) { return rule ; } public Group getGroup ( ) { return cGroup ; } public RuleCall getQualifiedNameParserRuleCall_0 ( ) { return cQualifiedNameParserRuleCall_0 ; } public Keyword getFullStopAsteriskKeyword_1 ( ) { return cFullStopAsteriskKeyword_1 ; } } public class QualifiedNameElements extends AbstractParserRuleElementFinder { private final ParserRule rule = ( ParserRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ; private final Alternatives cAlternatives = ( Alternatives ) rule . eContents ( ) . get ( <NUM_LIT:1> ) ; private final RuleCall cIDENTTerminalRuleCall_0 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:0> ) ; private final RuleCall cIDENT_DOTTerminalRuleCall_1 = ( RuleCall ) cAlternatives . eContents ( ) . get ( <NUM_LIT:1> ) ; public ParserRule getRule ( ) { return rule ; } public Alternatives getAlternatives ( ) { return cAlternatives ; } public RuleCall getIDENTTerminalRuleCall_0 ( ) { return cIDENTTerminalRuleCall_0 ; } public RuleCall getIDENT_DOTTerminalRuleCall_1 ( ) { return cIDENT_DOTTerminalRuleCall_1 ; } } private ArtifactsElements pArtifacts ; private SqlTypeAssignementElements pSqlTypeAssignement ; private ColumnTypeAssignementElements pColumnTypeAssignement ; private ShowColumnTypeAssignementElements pShowColumnTypeAssignement ; private TableAssignementElements pTableAssignement ; private JoinTableAssignementElements pJoinTableAssignement ; private ColumnAssignementElements pColumnAssignement ; private ImportAssignementElements pImportAssignement ; private ExportAssignementElements pExportAssignement ; private InheritanceAssignementElements pInheritanceAssignement ; private ManyToManyAssignementElements pManyToManyAssignement ; private PropertyElements pProperty ; private DatabasePropertyElements pDatabaseProperty ; private PojogenPropertyElements pPojogenProperty ; private PropertyValueElements pPropertyValue ; private PojoDefinitionElements pPojoDefinition ; private PojoUsageElements pPojoUsage ; private ColumnUsageElements pColumnUsage ; private IdentifierUsageElements pIdentifierUsage ; private ConstantUsageElements pConstantUsage ; private MappingUsageElements pMappingUsage ; private PojoUsageExtElements pPojoUsageExt ; private ColumnUsageExtElements pColumnUsageExt ; private IdentifierUsageExtElements pIdentifierUsageExt ; private ConstantUsageExtElements pConstantUsageExt ; private MappingUsageExtElements pMappingUsageExt ; private TableDefinitionElements pTableDefinition ; private TableUsageElements pTableUsage ; private MetaStatementElements pMetaStatement ; private SqlElements pSql ; private SqlFragmentElements pSqlFragment ; private SqlValueElements pSqlValue ; private MetaSqlElements pMetaSql ; private IfSqlElements pIfSql ; private IfSqlFragmentElements pIfSqlFragment ; private IfSqlValueElements pIfSqlValue ; private IfMetaSqlElements pIfMetaSql ; private IfSqlCondElements pIfSqlCond ; private IfSqlBoolElements pIfSqlBool ; private OrdSqlElements pOrdSql ; private OrdSql2Elements pOrdSql2 ; private OrdSqlValueElements pOrdSqlValue ; private ColumnElements pColumn ; private ConstantElements pConstant ; private IdentifierElements pIdentifier ; private DatabaseColumnElements pDatabaseColumn ; private DatabaseTableElements pDatabaseTable ; private MappingRuleElements pMappingRule ; private MappingElements pMapping ; private MappingItemElements pMappingItem ; private MappingColumnElements pMappingColumn ; private OptionalFeatureElements pOptionalFeature ; private TerminalRule tON_OFF ; private TerminalRule tSTATEMEN_TYPE ; private TerminalRule tMAPPING_TYPE ; private TerminalRule tOPTION_TYPE ; private TerminalRule tIDENT_DOT ; private TerminalRule tIDENT ; private TerminalRule tNUMBER ; private TerminalRule tESC_CHAR ; private TerminalRule tML_COMMENT ; private TerminalRule tSL_COMMENT ; private TerminalRule tWS ; private TerminalRule tAND ; private TerminalRule tOR ; private TerminalRule tCOLON ; private TerminalRule tSEMICOLON ; private TerminalRule tSTRING ; private TerminalRule tCOMMA ; private TerminalRule tMINUS ; private TerminalRule tPLUS ; private TerminalRule tLPAREN ; private TerminalRule tRPAREN ; private TerminalRule tLBRACE ; private TerminalRule tRBRACE ; private TerminalRule tQUESTI ; private TerminalRule tNOT ; private TerminalRule tBAND ; private TerminalRule tBOR ; private TerminalRule tHASH ; private TerminalRule tAT ; private TerminalRule tCARET ; private TerminalRule tEQUALS ; private TerminalRule tLESS_THAN ; private TerminalRule tMORE_THAN ; private TerminalRule tPERCENT ; private TerminalRule tREST ; private FeatureValueElements pFeatureValue ; private PojoTypeElements pPojoType ; private PackageDeclarationElements pPackageDeclaration ; private AbstractPojoEntityElements pAbstractPojoEntity ; private ImportElements pImport ; private ImplementsElements pImplements ; private ExtendsElements pExtends ; private PojoEntityModifier1Elements pPojoEntityModifier1 ; private PojoEntityModifier2Elements pPojoEntityModifier2 ; private PojoEntityElements pPojoEntity ; private PojoPropertyModifierElements pPojoPropertyModifier ; private PojoPropertyElements pPojoProperty ; private QualifiedNameWithWildcardElements pQualifiedNameWithWildcard ; private QualifiedNameElements pQualifiedName ; private final Grammar grammar ; @ Inject public ProcessorDslGrammarAccess ( GrammarProvider grammarProvider ) { this . grammar = internalFindGrammar ( grammarProvider ) ; } protected Grammar internalFindGrammar ( GrammarProvider grammarProvider ) { Grammar grammar = grammarProvider . getGrammar ( this ) ; while ( grammar != null ) { if ( "<STR_LIT>" . equals ( grammar . getName ( ) ) ) { return grammar ; } List < Grammar > grammars = grammar . getUsedGrammars ( ) ; if ( ! grammars . isEmpty ( ) ) { grammar = grammars . iterator ( ) . next ( ) ; } else { return null ; } } return grammar ; } public Grammar getGrammar ( ) { return grammar ; } public ArtifactsElements getArtifactsAccess ( ) { return ( pArtifacts != null ) ? pArtifacts : ( pArtifacts = new ArtifactsElements ( ) ) ; } public ParserRule getArtifactsRule ( ) { return getArtifactsAccess ( ) . getRule ( ) ; } public SqlTypeAssignementElements getSqlTypeAssignementAccess ( ) { return ( pSqlTypeAssignement != null ) ? pSqlTypeAssignement : ( pSqlTypeAssignement = new SqlTypeAssignementElements ( ) ) ; } public ParserRule getSqlTypeAssignementRule ( ) { return getSqlTypeAssignementAccess ( ) . getRule ( ) ; } public ColumnTypeAssignementElements getColumnTypeAssignementAccess ( ) { return ( pColumnTypeAssignement != null ) ? pColumnTypeAssignement : ( pColumnTypeAssignement = new ColumnTypeAssignementElements ( ) ) ; } public ParserRule getColumnTypeAssignementRule ( ) { return getColumnTypeAssignementAccess ( ) . getRule ( ) ; } public ShowColumnTypeAssignementElements getShowColumnTypeAssignementAccess ( ) { return ( pShowColumnTypeAssignement != null ) ? pShowColumnTypeAssignement : ( pShowColumnTypeAssignement = new ShowColumnTypeAssignementElements ( ) ) ; } public ParserRule getShowColumnTypeAssignementRule ( ) { return getShowColumnTypeAssignementAccess ( ) . getRule ( ) ; } public TableAssignementElements getTableAssignementAccess ( ) { return ( pTableAssignement != null ) ? pTableAssignement : ( pTableAssignement = new TableAssignementElements ( ) ) ; } public ParserRule getTableAssignementRule ( ) { return getTableAssignementAccess ( ) . getRule ( ) ; } public JoinTableAssignementElements getJoinTableAssignementAccess ( ) { return ( pJoinTableAssignement != null ) ? pJoinTableAssignement : ( pJoinTableAssignement = new JoinTableAssignementElements ( ) ) ; } public ParserRule getJoinTableAssignementRule ( ) { return getJoinTableAssignementAccess ( ) . getRule ( ) ; } public ColumnAssignementElements getColumnAssignementAccess ( ) { return ( pColumnAssignement != null ) ? pColumnAssignement : ( pColumnAssignement = new ColumnAssignementElements ( ) ) ; } public ParserRule getColumnAssignementRule ( ) { return getColumnAssignementAccess ( ) . getRule ( ) ; } public ImportAssignementElements getImportAssignementAccess ( ) { return ( pImportAssignement != null ) ? pImportAssignement : ( pImportAssignement = new ImportAssignementElements ( ) ) ; } public ParserRule getImportAssignementRule ( ) { return getImportAssignementAccess ( ) . getRule ( ) ; } public ExportAssignementElements getExportAssignementAccess ( ) { return ( pExportAssignement != null ) ? pExportAssignement : ( pExportAssignement = new ExportAssignementElements ( ) ) ; } public ParserRule getExportAssignementRule ( ) { return getExportAssignementAccess ( ) . getRule ( ) ; } public InheritanceAssignementElements getInheritanceAssignementAccess ( ) { return ( pInheritanceAssignement != null ) ? pInheritanceAssignement : ( pInheritanceAssignement = new InheritanceAssignementElements ( ) ) ; } public ParserRule getInheritanceAssignementRule ( ) { return getInheritanceAssignementAccess ( ) . getRule ( ) ; } public ManyToManyAssignementElements getManyToManyAssignementAccess ( ) { return ( pManyToManyAssignement != null ) ? pManyToManyAssignement : ( pManyToManyAssignement = new ManyToManyAssignementElements ( ) ) ; } public ParserRule getManyToManyAssignementRule ( ) { return getManyToManyAssignementAccess ( ) . getRule ( ) ; } public PropertyElements getPropertyAccess ( ) { return ( pProperty != null ) ? pProperty : ( pProperty = new PropertyElements ( ) ) ; } public ParserRule getPropertyRule ( ) { return getPropertyAccess ( ) . getRule ( ) ; } public DatabasePropertyElements getDatabasePropertyAccess ( ) { return ( pDatabaseProperty != null ) ? pDatabaseProperty : ( pDatabaseProperty = new DatabasePropertyElements ( ) ) ; } public ParserRule getDatabasePropertyRule ( ) { return getDatabasePropertyAccess ( ) . getRule ( ) ; } public PojogenPropertyElements getPojogenPropertyAccess ( ) { return ( pPojogenProperty != null ) ? pPojogenProperty : ( pPojogenProperty = new PojogenPropertyElements ( ) ) ; } public ParserRule getPojogenPropertyRule ( ) { return getPojogenPropertyAccess ( ) . getRule ( ) ; } public PropertyValueElements getPropertyValueAccess ( ) { return ( pPropertyValue != null ) ? pPropertyValue : ( pPropertyValue = new PropertyValueElements ( ) ) ; } public ParserRule getPropertyValueRule ( ) { return getPropertyValueAccess ( ) . getRule ( ) ; } public PojoDefinitionElements getPojoDefinitionAccess ( ) { return ( pPojoDefinition != null ) ? pPojoDefinition : ( pPojoDefinition = new PojoDefinitionElements ( ) ) ; } public ParserRule getPojoDefinitionRule ( ) { return getPojoDefinitionAccess ( ) . getRule ( ) ; } public PojoUsageElements getPojoUsageAccess ( ) { return ( pPojoUsage != null ) ? pPojoUsage : ( pPojoUsage = new PojoUsageElements ( ) ) ; } public ParserRule getPojoUsageRule ( ) { return getPojoUsageAccess ( ) . getRule ( ) ; } public ColumnUsageElements getColumnUsageAccess ( ) { return ( pColumnUsage != null ) ? pColumnUsage : ( pColumnUsage = new ColumnUsageElements ( ) ) ; } public ParserRule getColumnUsageRule ( ) { return getColumnUsageAccess ( ) . getRule ( ) ; } public IdentifierUsageElements getIdentifierUsageAccess ( ) { return ( pIdentifierUsage != null ) ? pIdentifierUsage : ( pIdentifierUsage = new IdentifierUsageElements ( ) ) ; } public ParserRule getIdentifierUsageRule ( ) { return getIdentifierUsageAccess ( ) . getRule ( ) ; } public ConstantUsageElements getConstantUsageAccess ( ) { return ( pConstantUsage != null ) ? pConstantUsage : ( pConstantUsage = new ConstantUsageElements ( ) ) ; } public ParserRule getConstantUsageRule ( ) { return getConstantUsageAccess ( ) . getRule ( ) ; } public MappingUsageElements getMappingUsageAccess ( ) { return ( pMappingUsage != null ) ? pMappingUsage : ( pMappingUsage = new MappingUsageElements ( ) ) ; } public ParserRule getMappingUsageRule ( ) { return getMappingUsageAccess ( ) . getRule ( ) ; } public PojoUsageExtElements getPojoUsageExtAccess ( ) { return ( pPojoUsageExt != null ) ? pPojoUsageExt : ( pPojoUsageExt = new PojoUsageExtElements ( ) ) ; } public ParserRule getPojoUsageExtRule ( ) { return getPojoUsageExtAccess ( ) . getRule ( ) ; } public ColumnUsageExtElements getColumnUsageExtAccess ( ) { return ( pColumnUsageExt != null ) ? pColumnUsageExt : ( pColumnUsageExt = new ColumnUsageExtElements ( ) ) ; } public ParserRule getColumnUsageExtRule ( ) { return getColumnUsageExtAccess ( ) . getRule ( ) ; } public IdentifierUsageExtElements getIdentifierUsageExtAccess ( ) { return ( pIdentifierUsageExt != null ) ? pIdentifierUsageExt : ( pIdentifierUsageExt = new IdentifierUsageExtElements ( ) ) ; } public ParserRule getIdentifierUsageExtRule ( ) { return getIdentifierUsageExtAccess ( ) . getRule ( ) ; } public ConstantUsageExtElements getConstantUsageExtAccess ( ) { return ( pConstantUsageExt != null ) ? pConstantUsageExt : ( pConstantUsageExt = new ConstantUsageExtElements ( ) ) ; } public ParserRule getConstantUsageExtRule ( ) { return getConstantUsageExtAccess ( ) . getRule ( ) ; } public MappingUsageExtElements getMappingUsageExtAccess ( ) { return ( pMappingUsageExt != null ) ? pMappingUsageExt : ( pMappingUsageExt = new MappingUsageExtElements ( ) ) ; } public ParserRule getMappingUsageExtRule ( ) { return getMappingUsageExtAccess ( ) . getRule ( ) ; } public TableDefinitionElements getTableDefinitionAccess ( ) { return ( pTableDefinition != null ) ? pTableDefinition : ( pTableDefinition = new TableDefinitionElements ( ) ) ; } public ParserRule getTableDefinitionRule ( ) { return getTableDefinitionAccess ( ) . getRule ( ) ; } public TableUsageElements getTableUsageAccess ( ) { return ( pTableUsage != null ) ? pTableUsage : ( pTableUsage = new TableUsageElements ( ) ) ; } public ParserRule getTableUsageRule ( ) { return getTableUsageAccess ( ) . getRule ( ) ; } public MetaStatementElements getMetaStatementAccess ( ) { return ( pMetaStatement != null ) ? pMetaStatement : ( pMetaStatement = new MetaStatementElements ( ) ) ; } public ParserRule getMetaStatementRule ( ) { return getMetaStatementAccess ( ) . getRule ( ) ; } public SqlElements getSqlAccess ( ) { return ( pSql != null ) ? pSql : ( pSql = new SqlElements ( ) ) ; } public ParserRule getSqlRule ( ) { return getSqlAccess ( ) . getRule ( ) ; } public SqlFragmentElements getSqlFragmentAccess ( ) { return ( pSqlFragment != null ) ? pSqlFragment : ( pSqlFragment = new SqlFragmentElements ( ) ) ; } public ParserRule getSqlFragmentRule ( ) { return getSqlFragmentAccess ( ) . getRule ( ) ; } public SqlValueElements getSqlValueAccess ( ) { return ( pSqlValue != null ) ? pSqlValue : ( pSqlValue = new SqlValueElements ( ) ) ; } public ParserRule getSqlValueRule ( ) { return getSqlValueAccess ( ) . getRule ( ) ; } public MetaSqlElements getMetaSqlAccess ( ) { return ( pMetaSql != null ) ? pMetaSql : ( pMetaSql = new MetaSqlElements ( ) ) ; } public ParserRule getMetaSqlRule ( ) { return getMetaSqlAccess ( ) . getRule ( ) ; } public IfSqlElements getIfSqlAccess ( ) { return ( pIfSql != null ) ? pIfSql : ( pIfSql = new IfSqlElements ( ) ) ; } public ParserRule getIfSqlRule ( ) { return getIfSqlAccess ( ) . getRule ( ) ; } public IfSqlFragmentElements getIfSqlFragmentAccess ( ) { return ( pIfSqlFragment != null ) ? pIfSqlFragment : ( pIfSqlFragment = new IfSqlFragmentElements ( ) ) ; } public ParserRule getIfSqlFragmentRule ( ) { return getIfSqlFragmentAccess ( ) . getRule ( ) ; } public IfSqlValueElements getIfSqlValueAccess ( ) { return ( pIfSqlValue != null ) ? pIfSqlValue : ( pIfSqlValue = new IfSqlValueElements ( ) ) ; } public ParserRule getIfSqlValueRule ( ) { return getIfSqlValueAccess ( ) . getRule ( ) ; } public IfMetaSqlElements getIfMetaSqlAccess ( ) { return ( pIfMetaSql != null ) ? pIfMetaSql : ( pIfMetaSql = new IfMetaSqlElements ( ) ) ; } public ParserRule getIfMetaSqlRule ( ) { return getIfMetaSqlAccess ( ) . getRule ( ) ; } public IfSqlCondElements getIfSqlCondAccess ( ) { return ( pIfSqlCond != null ) ? pIfSqlCond : ( pIfSqlCond = new IfSqlCondElements ( ) ) ; } public ParserRule getIfSqlCondRule ( ) { return getIfSqlCondAccess ( ) . getRule ( ) ; } public IfSqlBoolElements getIfSqlBoolAccess ( ) { return ( pIfSqlBool != null ) ? pIfSqlBool : ( pIfSqlBool = new IfSqlBoolElements ( ) ) ; } public ParserRule getIfSqlBoolRule ( ) { return getIfSqlBoolAccess ( ) . getRule ( ) ; } public OrdSqlElements getOrdSqlAccess ( ) { return ( pOrdSql != null ) ? pOrdSql : ( pOrdSql = new OrdSqlElements ( ) ) ; } public ParserRule getOrdSqlRule ( ) { return getOrdSqlAccess ( ) . getRule ( ) ; } public OrdSql2Elements getOrdSql2Access ( ) { return ( pOrdSql2 != null ) ? pOrdSql2 : ( pOrdSql2 = new OrdSql2Elements ( ) ) ; } public ParserRule getOrdSql2Rule ( ) { return getOrdSql2Access ( ) . getRule ( ) ; } public OrdSqlValueElements getOrdSqlValueAccess ( ) { return ( pOrdSqlValue != null ) ? pOrdSqlValue : ( pOrdSqlValue = new OrdSqlValueElements ( ) ) ; } public ParserRule getOrdSqlValueRule ( ) { return getOrdSqlValueAccess ( ) . getRule ( ) ; } public ColumnElements getColumnAccess ( ) { return ( pColumn != null ) ? pColumn : ( pColumn = new ColumnElements ( ) ) ; } public ParserRule getColumnRule ( ) { return getColumnAccess ( ) . getRule ( ) ; } public ConstantElements getConstantAccess ( ) { return ( pConstant != null ) ? pConstant : ( pConstant = new ConstantElements ( ) ) ; } public ParserRule getConstantRule ( ) { return getConstantAccess ( ) . getRule ( ) ; } public IdentifierElements getIdentifierAccess ( ) { return ( pIdentifier != null ) ? pIdentifier : ( pIdentifier = new IdentifierElements ( ) ) ; } public ParserRule getIdentifierRule ( ) { return getIdentifierAccess ( ) . getRule ( ) ; } public DatabaseColumnElements getDatabaseColumnAccess ( ) { return ( pDatabaseColumn != null ) ? pDatabaseColumn : ( pDatabaseColumn = new DatabaseColumnElements ( ) ) ; } public ParserRule getDatabaseColumnRule ( ) { return getDatabaseColumnAccess ( ) . getRule ( ) ; } public DatabaseTableElements getDatabaseTableAccess ( ) { return ( pDatabaseTable != null ) ? pDatabaseTable : ( pDatabaseTable = new DatabaseTableElements ( ) ) ; } public ParserRule getDatabaseTableRule ( ) { return getDatabaseTableAccess ( ) . getRule ( ) ; } public MappingRuleElements getMappingRuleAccess ( ) { return ( pMappingRule != null ) ? pMappingRule : ( pMappingRule = new MappingRuleElements ( ) ) ; } public ParserRule getMappingRuleRule ( ) { return getMappingRuleAccess ( ) . getRule ( ) ; } public MappingElements getMappingAccess ( ) { return ( pMapping != null ) ? pMapping : ( pMapping = new MappingElements ( ) ) ; } public ParserRule getMappingRule ( ) { return getMappingAccess ( ) . getRule ( ) ; } public MappingItemElements getMappingItemAccess ( ) { return ( pMappingItem != null ) ? pMappingItem : ( pMappingItem = new MappingItemElements ( ) ) ; } public ParserRule getMappingItemRule ( ) { return getMappingItemAccess ( ) . getRule ( ) ; } public MappingColumnElements getMappingColumnAccess ( ) { return ( pMappingColumn != null ) ? pMappingColumn : ( pMappingColumn = new MappingColumnElements ( ) ) ; } public ParserRule getMappingColumnRule ( ) { return getMappingColumnAccess ( ) . getRule ( ) ; } public OptionalFeatureElements getOptionalFeatureAccess ( ) { return ( pOptionalFeature != null ) ? pOptionalFeature : ( pOptionalFeature = new OptionalFeatureElements ( ) ) ; } public ParserRule getOptionalFeatureRule ( ) { return getOptionalFeatureAccess ( ) . getRule ( ) ; } public TerminalRule getON_OFFRule ( ) { return ( tON_OFF != null ) ? tON_OFF : ( tON_OFF = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getSTATEMEN_TYPERule ( ) { return ( tSTATEMEN_TYPE != null ) ? tSTATEMEN_TYPE : ( tSTATEMEN_TYPE = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getMAPPING_TYPERule ( ) { return ( tMAPPING_TYPE != null ) ? tMAPPING_TYPE : ( tMAPPING_TYPE = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getOPTION_TYPERule ( ) { return ( tOPTION_TYPE != null ) ? tOPTION_TYPE : ( tOPTION_TYPE = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getIDENT_DOTRule ( ) { return ( tIDENT_DOT != null ) ? tIDENT_DOT : ( tIDENT_DOT = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getIDENTRule ( ) { return ( tIDENT != null ) ? tIDENT : ( tIDENT = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getNUMBERRule ( ) { return ( tNUMBER != null ) ? tNUMBER : ( tNUMBER = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getESC_CHARRule ( ) { return ( tESC_CHAR != null ) ? tESC_CHAR : ( tESC_CHAR = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getML_COMMENTRule ( ) { return ( tML_COMMENT != null ) ? tML_COMMENT : ( tML_COMMENT = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getSL_COMMENTRule ( ) { return ( tSL_COMMENT != null ) ? tSL_COMMENT : ( tSL_COMMENT = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getWSRule ( ) { return ( tWS != null ) ? tWS : ( tWS = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getANDRule ( ) { return ( tAND != null ) ? tAND : ( tAND = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getORRule ( ) { return ( tOR != null ) ? tOR : ( tOR = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getCOLONRule ( ) { return ( tCOLON != null ) ? tCOLON : ( tCOLON = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getSEMICOLONRule ( ) { return ( tSEMICOLON != null ) ? tSEMICOLON : ( tSEMICOLON = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getSTRINGRule ( ) { return ( tSTRING != null ) ? tSTRING : ( tSTRING = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getCOMMARule ( ) { return ( tCOMMA != null ) ? tCOMMA : ( tCOMMA = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getMINUSRule ( ) { return ( tMINUS != null ) ? tMINUS : ( tMINUS = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getPLUSRule ( ) { return ( tPLUS != null ) ? tPLUS : ( tPLUS = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getLPARENRule ( ) { return ( tLPAREN != null ) ? tLPAREN : ( tLPAREN = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getRPARENRule ( ) { return ( tRPAREN != null ) ? tRPAREN : ( tRPAREN = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getLBRACERule ( ) { return ( tLBRACE != null ) ? tLBRACE : ( tLBRACE = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getRBRACERule ( ) { return ( tRBRACE != null ) ? tRBRACE : ( tRBRACE = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getQUESTIRule ( ) { return ( tQUESTI != null ) ? tQUESTI : ( tQUESTI = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getNOTRule ( ) { return ( tNOT != null ) ? tNOT : ( tNOT = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getBANDRule ( ) { return ( tBAND != null ) ? tBAND : ( tBAND = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getBORRule ( ) { return ( tBOR != null ) ? tBOR : ( tBOR = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getHASHRule ( ) { return ( tHASH != null ) ? tHASH : ( tHASH = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getATRule ( ) { return ( tAT != null ) ? tAT : ( tAT = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getCARETRule ( ) { return ( tCARET != null ) ? tCARET : ( tCARET = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getEQUALSRule ( ) { return ( tEQUALS != null ) ? tEQUALS : ( tEQUALS = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getLESS_THANRule ( ) { return ( tLESS_THAN != null ) ? tLESS_THAN : ( tLESS_THAN = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getMORE_THANRule ( ) { return ( tMORE_THAN != null ) ? tMORE_THAN : ( tMORE_THAN = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getPERCENTRule ( ) { return ( tPERCENT != null ) ? tPERCENT : ( tPERCENT = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public TerminalRule getRESTRule ( ) { return ( tREST != null ) ? tREST : ( tREST = ( TerminalRule ) GrammarUtil . findRuleForName ( getGrammar ( ) , "<STR_LIT>" ) ) ; } public FeatureValueElements getFeatureValueAccess ( ) { return ( pFeatureValue != null ) ? pFeatureValue : ( pFeatureValue = new FeatureValueElements ( ) ) ; } public ParserRule getFeatureValueRule ( ) { return getFeatureValueAccess ( ) . getRule ( ) ; } public PojoTypeElements getPojoTypeAccess ( ) { return ( pPojoType != null ) ? pPojoType : ( pPojoType = new PojoTypeElements ( ) ) ; } public ParserRule getPojoTypeRule ( ) { return getPojoTypeAccess ( ) . getRule ( ) ; } public PackageDeclarationElements getPackageDeclarationAccess ( ) { return ( pPackageDeclaration != null ) ? pPackageDeclaration : ( pPackageDeclaration = new PackageDeclarationElements ( ) ) ; } public ParserRule getPackageDeclarationRule ( ) { return getPackageDeclarationAccess ( ) . getRule ( ) ; } public AbstractPojoEntityElements getAbstractPojoEntityAccess ( ) { return ( pAbstractPojoEntity != null ) ? pAbstractPojoEntity : ( pAbstractPojoEntity = new AbstractPojoEntityElements ( ) ) ; } public ParserRule getAbstractPojoEntityRule ( ) { return getAbstractPojoEntityAccess ( ) . getRule ( ) ; } public ImportElements getImportAccess ( ) { return ( pImport != null ) ? pImport : ( pImport = new ImportElements ( ) ) ; } public ParserRule getImportRule ( ) { return getImportAccess ( ) . getRule ( ) ; } public ImplementsElements getImplementsAccess ( ) { return ( pImplements != null ) ? pImplements : ( pImplements = new ImplementsElements ( ) ) ; } public ParserRule getImplementsRule ( ) { return getImplementsAccess ( ) . getRule ( ) ; } public ExtendsElements getExtendsAccess ( ) { return ( pExtends != null ) ? pExtends : ( pExtends = new ExtendsElements ( ) ) ; } public ParserRule getExtendsRule ( ) { return getExtendsAccess ( ) . getRule ( ) ; } public PojoEntityModifier1Elements getPojoEntityModifier1Access ( ) { return ( pPojoEntityModifier1 != null ) ? pPojoEntityModifier1 : ( pPojoEntityModifier1 = new PojoEntityModifier1Elements ( ) ) ; } public ParserRule getPojoEntityModifier1Rule ( ) { return getPojoEntityModifier1Access ( ) . getRule ( ) ; } public PojoEntityModifier2Elements getPojoEntityModifier2Access ( ) { return ( pPojoEntityModifier2 != null ) ? pPojoEntityModifier2 : ( pPojoEntityModifier2 = new PojoEntityModifier2Elements ( ) ) ; } public ParserRule getPojoEntityModifier2Rule ( ) { return getPojoEntityModifier2Access ( ) . getRule ( ) ; } public PojoEntityElements getPojoEntityAccess ( ) { return ( pPojoEntity != null ) ? pPojoEntity : ( pPojoEntity = new PojoEntityElements ( ) ) ; } public ParserRule getPojoEntityRule ( ) { return getPojoEntityAccess ( ) . getRule ( ) ; } public PojoPropertyModifierElements getPojoPropertyModifierAccess ( ) { return ( pPojoPropertyModifier != null ) ? pPojoPropertyModifier : ( pPojoPropertyModifier = new PojoPropertyModifierElements ( ) ) ; } public ParserRule getPojoPropertyModifierRule ( ) { return getPojoPropertyModifierAccess ( ) . getRule ( ) ; } public PojoPropertyElements getPojoPropertyAccess ( ) { return ( pPojoProperty != null ) ? pPojoProperty : ( pPojoProperty = new PojoPropertyElements ( ) ) ; } public ParserRule getPojoPropertyRule ( ) { return getPojoPropertyAccess ( ) . getRule ( ) ; } public QualifiedNameWithWildcardElements getQualifiedNameWithWildcardAccess ( ) { return ( pQualifiedNameWithWildcard != null ) ? pQualifiedNameWithWildcard : ( pQualifiedNameWithWildcard = new QualifiedNameWithWildcardElements ( ) ) ; } public ParserRule getQualifiedNameWithWildcardRule ( ) { return getQualifiedNameWithWildcardAccess ( ) . getRule ( ) ; } public QualifiedNameElements getQualifiedNameAccess ( ) { return ( pQualifiedName != null ) ? pQualifiedName : ( pQualifiedName = new QualifiedNameElements ( ) ) ; } public ParserRule getQualifiedNameRule ( ) { return getQualifiedNameAccess ( ) . getRule ( ) ; } } </s> |
<s> package org . sqlproc . dsl . parser . antlr . internal ; import org . eclipse . xtext . parser . antlr . Lexer ; import org . antlr . runtime . * ; import java . util . Stack ; import java . util . List ; import java . util . ArrayList ; @ SuppressWarnings ( "<STR_LIT:all>" ) public class InternalProcessorDslLexer extends Lexer { public static final int RULE_PERCENT = <NUM_LIT> ; public static final int RULE_OR = <NUM_LIT:31> ; public static final int RULE_AND = <NUM_LIT:30> ; public static final int EOF = - <NUM_LIT:1> ; public static final int T__93 = <NUM_LIT> ; public static final int T__94 = <NUM_LIT> ; public static final int T__91 = <NUM_LIT> ; public static final int T__92 = <NUM_LIT> ; public static final int RULE_REST = <NUM_LIT:10> ; public static final int T__90 = <NUM_LIT> ; public static final int RULE_LPAREN = <NUM_LIT:6> ; public static final int RULE_IDENT_DOT = <NUM_LIT:11> ; public static final int T__99 = <NUM_LIT> ; public static final int T__98 = <NUM_LIT> ; public static final int T__97 = <NUM_LIT> ; public static final int T__96 = <NUM_LIT> ; public static final int T__95 = <NUM_LIT> ; public static final int RULE_BAND = <NUM_LIT> ; public static final int T__80 = <NUM_LIT> ; public static final int RULE_RBRACE = <NUM_LIT> ; public static final int T__81 = <NUM_LIT> ; public static final int T__82 = <NUM_LIT> ; public static final int T__83 = <NUM_LIT> ; public static final int RULE_HASH = <NUM_LIT> ; public static final int RULE_COMMA = <NUM_LIT> ; public static final int T__85 = <NUM_LIT> ; public static final int RULE_QUESTI = <NUM_LIT> ; public static final int T__84 = <NUM_LIT> ; public static final int T__87 = <NUM_LIT> ; public static final int T__86 = <NUM_LIT> ; public static final int T__89 = <NUM_LIT> ; public static final int T__88 = <NUM_LIT> ; public static final int RULE_ML_COMMENT = <NUM_LIT> ; public static final int RULE_ON_OFF = <NUM_LIT> ; public static final int RULE_MINUS = <NUM_LIT:15> ; public static final int RULE_STRING = <NUM_LIT> ; public static final int T__71 = <NUM_LIT> ; public static final int T__72 = <NUM_LIT> ; public static final int T__70 = <NUM_LIT> ; public static final int RULE_IDENT = <NUM_LIT:5> ; public static final int RULE_RPAREN = <NUM_LIT:8> ; public static final int T__76 = <NUM_LIT> ; public static final int T__75 = <NUM_LIT> ; public static final int T__74 = <NUM_LIT> ; public static final int T__73 = <NUM_LIT> ; public static final int T__79 = <NUM_LIT> ; public static final int RULE_AT = <NUM_LIT:24> ; public static final int T__78 = <NUM_LIT> ; public static final int T__77 = <NUM_LIT> ; public static final int T__68 = <NUM_LIT> ; public static final int T__69 = <NUM_LIT> ; public static final int T__66 = <NUM_LIT> ; public static final int T__67 = <NUM_LIT> ; public static final int T__64 = <NUM_LIT> ; public static final int T__65 = <NUM_LIT> ; public static final int T__62 = <NUM_LIT> ; public static final int T__63 = <NUM_LIT> ; public static final int RULE_SEMICOLON = <NUM_LIT:9> ; public static final int RULE_OPTION_TYPE = <NUM_LIT> ; public static final int T__61 = <NUM_LIT> ; public static final int T__60 = <NUM_LIT> ; public static final int RULE_NOT = <NUM_LIT:20> ; public static final int T__55 = <NUM_LIT> ; public static final int T__56 = <NUM_LIT> ; public static final int T__57 = <NUM_LIT> ; public static final int T__58 = <NUM_LIT> ; public static final int T__51 = <NUM_LIT> ; public static final int T__52 = <NUM_LIT> ; public static final int T__53 = <NUM_LIT> ; public static final int T__54 = <NUM_LIT> ; public static final int RULE_NUMBER = <NUM_LIT:7> ; public static final int T__59 = <NUM_LIT> ; public static final int T__103 = <NUM_LIT> ; public static final int T__104 = <NUM_LIT> ; public static final int T__105 = <NUM_LIT> ; public static final int T__106 = <NUM_LIT> ; public static final int RULE_LBRACE = <NUM_LIT> ; public static final int RULE_BOR = <NUM_LIT> ; public static final int T__50 = <NUM_LIT> ; public static final int T__42 = <NUM_LIT> ; public static final int T__43 = <NUM_LIT> ; public static final int T__40 = <NUM_LIT> ; public static final int T__41 = <NUM_LIT> ; public static final int T__46 = <NUM_LIT> ; public static final int T__47 = <NUM_LIT> ; public static final int T__44 = <NUM_LIT> ; public static final int T__45 = <NUM_LIT> ; public static final int RULE_CARET = <NUM_LIT> ; public static final int T__48 = <NUM_LIT> ; public static final int T__49 = <NUM_LIT> ; public static final int RULE_MORE_THAN = <NUM_LIT> ; public static final int RULE_PLUS = <NUM_LIT:16> ; public static final int RULE_STATEMEN_TYPE = <NUM_LIT> ; public static final int T__102 = <NUM_LIT> ; public static final int T__101 = <NUM_LIT> ; public static final int T__100 = <NUM_LIT:100> ; public static final int RULE_SL_COMMENT = <NUM_LIT> ; public static final int RULE_COLON = <NUM_LIT:12> ; public static final int RULE_ESC_CHAR = <NUM_LIT:32> ; public static final int T__39 = <NUM_LIT> ; public static final int RULE_EQUALS = <NUM_LIT> ; public static final int RULE_WS = <NUM_LIT:4> ; public static final int RULE_LESS_THAN = <NUM_LIT> ; public static final int RULE_MAPPING_TYPE = <NUM_LIT> ; public InternalProcessorDslLexer ( ) { ; } public InternalProcessorDslLexer ( CharStream input ) { this ( input , new RecognizerSharedState ( ) ) ; } public InternalProcessorDslLexer ( CharStream input , RecognizerSharedState state ) { super ( input , state ) ; } public String getGrammarFileName ( ) { return "<STR_LIT>" ; } public final void mT__39 ( ) throws RecognitionException { try { int _type = T__39 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__40 ( ) throws RecognitionException { try { int _type = T__40 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__41 ( ) throws RecognitionException { try { int _type = T__41 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__42 ( ) throws RecognitionException { try { int _type = T__42 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__43 ( ) throws RecognitionException { try { int _type = T__43 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__44 ( ) throws RecognitionException { try { int _type = T__44 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__45 ( ) throws RecognitionException { try { int _type = T__45 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__46 ( ) throws RecognitionException { try { int _type = T__46 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__47 ( ) throws RecognitionException { try { int _type = T__47 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__48 ( ) throws RecognitionException { try { int _type = T__48 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__49 ( ) throws RecognitionException { try { int _type = T__49 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__50 ( ) throws RecognitionException { try { int _type = T__50 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__51 ( ) throws RecognitionException { try { int _type = T__51 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__52 ( ) throws RecognitionException { try { int _type = T__52 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__53 ( ) throws RecognitionException { try { int _type = T__53 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__54 ( ) throws RecognitionException { try { int _type = T__54 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__55 ( ) throws RecognitionException { try { int _type = T__55 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__56 ( ) throws RecognitionException { try { int _type = T__56 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__57 ( ) throws RecognitionException { try { int _type = T__57 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__58 ( ) throws RecognitionException { try { int _type = T__58 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__59 ( ) throws RecognitionException { try { int _type = T__59 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__60 ( ) throws RecognitionException { try { int _type = T__60 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__61 ( ) throws RecognitionException { try { int _type = T__61 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__62 ( ) throws RecognitionException { try { int _type = T__62 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__63 ( ) throws RecognitionException { try { int _type = T__63 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__64 ( ) throws RecognitionException { try { int _type = T__64 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__65 ( ) throws RecognitionException { try { int _type = T__65 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__66 ( ) throws RecognitionException { try { int _type = T__66 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__67 ( ) throws RecognitionException { try { int _type = T__67 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__68 ( ) throws RecognitionException { try { int _type = T__68 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__69 ( ) throws RecognitionException { try { int _type = T__69 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__70 ( ) throws RecognitionException { try { int _type = T__70 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__71 ( ) throws RecognitionException { try { int _type = T__71 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__72 ( ) throws RecognitionException { try { int _type = T__72 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__73 ( ) throws RecognitionException { try { int _type = T__73 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__74 ( ) throws RecognitionException { try { int _type = T__74 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__75 ( ) throws RecognitionException { try { int _type = T__75 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__76 ( ) throws RecognitionException { try { int _type = T__76 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__77 ( ) throws RecognitionException { try { int _type = T__77 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__78 ( ) throws RecognitionException { try { int _type = T__78 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__79 ( ) throws RecognitionException { try { int _type = T__79 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__80 ( ) throws RecognitionException { try { int _type = T__80 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__81 ( ) throws RecognitionException { try { int _type = T__81 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__82 ( ) throws RecognitionException { try { int _type = T__82 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__83 ( ) throws RecognitionException { try { int _type = T__83 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__84 ( ) throws RecognitionException { try { int _type = T__84 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__85 ( ) throws RecognitionException { try { int _type = T__85 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__86 ( ) throws RecognitionException { try { int _type = T__86 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__87 ( ) throws RecognitionException { try { int _type = T__87 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__88 ( ) throws RecognitionException { try { int _type = T__88 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__89 ( ) throws RecognitionException { try { int _type = T__89 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__90 ( ) throws RecognitionException { try { int _type = T__90 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__91 ( ) throws RecognitionException { try { int _type = T__91 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__92 ( ) throws RecognitionException { try { int _type = T__92 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__93 ( ) throws RecognitionException { try { int _type = T__93 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__94 ( ) throws RecognitionException { try { int _type = T__94 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT:[]>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__95 ( ) throws RecognitionException { try { int _type = T__95 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__96 ( ) throws RecognitionException { try { int _type = T__96 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__97 ( ) throws RecognitionException { try { int _type = T__97 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__98 ( ) throws RecognitionException { try { int _type = T__98 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__99 ( ) throws RecognitionException { try { int _type = T__99 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__100 ( ) throws RecognitionException { try { int _type = T__100 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__101 ( ) throws RecognitionException { try { int _type = T__101 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__102 ( ) throws RecognitionException { try { int _type = T__102 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__103 ( ) throws RecognitionException { try { int _type = T__103 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__104 ( ) throws RecognitionException { try { int _type = T__104 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__105 ( ) throws RecognitionException { try { int _type = T__105 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mT__106 ( ) throws RecognitionException { try { int _type = T__106 ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_ON_OFF ( ) throws RecognitionException { try { int _type = RULE_ON_OFF ; int _channel = DEFAULT_TOKEN_CHANNEL ; { int alt1 = <NUM_LIT:2> ; int LA1_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA1_0 == '<CHAR_LIT>' ) ) { int LA1_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA1_1 == '<CHAR_LIT>' ) ) { alt1 = <NUM_LIT:1> ; } else if ( ( LA1_1 == '<CHAR_LIT>' ) ) { alt1 = <NUM_LIT:2> ; } else { NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:1> , <NUM_LIT:1> , input ) ; throw nvae ; } } else { NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:1> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt1 ) { case <NUM_LIT:1> : { match ( "<STR_LIT>" ) ; } break ; case <NUM_LIT:2> : { match ( "<STR_LIT>" ) ; } break ; } } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_STATEMEN_TYPE ( ) throws RecognitionException { try { int _type = RULE_STATEMEN_TYPE ; int _channel = DEFAULT_TOKEN_CHANNEL ; { int alt2 = <NUM_LIT:3> ; int LA2_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA2_0 == '<CHAR_LIT>' ) ) { alt2 = <NUM_LIT:1> ; } else if ( ( LA2_0 == '<CHAR_LIT>' ) ) { int LA2_2 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA2_2 == '<CHAR_LIT>' ) ) { alt2 = <NUM_LIT:2> ; } else if ( ( LA2_2 == '<CHAR_LIT:A>' ) ) { alt2 = <NUM_LIT:3> ; } else { NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:2> , <NUM_LIT:2> , input ) ; throw nvae ; } } else { NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:2> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt2 ) { case <NUM_LIT:1> : { match ( "<STR_LIT>" ) ; } break ; case <NUM_LIT:2> : { match ( "<STR_LIT>" ) ; } break ; case <NUM_LIT:3> : { match ( "<STR_LIT>" ) ; } break ; } } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_MAPPING_TYPE ( ) throws RecognitionException { try { int _type = RULE_MAPPING_TYPE ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_OPTION_TYPE ( ) throws RecognitionException { try { int _type = RULE_OPTION_TYPE ; int _channel = DEFAULT_TOKEN_CHANNEL ; { int alt3 = <NUM_LIT:5> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case '<CHAR_LIT>' : { alt3 = <NUM_LIT:1> ; } break ; case '<CHAR_LIT>' : { alt3 = <NUM_LIT:2> ; } break ; case '<CHAR_LIT>' : { alt3 = <NUM_LIT:3> ; } break ; case '<CHAR_LIT>' : { alt3 = <NUM_LIT:4> ; } break ; case '<CHAR_LIT>' : { alt3 = <NUM_LIT:5> ; } break ; default : NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT:3> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt3 ) { case <NUM_LIT:1> : { match ( "<STR_LIT>" ) ; } break ; case <NUM_LIT:2> : { match ( "<STR_LIT>" ) ; } break ; case <NUM_LIT:3> : { match ( "<STR_LIT>" ) ; } break ; case <NUM_LIT:4> : { match ( "<STR_LIT>" ) ; } break ; case <NUM_LIT:5> : { match ( "<STR_LIT>" ) ; } break ; } } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_IDENT_DOT ( ) throws RecognitionException { try { int _type = RULE_IDENT_DOT ; int _channel = DEFAULT_TOKEN_CHANNEL ; { mRULE_IDENT ( ) ; int cnt4 = <NUM_LIT:0> ; loop4 : do { int alt4 = <NUM_LIT:2> ; int LA4_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA4_0 == '<CHAR_LIT:.>' ) ) { alt4 = <NUM_LIT:1> ; } switch ( alt4 ) { case <NUM_LIT:1> : { match ( '<CHAR_LIT:.>' ) ; mRULE_IDENT ( ) ; } break ; default : if ( cnt4 >= <NUM_LIT:1> ) break loop4 ; EarlyExitException eee = new EarlyExitException ( <NUM_LIT:4> , input ) ; throw eee ; } cnt4 ++ ; } while ( true ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_IDENT ( ) throws RecognitionException { try { int _type = RULE_IDENT ; int _channel = DEFAULT_TOKEN_CHANNEL ; { if ( ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT:A>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT:Z>' ) || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT:a>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT>' ) ) { input . consume ( ) ; } else { MismatchedSetException mse = new MismatchedSetException ( null , input ) ; recover ( mse ) ; throw mse ; } loop5 : do { int alt5 = <NUM_LIT:2> ; int LA5_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA5_0 >= '<CHAR_LIT:0>' && LA5_0 <= '<CHAR_LIT:9>' ) || LA5_0 == '<CHAR_LIT:=>' || ( LA5_0 >= '<CHAR_LIT:A>' && LA5_0 <= '<CHAR_LIT:Z>' ) || LA5_0 == '<CHAR_LIT:_>' || ( LA5_0 >= '<CHAR_LIT:a>' && LA5_0 <= '<CHAR_LIT>' ) ) ) { alt5 = <NUM_LIT:1> ; } switch ( alt5 ) { case <NUM_LIT:1> : { if ( ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT:0>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT:9>' ) || input . LA ( <NUM_LIT:1> ) == '<CHAR_LIT:=>' || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT:A>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT:Z>' ) || input . LA ( <NUM_LIT:1> ) == '<CHAR_LIT:_>' || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT:a>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT>' ) ) { input . consume ( ) ; } else { MismatchedSetException mse = new MismatchedSetException ( null , input ) ; recover ( mse ) ; throw mse ; } } break ; default : break loop5 ; } } while ( true ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_NUMBER ( ) throws RecognitionException { try { int _type = RULE_NUMBER ; int _channel = DEFAULT_TOKEN_CHANNEL ; { int cnt6 = <NUM_LIT:0> ; loop6 : do { int alt6 = <NUM_LIT:2> ; int LA6_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA6_0 >= '<CHAR_LIT:0>' && LA6_0 <= '<CHAR_LIT:9>' ) ) ) { alt6 = <NUM_LIT:1> ; } switch ( alt6 ) { case <NUM_LIT:1> : { matchRange ( '<CHAR_LIT:0>' , '<CHAR_LIT:9>' ) ; } break ; default : if ( cnt6 >= <NUM_LIT:1> ) break loop6 ; EarlyExitException eee = new EarlyExitException ( <NUM_LIT:6> , input ) ; throw eee ; } cnt6 ++ ; } while ( true ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_ESC_CHAR ( ) throws RecognitionException { try { int _type = RULE_ESC_CHAR ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<STR_LIT:\\>' ) ; if ( ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT>' ) || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT:.>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT:/>' ) || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT::>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT:;>' ) || input . LA ( <NUM_LIT:1> ) == '<CHAR_LIT>' || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT:}>' ) ) { input . consume ( ) ; } else { MismatchedSetException mse = new MismatchedSetException ( null , input ) ; recover ( mse ) ; throw mse ; } } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_ML_COMMENT ( ) throws RecognitionException { try { int _type = RULE_ML_COMMENT ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; loop7 : do { int alt7 = <NUM_LIT:2> ; int LA7_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA7_0 == '<CHAR_LIT>' ) ) { int LA7_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA7_1 == '<CHAR_LIT:/>' ) ) { alt7 = <NUM_LIT:2> ; } else if ( ( ( LA7_1 >= '<CHAR_LIT>' && LA7_1 <= '<CHAR_LIT:.>' ) || ( LA7_1 >= '<CHAR_LIT:0>' && LA7_1 <= '<STR_LIT>' ) ) ) { alt7 = <NUM_LIT:1> ; } } else if ( ( ( LA7_0 >= '<CHAR_LIT>' && LA7_0 <= '<CHAR_LIT:)>' ) || ( LA7_0 >= '<CHAR_LIT>' && LA7_0 <= '<STR_LIT>' ) ) ) { alt7 = <NUM_LIT:1> ; } switch ( alt7 ) { case <NUM_LIT:1> : { matchAny ( ) ; } break ; default : break loop7 ; } } while ( true ) ; match ( "<STR_LIT>" ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_SL_COMMENT ( ) throws RecognitionException { try { int _type = RULE_SL_COMMENT ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( "<STR_LIT>" ) ; loop8 : do { int alt8 = <NUM_LIT:2> ; int LA8_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA8_0 >= '<CHAR_LIT>' && LA8_0 <= '<STR_LIT:\t>' ) || ( LA8_0 >= '<CHAR_LIT>' && LA8_0 <= '<STR_LIT>' ) || ( LA8_0 >= '<CHAR_LIT>' && LA8_0 <= '<STR_LIT>' ) ) ) { alt8 = <NUM_LIT:1> ; } switch ( alt8 ) { case <NUM_LIT:1> : { if ( ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT>' && input . LA ( <NUM_LIT:1> ) <= '<STR_LIT:\t>' ) || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT>' && input . LA ( <NUM_LIT:1> ) <= '<STR_LIT>' ) || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT>' && input . LA ( <NUM_LIT:1> ) <= '<STR_LIT>' ) ) { input . consume ( ) ; } else { MismatchedSetException mse = new MismatchedSetException ( null , input ) ; recover ( mse ) ; throw mse ; } } break ; default : break loop8 ; } } while ( true ) ; int alt10 = <NUM_LIT:2> ; int LA10_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA10_0 == '<STR_LIT:\n>' || LA10_0 == '<STR_LIT>' ) ) { alt10 = <NUM_LIT:1> ; } switch ( alt10 ) { case <NUM_LIT:1> : { int alt9 = <NUM_LIT:2> ; int LA9_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA9_0 == '<STR_LIT>' ) ) { alt9 = <NUM_LIT:1> ; } switch ( alt9 ) { case <NUM_LIT:1> : { match ( '<STR_LIT>' ) ; } break ; } match ( '<STR_LIT:\n>' ) ; } break ; } } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_WS ( ) throws RecognitionException { try { int _type = RULE_WS ; int _channel = DEFAULT_TOKEN_CHANNEL ; { int cnt11 = <NUM_LIT:0> ; loop11 : do { int alt11 = <NUM_LIT:2> ; int LA11_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA11_0 >= '<STR_LIT:\t>' && LA11_0 <= '<STR_LIT:\n>' ) || LA11_0 == '<STR_LIT>' || LA11_0 == '<CHAR_LIT:U+0020>' ) ) { alt11 = <NUM_LIT:1> ; } switch ( alt11 ) { case <NUM_LIT:1> : { if ( ( input . LA ( <NUM_LIT:1> ) >= '<STR_LIT:\t>' && input . LA ( <NUM_LIT:1> ) <= '<STR_LIT:\n>' ) || input . LA ( <NUM_LIT:1> ) == '<STR_LIT>' || input . LA ( <NUM_LIT:1> ) == '<CHAR_LIT:U+0020>' ) { input . consume ( ) ; } else { MismatchedSetException mse = new MismatchedSetException ( null , input ) ; recover ( mse ) ; throw mse ; } } break ; default : if ( cnt11 >= <NUM_LIT:1> ) break loop11 ; EarlyExitException eee = new EarlyExitException ( <NUM_LIT:11> , input ) ; throw eee ; } cnt11 ++ ; } while ( true ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_AND ( ) throws RecognitionException { try { int _type = RULE_AND ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_OR ( ) throws RecognitionException { try { int _type = RULE_OR ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_COLON ( ) throws RecognitionException { try { int _type = RULE_COLON ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT::>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_SEMICOLON ( ) throws RecognitionException { try { int _type = RULE_SEMICOLON ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:;>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_STRING ( ) throws RecognitionException { try { int _type = RULE_STRING ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_COMMA ( ) throws RecognitionException { try { int _type = RULE_COMMA ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:U+002C>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_MINUS ( ) throws RecognitionException { try { int _type = RULE_MINUS ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:->' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_PLUS ( ) throws RecognitionException { try { int _type = RULE_PLUS ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_LPAREN ( ) throws RecognitionException { try { int _type = RULE_LPAREN ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:(>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_RPAREN ( ) throws RecognitionException { try { int _type = RULE_RPAREN ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:)>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_LBRACE ( ) throws RecognitionException { try { int _type = RULE_LBRACE ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_RBRACE ( ) throws RecognitionException { try { int _type = RULE_RBRACE ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:}>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_QUESTI ( ) throws RecognitionException { try { int _type = RULE_QUESTI ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_NOT ( ) throws RecognitionException { try { int _type = RULE_NOT ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_BAND ( ) throws RecognitionException { try { int _type = RULE_BAND ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_BOR ( ) throws RecognitionException { try { int _type = RULE_BOR ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_HASH ( ) throws RecognitionException { try { int _type = RULE_HASH ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_AT ( ) throws RecognitionException { try { int _type = RULE_AT ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_CARET ( ) throws RecognitionException { try { int _type = RULE_CARET ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_EQUALS ( ) throws RecognitionException { try { int _type = RULE_EQUALS ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:=>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_LESS_THAN ( ) throws RecognitionException { try { int _type = RULE_LESS_THAN ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_MORE_THAN ( ) throws RecognitionException { try { int _type = RULE_MORE_THAN ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT:>>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_PERCENT ( ) throws RecognitionException { try { int _type = RULE_PERCENT ; int _channel = DEFAULT_TOKEN_CHANNEL ; { match ( '<CHAR_LIT>' ) ; } state . type = _type ; state . channel = _channel ; } finally { } } public final void mRULE_REST ( ) throws RecognitionException { try { int _type = RULE_REST ; int _channel = DEFAULT_TOKEN_CHANNEL ; { if ( ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT>' && input . LA ( <NUM_LIT:1> ) <= '<CHAR_LIT::>' ) || ( input . LA ( <NUM_LIT:1> ) >= '<CHAR_LIT>' && input . LA ( <NUM_LIT:1> ) <= '<STR_LIT>' ) ) { input . consume ( ) ; } else { MismatchedSetException mse = new MismatchedSetException ( null , input ) ; recover ( mse ) ; throw mse ; } } state . type = _type ; state . channel = _channel ; } finally { } } public void mTokens ( ) throws RecognitionException { int alt12 = <NUM_LIT> ; alt12 = dfa12 . predict ( input ) ; switch ( alt12 ) { case <NUM_LIT:1> : { mT__39 ( ) ; } break ; case <NUM_LIT:2> : { mT__40 ( ) ; } break ; case <NUM_LIT:3> : { mT__41 ( ) ; } break ; case <NUM_LIT:4> : { mT__42 ( ) ; } break ; case <NUM_LIT:5> : { mT__43 ( ) ; } break ; case <NUM_LIT:6> : { mT__44 ( ) ; } break ; case <NUM_LIT:7> : { mT__45 ( ) ; } break ; case <NUM_LIT:8> : { mT__46 ( ) ; } break ; case <NUM_LIT:9> : { mT__47 ( ) ; } break ; case <NUM_LIT:10> : { mT__48 ( ) ; } break ; case <NUM_LIT:11> : { mT__49 ( ) ; } break ; case <NUM_LIT:12> : { mT__50 ( ) ; } break ; case <NUM_LIT> : { mT__51 ( ) ; } break ; case <NUM_LIT> : { mT__52 ( ) ; } break ; case <NUM_LIT:15> : { mT__53 ( ) ; } break ; case <NUM_LIT:16> : { mT__54 ( ) ; } break ; case <NUM_LIT> : { mT__55 ( ) ; } break ; case <NUM_LIT> : { mT__56 ( ) ; } break ; case <NUM_LIT> : { mT__57 ( ) ; } break ; case <NUM_LIT:20> : { mT__58 ( ) ; } break ; case <NUM_LIT> : { mT__59 ( ) ; } break ; case <NUM_LIT> : { mT__60 ( ) ; } break ; case <NUM_LIT> : { mT__61 ( ) ; } break ; case <NUM_LIT:24> : { mT__62 ( ) ; } break ; case <NUM_LIT> : { mT__63 ( ) ; } break ; case <NUM_LIT> : { mT__64 ( ) ; } break ; case <NUM_LIT> : { mT__65 ( ) ; } break ; case <NUM_LIT> : { mT__66 ( ) ; } break ; case <NUM_LIT> : { mT__67 ( ) ; } break ; case <NUM_LIT:30> : { mT__68 ( ) ; } break ; case <NUM_LIT:31> : { mT__69 ( ) ; } break ; case <NUM_LIT:32> : { mT__70 ( ) ; } break ; case <NUM_LIT> : { mT__71 ( ) ; } break ; case <NUM_LIT> : { mT__72 ( ) ; } break ; case <NUM_LIT> : { mT__73 ( ) ; } break ; case <NUM_LIT> : { mT__74 ( ) ; } break ; case <NUM_LIT> : { mT__75 ( ) ; } break ; case <NUM_LIT> : { mT__76 ( ) ; } break ; case <NUM_LIT> : { mT__77 ( ) ; } break ; case <NUM_LIT> : { mT__78 ( ) ; } break ; case <NUM_LIT> : { mT__79 ( ) ; } break ; case <NUM_LIT> : { mT__80 ( ) ; } break ; case <NUM_LIT> : { mT__81 ( ) ; } break ; case <NUM_LIT> : { mT__82 ( ) ; } break ; case <NUM_LIT> : { mT__83 ( ) ; } break ; case <NUM_LIT> : { mT__84 ( ) ; } break ; case <NUM_LIT> : { mT__85 ( ) ; } break ; case <NUM_LIT> : { mT__86 ( ) ; } break ; case <NUM_LIT> : { mT__87 ( ) ; } break ; case <NUM_LIT> : { mT__88 ( ) ; } break ; case <NUM_LIT> : { mT__89 ( ) ; } break ; case <NUM_LIT> : { mT__90 ( ) ; } break ; case <NUM_LIT> : { mT__91 ( ) ; } break ; case <NUM_LIT> : { mT__92 ( ) ; } break ; case <NUM_LIT> : { mT__93 ( ) ; } break ; case <NUM_LIT> : { mT__94 ( ) ; } break ; case <NUM_LIT> : { mT__95 ( ) ; } break ; case <NUM_LIT> : { mT__96 ( ) ; } break ; case <NUM_LIT> : { mT__97 ( ) ; } break ; case <NUM_LIT> : { mT__98 ( ) ; } break ; case <NUM_LIT> : { mT__99 ( ) ; } break ; case <NUM_LIT> : { mT__100 ( ) ; } break ; case <NUM_LIT> : { mT__101 ( ) ; } break ; case <NUM_LIT> : { mT__102 ( ) ; } break ; case <NUM_LIT> : { mT__103 ( ) ; } break ; case <NUM_LIT> : { mT__104 ( ) ; } break ; case <NUM_LIT> : { mT__105 ( ) ; } break ; case <NUM_LIT> : { mT__106 ( ) ; } break ; case <NUM_LIT> : { mRULE_ON_OFF ( ) ; } break ; case <NUM_LIT> : { mRULE_STATEMEN_TYPE ( ) ; } break ; case <NUM_LIT> : { mRULE_MAPPING_TYPE ( ) ; } break ; case <NUM_LIT> : { mRULE_OPTION_TYPE ( ) ; } break ; case <NUM_LIT> : { mRULE_IDENT_DOT ( ) ; } break ; case <NUM_LIT> : { mRULE_IDENT ( ) ; } break ; case <NUM_LIT> : { mRULE_NUMBER ( ) ; } break ; case <NUM_LIT> : { mRULE_ESC_CHAR ( ) ; } break ; case <NUM_LIT> : { mRULE_ML_COMMENT ( ) ; } break ; case <NUM_LIT> : { mRULE_SL_COMMENT ( ) ; } break ; case <NUM_LIT> : { mRULE_WS ( ) ; } break ; case <NUM_LIT> : { mRULE_AND ( ) ; } break ; case <NUM_LIT> : { mRULE_OR ( ) ; } break ; case <NUM_LIT> : { mRULE_COLON ( ) ; } break ; case <NUM_LIT> : { mRULE_SEMICOLON ( ) ; } break ; case <NUM_LIT> : { mRULE_STRING ( ) ; } break ; case <NUM_LIT> : { mRULE_COMMA ( ) ; } break ; case <NUM_LIT> : { mRULE_MINUS ( ) ; } break ; case <NUM_LIT> : { mRULE_PLUS ( ) ; } break ; case <NUM_LIT> : { mRULE_LPAREN ( ) ; } break ; case <NUM_LIT> : { mRULE_RPAREN ( ) ; } break ; case <NUM_LIT> : { mRULE_LBRACE ( ) ; } break ; case <NUM_LIT> : { mRULE_RBRACE ( ) ; } break ; case <NUM_LIT> : { mRULE_QUESTI ( ) ; } break ; case <NUM_LIT> : { mRULE_NOT ( ) ; } break ; case <NUM_LIT> : { mRULE_BAND ( ) ; } break ; case <NUM_LIT> : { mRULE_BOR ( ) ; } break ; case <NUM_LIT> : { mRULE_HASH ( ) ; } break ; case <NUM_LIT> : { mRULE_AT ( ) ; } break ; case <NUM_LIT> : { mRULE_CARET ( ) ; } break ; case <NUM_LIT> : { mRULE_EQUALS ( ) ; } break ; case <NUM_LIT:100> : { mRULE_LESS_THAN ( ) ; } break ; case <NUM_LIT> : { mRULE_MORE_THAN ( ) ; } break ; case <NUM_LIT> : { mRULE_PERCENT ( ) ; } break ; case <NUM_LIT> : { mRULE_REST ( ) ; } break ; } } protected DFA12 dfa12 = new DFA12 ( this ) ; static final String DFA12_eotS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String DFA12_eofS = "<STR_LIT>" ; static final String DFA12_minS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String DFA12_maxS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String DFA12_acceptS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String DFA12_specialS = "<STR_LIT>" ; static final String [ ] DFA12_transitionS = { "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; static final short [ ] DFA12_eot = DFA . unpackEncodedString ( DFA12_eotS ) ; static final short [ ] DFA12_eof = DFA . unpackEncodedString ( DFA12_eofS ) ; static final char [ ] DFA12_min = DFA . unpackEncodedStringToUnsignedChars ( DFA12_minS ) ; static final char [ ] DFA12_max = DFA . unpackEncodedStringToUnsignedChars ( DFA12_maxS ) ; static final short [ ] DFA12_accept = DFA . unpackEncodedString ( DFA12_acceptS ) ; static final short [ ] DFA12_special = DFA . unpackEncodedString ( DFA12_specialS ) ; static final short [ ] [ ] DFA12_transition ; static { int numStates = DFA12_transitionS . length ; DFA12_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA12_transition [ i ] = DFA . unpackEncodedString ( DFA12_transitionS [ i ] ) ; } } class DFA12 extends DFA { public DFA12 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT:12> ; this . eot = DFA12_eot ; this . eof = DFA12_eof ; this . min = DFA12_min ; this . max = DFA12_max ; this . accept = DFA12_accept ; this . special = DFA12_special ; this . transition = DFA12_transition ; } public String getDescription ( ) { return "<STR_LIT>" ; } public int specialStateTransition ( int s , IntStream _input ) throws NoViableAltException { IntStream input = _input ; int _s = s ; switch ( s ) { case <NUM_LIT:0> : int LA12_0 = input . LA ( <NUM_LIT:1> ) ; s = - <NUM_LIT:1> ; if ( ( LA12_0 == '<CHAR_LIT:->' ) ) { s = <NUM_LIT:1> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:2> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:3> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:4> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:5> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:6> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:7> ; } else if ( ( LA12_0 == '<CHAR_LIT:a>' ) ) { s = <NUM_LIT:8> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:9> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:10> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:11> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:12> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:c>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:15> ; } else if ( ( LA12_0 == '<CHAR_LIT:e>' ) ) { s = <NUM_LIT:16> ; } else if ( ( LA12_0 == '<CHAR_LIT:_>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:[>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:.>' ) ) { s = <NUM_LIT:20> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT:24> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:A>' || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<CHAR_LIT>' ) || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<CHAR_LIT>' ) || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<CHAR_LIT>' ) || LA12_0 == '<CHAR_LIT>' || LA12_0 == '<CHAR_LIT>' || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<CHAR_LIT:Z>' ) || LA12_0 == '<CHAR_LIT:b>' || LA12_0 == '<CHAR_LIT>' || LA12_0 == '<CHAR_LIT>' || LA12_0 == '<CHAR_LIT>' || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<CHAR_LIT>' ) ) ) { s = <NUM_LIT> ; } else if ( ( ( LA12_0 >= '<CHAR_LIT:0>' && LA12_0 <= '<CHAR_LIT:9>' ) ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<STR_LIT:\\>' ) ) { s = <NUM_LIT:30> ; } else if ( ( LA12_0 == '<CHAR_LIT:/>' ) ) { s = <NUM_LIT:31> ; } else if ( ( ( LA12_0 >= '<STR_LIT:\t>' && LA12_0 <= '<STR_LIT:\n>' ) || LA12_0 == '<STR_LIT>' || LA12_0 == '<CHAR_LIT:U+0020>' ) ) { s = <NUM_LIT:32> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT::>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:;>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:U+002C>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:(>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:)>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:}>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:=>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:>>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { s = <NUM_LIT> ; } else if ( ( ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<STR_LIT>' ) || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<STR_LIT>' ) || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<CHAR_LIT>' ) || LA12_0 == '<STR_LIT:\">' || LA12_0 == '<STR_LIT>' || LA12_0 == '<CHAR_LIT>' || LA12_0 == '<CHAR_LIT:]>' || LA12_0 == '<CHAR_LIT>' || ( LA12_0 >= '<CHAR_LIT>' && LA12_0 <= '<STR_LIT>' ) ) ) { s = <NUM_LIT> ; } if ( s >= <NUM_LIT:0> ) return s ; break ; } NoViableAltException nvae = new NoViableAltException ( getDescription ( ) , <NUM_LIT:12> , _s , input ) ; error ( nvae ) ; throw nvae ; } } } </s> |
<s> package org . sqlproc . dsl . parser . antlr . internal ; 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 . AbstractInternalAntlrParser ; import org . eclipse . xtext . parser . antlr . XtextTokenStream ; import org . eclipse . xtext . parser . antlr . XtextTokenStream . HiddenTokens ; import org . eclipse . xtext . parser . antlr . AntlrDatatypeRuleToken ; import org . sqlproc . dsl . services . ProcessorDslGrammarAccess ; import org . antlr . runtime . * ; import java . util . Stack ; import java . util . List ; import java . util . ArrayList ; import java . util . Map ; import java . util . HashMap ; @ SuppressWarnings ( "<STR_LIT:all>" ) public class InternalProcessorDslParser extends AbstractInternalAntlrParser { public static final String [ ] tokenNames = new String [ ] { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; public static final int RULE_OR = <NUM_LIT:31> ; public static final int RULE_PERCENT = <NUM_LIT> ; public static final int RULE_AND = <NUM_LIT:30> ; public static final int EOF = - <NUM_LIT:1> ; public static final int T__93 = <NUM_LIT> ; public static final int T__94 = <NUM_LIT> ; public static final int T__91 = <NUM_LIT> ; public static final int T__92 = <NUM_LIT> ; public static final int RULE_REST = <NUM_LIT:10> ; public static final int T__90 = <NUM_LIT> ; public static final int RULE_LPAREN = <NUM_LIT:6> ; public static final int RULE_IDENT_DOT = <NUM_LIT:11> ; public static final int T__99 = <NUM_LIT> ; public static final int T__98 = <NUM_LIT> ; public static final int T__97 = <NUM_LIT> ; public static final int T__96 = <NUM_LIT> ; public static final int T__95 = <NUM_LIT> ; public static final int RULE_BAND = <NUM_LIT> ; public static final int T__80 = <NUM_LIT> ; public static final int T__81 = <NUM_LIT> ; public static final int RULE_RBRACE = <NUM_LIT> ; public static final int T__82 = <NUM_LIT> ; public static final int T__83 = <NUM_LIT> ; public static final int RULE_COMMA = <NUM_LIT> ; public static final int RULE_HASH = <NUM_LIT> ; public static final int T__85 = <NUM_LIT> ; public static final int T__84 = <NUM_LIT> ; public static final int RULE_QUESTI = <NUM_LIT> ; public static final int T__87 = <NUM_LIT> ; public static final int T__86 = <NUM_LIT> ; public static final int T__89 = <NUM_LIT> ; public static final int T__88 = <NUM_LIT> ; public static final int RULE_ML_COMMENT = <NUM_LIT> ; public static final int RULE_ON_OFF = <NUM_LIT> ; public static final int RULE_MINUS = <NUM_LIT:15> ; public static final int RULE_STRING = <NUM_LIT> ; public static final int T__71 = <NUM_LIT> ; public static final int T__72 = <NUM_LIT> ; public static final int T__70 = <NUM_LIT> ; public static final int RULE_IDENT = <NUM_LIT:5> ; public static final int RULE_RPAREN = <NUM_LIT:8> ; public static final int T__76 = <NUM_LIT> ; public static final int T__75 = <NUM_LIT> ; public static final int T__74 = <NUM_LIT> ; public static final int T__73 = <NUM_LIT> ; public static final int T__79 = <NUM_LIT> ; public static final int RULE_AT = <NUM_LIT:24> ; public static final int T__78 = <NUM_LIT> ; public static final int T__77 = <NUM_LIT> ; public static final int T__68 = <NUM_LIT> ; public static final int T__69 = <NUM_LIT> ; public static final int T__66 = <NUM_LIT> ; public static final int T__67 = <NUM_LIT> ; public static final int T__64 = <NUM_LIT> ; public static final int T__65 = <NUM_LIT> ; public static final int T__62 = <NUM_LIT> ; public static final int T__63 = <NUM_LIT> ; public static final int RULE_SEMICOLON = <NUM_LIT:9> ; public static final int RULE_OPTION_TYPE = <NUM_LIT> ; public static final int T__61 = <NUM_LIT> ; public static final int T__60 = <NUM_LIT> ; public static final int RULE_NOT = <NUM_LIT:20> ; public static final int T__55 = <NUM_LIT> ; public static final int T__56 = <NUM_LIT> ; public static final int T__57 = <NUM_LIT> ; public static final int T__58 = <NUM_LIT> ; public static final int T__51 = <NUM_LIT> ; public static final int T__52 = <NUM_LIT> ; public static final int T__53 = <NUM_LIT> ; public static final int T__54 = <NUM_LIT> ; public static final int RULE_NUMBER = <NUM_LIT:7> ; public static final int T__59 = <NUM_LIT> ; public static final int T__103 = <NUM_LIT> ; public static final int T__104 = <NUM_LIT> ; public static final int T__105 = <NUM_LIT> ; public static final int T__106 = <NUM_LIT> ; public static final int RULE_LBRACE = <NUM_LIT> ; public static final int RULE_BOR = <NUM_LIT> ; public static final int T__50 = <NUM_LIT> ; public static final int T__42 = <NUM_LIT> ; public static final int T__43 = <NUM_LIT> ; public static final int T__40 = <NUM_LIT> ; public static final int T__41 = <NUM_LIT> ; public static final int T__46 = <NUM_LIT> ; public static final int T__47 = <NUM_LIT> ; public static final int T__44 = <NUM_LIT> ; public static final int T__45 = <NUM_LIT> ; public static final int RULE_CARET = <NUM_LIT> ; public static final int T__48 = <NUM_LIT> ; public static final int RULE_MORE_THAN = <NUM_LIT> ; public static final int T__49 = <NUM_LIT> ; public static final int RULE_STATEMEN_TYPE = <NUM_LIT> ; public static final int RULE_PLUS = <NUM_LIT:16> ; public static final int T__102 = <NUM_LIT> ; public static final int T__101 = <NUM_LIT> ; public static final int T__100 = <NUM_LIT:100> ; public static final int RULE_SL_COMMENT = <NUM_LIT> ; public static final int RULE_COLON = <NUM_LIT:12> ; public static final int RULE_ESC_CHAR = <NUM_LIT:32> ; public static final int T__39 = <NUM_LIT> ; public static final int RULE_EQUALS = <NUM_LIT> ; public static final int RULE_LESS_THAN = <NUM_LIT> ; public static final int RULE_WS = <NUM_LIT:4> ; public static final int RULE_MAPPING_TYPE = <NUM_LIT> ; public InternalProcessorDslParser ( TokenStream input ) { this ( input , new RecognizerSharedState ( ) ) ; } public InternalProcessorDslParser ( TokenStream input , RecognizerSharedState state ) { super ( input , state ) ; } public String [ ] getTokenNames ( ) { return InternalProcessorDslParser . tokenNames ; } public String getGrammarFileName ( ) { return "<STR_LIT>" ; } private ProcessorDslGrammarAccess grammarAccess ; public InternalProcessorDslParser ( TokenStream input , ProcessorDslGrammarAccess grammarAccess ) { this ( input ) ; this . grammarAccess = grammarAccess ; registerRules ( grammarAccess . getGrammar ( ) ) ; } @ Override protected String getFirstRuleName ( ) { return "<STR_LIT>" ; } @ Override protected ProcessorDslGrammarAccess getGrammarAccess ( ) { return grammarAccess ; } public final EObject entryRuleArtifacts ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleArtifacts = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getArtifactsRule ( ) ) ; } pushFollow ( FOLLOW_ruleArtifacts_in_entryRuleArtifacts75 ) ; iv_ruleArtifacts = ruleArtifacts ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleArtifacts ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleArtifacts85 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleArtifacts ( ) throws RecognitionException { EObject current = null ; Token this_WS_0 = null ; Token this_WS_2 = null ; Token this_WS_4 = null ; Token this_WS_6 = null ; Token this_WS_8 = null ; Token this_WS_10 = null ; Token this_WS_12 = null ; Token this_WS_14 = null ; Token this_WS_16 = null ; Token this_WS_18 = null ; Token this_WS_20 = null ; EObject lv_features_1_0 = null ; EObject lv_statements_3_0 = null ; EObject lv_mappings_5_0 = null ; EObject lv_pojos_7_0 = null ; EObject lv_usages_9_0 = null ; EObject lv_properties_11_0 = null ; EObject lv_tables_13_0 = null ; EObject lv_tableUsages_15_0 = null ; EObject lv_pojoPackages_17_0 = null ; EObject lv_usagesExt_19_0 = null ; enterRule ( ) ; try { { { loop1 : do { int alt1 = <NUM_LIT:2> ; int LA1_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA1_0 == RULE_WS ) ) { alt1 = <NUM_LIT:1> ; } switch ( alt1 ) { case <NUM_LIT:1> : { this_WS_0 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleArtifacts122 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_0 , grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_0 ( ) ) ; } } break ; default : break loop1 ; } } while ( true ) ; int cnt12 = <NUM_LIT:0> ; loop12 : do { int alt12 = <NUM_LIT:11> ; alt12 = dfa12 . predict ( input ) ; switch ( alt12 ) { case <NUM_LIT:1> : { { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getArtifactsAccess ( ) . getFeaturesOptionalFeatureParserRuleCall_1_0_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleOptionalFeature_in_ruleArtifacts146 ) ; lv_features_1_0 = ruleOptionalFeature ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getArtifactsRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_features_1_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop2 : do { int alt2 = <NUM_LIT:2> ; int LA2_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA2_0 == RULE_WS ) ) { alt2 = <NUM_LIT:1> ; } switch ( alt2 ) { case <NUM_LIT:1> : { this_WS_2 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleArtifacts158 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_2 , grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_0_1 ( ) ) ; } } break ; default : break loop2 ; } } while ( true ) ; } } break ; case <NUM_LIT:2> : { { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getArtifactsAccess ( ) . getStatementsMetaStatementParserRuleCall_1_1_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleMetaStatement_in_ruleArtifacts188 ) ; lv_statements_3_0 = ruleMetaStatement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getArtifactsRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_statements_3_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop3 : do { int alt3 = <NUM_LIT:2> ; int LA3_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA3_0 == RULE_WS ) ) { alt3 = <NUM_LIT:1> ; } switch ( alt3 ) { case <NUM_LIT:1> : { this_WS_4 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleArtifacts200 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_4 , grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_1_1 ( ) ) ; } } break ; default : break loop3 ; } } while ( true ) ; } } break ; case <NUM_LIT:3> : { { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getArtifactsAccess ( ) . getMappingsMappingRuleParserRuleCall_1_2_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleMappingRule_in_ruleArtifacts230 ) ; lv_mappings_5_0 = ruleMappingRule ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getArtifactsRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_mappings_5_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop4 : do { int alt4 = <NUM_LIT:2> ; int LA4_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA4_0 == RULE_WS ) ) { alt4 = <NUM_LIT:1> ; } switch ( alt4 ) { case <NUM_LIT:1> : { this_WS_6 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleArtifacts242 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_6 , grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_2_1 ( ) ) ; } } break ; default : break loop4 ; } } while ( true ) ; } } break ; case <NUM_LIT:4> : { { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getArtifactsAccess ( ) . getPojosPojoDefinitionParserRuleCall_1_3_0_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoDefinition_in_ruleArtifacts272 ) ; lv_pojos_7_0 = rulePojoDefinition ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getArtifactsRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_pojos_7_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop5 : do { int alt5 = <NUM_LIT:2> ; int LA5_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA5_0 == RULE_WS ) ) { alt5 = <NUM_LIT:1> ; } switch ( alt5 ) { case <NUM_LIT:1> : { this_WS_8 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleArtifacts284 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_8 , grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_3_1 ( ) ) ; } } break ; default : break loop5 ; } } while ( true ) ; } } break ; case <NUM_LIT:5> : { { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getArtifactsAccess ( ) . getUsagesPojoUsageParserRuleCall_1_4_0_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoUsage_in_ruleArtifacts314 ) ; lv_usages_9_0 = rulePojoUsage ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getArtifactsRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_usages_9_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop6 : do { int alt6 = <NUM_LIT:2> ; int LA6_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA6_0 == RULE_WS ) ) { alt6 = <NUM_LIT:1> ; } switch ( alt6 ) { case <NUM_LIT:1> : { this_WS_10 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleArtifacts326 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_10 , grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_4_1 ( ) ) ; } } break ; default : break loop6 ; } } while ( true ) ; } } break ; case <NUM_LIT:6> : { { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getArtifactsAccess ( ) . getPropertiesPropertyParserRuleCall_1_5_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleProperty_in_ruleArtifacts356 ) ; lv_properties_11_0 = ruleProperty ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getArtifactsRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_properties_11_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop7 : do { int alt7 = <NUM_LIT:2> ; int LA7_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA7_0 == RULE_WS ) ) { alt7 = <NUM_LIT:1> ; } switch ( alt7 ) { case <NUM_LIT:1> : { this_WS_12 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleArtifacts368 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_12 , grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_5_1 ( ) ) ; } } break ; default : break loop7 ; } } while ( true ) ; } } break ; case <NUM_LIT:7> : { { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getArtifactsAccess ( ) . getTablesTableDefinitionParserRuleCall_1_6_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleTableDefinition_in_ruleArtifacts398 ) ; lv_tables_13_0 = ruleTableDefinition ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getArtifactsRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_tables_13_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop8 : do { int alt8 = <NUM_LIT:2> ; int LA8_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA8_0 == RULE_WS ) ) { alt8 = <NUM_LIT:1> ; } switch ( alt8 ) { case <NUM_LIT:1> : { this_WS_14 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleArtifacts410 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_14 , grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_6_1 ( ) ) ; } } break ; default : break loop8 ; } } while ( true ) ; } } break ; case <NUM_LIT:8> : { { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getArtifactsAccess ( ) . getTableUsagesTableUsageParserRuleCall_1_7_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleTableUsage_in_ruleArtifacts440 ) ; lv_tableUsages_15_0 = ruleTableUsage ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getArtifactsRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_tableUsages_15_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop9 : do { int alt9 = <NUM_LIT:2> ; int LA9_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA9_0 == RULE_WS ) ) { alt9 = <NUM_LIT:1> ; } switch ( alt9 ) { case <NUM_LIT:1> : { this_WS_16 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleArtifacts452 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_16 , grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_7_1 ( ) ) ; } } break ; default : break loop9 ; } } while ( true ) ; } } break ; case <NUM_LIT:9> : { { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getArtifactsAccess ( ) . getPojoPackagesPackageDeclarationParserRuleCall_1_8_0_0 ( ) ) ; } pushFollow ( FOLLOW_rulePackageDeclaration_in_ruleArtifacts482 ) ; lv_pojoPackages_17_0 = rulePackageDeclaration ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getArtifactsRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_pojoPackages_17_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop10 : do { int alt10 = <NUM_LIT:2> ; int LA10_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA10_0 == RULE_WS ) ) { alt10 = <NUM_LIT:1> ; } switch ( alt10 ) { case <NUM_LIT:1> : { this_WS_18 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleArtifacts494 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_18 , grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_8_1 ( ) ) ; } } break ; default : break loop10 ; } } while ( true ) ; } } break ; case <NUM_LIT:10> : { { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getArtifactsAccess ( ) . getUsagesExtPojoUsageExtParserRuleCall_1_9_0_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoUsageExt_in_ruleArtifacts524 ) ; lv_usagesExt_19_0 = rulePojoUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getArtifactsRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_usagesExt_19_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop11 : do { int alt11 = <NUM_LIT:2> ; int LA11_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA11_0 == RULE_WS ) ) { alt11 = <NUM_LIT:1> ; } switch ( alt11 ) { case <NUM_LIT:1> : { this_WS_20 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleArtifacts536 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_20 , grammarAccess . getArtifactsAccess ( ) . getWSTerminalRuleCall_1_9_1 ( ) ) ; } } break ; default : break loop11 ; } } while ( true ) ; } } break ; default : if ( cnt12 >= <NUM_LIT:1> ) break loop12 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT:12> , input ) ; throw eee ; } cnt12 ++ ; } while ( true ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleSqlTypeAssignement ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleSqlTypeAssignement = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getSqlTypeAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleSqlTypeAssignement_in_entryRuleSqlTypeAssignement576 ) ; iv_ruleSqlTypeAssignement = ruleSqlTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleSqlTypeAssignement ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleSqlTypeAssignement586 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleSqlTypeAssignement ( ) throws RecognitionException { EObject current = null ; Token lv_typeName_0_0 = null ; Token this_LPAREN_1 = null ; Token lv_size_2_0 = null ; Token this_RPAREN_3 = null ; Token otherlv_4 = null ; EObject lv_type_5_0 = null ; enterRule ( ) ; try { { { { { lv_typeName_0_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleSqlTypeAssignement628 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_typeName_0_0 , grammarAccess . getSqlTypeAssignementAccess ( ) . getTypeNameIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getSqlTypeAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_typeName_0_0 , "<STR_LIT>" ) ; } } } int alt13 = <NUM_LIT:2> ; int LA13_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA13_0 == RULE_LPAREN ) ) { alt13 = <NUM_LIT:1> ; } switch ( alt13 ) { case <NUM_LIT:1> : { this_LPAREN_1 = ( Token ) match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_ruleSqlTypeAssignement645 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LPAREN_1 , grammarAccess . getSqlTypeAssignementAccess ( ) . getLPARENTerminalRuleCall_1_0 ( ) ) ; } { { lv_size_2_0 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleSqlTypeAssignement661 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_size_2_0 , grammarAccess . getSqlTypeAssignementAccess ( ) . getSizeNUMBERTerminalRuleCall_1_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getSqlTypeAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:size>" , lv_size_2_0 , "<STR_LIT>" ) ; } } } this_RPAREN_3 = ( Token ) match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_ruleSqlTypeAssignement677 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RPAREN_3 , grammarAccess . getSqlTypeAssignementAccess ( ) . getRPARENTerminalRuleCall_1_2 ( ) ) ; } } break ; } otherlv_4 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_39_in_ruleSqlTypeAssignement690 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_4 , grammarAccess . getSqlTypeAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_2 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getSqlTypeAssignementAccess ( ) . getTypePojoTypeParserRuleCall_3_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoType_in_ruleSqlTypeAssignement711 ) ; lv_type_5_0 = rulePojoType ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getSqlTypeAssignementRule ( ) ) ; } set ( current , "<STR_LIT:type>" , lv_type_5_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleColumnTypeAssignement ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleColumnTypeAssignement = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getColumnTypeAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleColumnTypeAssignement_in_entryRuleColumnTypeAssignement747 ) ; iv_ruleColumnTypeAssignement = ruleColumnTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleColumnTypeAssignement ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleColumnTypeAssignement757 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleColumnTypeAssignement ( ) throws RecognitionException { EObject current = null ; Token lv_dbColumn_0_0 = null ; Token otherlv_1 = null ; EObject lv_type_2_0 = null ; enterRule ( ) ; try { { { { { lv_dbColumn_0_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleColumnTypeAssignement799 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbColumn_0_0 , grammarAccess . getColumnTypeAssignementAccess ( ) . getDbColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getColumnTypeAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbColumn_0_0 , "<STR_LIT>" ) ; } } } otherlv_1 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_39_in_ruleColumnTypeAssignement816 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getColumnTypeAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getColumnTypeAssignementAccess ( ) . getTypePojoTypeParserRuleCall_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoType_in_ruleColumnTypeAssignement837 ) ; lv_type_2_0 = rulePojoType ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getColumnTypeAssignementRule ( ) ) ; } set ( current , "<STR_LIT:type>" , lv_type_2_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleShowColumnTypeAssignement ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleShowColumnTypeAssignement = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getShowColumnTypeAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleShowColumnTypeAssignement_in_entryRuleShowColumnTypeAssignement873 ) ; iv_ruleShowColumnTypeAssignement = ruleShowColumnTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleShowColumnTypeAssignement ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleShowColumnTypeAssignement883 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleShowColumnTypeAssignement ( ) throws RecognitionException { EObject current = null ; Token lv_dbColumn_0_0 = null ; Token otherlv_1 = null ; AntlrDatatypeRuleToken lv_type_2_0 = null ; enterRule ( ) ; try { { { { { lv_dbColumn_0_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleShowColumnTypeAssignement925 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbColumn_0_0 , grammarAccess . getShowColumnTypeAssignementAccess ( ) . getDbColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getShowColumnTypeAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbColumn_0_0 , "<STR_LIT>" ) ; } } } otherlv_1 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_39_in_ruleShowColumnTypeAssignement942 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getShowColumnTypeAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getShowColumnTypeAssignementAccess ( ) . getTypePropertyValueParserRuleCall_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_ruleShowColumnTypeAssignement963 ) ; lv_type_2_0 = rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getShowColumnTypeAssignementRule ( ) ) ; } set ( current , "<STR_LIT:type>" , lv_type_2_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleTableAssignement ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleTableAssignement = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getTableAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleTableAssignement_in_entryRuleTableAssignement999 ) ; iv_ruleTableAssignement = ruleTableAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleTableAssignement ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleTableAssignement1009 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleTableAssignement ( ) throws RecognitionException { EObject current = null ; Token lv_dbTable_0_0 = null ; Token otherlv_1 = null ; Token lv_newName_2_0 = null ; enterRule ( ) ; try { { { { { lv_dbTable_0_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleTableAssignement1051 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_0_0 , grammarAccess . getTableAssignementAccess ( ) . getDbTableIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getTableAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_0_0 , "<STR_LIT>" ) ; } } } otherlv_1 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_39_in_ruleTableAssignement1068 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getTableAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } { { lv_newName_2_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleTableAssignement1085 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_newName_2_0 , grammarAccess . getTableAssignementAccess ( ) . getNewNameIDENTTerminalRuleCall_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getTableAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_newName_2_0 , "<STR_LIT>" ) ; } } } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleJoinTableAssignement ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleJoinTableAssignement = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getJoinTableAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleJoinTableAssignement_in_entryRuleJoinTableAssignement1126 ) ; iv_ruleJoinTableAssignement = ruleJoinTableAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleJoinTableAssignement ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleJoinTableAssignement1136 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleJoinTableAssignement ( ) throws RecognitionException { EObject current = null ; Token lv_dbTable_0_0 = null ; Token otherlv_1 = null ; Token lv_dbTables_2_0 = null ; enterRule ( ) ; try { { { { { lv_dbTable_0_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleJoinTableAssignement1178 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_0_0 , grammarAccess . getJoinTableAssignementAccess ( ) . getDbTableIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getJoinTableAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_0_0 , "<STR_LIT>" ) ; } } } int cnt14 = <NUM_LIT:0> ; loop14 : do { int alt14 = <NUM_LIT:2> ; int LA14_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA14_0 == <NUM_LIT> ) ) { alt14 = <NUM_LIT:1> ; } switch ( alt14 ) { case <NUM_LIT:1> : { otherlv_1 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_39_in_ruleJoinTableAssignement1196 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getJoinTableAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1_0 ( ) ) ; } { { lv_dbTables_2_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleJoinTableAssignement1213 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTables_2_0 , grammarAccess . getJoinTableAssignementAccess ( ) . getDbTablesIDENTTerminalRuleCall_1_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getJoinTableAssignementRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_dbTables_2_0 , "<STR_LIT>" ) ; } } } } break ; default : if ( cnt14 >= <NUM_LIT:1> ) break loop14 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt14 ++ ; } while ( true ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleColumnAssignement ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleColumnAssignement = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getColumnAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleColumnAssignement_in_entryRuleColumnAssignement1256 ) ; iv_ruleColumnAssignement = ruleColumnAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleColumnAssignement ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleColumnAssignement1266 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleColumnAssignement ( ) throws RecognitionException { EObject current = null ; Token lv_dbColumn_0_0 = null ; Token otherlv_1 = null ; Token lv_newName_2_0 = null ; enterRule ( ) ; try { { { { { lv_dbColumn_0_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleColumnAssignement1308 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbColumn_0_0 , grammarAccess . getColumnAssignementAccess ( ) . getDbColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getColumnAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbColumn_0_0 , "<STR_LIT>" ) ; } } } otherlv_1 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_39_in_ruleColumnAssignement1325 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getColumnAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } { { lv_newName_2_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleColumnAssignement1342 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_newName_2_0 , grammarAccess . getColumnAssignementAccess ( ) . getNewNameIDENTTerminalRuleCall_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getColumnAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_newName_2_0 , "<STR_LIT>" ) ; } } } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleImportAssignement ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleImportAssignement = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getImportAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleImportAssignement_in_entryRuleImportAssignement1383 ) ; iv_ruleImportAssignement = ruleImportAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleImportAssignement ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleImportAssignement1393 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleImportAssignement ( ) throws RecognitionException { EObject current = null ; Token lv_dbColumn_0_0 = null ; Token otherlv_1 = null ; Token lv_pkTable_2_0 = null ; Token otherlv_3 = null ; Token lv_pkColumn_4_0 = null ; enterRule ( ) ; try { { { { { lv_dbColumn_0_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleImportAssignement1435 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbColumn_0_0 , grammarAccess . getImportAssignementAccess ( ) . getDbColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getImportAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbColumn_0_0 , "<STR_LIT>" ) ; } } } otherlv_1 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_39_in_ruleImportAssignement1452 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getImportAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } { { lv_pkTable_2_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleImportAssignement1469 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_pkTable_2_0 , grammarAccess . getImportAssignementAccess ( ) . getPkTableIDENTTerminalRuleCall_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getImportAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_pkTable_2_0 , "<STR_LIT>" ) ; } } } int alt15 = <NUM_LIT:2> ; int LA15_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA15_0 == <NUM_LIT> ) ) { alt15 = <NUM_LIT:1> ; } switch ( alt15 ) { case <NUM_LIT:1> : { otherlv_3 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_39_in_ruleImportAssignement1487 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_3 , grammarAccess . getImportAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_3_0 ( ) ) ; } { { lv_pkColumn_4_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleImportAssignement1504 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_pkColumn_4_0 , grammarAccess . getImportAssignementAccess ( ) . getPkColumnIDENTTerminalRuleCall_3_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getImportAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_pkColumn_4_0 , "<STR_LIT>" ) ; } } } } break ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleExportAssignement ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleExportAssignement = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getExportAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleExportAssignement_in_entryRuleExportAssignement1547 ) ; iv_ruleExportAssignement = ruleExportAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleExportAssignement ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleExportAssignement1557 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleExportAssignement ( ) throws RecognitionException { EObject current = null ; Token lv_dbColumn_0_0 = null ; Token otherlv_1 = null ; Token lv_fkTable_2_0 = null ; Token otherlv_3 = null ; Token lv_fkColumn_4_0 = null ; enterRule ( ) ; try { { { { { lv_dbColumn_0_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleExportAssignement1599 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbColumn_0_0 , grammarAccess . getExportAssignementAccess ( ) . getDbColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getExportAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbColumn_0_0 , "<STR_LIT>" ) ; } } } otherlv_1 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_39_in_ruleExportAssignement1616 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getExportAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } { { lv_fkTable_2_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleExportAssignement1633 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_fkTable_2_0 , grammarAccess . getExportAssignementAccess ( ) . getFkTableIDENTTerminalRuleCall_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getExportAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_fkTable_2_0 , "<STR_LIT>" ) ; } } } int alt16 = <NUM_LIT:2> ; int LA16_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA16_0 == <NUM_LIT> ) ) { alt16 = <NUM_LIT:1> ; } switch ( alt16 ) { case <NUM_LIT:1> : { otherlv_3 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_39_in_ruleExportAssignement1651 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_3 , grammarAccess . getExportAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_3_0 ( ) ) ; } { { lv_fkColumn_4_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleExportAssignement1668 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_fkColumn_4_0 , grammarAccess . getExportAssignementAccess ( ) . getFkColumnIDENTTerminalRuleCall_3_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getExportAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_fkColumn_4_0 , "<STR_LIT>" ) ; } } } } break ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleInheritanceAssignement ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleInheritanceAssignement = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getInheritanceAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleInheritanceAssignement_in_entryRuleInheritanceAssignement1711 ) ; iv_ruleInheritanceAssignement = ruleInheritanceAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleInheritanceAssignement ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleInheritanceAssignement1721 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleInheritanceAssignement ( ) throws RecognitionException { EObject current = null ; Token lv_discriminator_0_0 = null ; Token otherlv_1 = null ; Token lv_dbTable_2_0 = null ; Token otherlv_3 = null ; Token lv_dbColumns_4_0 = null ; enterRule ( ) ; try { { { { { lv_discriminator_0_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleInheritanceAssignement1763 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_discriminator_0_0 , grammarAccess . getInheritanceAssignementAccess ( ) . getDiscriminatorIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getInheritanceAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_discriminator_0_0 , "<STR_LIT>" ) ; } } } otherlv_1 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_39_in_ruleInheritanceAssignement1780 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getInheritanceAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } { { lv_dbTable_2_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleInheritanceAssignement1797 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_2_0 , grammarAccess . getInheritanceAssignementAccess ( ) . getDbTableIDENTTerminalRuleCall_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getInheritanceAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_2_0 , "<STR_LIT>" ) ; } } } int cnt17 = <NUM_LIT:0> ; loop17 : do { int alt17 = <NUM_LIT:2> ; int LA17_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA17_0 == <NUM_LIT> ) ) { alt17 = <NUM_LIT:1> ; } switch ( alt17 ) { case <NUM_LIT:1> : { otherlv_3 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_39_in_ruleInheritanceAssignement1815 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_3 , grammarAccess . getInheritanceAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_3_0 ( ) ) ; } { { lv_dbColumns_4_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleInheritanceAssignement1832 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbColumns_4_0 , grammarAccess . getInheritanceAssignementAccess ( ) . getDbColumnsIDENTTerminalRuleCall_3_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getInheritanceAssignementRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_dbColumns_4_0 , "<STR_LIT>" ) ; } } } } break ; default : if ( cnt17 >= <NUM_LIT:1> ) break loop17 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt17 ++ ; } while ( true ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleManyToManyAssignement ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleManyToManyAssignement = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getManyToManyAssignementRule ( ) ) ; } pushFollow ( FOLLOW_ruleManyToManyAssignement_in_entryRuleManyToManyAssignement1875 ) ; iv_ruleManyToManyAssignement = ruleManyToManyAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleManyToManyAssignement ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleManyToManyAssignement1885 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleManyToManyAssignement ( ) throws RecognitionException { EObject current = null ; Token lv_pkColumn_0_0 = null ; Token otherlv_1 = null ; Token lv_pkTable_2_0 = null ; Token otherlv_3 = null ; Token lv_fkColumn_4_0 = null ; enterRule ( ) ; try { { { { { lv_pkColumn_0_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleManyToManyAssignement1927 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_pkColumn_0_0 , grammarAccess . getManyToManyAssignementAccess ( ) . getPkColumnIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getManyToManyAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_pkColumn_0_0 , "<STR_LIT>" ) ; } } } otherlv_1 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_39_in_ruleManyToManyAssignement1944 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getManyToManyAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_1 ( ) ) ; } { { lv_pkTable_2_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleManyToManyAssignement1961 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_pkTable_2_0 , grammarAccess . getManyToManyAssignementAccess ( ) . getPkTableIDENTTerminalRuleCall_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getManyToManyAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_pkTable_2_0 , "<STR_LIT>" ) ; } } } int alt18 = <NUM_LIT:2> ; int LA18_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA18_0 == <NUM_LIT> ) ) { alt18 = <NUM_LIT:1> ; } switch ( alt18 ) { case <NUM_LIT:1> : { otherlv_3 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_39_in_ruleManyToManyAssignement1979 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_3 , grammarAccess . getManyToManyAssignementAccess ( ) . getHyphenMinusGreaterThanSignKeyword_3_0 ( ) ) ; } { { lv_fkColumn_4_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleManyToManyAssignement1996 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_fkColumn_4_0 , grammarAccess . getManyToManyAssignementAccess ( ) . getFkColumnIDENTTerminalRuleCall_3_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getManyToManyAssignementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_fkColumn_4_0 , "<STR_LIT>" ) ; } } } } break ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleProperty ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleProperty = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPropertyRule ( ) ) ; } pushFollow ( FOLLOW_ruleProperty_in_entryRuleProperty2039 ) ; iv_ruleProperty = ruleProperty ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleProperty ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleProperty2049 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleProperty ( ) throws RecognitionException { EObject current = null ; Token lv_name_0_0 = null ; Token lv_name_1_0 = null ; Token lv_name_2_0 = null ; Token lv_name_4_0 = null ; Token this_SEMICOLON_6 = null ; EObject lv_database_3_0 = null ; EObject lv_pojogen_5_0 = null ; enterRule ( ) ; try { { { int alt19 = <NUM_LIT:4> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt19 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt19 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt19 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt19 = <NUM_LIT:4> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt19 ) { case <NUM_LIT:1> : { { { lv_name_0_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_40_in_ruleProperty2093 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_0 , grammarAccess . getPropertyAccess ( ) . getNameResolvePojoOnKeyword_0_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_0 , "<STR_LIT>" ) ; } } } } break ; case <NUM_LIT:2> : { { { lv_name_1_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_41_in_ruleProperty2130 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_1_0 , grammarAccess . getPropertyAccess ( ) . getNameResolvePojoOffKeyword_0_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_1_0 , "<STR_LIT>" ) ; } } } } break ; case <NUM_LIT:3> : { { { { lv_name_2_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_42_in_ruleProperty2168 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_2_0 , grammarAccess . getPropertyAccess ( ) . getNameDatabaseKeyword_0_2_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_2_0 , "<STR_LIT>" ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPropertyAccess ( ) . getDatabaseDatabasePropertyParserRuleCall_0_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseProperty_in_ruleProperty2202 ) ; lv_database_3_0 = ruleDatabaseProperty ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPropertyRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_database_3_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:4> : { { { { lv_name_4_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_43_in_ruleProperty2228 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_4_0 , grammarAccess . getPropertyAccess ( ) . getNamePojogenKeyword_0_3_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_4_0 , "<STR_LIT>" ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPropertyAccess ( ) . getPojogenPojogenPropertyParserRuleCall_0_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojogenProperty_in_ruleProperty2262 ) ; lv_pojogen_5_0 = rulePojogenProperty ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPropertyRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_pojogen_5_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; } this_SEMICOLON_6 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleProperty2275 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_6 , grammarAccess . getPropertyAccess ( ) . getSEMICOLONTerminalRuleCall_1 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleDatabaseProperty ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleDatabaseProperty = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getDatabasePropertyRule ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseProperty_in_entryRuleDatabaseProperty2310 ) ; iv_ruleDatabaseProperty = ruleDatabaseProperty ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleDatabaseProperty ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleDatabaseProperty2320 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleDatabaseProperty ( ) throws RecognitionException { EObject current = null ; Token lv_name_0_0 = null ; Token lv_name_1_0 = null ; Token lv_name_2_0 = null ; Token this_WS_3 = null ; Token lv_name_5_0 = null ; Token this_WS_6 = null ; Token lv_name_8_0 = null ; Token this_WS_9 = null ; Token lv_name_11_0 = null ; Token this_WS_12 = null ; Token lv_name_14_0 = null ; Token this_WS_15 = null ; AntlrDatatypeRuleToken lv_dbUrl_4_0 = null ; AntlrDatatypeRuleToken lv_dbUsername_7_0 = null ; AntlrDatatypeRuleToken lv_dbPassword_10_0 = null ; AntlrDatatypeRuleToken lv_dbSchema_13_0 = null ; AntlrDatatypeRuleToken lv_dbDriver_16_0 = null ; enterRule ( ) ; try { { int alt25 = <NUM_LIT:7> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt25 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt25 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt25 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt25 = <NUM_LIT:4> ; } break ; case <NUM_LIT> : { alt25 = <NUM_LIT:5> ; } break ; case <NUM_LIT> : { alt25 = <NUM_LIT:6> ; } break ; case <NUM_LIT> : { alt25 = <NUM_LIT:7> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt25 ) { case <NUM_LIT:1> : { { { lv_name_0_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_44_in_ruleDatabaseProperty2363 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_0 , grammarAccess . getDatabasePropertyAccess ( ) . getNameIsOnlineKeyword_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getDatabasePropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_0 , "<STR_LIT>" ) ; } } } } break ; case <NUM_LIT:2> : { { { lv_name_1_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_45_in_ruleDatabaseProperty2400 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_1_0 , grammarAccess . getDatabasePropertyAccess ( ) . getNameIsOfflineKeyword_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getDatabasePropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_1_0 , "<STR_LIT>" ) ; } } } } break ; case <NUM_LIT:3> : { { { { lv_name_2_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_46_in_ruleDatabaseProperty2438 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_2_0 , grammarAccess . getDatabasePropertyAccess ( ) . getNameHasUrlKeyword_2_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getDatabasePropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_2_0 , "<STR_LIT>" ) ; } } } int cnt20 = <NUM_LIT:0> ; loop20 : do { int alt20 = <NUM_LIT:2> ; int LA20_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA20_0 == RULE_WS ) ) { alt20 = <NUM_LIT:1> ; } switch ( alt20 ) { case <NUM_LIT:1> : { this_WS_3 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleDatabaseProperty2463 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_3 , grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_2_1 ( ) ) ; } } break ; default : if ( cnt20 >= <NUM_LIT:1> ) break loop20 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT:20> , input ) ; throw eee ; } cnt20 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getDatabasePropertyAccess ( ) . getDbUrlPropertyValueParserRuleCall_2_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_ruleDatabaseProperty2485 ) ; lv_dbUrl_4_0 = rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getDatabasePropertyRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_dbUrl_4_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:4> : { { { { lv_name_5_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_47_in_ruleDatabaseProperty2511 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_5_0 , grammarAccess . getDatabasePropertyAccess ( ) . getNameLoginUsernameKeyword_3_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getDatabasePropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_5_0 , "<STR_LIT>" ) ; } } } int cnt21 = <NUM_LIT:0> ; loop21 : do { int alt21 = <NUM_LIT:2> ; int LA21_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA21_0 == RULE_WS ) ) { alt21 = <NUM_LIT:1> ; } switch ( alt21 ) { case <NUM_LIT:1> : { this_WS_6 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleDatabaseProperty2536 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_6 , grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_3_1 ( ) ) ; } } break ; default : if ( cnt21 >= <NUM_LIT:1> ) break loop21 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt21 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getDatabasePropertyAccess ( ) . getDbUsernamePropertyValueParserRuleCall_3_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_ruleDatabaseProperty2558 ) ; lv_dbUsername_7_0 = rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getDatabasePropertyRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_dbUsername_7_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:5> : { { { { lv_name_8_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_48_in_ruleDatabaseProperty2584 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_8_0 , grammarAccess . getDatabasePropertyAccess ( ) . getNameLoginPasswordKeyword_4_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getDatabasePropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_8_0 , "<STR_LIT>" ) ; } } } int cnt22 = <NUM_LIT:0> ; loop22 : do { int alt22 = <NUM_LIT:2> ; int LA22_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA22_0 == RULE_WS ) ) { alt22 = <NUM_LIT:1> ; } switch ( alt22 ) { case <NUM_LIT:1> : { this_WS_9 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleDatabaseProperty2609 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_9 , grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_4_1 ( ) ) ; } } break ; default : if ( cnt22 >= <NUM_LIT:1> ) break loop22 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt22 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getDatabasePropertyAccess ( ) . getDbPasswordPropertyValueParserRuleCall_4_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_ruleDatabaseProperty2631 ) ; lv_dbPassword_10_0 = rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getDatabasePropertyRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_dbPassword_10_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:6> : { { { { lv_name_11_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_49_in_ruleDatabaseProperty2657 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_11_0 , grammarAccess . getDatabasePropertyAccess ( ) . getNameActiveSchemaKeyword_5_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getDatabasePropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_11_0 , "<STR_LIT>" ) ; } } } int cnt23 = <NUM_LIT:0> ; loop23 : do { int alt23 = <NUM_LIT:2> ; int LA23_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA23_0 == RULE_WS ) ) { alt23 = <NUM_LIT:1> ; } switch ( alt23 ) { case <NUM_LIT:1> : { this_WS_12 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleDatabaseProperty2682 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_12 , grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_5_1 ( ) ) ; } } break ; default : if ( cnt23 >= <NUM_LIT:1> ) break loop23 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt23 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getDatabasePropertyAccess ( ) . getDbSchemaPropertyValueParserRuleCall_5_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_ruleDatabaseProperty2704 ) ; lv_dbSchema_13_0 = rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getDatabasePropertyRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_dbSchema_13_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:7> : { { { { lv_name_14_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_50_in_ruleDatabaseProperty2730 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_14_0 , grammarAccess . getDatabasePropertyAccess ( ) . getNameJdbcDriverKeyword_6_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getDatabasePropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_14_0 , "<STR_LIT>" ) ; } } } int cnt24 = <NUM_LIT:0> ; loop24 : do { int alt24 = <NUM_LIT:2> ; int LA24_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA24_0 == RULE_WS ) ) { alt24 = <NUM_LIT:1> ; } switch ( alt24 ) { case <NUM_LIT:1> : { this_WS_15 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleDatabaseProperty2755 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_15 , grammarAccess . getDatabasePropertyAccess ( ) . getWSTerminalRuleCall_6_1 ( ) ) ; } } break ; default : if ( cnt24 >= <NUM_LIT:1> ) break loop24 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT:24> , input ) ; throw eee ; } cnt24 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getDatabasePropertyAccess ( ) . getDbDriverPropertyValueParserRuleCall_6_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_ruleDatabaseProperty2777 ) ; lv_dbDriver_16_0 = rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getDatabasePropertyRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_dbDriver_16_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRulePojogenProperty ( ) throws RecognitionException { EObject current = null ; EObject iv_rulePojogenProperty = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyRule ( ) ) ; } pushFollow ( FOLLOW_rulePojogenProperty_in_entryRulePojogenProperty2814 ) ; iv_rulePojogenProperty = rulePojogenProperty ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_rulePojogenProperty ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojogenProperty2824 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject rulePojogenProperty ( ) throws RecognitionException { EObject current = null ; Token lv_name_0_0 = null ; Token this_WS_1 = null ; Token lv_name_3_0 = null ; Token this_WS_4 = null ; Token lv_dbTable_5_0 = null ; Token this_WS_6 = null ; Token lv_name_8_0 = null ; Token this_WS_9 = null ; Token lv_dbTable_10_0 = null ; Token this_WS_11 = null ; Token lv_name_13_0 = null ; Token this_WS_14 = null ; Token lv_dbTable_15_0 = null ; Token this_WS_16 = null ; Token lv_name_18_0 = null ; Token this_WS_19 = null ; Token lv_dbTables_20_0 = null ; Token lv_name_21_0 = null ; Token this_WS_22 = null ; Token lv_dbTables_23_0 = null ; Token lv_name_24_0 = null ; Token this_WS_25 = null ; Token lv_name_27_0 = null ; Token this_WS_28 = null ; Token lv_dbTable_29_0 = null ; Token this_WS_30 = null ; Token lv_dbColumns_31_0 = null ; Token lv_name_32_0 = null ; Token this_WS_33 = null ; Token lv_dbTable_34_0 = null ; Token this_WS_35 = null ; Token lv_dbColumns_36_0 = null ; Token lv_name_37_0 = null ; Token this_WS_38 = null ; Token lv_dbTable_39_0 = null ; Token this_WS_40 = null ; Token lv_dbColumns_41_0 = null ; Token lv_name_42_0 = null ; Token this_WS_43 = null ; Token lv_dbTable_44_0 = null ; Token this_WS_45 = null ; Token lv_name_47_0 = null ; Token this_WS_48 = null ; Token lv_name_50_0 = null ; Token this_WS_51 = null ; Token lv_dbTable_52_0 = null ; Token this_WS_53 = null ; Token lv_name_55_0 = null ; Token this_WS_56 = null ; Token lv_dbTable_57_0 = null ; Token this_WS_58 = null ; Token lv_name_60_0 = null ; Token this_WS_61 = null ; Token lv_dbTable_62_0 = null ; Token this_WS_63 = null ; Token lv_name_65_0 = null ; Token this_WS_66 = null ; Token lv_dbTable_67_0 = null ; Token this_WS_68 = null ; Token lv_name_70_0 = null ; Token this_WS_71 = null ; Token lv_dbTable_72_0 = null ; Token this_WS_73 = null ; Token lv_name_75_0 = null ; Token this_WS_76 = null ; Token lv_dbTable_77_0 = null ; Token this_WS_78 = null ; Token lv_name_80_0 = null ; Token this_WS_81 = null ; Token lv_dbTable_82_0 = null ; Token this_WS_83 = null ; Token lv_name_85_0 = null ; Token this_WS_86 = null ; Token lv_dbTable_87_0 = null ; Token this_WS_88 = null ; Token lv_dbColumn_89_0 = null ; Token this_WS_90 = null ; Token lv_name_92_0 = null ; Token this_WS_93 = null ; Token lv_methods_94_0 = null ; Token lv_name_95_0 = null ; Token this_WS_96 = null ; Token lv_name_98_0 = null ; Token this_WS_99 = null ; EObject lv_sqlTypes_2_0 = null ; EObject lv_sqlTypes_7_0 = null ; EObject lv_columnTypes_12_0 = null ; EObject lv_columnType_17_0 = null ; EObject lv_joinTables_26_0 = null ; EObject lv_columnTypes_46_0 = null ; EObject lv_tables_49_0 = null ; EObject lv_columns_54_0 = null ; EObject lv_exports_59_0 = null ; EObject lv_imports_64_0 = null ; EObject lv_imports_69_0 = null ; EObject lv_exports_74_0 = null ; EObject lv_imports_79_0 = null ; EObject lv_many2s_84_0 = null ; EObject lv_inheritance_91_0 = null ; enterRule ( ) ; try { { int alt86 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt86 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT:4> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT:5> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT:6> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT:7> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT:8> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT:9> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT:10> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT:11> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT:12> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT:15> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT:16> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT:20> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT> ; } break ; case <NUM_LIT> : { alt86 = <NUM_LIT> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt86 ) { case <NUM_LIT:1> : { { { { lv_name_0_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_51_in_rulePojogenProperty2868 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameTypesSqltypesKeyword_0_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_0 , "<STR_LIT>" ) ; } } } int cnt27 = <NUM_LIT:0> ; loop27 : do { int alt27 = <NUM_LIT:2> ; int LA27_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA27_0 == RULE_WS ) ) { alt27 = <NUM_LIT:1> ; } switch ( alt27 ) { case <NUM_LIT:1> : { int cnt26 = <NUM_LIT:0> ; loop26 : do { int alt26 = <NUM_LIT:2> ; int LA26_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA26_0 == RULE_WS ) ) { alt26 = <NUM_LIT:1> ; } switch ( alt26 ) { case <NUM_LIT:1> : { this_WS_1 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty2894 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_1 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_0_1_0 ( ) ) ; } } break ; default : if ( cnt26 >= <NUM_LIT:1> ) break loop26 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt26 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getSqlTypesSqlTypeAssignementParserRuleCall_0_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleSqlTypeAssignement_in_rulePojogenProperty2916 ) ; lv_sqlTypes_2_0 = ruleSqlTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojogenPropertyRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_sqlTypes_2_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : if ( cnt27 >= <NUM_LIT:1> ) break loop27 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt27 ++ ; } while ( true ) ; } } break ; case <NUM_LIT:2> : { { { { lv_name_3_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_52_in_rulePojogenProperty2944 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_3_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameTypesInTableKeyword_1_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_3_0 , "<STR_LIT>" ) ; } } } int cnt28 = <NUM_LIT:0> ; loop28 : do { int alt28 = <NUM_LIT:2> ; int LA28_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA28_0 == RULE_WS ) ) { alt28 = <NUM_LIT:1> ; } switch ( alt28 ) { case <NUM_LIT:1> : { this_WS_4 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty2969 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_4 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_1_1 ( ) ) ; } } break ; default : if ( cnt28 >= <NUM_LIT:1> ) break loop28 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt28 ++ ; } while ( true ) ; { { lv_dbTable_5_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty2987 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_5_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_1_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_5_0 , "<STR_LIT>" ) ; } } } int cnt30 = <NUM_LIT:0> ; loop30 : do { int alt30 = <NUM_LIT:2> ; int LA30_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA30_0 == RULE_WS ) ) { alt30 = <NUM_LIT:1> ; } switch ( alt30 ) { case <NUM_LIT:1> : { int cnt29 = <NUM_LIT:0> ; loop29 : do { int alt29 = <NUM_LIT:2> ; int LA29_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA29_0 == RULE_WS ) ) { alt29 = <NUM_LIT:1> ; } switch ( alt29 ) { case <NUM_LIT:1> : { this_WS_6 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3005 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_6 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_1_3_0 ( ) ) ; } } break ; default : if ( cnt29 >= <NUM_LIT:1> ) break loop29 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt29 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getSqlTypesSqlTypeAssignementParserRuleCall_1_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleSqlTypeAssignement_in_rulePojogenProperty3027 ) ; lv_sqlTypes_7_0 = ruleSqlTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojogenPropertyRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_sqlTypes_7_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : if ( cnt30 >= <NUM_LIT:1> ) break loop30 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT:30> , input ) ; throw eee ; } cnt30 ++ ; } while ( true ) ; } } break ; case <NUM_LIT:3> : { { { { lv_name_8_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_53_in_rulePojogenProperty3055 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_8_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameTypesForColumnsKeyword_2_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_8_0 , "<STR_LIT>" ) ; } } } int cnt31 = <NUM_LIT:0> ; loop31 : do { int alt31 = <NUM_LIT:2> ; int LA31_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA31_0 == RULE_WS ) ) { alt31 = <NUM_LIT:1> ; } switch ( alt31 ) { case <NUM_LIT:1> : { this_WS_9 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3080 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_9 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_2_1 ( ) ) ; } } break ; default : if ( cnt31 >= <NUM_LIT:1> ) break loop31 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT:31> , input ) ; throw eee ; } cnt31 ++ ; } while ( true ) ; { { lv_dbTable_10_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty3098 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_10_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_2_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_10_0 , "<STR_LIT>" ) ; } } } int cnt33 = <NUM_LIT:0> ; loop33 : do { int alt33 = <NUM_LIT:2> ; int LA33_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA33_0 == RULE_WS ) ) { alt33 = <NUM_LIT:1> ; } switch ( alt33 ) { case <NUM_LIT:1> : { int cnt32 = <NUM_LIT:0> ; loop32 : do { int alt32 = <NUM_LIT:2> ; int LA32_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA32_0 == RULE_WS ) ) { alt32 = <NUM_LIT:1> ; } switch ( alt32 ) { case <NUM_LIT:1> : { this_WS_11 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3116 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_11 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_2_3_0 ( ) ) ; } } break ; default : if ( cnt32 >= <NUM_LIT:1> ) break loop32 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT:32> , input ) ; throw eee ; } cnt32 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypesColumnTypeAssignementParserRuleCall_2_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleColumnTypeAssignement_in_rulePojogenProperty3138 ) ; lv_columnTypes_12_0 = ruleColumnTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojogenPropertyRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_columnTypes_12_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : if ( cnt33 >= <NUM_LIT:1> ) break loop33 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt33 ++ ; } while ( true ) ; } } break ; case <NUM_LIT:4> : { { { { lv_name_13_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_54_in_rulePojogenProperty3166 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_13_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameShowTypeForColumnKeyword_3_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_13_0 , "<STR_LIT>" ) ; } } } int cnt34 = <NUM_LIT:0> ; loop34 : do { int alt34 = <NUM_LIT:2> ; int LA34_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA34_0 == RULE_WS ) ) { alt34 = <NUM_LIT:1> ; } switch ( alt34 ) { case <NUM_LIT:1> : { this_WS_14 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3191 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_14 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_3_1 ( ) ) ; } } break ; default : if ( cnt34 >= <NUM_LIT:1> ) break loop34 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt34 ++ ; } while ( true ) ; { { lv_dbTable_15_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty3209 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_15_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_3_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_15_0 , "<STR_LIT>" ) ; } } } int cnt35 = <NUM_LIT:0> ; loop35 : do { int alt35 = <NUM_LIT:2> ; int LA35_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA35_0 == RULE_WS ) ) { alt35 = <NUM_LIT:1> ; } switch ( alt35 ) { case <NUM_LIT:1> : { this_WS_16 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3226 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_16 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_3_3 ( ) ) ; } } break ; default : if ( cnt35 >= <NUM_LIT:1> ) break loop35 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt35 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypeShowColumnTypeAssignementParserRuleCall_3_4_0 ( ) ) ; } pushFollow ( FOLLOW_ruleShowColumnTypeAssignement_in_rulePojogenProperty3248 ) ; lv_columnType_17_0 = ruleShowColumnTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojogenPropertyRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_columnType_17_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:5> : { { { { lv_name_18_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_55_in_rulePojogenProperty3274 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_18_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreTablesKeyword_4_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_18_0 , "<STR_LIT>" ) ; } } } int cnt37 = <NUM_LIT:0> ; loop37 : do { int alt37 = <NUM_LIT:2> ; int LA37_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA37_0 == RULE_WS ) ) { alt37 = <NUM_LIT:1> ; } switch ( alt37 ) { case <NUM_LIT:1> : { int cnt36 = <NUM_LIT:0> ; loop36 : do { int alt36 = <NUM_LIT:2> ; int LA36_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA36_0 == RULE_WS ) ) { alt36 = <NUM_LIT:1> ; } switch ( alt36 ) { case <NUM_LIT:1> : { this_WS_19 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3300 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_19 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_4_1_0 ( ) ) ; } } break ; default : if ( cnt36 >= <NUM_LIT:1> ) break loop36 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt36 ++ ; } while ( true ) ; { { lv_dbTables_20_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty3318 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTables_20_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTablesIDENTTerminalRuleCall_4_1_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_dbTables_20_0 , "<STR_LIT>" ) ; } } } } break ; default : if ( cnt37 >= <NUM_LIT:1> ) break loop37 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt37 ++ ; } while ( true ) ; } } break ; case <NUM_LIT:6> : { { { { lv_name_21_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_56_in_rulePojogenProperty3351 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_21_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameOnlyTablesKeyword_5_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_21_0 , "<STR_LIT>" ) ; } } } int cnt39 = <NUM_LIT:0> ; loop39 : do { int alt39 = <NUM_LIT:2> ; int LA39_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA39_0 == RULE_WS ) ) { alt39 = <NUM_LIT:1> ; } switch ( alt39 ) { case <NUM_LIT:1> : { int cnt38 = <NUM_LIT:0> ; loop38 : do { int alt38 = <NUM_LIT:2> ; int LA38_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA38_0 == RULE_WS ) ) { alt38 = <NUM_LIT:1> ; } switch ( alt38 ) { case <NUM_LIT:1> : { this_WS_22 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3377 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_22 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_5_1_0 ( ) ) ; } } break ; default : if ( cnt38 >= <NUM_LIT:1> ) break loop38 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt38 ++ ; } while ( true ) ; { { lv_dbTables_23_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty3395 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTables_23_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTablesIDENTTerminalRuleCall_5_1_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_dbTables_23_0 , "<STR_LIT>" ) ; } } } } break ; default : if ( cnt39 >= <NUM_LIT:1> ) break loop39 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt39 ++ ; } while ( true ) ; } } break ; case <NUM_LIT:7> : { { { { lv_name_24_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_57_in_rulePojogenProperty3428 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_24_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameJoinTablesKeyword_6_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_24_0 , "<STR_LIT>" ) ; } } } int cnt41 = <NUM_LIT:0> ; loop41 : do { int alt41 = <NUM_LIT:2> ; int LA41_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA41_0 == RULE_WS ) ) { alt41 = <NUM_LIT:1> ; } switch ( alt41 ) { case <NUM_LIT:1> : { int cnt40 = <NUM_LIT:0> ; loop40 : do { int alt40 = <NUM_LIT:2> ; int LA40_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA40_0 == RULE_WS ) ) { alt40 = <NUM_LIT:1> ; } switch ( alt40 ) { case <NUM_LIT:1> : { this_WS_25 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3454 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_25 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_6_1_0 ( ) ) ; } } break ; default : if ( cnt40 >= <NUM_LIT:1> ) break loop40 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt40 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getJoinTablesJoinTableAssignementParserRuleCall_6_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleJoinTableAssignement_in_rulePojogenProperty3476 ) ; lv_joinTables_26_0 = ruleJoinTableAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojogenPropertyRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_joinTables_26_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : if ( cnt41 >= <NUM_LIT:1> ) break loop41 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt41 ++ ; } while ( true ) ; } } break ; case <NUM_LIT:8> : { { { { lv_name_27_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_58_in_rulePojogenProperty3504 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_27_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreColumnsKeyword_7_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_27_0 , "<STR_LIT>" ) ; } } } int cnt42 = <NUM_LIT:0> ; loop42 : do { int alt42 = <NUM_LIT:2> ; int LA42_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA42_0 == RULE_WS ) ) { alt42 = <NUM_LIT:1> ; } switch ( alt42 ) { case <NUM_LIT:1> : { this_WS_28 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3529 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_28 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_7_1 ( ) ) ; } } break ; default : if ( cnt42 >= <NUM_LIT:1> ) break loop42 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt42 ++ ; } while ( true ) ; { { lv_dbTable_29_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty3547 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_29_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_7_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_29_0 , "<STR_LIT>" ) ; } } } int cnt44 = <NUM_LIT:0> ; loop44 : do { int alt44 = <NUM_LIT:2> ; int LA44_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA44_0 == RULE_WS ) ) { alt44 = <NUM_LIT:1> ; } switch ( alt44 ) { case <NUM_LIT:1> : { int cnt43 = <NUM_LIT:0> ; loop43 : do { int alt43 = <NUM_LIT:2> ; int LA43_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA43_0 == RULE_WS ) ) { alt43 = <NUM_LIT:1> ; } switch ( alt43 ) { case <NUM_LIT:1> : { this_WS_30 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3565 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_30 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_7_3_0 ( ) ) ; } } break ; default : if ( cnt43 >= <NUM_LIT:1> ) break loop43 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt43 ++ ; } while ( true ) ; { { lv_dbColumns_31_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty3583 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbColumns_31_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsIDENTTerminalRuleCall_7_3_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_dbColumns_31_0 , "<STR_LIT>" ) ; } } } } break ; default : if ( cnt44 >= <NUM_LIT:1> ) break loop44 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt44 ++ ; } while ( true ) ; } } break ; case <NUM_LIT:9> : { { { { lv_name_32_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_59_in_rulePojogenProperty3616 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_32_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameRequiredColumnsKeyword_8_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_32_0 , "<STR_LIT>" ) ; } } } int cnt45 = <NUM_LIT:0> ; loop45 : do { int alt45 = <NUM_LIT:2> ; int LA45_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA45_0 == RULE_WS ) ) { alt45 = <NUM_LIT:1> ; } switch ( alt45 ) { case <NUM_LIT:1> : { this_WS_33 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3641 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_33 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_8_1 ( ) ) ; } } break ; default : if ( cnt45 >= <NUM_LIT:1> ) break loop45 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt45 ++ ; } while ( true ) ; { { lv_dbTable_34_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty3659 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_34_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_8_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_34_0 , "<STR_LIT>" ) ; } } } int cnt47 = <NUM_LIT:0> ; loop47 : do { int alt47 = <NUM_LIT:2> ; int LA47_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA47_0 == RULE_WS ) ) { alt47 = <NUM_LIT:1> ; } switch ( alt47 ) { case <NUM_LIT:1> : { int cnt46 = <NUM_LIT:0> ; loop46 : do { int alt46 = <NUM_LIT:2> ; int LA46_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA46_0 == RULE_WS ) ) { alt46 = <NUM_LIT:1> ; } switch ( alt46 ) { case <NUM_LIT:1> : { this_WS_35 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3677 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_35 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_8_3_0 ( ) ) ; } } break ; default : if ( cnt46 >= <NUM_LIT:1> ) break loop46 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt46 ++ ; } while ( true ) ; { { lv_dbColumns_36_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty3695 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbColumns_36_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsIDENTTerminalRuleCall_8_3_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_dbColumns_36_0 , "<STR_LIT>" ) ; } } } } break ; default : if ( cnt47 >= <NUM_LIT:1> ) break loop47 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt47 ++ ; } while ( true ) ; } } break ; case <NUM_LIT:10> : { { { { lv_name_37_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_60_in_rulePojogenProperty3728 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_37_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameNotRequiredColumnsKeyword_9_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_37_0 , "<STR_LIT>" ) ; } } } int cnt48 = <NUM_LIT:0> ; loop48 : do { int alt48 = <NUM_LIT:2> ; int LA48_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA48_0 == RULE_WS ) ) { alt48 = <NUM_LIT:1> ; } switch ( alt48 ) { case <NUM_LIT:1> : { this_WS_38 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3753 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_38 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_9_1 ( ) ) ; } } break ; default : if ( cnt48 >= <NUM_LIT:1> ) break loop48 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt48 ++ ; } while ( true ) ; { { lv_dbTable_39_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty3771 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_39_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_9_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_39_0 , "<STR_LIT>" ) ; } } } int cnt50 = <NUM_LIT:0> ; loop50 : do { int alt50 = <NUM_LIT:2> ; int LA50_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA50_0 == RULE_WS ) ) { alt50 = <NUM_LIT:1> ; } switch ( alt50 ) { case <NUM_LIT:1> : { int cnt49 = <NUM_LIT:0> ; loop49 : do { int alt49 = <NUM_LIT:2> ; int LA49_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA49_0 == RULE_WS ) ) { alt49 = <NUM_LIT:1> ; } switch ( alt49 ) { case <NUM_LIT:1> : { this_WS_40 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3789 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_40 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_9_3_0 ( ) ) ; } } break ; default : if ( cnt49 >= <NUM_LIT:1> ) break loop49 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt49 ++ ; } while ( true ) ; { { lv_dbColumns_41_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty3807 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbColumns_41_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnsIDENTTerminalRuleCall_9_3_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_dbColumns_41_0 , "<STR_LIT>" ) ; } } } } break ; default : if ( cnt50 >= <NUM_LIT:1> ) break loop50 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt50 ++ ; } while ( true ) ; } } break ; case <NUM_LIT:11> : { { { { lv_name_42_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_61_in_rulePojogenProperty3840 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_42_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameCreateColumnsKeyword_10_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_42_0 , "<STR_LIT>" ) ; } } } int cnt51 = <NUM_LIT:0> ; loop51 : do { int alt51 = <NUM_LIT:2> ; int LA51_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA51_0 == RULE_WS ) ) { alt51 = <NUM_LIT:1> ; } switch ( alt51 ) { case <NUM_LIT:1> : { this_WS_43 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3865 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_43 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_10_1 ( ) ) ; } } break ; default : if ( cnt51 >= <NUM_LIT:1> ) break loop51 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt51 ++ ; } while ( true ) ; { { lv_dbTable_44_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty3883 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_44_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_10_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_44_0 , "<STR_LIT>" ) ; } } } int cnt53 = <NUM_LIT:0> ; loop53 : do { int alt53 = <NUM_LIT:2> ; int LA53_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA53_0 == RULE_WS ) ) { alt53 = <NUM_LIT:1> ; } switch ( alt53 ) { case <NUM_LIT:1> : { int cnt52 = <NUM_LIT:0> ; loop52 : do { int alt52 = <NUM_LIT:2> ; int LA52_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA52_0 == RULE_WS ) ) { alt52 = <NUM_LIT:1> ; } switch ( alt52 ) { case <NUM_LIT:1> : { this_WS_45 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3901 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_45 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_10_3_0 ( ) ) ; } } break ; default : if ( cnt52 >= <NUM_LIT:1> ) break loop52 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt52 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnTypesColumnTypeAssignementParserRuleCall_10_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleColumnTypeAssignement_in_rulePojogenProperty3923 ) ; lv_columnTypes_46_0 = ruleColumnTypeAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojogenPropertyRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_columnTypes_46_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : if ( cnt53 >= <NUM_LIT:1> ) break loop53 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt53 ++ ; } while ( true ) ; } } break ; case <NUM_LIT:12> : { { { { lv_name_47_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_62_in_rulePojogenProperty3951 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_47_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameRenameTablesKeyword_11_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_47_0 , "<STR_LIT>" ) ; } } } int cnt55 = <NUM_LIT:0> ; loop55 : do { int alt55 = <NUM_LIT:2> ; int LA55_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA55_0 == RULE_WS ) ) { alt55 = <NUM_LIT:1> ; } switch ( alt55 ) { case <NUM_LIT:1> : { int cnt54 = <NUM_LIT:0> ; loop54 : do { int alt54 = <NUM_LIT:2> ; int LA54_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA54_0 == RULE_WS ) ) { alt54 = <NUM_LIT:1> ; } switch ( alt54 ) { case <NUM_LIT:1> : { this_WS_48 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty3977 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_48 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_11_1_0 ( ) ) ; } } break ; default : if ( cnt54 >= <NUM_LIT:1> ) break loop54 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt54 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getTablesTableAssignementParserRuleCall_11_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleTableAssignement_in_rulePojogenProperty3999 ) ; lv_tables_49_0 = ruleTableAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojogenPropertyRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_tables_49_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : if ( cnt55 >= <NUM_LIT:1> ) break loop55 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt55 ++ ; } while ( true ) ; } } break ; case <NUM_LIT> : { { { { lv_name_50_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_63_in_rulePojogenProperty4027 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_50_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameRenameColumnsKeyword_12_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_50_0 , "<STR_LIT>" ) ; } } } int cnt56 = <NUM_LIT:0> ; loop56 : do { int alt56 = <NUM_LIT:2> ; int LA56_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA56_0 == RULE_WS ) ) { alt56 = <NUM_LIT:1> ; } switch ( alt56 ) { case <NUM_LIT:1> : { this_WS_51 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4052 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_51 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_12_1 ( ) ) ; } } break ; default : if ( cnt56 >= <NUM_LIT:1> ) break loop56 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt56 ++ ; } while ( true ) ; { { lv_dbTable_52_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty4070 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_52_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_12_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_52_0 , "<STR_LIT>" ) ; } } } int cnt58 = <NUM_LIT:0> ; loop58 : do { int alt58 = <NUM_LIT:2> ; int LA58_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA58_0 == RULE_WS ) ) { alt58 = <NUM_LIT:1> ; } switch ( alt58 ) { case <NUM_LIT:1> : { int cnt57 = <NUM_LIT:0> ; loop57 : do { int alt57 = <NUM_LIT:2> ; int LA57_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA57_0 == RULE_WS ) ) { alt57 = <NUM_LIT:1> ; } switch ( alt57 ) { case <NUM_LIT:1> : { this_WS_53 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4088 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_53 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_12_3_0 ( ) ) ; } } break ; default : if ( cnt57 >= <NUM_LIT:1> ) break loop57 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt57 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getColumnsColumnAssignementParserRuleCall_12_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleColumnAssignement_in_rulePojogenProperty4110 ) ; lv_columns_54_0 = ruleColumnAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojogenPropertyRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_columns_54_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : if ( cnt58 >= <NUM_LIT:1> ) break loop58 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt58 ++ ; } while ( true ) ; } } break ; case <NUM_LIT> : { { { { lv_name_55_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_64_in_rulePojogenProperty4138 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_55_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreOneToManyKeyword_13_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_55_0 , "<STR_LIT>" ) ; } } } int cnt59 = <NUM_LIT:0> ; loop59 : do { int alt59 = <NUM_LIT:2> ; int LA59_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA59_0 == RULE_WS ) ) { alt59 = <NUM_LIT:1> ; } switch ( alt59 ) { case <NUM_LIT:1> : { this_WS_56 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4163 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_56 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_13_1 ( ) ) ; } } break ; default : if ( cnt59 >= <NUM_LIT:1> ) break loop59 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt59 ++ ; } while ( true ) ; { { lv_dbTable_57_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty4181 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_57_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_13_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_57_0 , "<STR_LIT>" ) ; } } } int cnt61 = <NUM_LIT:0> ; loop61 : do { int alt61 = <NUM_LIT:2> ; int LA61_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA61_0 == RULE_WS ) ) { alt61 = <NUM_LIT:1> ; } switch ( alt61 ) { case <NUM_LIT:1> : { int cnt60 = <NUM_LIT:0> ; loop60 : do { int alt60 = <NUM_LIT:2> ; int LA60_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA60_0 == RULE_WS ) ) { alt60 = <NUM_LIT:1> ; } switch ( alt60 ) { case <NUM_LIT:1> : { this_WS_58 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4199 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_58 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_13_3_0 ( ) ) ; } } break ; default : if ( cnt60 >= <NUM_LIT:1> ) break loop60 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt60 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getExportsExportAssignementParserRuleCall_13_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleExportAssignement_in_rulePojogenProperty4221 ) ; lv_exports_59_0 = ruleExportAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojogenPropertyRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_exports_59_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : if ( cnt61 >= <NUM_LIT:1> ) break loop61 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt61 ++ ; } while ( true ) ; } } break ; case <NUM_LIT:15> : { { { { lv_name_60_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_65_in_rulePojogenProperty4249 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_60_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameIgnoreManyToOneKeyword_14_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_60_0 , "<STR_LIT>" ) ; } } } int cnt62 = <NUM_LIT:0> ; loop62 : do { int alt62 = <NUM_LIT:2> ; int LA62_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA62_0 == RULE_WS ) ) { alt62 = <NUM_LIT:1> ; } switch ( alt62 ) { case <NUM_LIT:1> : { this_WS_61 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4274 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_61 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_14_1 ( ) ) ; } } break ; default : if ( cnt62 >= <NUM_LIT:1> ) break loop62 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt62 ++ ; } while ( true ) ; { { lv_dbTable_62_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty4292 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_62_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_14_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_62_0 , "<STR_LIT>" ) ; } } } int cnt64 = <NUM_LIT:0> ; loop64 : do { int alt64 = <NUM_LIT:2> ; int LA64_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA64_0 == RULE_WS ) ) { alt64 = <NUM_LIT:1> ; } switch ( alt64 ) { case <NUM_LIT:1> : { int cnt63 = <NUM_LIT:0> ; loop63 : do { int alt63 = <NUM_LIT:2> ; int LA63_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA63_0 == RULE_WS ) ) { alt63 = <NUM_LIT:1> ; } switch ( alt63 ) { case <NUM_LIT:1> : { this_WS_63 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4310 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_63 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_14_3_0 ( ) ) ; } } break ; default : if ( cnt63 >= <NUM_LIT:1> ) break loop63 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt63 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsImportAssignementParserRuleCall_14_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleImportAssignement_in_rulePojogenProperty4332 ) ; lv_imports_64_0 = ruleImportAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojogenPropertyRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_imports_64_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : if ( cnt64 >= <NUM_LIT:1> ) break loop64 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt64 ++ ; } while ( true ) ; } } break ; case <NUM_LIT:16> : { { { { lv_name_65_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_66_in_rulePojogenProperty4360 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_65_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameInheritManyToOneKeyword_15_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_65_0 , "<STR_LIT>" ) ; } } } int cnt65 = <NUM_LIT:0> ; loop65 : do { int alt65 = <NUM_LIT:2> ; int LA65_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA65_0 == RULE_WS ) ) { alt65 = <NUM_LIT:1> ; } switch ( alt65 ) { case <NUM_LIT:1> : { this_WS_66 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4385 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_66 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_15_1 ( ) ) ; } } break ; default : if ( cnt65 >= <NUM_LIT:1> ) break loop65 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt65 ++ ; } while ( true ) ; { { lv_dbTable_67_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty4403 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_67_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_15_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_67_0 , "<STR_LIT>" ) ; } } } int cnt67 = <NUM_LIT:0> ; loop67 : do { int alt67 = <NUM_LIT:2> ; int LA67_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA67_0 == RULE_WS ) ) { alt67 = <NUM_LIT:1> ; } switch ( alt67 ) { case <NUM_LIT:1> : { int cnt66 = <NUM_LIT:0> ; loop66 : do { int alt66 = <NUM_LIT:2> ; int LA66_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA66_0 == RULE_WS ) ) { alt66 = <NUM_LIT:1> ; } switch ( alt66 ) { case <NUM_LIT:1> : { this_WS_68 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4421 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_68 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_15_3_0 ( ) ) ; } } break ; default : if ( cnt66 >= <NUM_LIT:1> ) break loop66 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt66 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsImportAssignementParserRuleCall_15_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleImportAssignement_in_rulePojogenProperty4443 ) ; lv_imports_69_0 = ruleImportAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojogenPropertyRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_imports_69_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : if ( cnt67 >= <NUM_LIT:1> ) break loop67 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt67 ++ ; } while ( true ) ; } } break ; case <NUM_LIT> : { { { { lv_name_70_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_67_in_rulePojogenProperty4471 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_70_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameCreateOneToManyKeyword_16_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_70_0 , "<STR_LIT>" ) ; } } } int cnt68 = <NUM_LIT:0> ; loop68 : do { int alt68 = <NUM_LIT:2> ; int LA68_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA68_0 == RULE_WS ) ) { alt68 = <NUM_LIT:1> ; } switch ( alt68 ) { case <NUM_LIT:1> : { this_WS_71 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4496 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_71 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_16_1 ( ) ) ; } } break ; default : if ( cnt68 >= <NUM_LIT:1> ) break loop68 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt68 ++ ; } while ( true ) ; { { lv_dbTable_72_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty4514 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_72_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_16_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_72_0 , "<STR_LIT>" ) ; } } } int cnt70 = <NUM_LIT:0> ; loop70 : do { int alt70 = <NUM_LIT:2> ; int LA70_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA70_0 == RULE_WS ) ) { alt70 = <NUM_LIT:1> ; } switch ( alt70 ) { case <NUM_LIT:1> : { int cnt69 = <NUM_LIT:0> ; loop69 : do { int alt69 = <NUM_LIT:2> ; int LA69_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA69_0 == RULE_WS ) ) { alt69 = <NUM_LIT:1> ; } switch ( alt69 ) { case <NUM_LIT:1> : { this_WS_73 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4532 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_73 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_16_3_0 ( ) ) ; } } break ; default : if ( cnt69 >= <NUM_LIT:1> ) break loop69 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt69 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getExportsExportAssignementParserRuleCall_16_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleExportAssignement_in_rulePojogenProperty4554 ) ; lv_exports_74_0 = ruleExportAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojogenPropertyRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_exports_74_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : if ( cnt70 >= <NUM_LIT:1> ) break loop70 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt70 ++ ; } while ( true ) ; } } break ; case <NUM_LIT> : { { { { lv_name_75_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_68_in_rulePojogenProperty4582 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_75_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameCreateManyToOneKeyword_17_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_75_0 , "<STR_LIT>" ) ; } } } int cnt71 = <NUM_LIT:0> ; loop71 : do { int alt71 = <NUM_LIT:2> ; int LA71_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA71_0 == RULE_WS ) ) { alt71 = <NUM_LIT:1> ; } switch ( alt71 ) { case <NUM_LIT:1> : { this_WS_76 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4607 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_76 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_17_1 ( ) ) ; } } break ; default : if ( cnt71 >= <NUM_LIT:1> ) break loop71 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt71 ++ ; } while ( true ) ; { { lv_dbTable_77_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty4625 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_77_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_17_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_77_0 , "<STR_LIT>" ) ; } } } int cnt73 = <NUM_LIT:0> ; loop73 : do { int alt73 = <NUM_LIT:2> ; int LA73_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA73_0 == RULE_WS ) ) { alt73 = <NUM_LIT:1> ; } switch ( alt73 ) { case <NUM_LIT:1> : { int cnt72 = <NUM_LIT:0> ; loop72 : do { int alt72 = <NUM_LIT:2> ; int LA72_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA72_0 == RULE_WS ) ) { alt72 = <NUM_LIT:1> ; } switch ( alt72 ) { case <NUM_LIT:1> : { this_WS_78 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4643 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_78 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_17_3_0 ( ) ) ; } } break ; default : if ( cnt72 >= <NUM_LIT:1> ) break loop72 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt72 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getImportsImportAssignementParserRuleCall_17_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleImportAssignement_in_rulePojogenProperty4665 ) ; lv_imports_79_0 = ruleImportAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojogenPropertyRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_imports_79_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : if ( cnt73 >= <NUM_LIT:1> ) break loop73 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt73 ++ ; } while ( true ) ; } } break ; case <NUM_LIT> : { { { { lv_name_80_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_69_in_rulePojogenProperty4693 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_80_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameTableManyToManyKeyword_18_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_80_0 , "<STR_LIT>" ) ; } } } int cnt74 = <NUM_LIT:0> ; loop74 : do { int alt74 = <NUM_LIT:2> ; int LA74_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA74_0 == RULE_WS ) ) { alt74 = <NUM_LIT:1> ; } switch ( alt74 ) { case <NUM_LIT:1> : { this_WS_81 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4718 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_81 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_18_1 ( ) ) ; } } break ; default : if ( cnt74 >= <NUM_LIT:1> ) break loop74 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt74 ++ ; } while ( true ) ; { { lv_dbTable_82_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty4736 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_82_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_18_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_82_0 , "<STR_LIT>" ) ; } } } int cnt76 = <NUM_LIT:0> ; loop76 : do { int alt76 = <NUM_LIT:2> ; int LA76_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA76_0 == RULE_WS ) ) { alt76 = <NUM_LIT:1> ; } switch ( alt76 ) { case <NUM_LIT:1> : { int cnt75 = <NUM_LIT:0> ; loop75 : do { int alt75 = <NUM_LIT:2> ; int LA75_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA75_0 == RULE_WS ) ) { alt75 = <NUM_LIT:1> ; } switch ( alt75 ) { case <NUM_LIT:1> : { this_WS_83 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4754 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_83 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_18_3_0 ( ) ) ; } } break ; default : if ( cnt75 >= <NUM_LIT:1> ) break loop75 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt75 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getMany2sManyToManyAssignementParserRuleCall_18_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleManyToManyAssignement_in_rulePojogenProperty4776 ) ; lv_many2s_84_0 = ruleManyToManyAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojogenPropertyRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_many2s_84_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : if ( cnt76 >= <NUM_LIT:1> ) break loop76 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt76 ++ ; } while ( true ) ; } } break ; case <NUM_LIT:20> : { { { { lv_name_85_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_70_in_rulePojogenProperty4804 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_85_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameInheritDiscriminatorKeyword_19_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_85_0 , "<STR_LIT>" ) ; } } } int cnt77 = <NUM_LIT:0> ; loop77 : do { int alt77 = <NUM_LIT:2> ; int LA77_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA77_0 == RULE_WS ) ) { alt77 = <NUM_LIT:1> ; } switch ( alt77 ) { case <NUM_LIT:1> : { this_WS_86 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4829 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_86 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_19_1 ( ) ) ; } } break ; default : if ( cnt77 >= <NUM_LIT:1> ) break loop77 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt77 ++ ; } while ( true ) ; { { lv_dbTable_87_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty4847 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbTable_87_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbTableIDENTTerminalRuleCall_19_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbTable_87_0 , "<STR_LIT>" ) ; } } } int cnt78 = <NUM_LIT:0> ; loop78 : do { int alt78 = <NUM_LIT:2> ; int LA78_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA78_0 == RULE_WS ) ) { alt78 = <NUM_LIT:1> ; } switch ( alt78 ) { case <NUM_LIT:1> : { this_WS_88 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4864 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_88 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_19_3 ( ) ) ; } } break ; default : if ( cnt78 >= <NUM_LIT:1> ) break loop78 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt78 ++ ; } while ( true ) ; { { lv_dbColumn_89_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty4882 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_dbColumn_89_0 , grammarAccess . getPojogenPropertyAccess ( ) . getDbColumnIDENTTerminalRuleCall_19_4_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_dbColumn_89_0 , "<STR_LIT>" ) ; } } } int cnt80 = <NUM_LIT:0> ; loop80 : do { int alt80 = <NUM_LIT:2> ; int LA80_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA80_0 == RULE_WS ) ) { alt80 = <NUM_LIT:1> ; } switch ( alt80 ) { case <NUM_LIT:1> : { int cnt79 = <NUM_LIT:0> ; loop79 : do { int alt79 = <NUM_LIT:2> ; int LA79_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA79_0 == RULE_WS ) ) { alt79 = <NUM_LIT:1> ; } switch ( alt79 ) { case <NUM_LIT:1> : { this_WS_90 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4900 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_90 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_19_5_0 ( ) ) ; } } break ; default : if ( cnt79 >= <NUM_LIT:1> ) break loop79 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt79 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getInheritanceInheritanceAssignementParserRuleCall_19_5_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleInheritanceAssignement_in_rulePojogenProperty4922 ) ; lv_inheritance_91_0 = ruleInheritanceAssignement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojogenPropertyRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_inheritance_91_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : if ( cnt80 >= <NUM_LIT:1> ) break loop80 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt80 ++ ; } while ( true ) ; } } break ; case <NUM_LIT> : { { { { lv_name_92_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_71_in_rulePojogenProperty4950 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_92_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameGenerateMethodsKeyword_20_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_92_0 , "<STR_LIT>" ) ; } } } int cnt82 = <NUM_LIT:0> ; loop82 : do { int alt82 = <NUM_LIT:2> ; int LA82_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA82_0 == RULE_WS ) ) { alt82 = <NUM_LIT:1> ; } switch ( alt82 ) { case <NUM_LIT:1> : { int cnt81 = <NUM_LIT:0> ; loop81 : do { int alt81 = <NUM_LIT:2> ; int LA81_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA81_0 == RULE_WS ) ) { alt81 = <NUM_LIT:1> ; } switch ( alt81 ) { case <NUM_LIT:1> : { this_WS_93 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty4976 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_93 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_20_1_0 ( ) ) ; } } break ; default : if ( cnt81 >= <NUM_LIT:1> ) break loop81 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt81 ++ ; } while ( true ) ; { { lv_methods_94_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojogenProperty4994 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_methods_94_0 , grammarAccess . getPojogenPropertyAccess ( ) . getMethodsIDENTTerminalRuleCall_20_1_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_methods_94_0 , "<STR_LIT>" ) ; } } } } break ; default : if ( cnt82 >= <NUM_LIT:1> ) break loop82 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt82 ++ ; } while ( true ) ; } } break ; case <NUM_LIT> : { { { { lv_name_95_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_72_in_rulePojogenProperty5027 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_95_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameImplementsInterfacesKeyword_21_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_95_0 , "<STR_LIT>" ) ; } } } int cnt84 = <NUM_LIT:0> ; loop84 : do { int alt84 = <NUM_LIT:2> ; int LA84_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA84_0 == RULE_WS ) ) { alt84 = <NUM_LIT:1> ; } switch ( alt84 ) { case <NUM_LIT:1> : { int cnt83 = <NUM_LIT:0> ; loop83 : do { int alt83 = <NUM_LIT:2> ; int LA83_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA83_0 == RULE_WS ) ) { alt83 = <NUM_LIT:1> ; } switch ( alt83 ) { case <NUM_LIT:1> : { this_WS_96 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty5053 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_96 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_21_1_0 ( ) ) ; } } break ; default : if ( cnt83 >= <NUM_LIT:1> ) break loop83 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt83 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getToImplementsJvmTypeCrossReference_21_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_rulePojogenProperty5077 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { afterParserOrEnumRuleCall ( ) ; } } } } break ; default : if ( cnt84 >= <NUM_LIT:1> ) break loop84 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt84 ++ ; } while ( true ) ; } } break ; case <NUM_LIT> : { { { { lv_name_98_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_73_in_rulePojogenProperty5105 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_98_0 , grammarAccess . getPojogenPropertyAccess ( ) . getNameExtendsClassKeyword_22_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_98_0 , "<STR_LIT>" ) ; } } } int cnt85 = <NUM_LIT:0> ; loop85 : do { int alt85 = <NUM_LIT:2> ; int LA85_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA85_0 == RULE_WS ) ) { alt85 = <NUM_LIT:1> ; } switch ( alt85 ) { case <NUM_LIT:1> : { this_WS_99 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePojogenProperty5130 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_99 , grammarAccess . getPojogenPropertyAccess ( ) . getWSTerminalRuleCall_22_1 ( ) ) ; } } break ; default : if ( cnt85 >= <NUM_LIT:1> ) break loop85 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt85 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojogenPropertyRule ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojogenPropertyAccess ( ) . getToExtendsJvmTypeCrossReference_22_2_0 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_rulePojogenProperty5154 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { afterParserOrEnumRuleCall ( ) ; } } } } } break ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final String entryRulePropertyValue ( ) throws RecognitionException { String current = null ; AntlrDatatypeRuleToken iv_rulePropertyValue = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPropertyValueRule ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_entryRulePropertyValue5192 ) ; iv_rulePropertyValue = rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_rulePropertyValue . getText ( ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePropertyValue5203 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final AntlrDatatypeRuleToken rulePropertyValue ( ) throws RecognitionException { AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken ( ) ; Token this_REST_0 = null ; Token this_IDENT_DOT_1 = null ; Token this_IDENT_2 = null ; Token this_NUMBER_3 = null ; Token this_COLON_4 = null ; Token this_STRING_5 = null ; Token this_COMMA_6 = null ; Token this_MINUS_7 = null ; Token this_PLUS_8 = null ; Token this_LPAREN_9 = null ; Token this_RPAREN_10 = null ; Token this_LBRACE_11 = null ; Token this_RBRACE_12 = null ; Token this_QUESTI_13 = null ; Token this_NOT_14 = null ; Token this_BAND_15 = null ; Token this_BOR_16 = null ; Token this_HASH_17 = null ; Token this_AT_18 = null ; Token this_CARET_19 = null ; Token this_EQUALS_20 = null ; Token this_LESS_THAN_21 = null ; Token this_MORE_THAN_22 = null ; Token this_PERCENT_23 = null ; Token this_AND_24 = null ; Token this_OR_25 = null ; Token this_ESC_CHAR_26 = null ; Token this_ON_OFF_27 = null ; Token this_STATEMEN_TYPE_28 = null ; Token this_MAPPING_TYPE_29 = null ; Token this_OPTION_TYPE_30 = null ; Token this_REST_31 = null ; Token this_IDENT_DOT_32 = null ; Token this_IDENT_33 = null ; Token this_NUMBER_34 = null ; Token this_WS_35 = null ; Token this_COLON_36 = null ; Token this_STRING_37 = null ; Token this_COMMA_38 = null ; Token this_MINUS_39 = null ; Token this_PLUS_40 = null ; Token this_LPAREN_41 = null ; Token this_RPAREN_42 = null ; Token this_LBRACE_43 = null ; Token this_RBRACE_44 = null ; Token this_QUESTI_45 = null ; Token this_NOT_46 = null ; Token this_BAND_47 = null ; Token this_BOR_48 = null ; Token this_HASH_49 = null ; Token this_AT_50 = null ; Token this_CARET_51 = null ; Token this_EQUALS_52 = null ; Token this_LESS_THAN_53 = null ; Token this_MORE_THAN_54 = null ; Token this_PERCENT_55 = null ; Token this_AND_56 = null ; Token this_OR_57 = null ; Token this_ESC_CHAR_58 = null ; Token this_ON_OFF_59 = null ; Token this_STATEMEN_TYPE_60 = null ; Token this_MAPPING_TYPE_61 = null ; Token this_OPTION_TYPE_62 = null ; enterRule ( ) ; try { { { int alt87 = <NUM_LIT:31> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt87 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt87 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt87 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt87 = <NUM_LIT:4> ; } break ; case RULE_COLON : { alt87 = <NUM_LIT:5> ; } break ; case RULE_STRING : { alt87 = <NUM_LIT:6> ; } break ; case RULE_COMMA : { alt87 = <NUM_LIT:7> ; } break ; case RULE_MINUS : { alt87 = <NUM_LIT:8> ; } break ; case RULE_PLUS : { alt87 = <NUM_LIT:9> ; } break ; case RULE_LPAREN : { alt87 = <NUM_LIT:10> ; } break ; case RULE_RPAREN : { alt87 = <NUM_LIT:11> ; } break ; case RULE_LBRACE : { alt87 = <NUM_LIT:12> ; } break ; case RULE_RBRACE : { alt87 = <NUM_LIT> ; } break ; case RULE_QUESTI : { alt87 = <NUM_LIT> ; } break ; case RULE_NOT : { alt87 = <NUM_LIT:15> ; } break ; case RULE_BAND : { alt87 = <NUM_LIT:16> ; } break ; case RULE_BOR : { alt87 = <NUM_LIT> ; } break ; case RULE_HASH : { alt87 = <NUM_LIT> ; } break ; case RULE_AT : { alt87 = <NUM_LIT> ; } break ; case RULE_CARET : { alt87 = <NUM_LIT:20> ; } break ; case RULE_EQUALS : { alt87 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt87 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt87 = <NUM_LIT> ; } break ; case RULE_PERCENT : { alt87 = <NUM_LIT:24> ; } break ; case RULE_AND : { alt87 = <NUM_LIT> ; } break ; case RULE_OR : { alt87 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt87 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt87 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt87 = <NUM_LIT> ; } break ; case RULE_MAPPING_TYPE : { alt87 = <NUM_LIT:30> ; } break ; case RULE_OPTION_TYPE : { alt87 = <NUM_LIT:31> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt87 ) { case <NUM_LIT:1> : { this_REST_0 = ( Token ) match ( input , RULE_REST , FOLLOW_RULE_REST_in_rulePropertyValue5244 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_REST_0 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_REST_0 , grammarAccess . getPropertyValueAccess ( ) . getRESTTerminalRuleCall_0_0 ( ) ) ; } } break ; case <NUM_LIT:2> : { this_IDENT_DOT_1 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rulePropertyValue5270 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_DOT_1 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_DOT_1 , grammarAccess . getPropertyValueAccess ( ) . getIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } } break ; case <NUM_LIT:3> : { this_IDENT_2 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePropertyValue5296 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_2 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_2 , grammarAccess . getPropertyValueAccess ( ) . getIDENTTerminalRuleCall_0_2 ( ) ) ; } } break ; case <NUM_LIT:4> : { this_NUMBER_3 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rulePropertyValue5322 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NUMBER_3 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NUMBER_3 , grammarAccess . getPropertyValueAccess ( ) . getNUMBERTerminalRuleCall_0_3 ( ) ) ; } } break ; case <NUM_LIT:5> : { this_COLON_4 = ( Token ) match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rulePropertyValue5348 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_COLON_4 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COLON_4 , grammarAccess . getPropertyValueAccess ( ) . getCOLONTerminalRuleCall_0_4 ( ) ) ; } } break ; case <NUM_LIT:6> : { this_STRING_5 = ( Token ) match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_rulePropertyValue5374 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_STRING_5 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STRING_5 , grammarAccess . getPropertyValueAccess ( ) . getSTRINGTerminalRuleCall_0_5 ( ) ) ; } } break ; case <NUM_LIT:7> : { this_COMMA_6 = ( Token ) match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_rulePropertyValue5400 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_COMMA_6 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COMMA_6 , grammarAccess . getPropertyValueAccess ( ) . getCOMMATerminalRuleCall_0_6 ( ) ) ; } } break ; case <NUM_LIT:8> : { this_MINUS_7 = ( Token ) match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_rulePropertyValue5426 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MINUS_7 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MINUS_7 , grammarAccess . getPropertyValueAccess ( ) . getMINUSTerminalRuleCall_0_7 ( ) ) ; } } break ; case <NUM_LIT:9> : { this_PLUS_8 = ( Token ) match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_rulePropertyValue5452 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_PLUS_8 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PLUS_8 , grammarAccess . getPropertyValueAccess ( ) . getPLUSTerminalRuleCall_0_8 ( ) ) ; } } break ; case <NUM_LIT:10> : { this_LPAREN_9 = ( Token ) match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rulePropertyValue5478 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LPAREN_9 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LPAREN_9 , grammarAccess . getPropertyValueAccess ( ) . getLPARENTerminalRuleCall_0_9 ( ) ) ; } } break ; case <NUM_LIT:11> : { this_RPAREN_10 = ( Token ) match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rulePropertyValue5504 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_RPAREN_10 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RPAREN_10 , grammarAccess . getPropertyValueAccess ( ) . getRPARENTerminalRuleCall_0_10 ( ) ) ; } } break ; case <NUM_LIT:12> : { this_LBRACE_11 = ( Token ) match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_rulePropertyValue5530 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LBRACE_11 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LBRACE_11 , grammarAccess . getPropertyValueAccess ( ) . getLBRACETerminalRuleCall_0_11 ( ) ) ; } } break ; case <NUM_LIT> : { this_RBRACE_12 = ( Token ) match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_rulePropertyValue5556 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_RBRACE_12 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RBRACE_12 , grammarAccess . getPropertyValueAccess ( ) . getRBRACETerminalRuleCall_0_12 ( ) ) ; } } break ; case <NUM_LIT> : { this_QUESTI_13 = ( Token ) match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_rulePropertyValue5582 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_QUESTI_13 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_QUESTI_13 , grammarAccess . getPropertyValueAccess ( ) . getQUESTITerminalRuleCall_0_13 ( ) ) ; } } break ; case <NUM_LIT:15> : { this_NOT_14 = ( Token ) match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_rulePropertyValue5608 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NOT_14 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NOT_14 , grammarAccess . getPropertyValueAccess ( ) . getNOTTerminalRuleCall_0_14 ( ) ) ; } } break ; case <NUM_LIT:16> : { this_BAND_15 = ( Token ) match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_rulePropertyValue5634 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BAND_15 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BAND_15 , grammarAccess . getPropertyValueAccess ( ) . getBANDTerminalRuleCall_0_15 ( ) ) ; } } break ; case <NUM_LIT> : { this_BOR_16 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rulePropertyValue5660 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BOR_16 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_16 , grammarAccess . getPropertyValueAccess ( ) . getBORTerminalRuleCall_0_16 ( ) ) ; } } break ; case <NUM_LIT> : { this_HASH_17 = ( Token ) match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_rulePropertyValue5686 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_HASH_17 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_HASH_17 , grammarAccess . getPropertyValueAccess ( ) . getHASHTerminalRuleCall_0_17 ( ) ) ; } } break ; case <NUM_LIT> : { this_AT_18 = ( Token ) match ( input , RULE_AT , FOLLOW_RULE_AT_in_rulePropertyValue5712 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_AT_18 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AT_18 , grammarAccess . getPropertyValueAccess ( ) . getATTerminalRuleCall_0_18 ( ) ) ; } } break ; case <NUM_LIT:20> : { this_CARET_19 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rulePropertyValue5738 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_CARET_19 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_19 , grammarAccess . getPropertyValueAccess ( ) . getCARETTerminalRuleCall_0_19 ( ) ) ; } } break ; case <NUM_LIT> : { this_EQUALS_20 = ( Token ) match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rulePropertyValue5764 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_EQUALS_20 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_EQUALS_20 , grammarAccess . getPropertyValueAccess ( ) . getEQUALSTerminalRuleCall_0_20 ( ) ) ; } } break ; case <NUM_LIT> : { this_LESS_THAN_21 = ( Token ) match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rulePropertyValue5790 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LESS_THAN_21 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LESS_THAN_21 , grammarAccess . getPropertyValueAccess ( ) . getLESS_THANTerminalRuleCall_0_21 ( ) ) ; } } break ; case <NUM_LIT> : { this_MORE_THAN_22 = ( Token ) match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rulePropertyValue5816 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MORE_THAN_22 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MORE_THAN_22 , grammarAccess . getPropertyValueAccess ( ) . getMORE_THANTerminalRuleCall_0_22 ( ) ) ; } } break ; case <NUM_LIT:24> : { this_PERCENT_23 = ( Token ) match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_rulePropertyValue5842 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_PERCENT_23 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PERCENT_23 , grammarAccess . getPropertyValueAccess ( ) . getPERCENTTerminalRuleCall_0_23 ( ) ) ; } } break ; case <NUM_LIT> : { this_AND_24 = ( Token ) match ( input , RULE_AND , FOLLOW_RULE_AND_in_rulePropertyValue5868 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_AND_24 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AND_24 , grammarAccess . getPropertyValueAccess ( ) . getANDTerminalRuleCall_0_24 ( ) ) ; } } break ; case <NUM_LIT> : { this_OR_25 = ( Token ) match ( input , RULE_OR , FOLLOW_RULE_OR_in_rulePropertyValue5894 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OR_25 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OR_25 , grammarAccess . getPropertyValueAccess ( ) . getORTerminalRuleCall_0_25 ( ) ) ; } } break ; case <NUM_LIT> : { this_ESC_CHAR_26 = ( Token ) match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_rulePropertyValue5920 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ESC_CHAR_26 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ESC_CHAR_26 , grammarAccess . getPropertyValueAccess ( ) . getESC_CHARTerminalRuleCall_0_26 ( ) ) ; } } break ; case <NUM_LIT> : { this_ON_OFF_27 = ( Token ) match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_rulePropertyValue5946 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ON_OFF_27 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ON_OFF_27 , grammarAccess . getPropertyValueAccess ( ) . getON_OFFTerminalRuleCall_0_27 ( ) ) ; } } break ; case <NUM_LIT> : { this_STATEMEN_TYPE_28 = ( Token ) match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_rulePropertyValue5972 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_STATEMEN_TYPE_28 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STATEMEN_TYPE_28 , grammarAccess . getPropertyValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_0_28 ( ) ) ; } } break ; case <NUM_LIT:30> : { this_MAPPING_TYPE_29 = ( Token ) match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_rulePropertyValue5998 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MAPPING_TYPE_29 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MAPPING_TYPE_29 , grammarAccess . getPropertyValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_0_29 ( ) ) ; } } break ; case <NUM_LIT:31> : { this_OPTION_TYPE_30 = ( Token ) match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_rulePropertyValue6024 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OPTION_TYPE_30 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OPTION_TYPE_30 , grammarAccess . getPropertyValueAccess ( ) . getOPTION_TYPETerminalRuleCall_0_30 ( ) ) ; } } break ; } loop89 : do { int alt89 = <NUM_LIT:2> ; alt89 = dfa89 . predict ( input ) ; switch ( alt89 ) { case <NUM_LIT:1> : { int alt88 = <NUM_LIT:32> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt88 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt88 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt88 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt88 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt88 = <NUM_LIT:5> ; } break ; case RULE_COLON : { alt88 = <NUM_LIT:6> ; } break ; case RULE_STRING : { alt88 = <NUM_LIT:7> ; } break ; case RULE_COMMA : { alt88 = <NUM_LIT:8> ; } break ; case RULE_MINUS : { alt88 = <NUM_LIT:9> ; } break ; case RULE_PLUS : { alt88 = <NUM_LIT:10> ; } break ; case RULE_LPAREN : { alt88 = <NUM_LIT:11> ; } break ; case RULE_RPAREN : { alt88 = <NUM_LIT:12> ; } break ; case RULE_LBRACE : { alt88 = <NUM_LIT> ; } break ; case RULE_RBRACE : { alt88 = <NUM_LIT> ; } break ; case RULE_QUESTI : { alt88 = <NUM_LIT:15> ; } break ; case RULE_NOT : { alt88 = <NUM_LIT:16> ; } break ; case RULE_BAND : { alt88 = <NUM_LIT> ; } break ; case RULE_BOR : { alt88 = <NUM_LIT> ; } break ; case RULE_HASH : { alt88 = <NUM_LIT> ; } break ; case RULE_AT : { alt88 = <NUM_LIT:20> ; } break ; case RULE_CARET : { alt88 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt88 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt88 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt88 = <NUM_LIT:24> ; } break ; case RULE_PERCENT : { alt88 = <NUM_LIT> ; } break ; case RULE_AND : { alt88 = <NUM_LIT> ; } break ; case RULE_OR : { alt88 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt88 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt88 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt88 = <NUM_LIT:30> ; } break ; case RULE_MAPPING_TYPE : { alt88 = <NUM_LIT:31> ; } break ; case RULE_OPTION_TYPE : { alt88 = <NUM_LIT:32> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt88 ) { case <NUM_LIT:1> : { this_REST_31 = ( Token ) match ( input , RULE_REST , FOLLOW_RULE_REST_in_rulePropertyValue6302 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_REST_31 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_REST_31 , grammarAccess . getPropertyValueAccess ( ) . getRESTTerminalRuleCall_1_0_0 ( ) ) ; } } break ; case <NUM_LIT:2> : { this_IDENT_DOT_32 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rulePropertyValue6328 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_DOT_32 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_DOT_32 , grammarAccess . getPropertyValueAccess ( ) . getIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } } break ; case <NUM_LIT:3> : { this_IDENT_33 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePropertyValue6354 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_33 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_33 , grammarAccess . getPropertyValueAccess ( ) . getIDENTTerminalRuleCall_1_0_2 ( ) ) ; } } break ; case <NUM_LIT:4> : { this_NUMBER_34 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rulePropertyValue6380 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NUMBER_34 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NUMBER_34 , grammarAccess . getPropertyValueAccess ( ) . getNUMBERTerminalRuleCall_1_0_3 ( ) ) ; } } break ; case <NUM_LIT:5> : { this_WS_35 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_rulePropertyValue6406 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_WS_35 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_35 , grammarAccess . getPropertyValueAccess ( ) . getWSTerminalRuleCall_1_0_4 ( ) ) ; } } break ; case <NUM_LIT:6> : { this_COLON_36 = ( Token ) match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rulePropertyValue6432 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_COLON_36 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COLON_36 , grammarAccess . getPropertyValueAccess ( ) . getCOLONTerminalRuleCall_1_0_5 ( ) ) ; } } break ; case <NUM_LIT:7> : { this_STRING_37 = ( Token ) match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_rulePropertyValue6458 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_STRING_37 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STRING_37 , grammarAccess . getPropertyValueAccess ( ) . getSTRINGTerminalRuleCall_1_0_6 ( ) ) ; } } break ; case <NUM_LIT:8> : { this_COMMA_38 = ( Token ) match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_rulePropertyValue6484 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_COMMA_38 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COMMA_38 , grammarAccess . getPropertyValueAccess ( ) . getCOMMATerminalRuleCall_1_0_7 ( ) ) ; } } break ; case <NUM_LIT:9> : { this_MINUS_39 = ( Token ) match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_rulePropertyValue6510 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MINUS_39 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MINUS_39 , grammarAccess . getPropertyValueAccess ( ) . getMINUSTerminalRuleCall_1_0_8 ( ) ) ; } } break ; case <NUM_LIT:10> : { this_PLUS_40 = ( Token ) match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_rulePropertyValue6536 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_PLUS_40 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PLUS_40 , grammarAccess . getPropertyValueAccess ( ) . getPLUSTerminalRuleCall_1_0_9 ( ) ) ; } } break ; case <NUM_LIT:11> : { this_LPAREN_41 = ( Token ) match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_rulePropertyValue6562 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LPAREN_41 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LPAREN_41 , grammarAccess . getPropertyValueAccess ( ) . getLPARENTerminalRuleCall_1_0_10 ( ) ) ; } } break ; case <NUM_LIT:12> : { this_RPAREN_42 = ( Token ) match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_rulePropertyValue6588 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_RPAREN_42 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RPAREN_42 , grammarAccess . getPropertyValueAccess ( ) . getRPARENTerminalRuleCall_1_0_11 ( ) ) ; } } break ; case <NUM_LIT> : { this_LBRACE_43 = ( Token ) match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_rulePropertyValue6614 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LBRACE_43 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LBRACE_43 , grammarAccess . getPropertyValueAccess ( ) . getLBRACETerminalRuleCall_1_0_12 ( ) ) ; } } break ; case <NUM_LIT> : { this_RBRACE_44 = ( Token ) match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_rulePropertyValue6640 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_RBRACE_44 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RBRACE_44 , grammarAccess . getPropertyValueAccess ( ) . getRBRACETerminalRuleCall_1_0_13 ( ) ) ; } } break ; case <NUM_LIT:15> : { this_QUESTI_45 = ( Token ) match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_rulePropertyValue6666 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_QUESTI_45 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_QUESTI_45 , grammarAccess . getPropertyValueAccess ( ) . getQUESTITerminalRuleCall_1_0_14 ( ) ) ; } } break ; case <NUM_LIT:16> : { this_NOT_46 = ( Token ) match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_rulePropertyValue6692 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NOT_46 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NOT_46 , grammarAccess . getPropertyValueAccess ( ) . getNOTTerminalRuleCall_1_0_15 ( ) ) ; } } break ; case <NUM_LIT> : { this_BAND_47 = ( Token ) match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_rulePropertyValue6718 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BAND_47 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BAND_47 , grammarAccess . getPropertyValueAccess ( ) . getBANDTerminalRuleCall_1_0_16 ( ) ) ; } } break ; case <NUM_LIT> : { this_BOR_48 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_rulePropertyValue6744 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BOR_48 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_48 , grammarAccess . getPropertyValueAccess ( ) . getBORTerminalRuleCall_1_0_17 ( ) ) ; } } break ; case <NUM_LIT> : { this_HASH_49 = ( Token ) match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_rulePropertyValue6770 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_HASH_49 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_HASH_49 , grammarAccess . getPropertyValueAccess ( ) . getHASHTerminalRuleCall_1_0_18 ( ) ) ; } } break ; case <NUM_LIT:20> : { this_AT_50 = ( Token ) match ( input , RULE_AT , FOLLOW_RULE_AT_in_rulePropertyValue6796 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_AT_50 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AT_50 , grammarAccess . getPropertyValueAccess ( ) . getATTerminalRuleCall_1_0_19 ( ) ) ; } } break ; case <NUM_LIT> : { this_CARET_51 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_rulePropertyValue6822 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_CARET_51 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_51 , grammarAccess . getPropertyValueAccess ( ) . getCARETTerminalRuleCall_1_0_20 ( ) ) ; } } break ; case <NUM_LIT> : { this_EQUALS_52 = ( Token ) match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rulePropertyValue6848 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_EQUALS_52 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_EQUALS_52 , grammarAccess . getPropertyValueAccess ( ) . getEQUALSTerminalRuleCall_1_0_21 ( ) ) ; } } break ; case <NUM_LIT> : { this_LESS_THAN_53 = ( Token ) match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rulePropertyValue6874 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LESS_THAN_53 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LESS_THAN_53 , grammarAccess . getPropertyValueAccess ( ) . getLESS_THANTerminalRuleCall_1_0_22 ( ) ) ; } } break ; case <NUM_LIT:24> : { this_MORE_THAN_54 = ( Token ) match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rulePropertyValue6900 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MORE_THAN_54 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MORE_THAN_54 , grammarAccess . getPropertyValueAccess ( ) . getMORE_THANTerminalRuleCall_1_0_23 ( ) ) ; } } break ; case <NUM_LIT> : { this_PERCENT_55 = ( Token ) match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_rulePropertyValue6926 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_PERCENT_55 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PERCENT_55 , grammarAccess . getPropertyValueAccess ( ) . getPERCENTTerminalRuleCall_1_0_24 ( ) ) ; } } break ; case <NUM_LIT> : { this_AND_56 = ( Token ) match ( input , RULE_AND , FOLLOW_RULE_AND_in_rulePropertyValue6952 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_AND_56 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AND_56 , grammarAccess . getPropertyValueAccess ( ) . getANDTerminalRuleCall_1_0_25 ( ) ) ; } } break ; case <NUM_LIT> : { this_OR_57 = ( Token ) match ( input , RULE_OR , FOLLOW_RULE_OR_in_rulePropertyValue6978 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OR_57 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OR_57 , grammarAccess . getPropertyValueAccess ( ) . getORTerminalRuleCall_1_0_26 ( ) ) ; } } break ; case <NUM_LIT> : { this_ESC_CHAR_58 = ( Token ) match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_rulePropertyValue7004 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ESC_CHAR_58 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ESC_CHAR_58 , grammarAccess . getPropertyValueAccess ( ) . getESC_CHARTerminalRuleCall_1_0_27 ( ) ) ; } } break ; case <NUM_LIT> : { this_ON_OFF_59 = ( Token ) match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_rulePropertyValue7030 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ON_OFF_59 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ON_OFF_59 , grammarAccess . getPropertyValueAccess ( ) . getON_OFFTerminalRuleCall_1_0_28 ( ) ) ; } } break ; case <NUM_LIT:30> : { this_STATEMEN_TYPE_60 = ( Token ) match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_rulePropertyValue7056 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_STATEMEN_TYPE_60 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STATEMEN_TYPE_60 , grammarAccess . getPropertyValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_1_0_29 ( ) ) ; } } break ; case <NUM_LIT:31> : { this_MAPPING_TYPE_61 = ( Token ) match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_rulePropertyValue7082 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MAPPING_TYPE_61 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MAPPING_TYPE_61 , grammarAccess . getPropertyValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_1_0_30 ( ) ) ; } } break ; case <NUM_LIT:32> : { this_OPTION_TYPE_62 = ( Token ) match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_rulePropertyValue7108 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OPTION_TYPE_62 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OPTION_TYPE_62 , grammarAccess . getPropertyValueAccess ( ) . getOPTION_TYPETerminalRuleCall_1_0_31 ( ) ) ; } } break ; } } break ; default : break loop89 ; } } while ( true ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRulePojoDefinition ( ) throws RecognitionException { EObject current = null ; EObject iv_rulePojoDefinition = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoDefinitionRule ( ) ) ; } pushFollow ( FOLLOW_rulePojoDefinition_in_entryRulePojoDefinition7162 ) ; iv_rulePojoDefinition = rulePojoDefinition ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_rulePojoDefinition ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoDefinition7172 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject rulePojoDefinition ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; Token lv_name_1_0 = null ; Token lv_class_2_1 = null ; Token lv_class_2_2 = null ; Token this_SEMICOLON_3 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_74_in_rulePojoDefinition7213 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getPojoDefinitionAccess ( ) . getPojoKeyword_0 ( ) ) ; } { { lv_name_1_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojoDefinition7230 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_1_0 , grammarAccess . getPojoDefinitionAccess ( ) . getNameIDENTTerminalRuleCall_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoDefinitionRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_1_0 , "<STR_LIT>" ) ; } } } { { int alt90 = <NUM_LIT:2> ; int LA90_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA90_0 == RULE_IDENT ) ) { alt90 = <NUM_LIT:1> ; } else if ( ( LA90_0 == RULE_IDENT_DOT ) ) { alt90 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt90 ) { case <NUM_LIT:1> : { lv_class_2_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojoDefinition7254 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_class_2_1 , grammarAccess . getPojoDefinitionAccess ( ) . getClassIDENTTerminalRuleCall_2_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoDefinitionRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:class>" , lv_class_2_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_class_2_2 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rulePojoDefinition7274 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_class_2_2 , grammarAccess . getPojoDefinitionAccess ( ) . getClassIDENT_DOTTerminalRuleCall_2_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoDefinitionRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:class>" , lv_class_2_2 , "<STR_LIT>" ) ; } } break ; } } } this_SEMICOLON_3 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_rulePojoDefinition7293 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_3 , grammarAccess . getPojoDefinitionAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRulePojoUsage ( ) throws RecognitionException { EObject current = null ; EObject iv_rulePojoUsage = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoUsageRule ( ) ) ; } pushFollow ( FOLLOW_rulePojoUsage_in_entryRulePojoUsage7332 ) ; iv_rulePojoUsage = rulePojoUsage ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_rulePojoUsage ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoUsage7342 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject rulePojoUsage ( ) throws RecognitionException { EObject current = null ; EObject this_ColumnUsage_0 = null ; EObject this_IdentifierUsage_1 = null ; EObject this_ConstantUsage_2 = null ; EObject this_MappingUsage_3 = null ; enterRule ( ) ; try { { int alt91 = <NUM_LIT:4> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt91 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt91 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt91 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt91 = <NUM_LIT:4> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt91 ) { case <NUM_LIT:1> : { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoUsageAccess ( ) . getColumnUsageParserRuleCall_0 ( ) ) ; } pushFollow ( FOLLOW_ruleColumnUsage_in_rulePojoUsage7389 ) ; this_ColumnUsage_0 = ruleColumnUsage ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = this_ColumnUsage_0 ; afterParserOrEnumRuleCall ( ) ; } } break ; case <NUM_LIT:2> : { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoUsageAccess ( ) . getIdentifierUsageParserRuleCall_1 ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifierUsage_in_rulePojoUsage7416 ) ; this_IdentifierUsage_1 = ruleIdentifierUsage ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = this_IdentifierUsage_1 ; afterParserOrEnumRuleCall ( ) ; } } break ; case <NUM_LIT:3> : { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoUsageAccess ( ) . getConstantUsageParserRuleCall_2 ( ) ) ; } pushFollow ( FOLLOW_ruleConstantUsage_in_rulePojoUsage7443 ) ; this_ConstantUsage_2 = ruleConstantUsage ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = this_ConstantUsage_2 ; afterParserOrEnumRuleCall ( ) ; } } break ; case <NUM_LIT:4> : { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoUsageAccess ( ) . getMappingUsageParserRuleCall_3 ( ) ) ; } pushFollow ( FOLLOW_ruleMappingUsage_in_rulePojoUsage7470 ) ; this_MappingUsage_3 = ruleMappingUsage ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = this_MappingUsage_3 ; afterParserOrEnumRuleCall ( ) ; } } break ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleColumnUsage ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleColumnUsage = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getColumnUsageRule ( ) ) ; } pushFollow ( FOLLOW_ruleColumnUsage_in_entryRuleColumnUsage7511 ) ; iv_ruleColumnUsage = ruleColumnUsage ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleColumnUsage ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleColumnUsage7521 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject ruleColumnUsage ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; Token otherlv_1 = null ; Token otherlv_2 = null ; Token this_SEMICOLON_3 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_75_in_ruleColumnUsage7562 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getColumnUsageAccess ( ) . getColKeyword_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getColumnUsageRule ( ) ) ; } } otherlv_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleColumnUsage7582 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getColumnUsageAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getColumnUsageRule ( ) ) ; } } otherlv_2 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleColumnUsage7602 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_2 , grammarAccess . getColumnUsageAccess ( ) . getPojoPojoDefinitionCrossReference_2_0 ( ) ) ; } } } this_SEMICOLON_3 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleColumnUsage7613 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_3 , grammarAccess . getColumnUsageAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRuleIdentifierUsage ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleIdentifierUsage = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIdentifierUsageRule ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifierUsage_in_entryRuleIdentifierUsage7658 ) ; iv_ruleIdentifierUsage = ruleIdentifierUsage ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleIdentifierUsage ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIdentifierUsage7668 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject ruleIdentifierUsage ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; Token otherlv_1 = null ; Token otherlv_2 = null ; Token this_SEMICOLON_3 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_76_in_ruleIdentifierUsage7709 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getIdentifierUsageAccess ( ) . getIdentKeyword_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIdentifierUsageRule ( ) ) ; } } otherlv_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleIdentifierUsage7729 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getIdentifierUsageAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIdentifierUsageRule ( ) ) ; } } otherlv_2 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleIdentifierUsage7749 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_2 , grammarAccess . getIdentifierUsageAccess ( ) . getPojoPojoDefinitionCrossReference_2_0 ( ) ) ; } } } this_SEMICOLON_3 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleIdentifierUsage7760 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_3 , grammarAccess . getIdentifierUsageAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRuleConstantUsage ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleConstantUsage = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getConstantUsageRule ( ) ) ; } pushFollow ( FOLLOW_ruleConstantUsage_in_entryRuleConstantUsage7805 ) ; iv_ruleConstantUsage = ruleConstantUsage ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleConstantUsage ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleConstantUsage7815 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject ruleConstantUsage ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; Token otherlv_1 = null ; Token otherlv_2 = null ; Token this_SEMICOLON_3 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_77_in_ruleConstantUsage7856 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getConstantUsageAccess ( ) . getConstKeyword_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getConstantUsageRule ( ) ) ; } } otherlv_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleConstantUsage7876 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getConstantUsageAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getConstantUsageRule ( ) ) ; } } otherlv_2 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleConstantUsage7896 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_2 , grammarAccess . getConstantUsageAccess ( ) . getPojoPojoDefinitionCrossReference_2_0 ( ) ) ; } } } this_SEMICOLON_3 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleConstantUsage7907 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_3 , grammarAccess . getConstantUsageAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRuleMappingUsage ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleMappingUsage = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMappingUsageRule ( ) ) ; } pushFollow ( FOLLOW_ruleMappingUsage_in_entryRuleMappingUsage7952 ) ; iv_ruleMappingUsage = ruleMappingUsage ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleMappingUsage ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMappingUsage7962 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject ruleMappingUsage ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; Token otherlv_1 = null ; Token otherlv_2 = null ; Token this_SEMICOLON_3 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_78_in_ruleMappingUsage8003 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getMappingUsageAccess ( ) . getOutKeyword_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMappingUsageRule ( ) ) ; } } otherlv_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleMappingUsage8023 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getMappingUsageAccess ( ) . getStatementMappingRuleCrossReference_1_0 ( ) ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMappingUsageRule ( ) ) ; } } otherlv_2 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleMappingUsage8043 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_2 , grammarAccess . getMappingUsageAccess ( ) . getPojoPojoDefinitionCrossReference_2_0 ( ) ) ; } } } this_SEMICOLON_3 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleMappingUsage8054 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_3 , grammarAccess . getMappingUsageAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRulePojoUsageExt ( ) throws RecognitionException { EObject current = null ; EObject iv_rulePojoUsageExt = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoUsageExtRule ( ) ) ; } pushFollow ( FOLLOW_rulePojoUsageExt_in_entryRulePojoUsageExt8093 ) ; iv_rulePojoUsageExt = rulePojoUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_rulePojoUsageExt ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoUsageExt8103 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject rulePojoUsageExt ( ) throws RecognitionException { EObject current = null ; EObject this_ColumnUsageExt_0 = null ; EObject this_IdentifierUsageExt_1 = null ; EObject this_ConstantUsageExt_2 = null ; EObject this_MappingUsageExt_3 = null ; enterRule ( ) ; try { { int alt92 = <NUM_LIT:4> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt92 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt92 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt92 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt92 = <NUM_LIT:4> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt92 ) { case <NUM_LIT:1> : { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoUsageExtAccess ( ) . getColumnUsageExtParserRuleCall_0 ( ) ) ; } pushFollow ( FOLLOW_ruleColumnUsageExt_in_rulePojoUsageExt8150 ) ; this_ColumnUsageExt_0 = ruleColumnUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = this_ColumnUsageExt_0 ; afterParserOrEnumRuleCall ( ) ; } } break ; case <NUM_LIT:2> : { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoUsageExtAccess ( ) . getIdentifierUsageExtParserRuleCall_1 ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifierUsageExt_in_rulePojoUsageExt8177 ) ; this_IdentifierUsageExt_1 = ruleIdentifierUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = this_IdentifierUsageExt_1 ; afterParserOrEnumRuleCall ( ) ; } } break ; case <NUM_LIT:3> : { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoUsageExtAccess ( ) . getConstantUsageExtParserRuleCall_2 ( ) ) ; } pushFollow ( FOLLOW_ruleConstantUsageExt_in_rulePojoUsageExt8204 ) ; this_ConstantUsageExt_2 = ruleConstantUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = this_ConstantUsageExt_2 ; afterParserOrEnumRuleCall ( ) ; } } break ; case <NUM_LIT:4> : { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoUsageExtAccess ( ) . getMappingUsageExtParserRuleCall_3 ( ) ) ; } pushFollow ( FOLLOW_ruleMappingUsageExt_in_rulePojoUsageExt8231 ) ; this_MappingUsageExt_3 = ruleMappingUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = this_MappingUsageExt_3 ; afterParserOrEnumRuleCall ( ) ; } } break ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleColumnUsageExt ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleColumnUsageExt = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getColumnUsageExtRule ( ) ) ; } pushFollow ( FOLLOW_ruleColumnUsageExt_in_entryRuleColumnUsageExt8272 ) ; iv_ruleColumnUsageExt = ruleColumnUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleColumnUsageExt ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleColumnUsageExt8282 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject ruleColumnUsageExt ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; Token otherlv_1 = null ; Token otherlv_2 = null ; Token this_SEMICOLON_3 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_79_in_ruleColumnUsageExt8323 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getColumnUsageExtAccess ( ) . getColxKeyword_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getColumnUsageExtRule ( ) ) ; } } otherlv_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleColumnUsageExt8343 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getColumnUsageExtAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getColumnUsageExtRule ( ) ) ; } } otherlv_2 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleColumnUsageExt8363 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_2 , grammarAccess . getColumnUsageExtAccess ( ) . getPojoPojoEntityCrossReference_2_0 ( ) ) ; } } } this_SEMICOLON_3 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleColumnUsageExt8374 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_3 , grammarAccess . getColumnUsageExtAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRuleIdentifierUsageExt ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleIdentifierUsageExt = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIdentifierUsageExtRule ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifierUsageExt_in_entryRuleIdentifierUsageExt8419 ) ; iv_ruleIdentifierUsageExt = ruleIdentifierUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleIdentifierUsageExt ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIdentifierUsageExt8429 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject ruleIdentifierUsageExt ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; Token otherlv_1 = null ; Token otherlv_2 = null ; Token this_SEMICOLON_3 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_80_in_ruleIdentifierUsageExt8470 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getIdentifierUsageExtAccess ( ) . getIdentxKeyword_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIdentifierUsageExtRule ( ) ) ; } } otherlv_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleIdentifierUsageExt8490 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getIdentifierUsageExtAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIdentifierUsageExtRule ( ) ) ; } } otherlv_2 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleIdentifierUsageExt8510 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_2 , grammarAccess . getIdentifierUsageExtAccess ( ) . getPojoPojoEntityCrossReference_2_0 ( ) ) ; } } } this_SEMICOLON_3 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleIdentifierUsageExt8521 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_3 , grammarAccess . getIdentifierUsageExtAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRuleConstantUsageExt ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleConstantUsageExt = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getConstantUsageExtRule ( ) ) ; } pushFollow ( FOLLOW_ruleConstantUsageExt_in_entryRuleConstantUsageExt8566 ) ; iv_ruleConstantUsageExt = ruleConstantUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleConstantUsageExt ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleConstantUsageExt8576 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject ruleConstantUsageExt ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; Token otherlv_1 = null ; Token otherlv_2 = null ; Token this_SEMICOLON_3 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_81_in_ruleConstantUsageExt8617 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getConstantUsageExtAccess ( ) . getConstxKeyword_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getConstantUsageExtRule ( ) ) ; } } otherlv_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleConstantUsageExt8637 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getConstantUsageExtAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getConstantUsageExtRule ( ) ) ; } } otherlv_2 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleConstantUsageExt8657 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_2 , grammarAccess . getConstantUsageExtAccess ( ) . getPojoPojoEntityCrossReference_2_0 ( ) ) ; } } } this_SEMICOLON_3 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleConstantUsageExt8668 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_3 , grammarAccess . getConstantUsageExtAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRuleMappingUsageExt ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleMappingUsageExt = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMappingUsageExtRule ( ) ) ; } pushFollow ( FOLLOW_ruleMappingUsageExt_in_entryRuleMappingUsageExt8713 ) ; iv_ruleMappingUsageExt = ruleMappingUsageExt ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleMappingUsageExt ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMappingUsageExt8723 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject ruleMappingUsageExt ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; Token otherlv_1 = null ; Token otherlv_2 = null ; Token this_SEMICOLON_3 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_82_in_ruleMappingUsageExt8764 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getMappingUsageExtAccess ( ) . getOutxKeyword_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMappingUsageExtRule ( ) ) ; } } otherlv_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleMappingUsageExt8784 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getMappingUsageExtAccess ( ) . getStatementMappingRuleCrossReference_1_0 ( ) ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMappingUsageExtRule ( ) ) ; } } otherlv_2 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleMappingUsageExt8804 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_2 , grammarAccess . getMappingUsageExtAccess ( ) . getPojoPojoEntityCrossReference_2_0 ( ) ) ; } } } this_SEMICOLON_3 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleMappingUsageExt8815 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_3 , grammarAccess . getMappingUsageExtAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRuleTableDefinition ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleTableDefinition = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getTableDefinitionRule ( ) ) ; } pushFollow ( FOLLOW_ruleTableDefinition_in_entryRuleTableDefinition8860 ) ; iv_ruleTableDefinition = ruleTableDefinition ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleTableDefinition ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleTableDefinition8870 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject ruleTableDefinition ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; Token lv_name_1_0 = null ; Token lv_table_2_0 = null ; Token this_SEMICOLON_3 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_83_in_ruleTableDefinition8911 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getTableDefinitionAccess ( ) . getTableKeyword_0 ( ) ) ; } { { lv_name_1_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleTableDefinition8928 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_1_0 , grammarAccess . getTableDefinitionAccess ( ) . getNameIDENTTerminalRuleCall_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getTableDefinitionRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_1_0 , "<STR_LIT>" ) ; } } } { { lv_table_2_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleTableDefinition8950 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_table_2_0 , grammarAccess . getTableDefinitionAccess ( ) . getTableIDENTTerminalRuleCall_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getTableDefinitionRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_table_2_0 , "<STR_LIT>" ) ; } } } this_SEMICOLON_3 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleTableDefinition8966 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_3 , grammarAccess . getTableDefinitionAccess ( ) . getSEMICOLONTerminalRuleCall_3 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRuleTableUsage ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleTableUsage = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getTableUsageRule ( ) ) ; } pushFollow ( FOLLOW_ruleTableUsage_in_entryRuleTableUsage9011 ) ; iv_ruleTableUsage = ruleTableUsage ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleTableUsage ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleTableUsage9021 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject ruleTableUsage ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; Token otherlv_1 = null ; Token otherlv_2 = null ; Token otherlv_3 = null ; Token lv_prefix_4_0 = null ; Token this_SEMICOLON_5 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_84_in_ruleTableUsage9062 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getTableUsageAccess ( ) . getDbcolKeyword_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getTableUsageRule ( ) ) ; } } otherlv_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleTableUsage9082 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getTableUsageAccess ( ) . getStatementMetaStatementCrossReference_1_0 ( ) ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getTableUsageRule ( ) ) ; } } otherlv_2 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleTableUsage9102 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_2 , grammarAccess . getTableUsageAccess ( ) . getTableTableDefinitionCrossReference_2_0 ( ) ) ; } } } int alt93 = <NUM_LIT:2> ; int LA93_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA93_0 == <NUM_LIT> ) ) { alt93 = <NUM_LIT:1> ; } switch ( alt93 ) { case <NUM_LIT:1> : { otherlv_3 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_85_in_ruleTableUsage9115 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_3 , grammarAccess . getTableUsageAccess ( ) . getPrefixKeyword_3_0 ( ) ) ; } { { lv_prefix_4_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleTableUsage9132 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_prefix_4_0 , grammarAccess . getTableUsageAccess ( ) . getPrefixIDENTTerminalRuleCall_3_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getTableUsageRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_prefix_4_0 , "<STR_LIT>" ) ; } } } } break ; } this_SEMICOLON_5 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleTableUsage9150 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_5 , grammarAccess . getTableUsageAccess ( ) . getSEMICOLONTerminalRuleCall_4 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRuleMetaStatement ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleMetaStatement = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMetaStatementRule ( ) ) ; } pushFollow ( FOLLOW_ruleMetaStatement_in_entryRuleMetaStatement9189 ) ; iv_ruleMetaStatement = ruleMetaStatement ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleMetaStatement ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMetaStatement9199 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleMetaStatement ( ) throws RecognitionException { EObject current = null ; Token lv_name_0_0 = null ; Token this_LPAREN_1 = null ; Token lv_type_2_0 = null ; Token this_COMMA_3 = null ; Token lv_filters_4_0 = null ; Token this_RPAREN_5 = null ; Token this_EQUALS_6 = null ; Token this_SEMICOLON_8 = null ; EObject lv_statement_7_0 = null ; enterRule ( ) ; try { { { { { lv_name_0_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleMetaStatement9241 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_0 , grammarAccess . getMetaStatementAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMetaStatementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_0 , "<STR_LIT>" ) ; } } } this_LPAREN_1 = ( Token ) match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_ruleMetaStatement9257 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LPAREN_1 , grammarAccess . getMetaStatementAccess ( ) . getLPARENTerminalRuleCall_1 ( ) ) ; } { { lv_type_2_0 = ( Token ) match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_ruleMetaStatement9273 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_type_2_0 , grammarAccess . getMetaStatementAccess ( ) . getTypeSTATEMEN_TYPETerminalRuleCall_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMetaStatementRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:type>" , lv_type_2_0 , "<STR_LIT>" ) ; } } } loop94 : do { int alt94 = <NUM_LIT:2> ; int LA94_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA94_0 == RULE_COMMA ) ) { alt94 = <NUM_LIT:1> ; } switch ( alt94 ) { case <NUM_LIT:1> : { this_COMMA_3 = ( Token ) match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_ruleMetaStatement9290 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COMMA_3 , grammarAccess . getMetaStatementAccess ( ) . getCOMMATerminalRuleCall_3_0 ( ) ) ; } { { lv_filters_4_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleMetaStatement9306 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_filters_4_0 , grammarAccess . getMetaStatementAccess ( ) . getFiltersIDENTTerminalRuleCall_3_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMetaStatementRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_filters_4_0 , "<STR_LIT>" ) ; } } } } break ; default : break loop94 ; } } while ( true ) ; this_RPAREN_5 = ( Token ) match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_ruleMetaStatement9324 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RPAREN_5 , grammarAccess . getMetaStatementAccess ( ) . getRPARENTerminalRuleCall_4 ( ) ) ; } this_EQUALS_6 = ( Token ) match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_ruleMetaStatement9334 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_EQUALS_6 , grammarAccess . getMetaStatementAccess ( ) . getEQUALSTerminalRuleCall_5 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMetaStatementAccess ( ) . getStatementSqlParserRuleCall_6_0 ( ) ) ; } pushFollow ( FOLLOW_ruleSql_in_ruleMetaStatement9354 ) ; lv_statement_7_0 = ruleSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMetaStatementRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_statement_7_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } this_SEMICOLON_8 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleMetaStatement9365 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_8 , grammarAccess . getMetaStatementAccess ( ) . getSEMICOLONTerminalRuleCall_7 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleSql ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleSql = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getSqlRule ( ) ) ; } pushFollow ( FOLLOW_ruleSql_in_entryRuleSql9400 ) ; iv_ruleSql = ruleSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleSql ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleSql9410 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleSql ( ) throws RecognitionException { EObject current = null ; EObject lv_sqls_0_0 = null ; enterRule ( ) ; try { { int cnt95 = <NUM_LIT:0> ; loop95 : do { int alt95 = <NUM_LIT:2> ; int LA95_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA95_0 >= RULE_WS && LA95_0 <= RULE_RPAREN ) || ( LA95_0 >= RULE_REST && LA95_0 <= RULE_OPTION_TYPE ) ) ) { alt95 = <NUM_LIT:1> ; } switch ( alt95 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getSqlAccess ( ) . getSqlsSqlFragmentParserRuleCall_0 ( ) ) ; } pushFollow ( FOLLOW_ruleSqlFragment_in_ruleSql9455 ) ; lv_sqls_0_0 = ruleSqlFragment ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_sqls_0_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } break ; default : if ( cnt95 >= <NUM_LIT:1> ) break loop95 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt95 ++ ; } while ( true ) ; } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleSqlFragment ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleSqlFragment = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getSqlFragmentRule ( ) ) ; } pushFollow ( FOLLOW_ruleSqlFragment_in_entryRuleSqlFragment9491 ) ; iv_ruleSqlFragment = ruleSqlFragment ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleSqlFragment ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleSqlFragment9501 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleSqlFragment ( ) throws RecognitionException { EObject current = null ; Token this_AT_1 = null ; Token this_STRING_3 = null ; Token this_COLON_5 = null ; Token this_LBRACE_7 = null ; Token this_RBRACE_9 = null ; Token this_PERCENT_10 = null ; Token this_PERCENT_11 = null ; AntlrDatatypeRuleToken lv_value_0_0 = null ; EObject lv_col_2_0 = null ; EObject lv_cnst_4_0 = null ; EObject lv_ident_6_0 = null ; EObject lv_meta_8_0 = null ; EObject lv_dbtab_12_0 = null ; EObject lv_dbcol_13_0 = null ; enterRule ( ) ; try { { int alt97 = <NUM_LIT:6> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_WS : case RULE_IDENT : case RULE_LPAREN : case RULE_NUMBER : case RULE_RPAREN : case RULE_REST : case RULE_IDENT_DOT : case RULE_COMMA : case RULE_MINUS : case RULE_PLUS : case RULE_RBRACE : case RULE_QUESTI : case RULE_NOT : case RULE_BAND : case RULE_BOR : case RULE_HASH : case RULE_CARET : case RULE_EQUALS : case RULE_LESS_THAN : case RULE_MORE_THAN : case RULE_AND : case RULE_OR : case RULE_ESC_CHAR : case RULE_ON_OFF : case RULE_STATEMEN_TYPE : case RULE_MAPPING_TYPE : case RULE_OPTION_TYPE : { alt97 = <NUM_LIT:1> ; } break ; case RULE_AT : { alt97 = <NUM_LIT:2> ; } break ; case RULE_STRING : { alt97 = <NUM_LIT:3> ; } break ; case RULE_COLON : { alt97 = <NUM_LIT:4> ; } break ; case RULE_LBRACE : { alt97 = <NUM_LIT:5> ; } break ; case RULE_PERCENT : { alt97 = <NUM_LIT:6> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt97 ) { case <NUM_LIT:1> : { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getSqlFragmentAccess ( ) . getValueSqlValueParserRuleCall_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleSqlValue_in_ruleSqlFragment9547 ) ; lv_value_0_0 = ruleSqlValue ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getSqlFragmentRule ( ) ) ; } set ( current , "<STR_LIT:value>" , lv_value_0_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; case <NUM_LIT:2> : { { this_AT_1 = ( Token ) match ( input , RULE_AT , FOLLOW_RULE_AT_in_ruleSqlFragment9565 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AT_1 , grammarAccess . getSqlFragmentAccess ( ) . getATTerminalRuleCall_1_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getSqlFragmentAccess ( ) . getColColumnParserRuleCall_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleColumn_in_ruleSqlFragment9585 ) ; lv_col_2_0 = ruleColumn ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getSqlFragmentRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_col_2_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:3> : { { this_STRING_3 = ( Token ) match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_ruleSqlFragment9604 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STRING_3 , grammarAccess . getSqlFragmentAccess ( ) . getSTRINGTerminalRuleCall_2_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getSqlFragmentAccess ( ) . getCnstConstantParserRuleCall_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleConstant_in_ruleSqlFragment9624 ) ; lv_cnst_4_0 = ruleConstant ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getSqlFragmentRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_cnst_4_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:4> : { { this_COLON_5 = ( Token ) match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_ruleSqlFragment9643 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COLON_5 , grammarAccess . getSqlFragmentAccess ( ) . getCOLONTerminalRuleCall_3_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getSqlFragmentAccess ( ) . getIdentIdentifierParserRuleCall_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifier_in_ruleSqlFragment9663 ) ; lv_ident_6_0 = ruleIdentifier ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getSqlFragmentRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_ident_6_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:5> : { { this_LBRACE_7 = ( Token ) match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_ruleSqlFragment9682 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LBRACE_7 , grammarAccess . getSqlFragmentAccess ( ) . getLBRACETerminalRuleCall_4_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getSqlFragmentAccess ( ) . getMetaMetaSqlParserRuleCall_4_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleMetaSql_in_ruleSqlFragment9702 ) ; lv_meta_8_0 = ruleMetaSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getSqlFragmentRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_meta_8_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } this_RBRACE_9 = ( Token ) match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_ruleSqlFragment9713 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RBRACE_9 , grammarAccess . getSqlFragmentAccess ( ) . getRBRACETerminalRuleCall_4_2 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { this_PERCENT_10 = ( Token ) match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_ruleSqlFragment9731 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PERCENT_10 , grammarAccess . getSqlFragmentAccess ( ) . getPERCENTTerminalRuleCall_5_0 ( ) ) ; } int alt96 = <NUM_LIT:2> ; int LA96_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA96_0 == RULE_PERCENT ) ) { alt96 = <NUM_LIT:1> ; } else if ( ( LA96_0 == RULE_IDENT || LA96_0 == RULE_IDENT_DOT ) ) { alt96 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt96 ) { case <NUM_LIT:1> : { { this_PERCENT_11 = ( Token ) match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_ruleSqlFragment9743 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PERCENT_11 , grammarAccess . getSqlFragmentAccess ( ) . getPERCENTTerminalRuleCall_5_1_0_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getSqlFragmentAccess ( ) . getDbtabDatabaseTableParserRuleCall_5_1_0_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseTable_in_ruleSqlFragment9763 ) ; lv_dbtab_12_0 = ruleDatabaseTable ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getSqlFragmentRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_dbtab_12_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:2> : { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getSqlFragmentAccess ( ) . getDbcolDatabaseColumnParserRuleCall_5_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseColumn_in_ruleSqlFragment9791 ) ; lv_dbcol_13_0 = ruleDatabaseColumn ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getSqlFragmentRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_dbcol_13_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; } } } break ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final String entryRuleSqlValue ( ) throws RecognitionException { String current = null ; AntlrDatatypeRuleToken iv_ruleSqlValue = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getSqlValueRule ( ) ) ; } pushFollow ( FOLLOW_ruleSqlValue_in_entryRuleSqlValue9830 ) ; iv_ruleSqlValue = ruleSqlValue ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleSqlValue . getText ( ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleSqlValue9841 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final AntlrDatatypeRuleToken ruleSqlValue ( ) throws RecognitionException { AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken ( ) ; Token this_REST_0 = null ; Token this_IDENT_DOT_1 = null ; Token this_IDENT_2 = null ; Token this_NUMBER_3 = null ; Token this_WS_4 = null ; Token this_COMMA_5 = null ; Token this_MINUS_6 = null ; Token this_PLUS_7 = null ; Token this_LPAREN_8 = null ; Token this_RPAREN_9 = null ; Token this_RBRACE_10 = null ; Token this_QUESTI_11 = null ; Token this_NOT_12 = null ; Token this_BAND_13 = null ; Token this_BOR_14 = null ; Token this_HASH_15 = null ; Token this_CARET_16 = null ; Token this_EQUALS_17 = null ; Token this_LESS_THAN_18 = null ; Token this_MORE_THAN_19 = null ; Token this_AND_20 = null ; Token this_OR_21 = null ; Token this_ESC_CHAR_22 = null ; Token this_ON_OFF_23 = null ; Token this_STATEMEN_TYPE_24 = null ; Token this_MAPPING_TYPE_25 = null ; Token this_OPTION_TYPE_26 = null ; Token this_REST_27 = null ; Token this_IDENT_DOT_28 = null ; Token this_IDENT_29 = null ; Token this_NUMBER_30 = null ; Token this_WS_31 = null ; Token this_COMMA_32 = null ; Token this_MINUS_33 = null ; Token this_PLUS_34 = null ; Token this_LPAREN_35 = null ; Token this_RPAREN_36 = null ; Token this_RBRACE_37 = null ; Token this_QUESTI_38 = null ; Token this_NOT_39 = null ; Token this_BAND_40 = null ; Token this_BOR_41 = null ; Token this_HASH_42 = null ; Token this_CARET_43 = null ; Token this_EQUALS_44 = null ; Token this_LESS_THAN_45 = null ; Token this_MORE_THAN_46 = null ; Token this_AND_47 = null ; Token this_OR_48 = null ; Token this_ESC_CHAR_49 = null ; Token this_ON_OFF_50 = null ; Token this_STATEMEN_TYPE_51 = null ; Token this_MAPPING_TYPE_52 = null ; Token this_OPTION_TYPE_53 = null ; enterRule ( ) ; try { { { int alt98 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt98 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt98 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt98 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt98 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt98 = <NUM_LIT:5> ; } break ; case RULE_COMMA : { alt98 = <NUM_LIT:6> ; } break ; case RULE_MINUS : { alt98 = <NUM_LIT:7> ; } break ; case RULE_PLUS : { alt98 = <NUM_LIT:8> ; } break ; case RULE_LPAREN : { alt98 = <NUM_LIT:9> ; } break ; case RULE_RPAREN : { alt98 = <NUM_LIT:10> ; } break ; case RULE_RBRACE : { alt98 = <NUM_LIT:11> ; } break ; case RULE_QUESTI : { alt98 = <NUM_LIT:12> ; } break ; case RULE_NOT : { alt98 = <NUM_LIT> ; } break ; case RULE_BAND : { alt98 = <NUM_LIT> ; } break ; case RULE_BOR : { alt98 = <NUM_LIT:15> ; } break ; case RULE_HASH : { alt98 = <NUM_LIT:16> ; } break ; case RULE_CARET : { alt98 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt98 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt98 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt98 = <NUM_LIT:20> ; } break ; case RULE_AND : { alt98 = <NUM_LIT> ; } break ; case RULE_OR : { alt98 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt98 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt98 = <NUM_LIT:24> ; } break ; case RULE_STATEMEN_TYPE : { alt98 = <NUM_LIT> ; } break ; case RULE_MAPPING_TYPE : { alt98 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt98 = <NUM_LIT> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt98 ) { case <NUM_LIT:1> : { this_REST_0 = ( Token ) match ( input , RULE_REST , FOLLOW_RULE_REST_in_ruleSqlValue9882 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_REST_0 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_REST_0 , grammarAccess . getSqlValueAccess ( ) . getRESTTerminalRuleCall_0_0 ( ) ) ; } } break ; case <NUM_LIT:2> : { this_IDENT_DOT_1 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_ruleSqlValue9908 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_DOT_1 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_DOT_1 , grammarAccess . getSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } } break ; case <NUM_LIT:3> : { this_IDENT_2 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleSqlValue9934 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_2 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_2 , grammarAccess . getSqlValueAccess ( ) . getIDENTTerminalRuleCall_0_2 ( ) ) ; } } break ; case <NUM_LIT:4> : { this_NUMBER_3 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleSqlValue9960 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NUMBER_3 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NUMBER_3 , grammarAccess . getSqlValueAccess ( ) . getNUMBERTerminalRuleCall_0_3 ( ) ) ; } } break ; case <NUM_LIT:5> : { this_WS_4 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleSqlValue9986 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_WS_4 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_4 , grammarAccess . getSqlValueAccess ( ) . getWSTerminalRuleCall_0_4 ( ) ) ; } } break ; case <NUM_LIT:6> : { this_COMMA_5 = ( Token ) match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_ruleSqlValue10012 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_COMMA_5 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COMMA_5 , grammarAccess . getSqlValueAccess ( ) . getCOMMATerminalRuleCall_0_5 ( ) ) ; } } break ; case <NUM_LIT:7> : { this_MINUS_6 = ( Token ) match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_ruleSqlValue10038 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MINUS_6 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MINUS_6 , grammarAccess . getSqlValueAccess ( ) . getMINUSTerminalRuleCall_0_6 ( ) ) ; } } break ; case <NUM_LIT:8> : { this_PLUS_7 = ( Token ) match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_ruleSqlValue10064 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_PLUS_7 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PLUS_7 , grammarAccess . getSqlValueAccess ( ) . getPLUSTerminalRuleCall_0_7 ( ) ) ; } } break ; case <NUM_LIT:9> : { this_LPAREN_8 = ( Token ) match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_ruleSqlValue10090 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LPAREN_8 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LPAREN_8 , grammarAccess . getSqlValueAccess ( ) . getLPARENTerminalRuleCall_0_8 ( ) ) ; } } break ; case <NUM_LIT:10> : { this_RPAREN_9 = ( Token ) match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_ruleSqlValue10116 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_RPAREN_9 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RPAREN_9 , grammarAccess . getSqlValueAccess ( ) . getRPARENTerminalRuleCall_0_9 ( ) ) ; } } break ; case <NUM_LIT:11> : { this_RBRACE_10 = ( Token ) match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_ruleSqlValue10142 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_RBRACE_10 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RBRACE_10 , grammarAccess . getSqlValueAccess ( ) . getRBRACETerminalRuleCall_0_10 ( ) ) ; } } break ; case <NUM_LIT:12> : { this_QUESTI_11 = ( Token ) match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_ruleSqlValue10168 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_QUESTI_11 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_QUESTI_11 , grammarAccess . getSqlValueAccess ( ) . getQUESTITerminalRuleCall_0_11 ( ) ) ; } } break ; case <NUM_LIT> : { this_NOT_12 = ( Token ) match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_ruleSqlValue10194 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NOT_12 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NOT_12 , grammarAccess . getSqlValueAccess ( ) . getNOTTerminalRuleCall_0_12 ( ) ) ; } } break ; case <NUM_LIT> : { this_BAND_13 = ( Token ) match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_ruleSqlValue10220 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BAND_13 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BAND_13 , grammarAccess . getSqlValueAccess ( ) . getBANDTerminalRuleCall_0_13 ( ) ) ; } } break ; case <NUM_LIT:15> : { this_BOR_14 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleSqlValue10246 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BOR_14 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_14 , grammarAccess . getSqlValueAccess ( ) . getBORTerminalRuleCall_0_14 ( ) ) ; } } break ; case <NUM_LIT:16> : { this_HASH_15 = ( Token ) match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_ruleSqlValue10272 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_HASH_15 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_HASH_15 , grammarAccess . getSqlValueAccess ( ) . getHASHTerminalRuleCall_0_15 ( ) ) ; } } break ; case <NUM_LIT> : { this_CARET_16 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_ruleSqlValue10298 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_CARET_16 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_16 , grammarAccess . getSqlValueAccess ( ) . getCARETTerminalRuleCall_0_16 ( ) ) ; } } break ; case <NUM_LIT> : { this_EQUALS_17 = ( Token ) match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_ruleSqlValue10324 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_EQUALS_17 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_EQUALS_17 , grammarAccess . getSqlValueAccess ( ) . getEQUALSTerminalRuleCall_0_17 ( ) ) ; } } break ; case <NUM_LIT> : { this_LESS_THAN_18 = ( Token ) match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_ruleSqlValue10350 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LESS_THAN_18 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LESS_THAN_18 , grammarAccess . getSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_0_18 ( ) ) ; } } break ; case <NUM_LIT:20> : { this_MORE_THAN_19 = ( Token ) match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_ruleSqlValue10376 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MORE_THAN_19 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MORE_THAN_19 , grammarAccess . getSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_0_19 ( ) ) ; } } break ; case <NUM_LIT> : { this_AND_20 = ( Token ) match ( input , RULE_AND , FOLLOW_RULE_AND_in_ruleSqlValue10402 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_AND_20 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AND_20 , grammarAccess . getSqlValueAccess ( ) . getANDTerminalRuleCall_0_20 ( ) ) ; } } break ; case <NUM_LIT> : { this_OR_21 = ( Token ) match ( input , RULE_OR , FOLLOW_RULE_OR_in_ruleSqlValue10428 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OR_21 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OR_21 , grammarAccess . getSqlValueAccess ( ) . getORTerminalRuleCall_0_21 ( ) ) ; } } break ; case <NUM_LIT> : { this_ESC_CHAR_22 = ( Token ) match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_ruleSqlValue10454 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ESC_CHAR_22 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ESC_CHAR_22 , grammarAccess . getSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_0_22 ( ) ) ; } } break ; case <NUM_LIT:24> : { this_ON_OFF_23 = ( Token ) match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_ruleSqlValue10480 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ON_OFF_23 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ON_OFF_23 , grammarAccess . getSqlValueAccess ( ) . getON_OFFTerminalRuleCall_0_23 ( ) ) ; } } break ; case <NUM_LIT> : { this_STATEMEN_TYPE_24 = ( Token ) match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_ruleSqlValue10506 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_STATEMEN_TYPE_24 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STATEMEN_TYPE_24 , grammarAccess . getSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_0_24 ( ) ) ; } } break ; case <NUM_LIT> : { this_MAPPING_TYPE_25 = ( Token ) match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_ruleSqlValue10532 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MAPPING_TYPE_25 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MAPPING_TYPE_25 , grammarAccess . getSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_0_25 ( ) ) ; } } break ; case <NUM_LIT> : { this_OPTION_TYPE_26 = ( Token ) match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_ruleSqlValue10558 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OPTION_TYPE_26 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OPTION_TYPE_26 , grammarAccess . getSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_0_26 ( ) ) ; } } break ; } loop100 : do { int alt100 = <NUM_LIT:2> ; alt100 = dfa100 . predict ( input ) ; switch ( alt100 ) { case <NUM_LIT:1> : { int alt99 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt99 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt99 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt99 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt99 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt99 = <NUM_LIT:5> ; } break ; case RULE_COMMA : { alt99 = <NUM_LIT:6> ; } break ; case RULE_MINUS : { alt99 = <NUM_LIT:7> ; } break ; case RULE_PLUS : { alt99 = <NUM_LIT:8> ; } break ; case RULE_LPAREN : { alt99 = <NUM_LIT:9> ; } break ; case RULE_RPAREN : { alt99 = <NUM_LIT:10> ; } break ; case RULE_RBRACE : { alt99 = <NUM_LIT:11> ; } break ; case RULE_QUESTI : { alt99 = <NUM_LIT:12> ; } break ; case RULE_NOT : { alt99 = <NUM_LIT> ; } break ; case RULE_BAND : { alt99 = <NUM_LIT> ; } break ; case RULE_BOR : { alt99 = <NUM_LIT:15> ; } break ; case RULE_HASH : { alt99 = <NUM_LIT:16> ; } break ; case RULE_CARET : { alt99 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt99 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt99 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt99 = <NUM_LIT:20> ; } break ; case RULE_AND : { alt99 = <NUM_LIT> ; } break ; case RULE_OR : { alt99 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt99 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt99 = <NUM_LIT:24> ; } break ; case RULE_STATEMEN_TYPE : { alt99 = <NUM_LIT> ; } break ; case RULE_MAPPING_TYPE : { alt99 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt99 = <NUM_LIT> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt99 ) { case <NUM_LIT:1> : { this_REST_27 = ( Token ) match ( input , RULE_REST , FOLLOW_RULE_REST_in_ruleSqlValue10796 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_REST_27 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_REST_27 , grammarAccess . getSqlValueAccess ( ) . getRESTTerminalRuleCall_1_0_0 ( ) ) ; } } break ; case <NUM_LIT:2> : { this_IDENT_DOT_28 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_ruleSqlValue10822 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_DOT_28 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_DOT_28 , grammarAccess . getSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } } break ; case <NUM_LIT:3> : { this_IDENT_29 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleSqlValue10848 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_29 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_29 , grammarAccess . getSqlValueAccess ( ) . getIDENTTerminalRuleCall_1_0_2 ( ) ) ; } } break ; case <NUM_LIT:4> : { this_NUMBER_30 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleSqlValue10874 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NUMBER_30 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NUMBER_30 , grammarAccess . getSqlValueAccess ( ) . getNUMBERTerminalRuleCall_1_0_3 ( ) ) ; } } break ; case <NUM_LIT:5> : { this_WS_31 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleSqlValue10900 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_WS_31 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_31 , grammarAccess . getSqlValueAccess ( ) . getWSTerminalRuleCall_1_0_4 ( ) ) ; } } break ; case <NUM_LIT:6> : { this_COMMA_32 = ( Token ) match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_ruleSqlValue10926 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_COMMA_32 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COMMA_32 , grammarAccess . getSqlValueAccess ( ) . getCOMMATerminalRuleCall_1_0_5 ( ) ) ; } } break ; case <NUM_LIT:7> : { this_MINUS_33 = ( Token ) match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_ruleSqlValue10952 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MINUS_33 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MINUS_33 , grammarAccess . getSqlValueAccess ( ) . getMINUSTerminalRuleCall_1_0_6 ( ) ) ; } } break ; case <NUM_LIT:8> : { this_PLUS_34 = ( Token ) match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_ruleSqlValue10978 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_PLUS_34 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PLUS_34 , grammarAccess . getSqlValueAccess ( ) . getPLUSTerminalRuleCall_1_0_7 ( ) ) ; } } break ; case <NUM_LIT:9> : { this_LPAREN_35 = ( Token ) match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_ruleSqlValue11004 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LPAREN_35 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LPAREN_35 , grammarAccess . getSqlValueAccess ( ) . getLPARENTerminalRuleCall_1_0_8 ( ) ) ; } } break ; case <NUM_LIT:10> : { this_RPAREN_36 = ( Token ) match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_ruleSqlValue11030 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_RPAREN_36 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RPAREN_36 , grammarAccess . getSqlValueAccess ( ) . getRPARENTerminalRuleCall_1_0_9 ( ) ) ; } } break ; case <NUM_LIT:11> : { this_RBRACE_37 = ( Token ) match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_ruleSqlValue11056 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_RBRACE_37 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RBRACE_37 , grammarAccess . getSqlValueAccess ( ) . getRBRACETerminalRuleCall_1_0_10 ( ) ) ; } } break ; case <NUM_LIT:12> : { this_QUESTI_38 = ( Token ) match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_ruleSqlValue11082 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_QUESTI_38 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_QUESTI_38 , grammarAccess . getSqlValueAccess ( ) . getQUESTITerminalRuleCall_1_0_11 ( ) ) ; } } break ; case <NUM_LIT> : { this_NOT_39 = ( Token ) match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_ruleSqlValue11108 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NOT_39 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NOT_39 , grammarAccess . getSqlValueAccess ( ) . getNOTTerminalRuleCall_1_0_12 ( ) ) ; } } break ; case <NUM_LIT> : { this_BAND_40 = ( Token ) match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_ruleSqlValue11134 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BAND_40 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BAND_40 , grammarAccess . getSqlValueAccess ( ) . getBANDTerminalRuleCall_1_0_13 ( ) ) ; } } break ; case <NUM_LIT:15> : { this_BOR_41 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleSqlValue11160 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BOR_41 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_41 , grammarAccess . getSqlValueAccess ( ) . getBORTerminalRuleCall_1_0_14 ( ) ) ; } } break ; case <NUM_LIT:16> : { this_HASH_42 = ( Token ) match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_ruleSqlValue11186 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_HASH_42 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_HASH_42 , grammarAccess . getSqlValueAccess ( ) . getHASHTerminalRuleCall_1_0_15 ( ) ) ; } } break ; case <NUM_LIT> : { this_CARET_43 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_ruleSqlValue11212 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_CARET_43 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_43 , grammarAccess . getSqlValueAccess ( ) . getCARETTerminalRuleCall_1_0_16 ( ) ) ; } } break ; case <NUM_LIT> : { this_EQUALS_44 = ( Token ) match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_ruleSqlValue11238 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_EQUALS_44 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_EQUALS_44 , grammarAccess . getSqlValueAccess ( ) . getEQUALSTerminalRuleCall_1_0_17 ( ) ) ; } } break ; case <NUM_LIT> : { this_LESS_THAN_45 = ( Token ) match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_ruleSqlValue11264 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LESS_THAN_45 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LESS_THAN_45 , grammarAccess . getSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_1_0_18 ( ) ) ; } } break ; case <NUM_LIT:20> : { this_MORE_THAN_46 = ( Token ) match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_ruleSqlValue11290 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MORE_THAN_46 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MORE_THAN_46 , grammarAccess . getSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_1_0_19 ( ) ) ; } } break ; case <NUM_LIT> : { this_AND_47 = ( Token ) match ( input , RULE_AND , FOLLOW_RULE_AND_in_ruleSqlValue11316 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_AND_47 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AND_47 , grammarAccess . getSqlValueAccess ( ) . getANDTerminalRuleCall_1_0_20 ( ) ) ; } } break ; case <NUM_LIT> : { this_OR_48 = ( Token ) match ( input , RULE_OR , FOLLOW_RULE_OR_in_ruleSqlValue11342 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OR_48 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OR_48 , grammarAccess . getSqlValueAccess ( ) . getORTerminalRuleCall_1_0_21 ( ) ) ; } } break ; case <NUM_LIT> : { this_ESC_CHAR_49 = ( Token ) match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_ruleSqlValue11368 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ESC_CHAR_49 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ESC_CHAR_49 , grammarAccess . getSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_1_0_22 ( ) ) ; } } break ; case <NUM_LIT:24> : { this_ON_OFF_50 = ( Token ) match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_ruleSqlValue11394 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ON_OFF_50 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ON_OFF_50 , grammarAccess . getSqlValueAccess ( ) . getON_OFFTerminalRuleCall_1_0_23 ( ) ) ; } } break ; case <NUM_LIT> : { this_STATEMEN_TYPE_51 = ( Token ) match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_ruleSqlValue11420 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_STATEMEN_TYPE_51 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STATEMEN_TYPE_51 , grammarAccess . getSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_1_0_24 ( ) ) ; } } break ; case <NUM_LIT> : { this_MAPPING_TYPE_52 = ( Token ) match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_ruleSqlValue11446 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MAPPING_TYPE_52 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MAPPING_TYPE_52 , grammarAccess . getSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_1_0_25 ( ) ) ; } } break ; case <NUM_LIT> : { this_OPTION_TYPE_53 = ( Token ) match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_ruleSqlValue11472 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OPTION_TYPE_53 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OPTION_TYPE_53 , grammarAccess . getSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_1_0_26 ( ) ) ; } } break ; } } break ; default : break loop100 ; } } while ( true ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleMetaSql ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleMetaSql = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMetaSqlRule ( ) ) ; } pushFollow ( FOLLOW_ruleMetaSql_in_entryRuleMetaSql11520 ) ; iv_ruleMetaSql = ruleMetaSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleMetaSql ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMetaSql11530 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleMetaSql ( ) throws RecognitionException { EObject current = null ; Token this_WS_0 = null ; Token this_BOR_2 = null ; Token lv_type_4_0 = null ; Token this_BOR_6 = null ; Token this_BOR_8 = null ; Token lv_type_10_0 = null ; Token this_BOR_12 = null ; Token lv_type_14_0 = null ; Token this_BOR_16 = null ; Token lv_type_18_0 = null ; Token this_WS_19 = null ; Token lv_ftype_20_0 = null ; Token lv_type_22_0 = null ; Token this_NUMBER_23 = null ; EObject lv_ifs_1_0 = null ; EObject lv_ifs_3_0 = null ; EObject lv_cond_5_0 = null ; EObject lv_ifs_7_0 = null ; EObject lv_ifs_9_0 = null ; EObject lv_ifs_11_0 = null ; EObject lv_ifs_13_0 = null ; EObject lv_ifs_15_0 = null ; EObject lv_ifs_17_0 = null ; EObject lv_ifs_21_0 = null ; EObject lv_ord_24_0 = null ; enterRule ( ) ; try { { int alt106 = <NUM_LIT:6> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_WS : { alt106 = <NUM_LIT:1> ; } break ; case RULE_QUESTI : { alt106 = <NUM_LIT:2> ; } break ; case RULE_BAND : { alt106 = <NUM_LIT:3> ; } break ; case RULE_BOR : { alt106 = <NUM_LIT:4> ; } break ; case RULE_EQUALS : { alt106 = <NUM_LIT:5> ; } break ; case RULE_HASH : { alt106 = <NUM_LIT:6> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt106 ) { case <NUM_LIT:1> : { { this_WS_0 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleMetaSql11567 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_0 , grammarAccess . getMetaSqlAccess ( ) . getWSTerminalRuleCall_0_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_0_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleMetaSql11587 ) ; lv_ifs_1_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_1_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop101 : do { int alt101 = <NUM_LIT:2> ; int LA101_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA101_0 == RULE_BOR ) ) { alt101 = <NUM_LIT:1> ; } switch ( alt101 ) { case <NUM_LIT:1> : { this_BOR_2 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleMetaSql11599 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_2 , grammarAccess . getMetaSqlAccess ( ) . getBORTerminalRuleCall_0_2_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_0_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleMetaSql11619 ) ; lv_ifs_3_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_3_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : break loop101 ; } } while ( true ) ; } } break ; case <NUM_LIT:2> : { { { { lv_type_4_0 = ( Token ) match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_ruleMetaSql11646 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_type_4_0 , grammarAccess . getMetaSqlAccess ( ) . getTypeQUESTITerminalRuleCall_1_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMetaSqlRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:type>" , lv_type_4_0 , "<STR_LIT>" ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMetaSqlAccess ( ) . getCondIfSqlCondParserRuleCall_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlCond_in_ruleMetaSql11672 ) ; lv_cond_5_0 = ruleIfSqlCond ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMetaSqlRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_cond_5_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } this_BOR_6 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleMetaSql11683 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_6 , grammarAccess . getMetaSqlAccess ( ) . getBORTerminalRuleCall_1_2 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_1_3_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleMetaSql11703 ) ; lv_ifs_7_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_7_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop102 : do { int alt102 = <NUM_LIT:2> ; int LA102_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA102_0 == RULE_BOR ) ) { alt102 = <NUM_LIT:1> ; } switch ( alt102 ) { case <NUM_LIT:1> : { this_BOR_8 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleMetaSql11715 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_8 , grammarAccess . getMetaSqlAccess ( ) . getBORTerminalRuleCall_1_4_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_1_4_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleMetaSql11735 ) ; lv_ifs_9_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_9_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : break loop102 ; } } while ( true ) ; } } break ; case <NUM_LIT:3> : { { { { lv_type_10_0 = ( Token ) match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_ruleMetaSql11762 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_type_10_0 , grammarAccess . getMetaSqlAccess ( ) . getTypeBANDTerminalRuleCall_2_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMetaSqlRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:type>" , lv_type_10_0 , "<STR_LIT>" ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleMetaSql11788 ) ; lv_ifs_11_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_11_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop103 : do { int alt103 = <NUM_LIT:2> ; int LA103_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA103_0 == RULE_BOR ) ) { alt103 = <NUM_LIT:1> ; } switch ( alt103 ) { case <NUM_LIT:1> : { this_BOR_12 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleMetaSql11800 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_12 , grammarAccess . getMetaSqlAccess ( ) . getBORTerminalRuleCall_2_2_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_2_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleMetaSql11820 ) ; lv_ifs_13_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_13_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : break loop103 ; } } while ( true ) ; } } break ; case <NUM_LIT:4> : { { { { lv_type_14_0 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleMetaSql11847 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_type_14_0 , grammarAccess . getMetaSqlAccess ( ) . getTypeBORTerminalRuleCall_3_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMetaSqlRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:type>" , lv_type_14_0 , "<STR_LIT>" ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleMetaSql11873 ) ; lv_ifs_15_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_15_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop104 : do { int alt104 = <NUM_LIT:2> ; int LA104_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA104_0 == RULE_BOR ) ) { alt104 = <NUM_LIT:1> ; } switch ( alt104 ) { case <NUM_LIT:1> : { this_BOR_16 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleMetaSql11885 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_16 , grammarAccess . getMetaSqlAccess ( ) . getBORTerminalRuleCall_3_2_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_3_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleMetaSql11905 ) ; lv_ifs_17_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_17_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : break loop104 ; } } while ( true ) ; } } break ; case <NUM_LIT:5> : { { { { lv_type_18_0 = ( Token ) match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_ruleMetaSql11932 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_type_18_0 , grammarAccess . getMetaSqlAccess ( ) . getTypeEQUALSTerminalRuleCall_4_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMetaSqlRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:type>" , lv_type_18_0 , "<STR_LIT>" ) ; } } } loop105 : do { int alt105 = <NUM_LIT:2> ; int LA105_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA105_0 == RULE_WS ) ) { alt105 = <NUM_LIT:1> ; } switch ( alt105 ) { case <NUM_LIT:1> : { this_WS_19 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleMetaSql11949 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_19 , grammarAccess . getMetaSqlAccess ( ) . getWSTerminalRuleCall_4_1 ( ) ) ; } } break ; default : break loop105 ; } } while ( true ) ; { { lv_ftype_20_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleMetaSql11967 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_ftype_20_0 , grammarAccess . getMetaSqlAccess ( ) . getFtypeIDENTTerminalRuleCall_4_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMetaSqlRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_ftype_20_0 , "<STR_LIT>" ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_4_3_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleMetaSql11993 ) ; lv_ifs_21_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_21_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:6> : { { { { lv_type_22_0 = ( Token ) match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_ruleMetaSql12018 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_type_22_0 , grammarAccess . getMetaSqlAccess ( ) . getTypeHASHTerminalRuleCall_5_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMetaSqlRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:type>" , lv_type_22_0 , "<STR_LIT>" ) ; } } } this_NUMBER_23 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleMetaSql12034 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NUMBER_23 , grammarAccess . getMetaSqlAccess ( ) . getNUMBERTerminalRuleCall_5_1 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMetaSqlAccess ( ) . getOrdOrdSqlParserRuleCall_5_2_0 ( ) ) ; } pushFollow ( FOLLOW_ruleOrdSql_in_ruleMetaSql12054 ) ; lv_ord_24_0 = ruleOrdSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMetaSqlRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_ord_24_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleIfSql ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleIfSql = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlRule ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_entryRuleIfSql12091 ) ; iv_ruleIfSql = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleIfSql ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfSql12101 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleIfSql ( ) throws RecognitionException { EObject current = null ; EObject lv_sqls_0_0 = null ; enterRule ( ) ; try { { int cnt107 = <NUM_LIT:0> ; loop107 : do { int alt107 = <NUM_LIT:2> ; int LA107_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA107_0 >= RULE_WS && LA107_0 <= RULE_LBRACE ) || ( LA107_0 >= RULE_QUESTI && LA107_0 <= RULE_BAND ) || ( LA107_0 >= RULE_HASH && LA107_0 <= RULE_OPTION_TYPE ) ) ) { alt107 = <NUM_LIT:1> ; } switch ( alt107 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlAccess ( ) . getSqlsIfSqlFragmentParserRuleCall_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlFragment_in_ruleIfSql12146 ) ; lv_sqls_0_0 = ruleIfSqlFragment ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_sqls_0_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } break ; default : if ( cnt107 >= <NUM_LIT:1> ) break loop107 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt107 ++ ; } while ( true ) ; } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleIfSqlFragment ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleIfSqlFragment = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlFragmentRule ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlFragment_in_entryRuleIfSqlFragment12182 ) ; iv_ruleIfSqlFragment = ruleIfSqlFragment ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleIfSqlFragment ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfSqlFragment12192 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleIfSqlFragment ( ) throws RecognitionException { EObject current = null ; Token this_AT_1 = null ; Token this_STRING_3 = null ; Token this_COLON_5 = null ; Token this_PERCENT_7 = null ; Token this_PERCENT_8 = null ; Token this_LBRACE_11 = null ; Token this_RBRACE_13 = null ; AntlrDatatypeRuleToken lv_value_0_0 = null ; EObject lv_col_2_0 = null ; EObject lv_cnst_4_0 = null ; EObject lv_ident_6_0 = null ; EObject lv_dbtab_9_0 = null ; EObject lv_dbcol_10_0 = null ; EObject lv_meta_12_0 = null ; enterRule ( ) ; try { { int alt109 = <NUM_LIT:6> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_WS : case RULE_IDENT : case RULE_LPAREN : case RULE_NUMBER : case RULE_RPAREN : case RULE_SEMICOLON : case RULE_REST : case RULE_IDENT_DOT : case RULE_COMMA : case RULE_MINUS : case RULE_PLUS : case RULE_QUESTI : case RULE_NOT : case RULE_BAND : case RULE_HASH : case RULE_CARET : case RULE_EQUALS : case RULE_LESS_THAN : case RULE_MORE_THAN : case RULE_AND : case RULE_OR : case RULE_ESC_CHAR : case RULE_ON_OFF : case RULE_STATEMEN_TYPE : case RULE_MAPPING_TYPE : case RULE_OPTION_TYPE : { alt109 = <NUM_LIT:1> ; } break ; case RULE_AT : { alt109 = <NUM_LIT:2> ; } break ; case RULE_STRING : { alt109 = <NUM_LIT:3> ; } break ; case RULE_COLON : { alt109 = <NUM_LIT:4> ; } break ; case RULE_PERCENT : { alt109 = <NUM_LIT:5> ; } break ; case RULE_LBRACE : { alt109 = <NUM_LIT:6> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt109 ) { case <NUM_LIT:1> : { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlFragmentAccess ( ) . getValueIfSqlValueParserRuleCall_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlValue_in_ruleIfSqlFragment12238 ) ; lv_value_0_0 = ruleIfSqlValue ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfSqlFragmentRule ( ) ) ; } set ( current , "<STR_LIT:value>" , lv_value_0_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; case <NUM_LIT:2> : { { this_AT_1 = ( Token ) match ( input , RULE_AT , FOLLOW_RULE_AT_in_ruleIfSqlFragment12256 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AT_1 , grammarAccess . getIfSqlFragmentAccess ( ) . getATTerminalRuleCall_1_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlFragmentAccess ( ) . getColColumnParserRuleCall_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleColumn_in_ruleIfSqlFragment12276 ) ; lv_col_2_0 = ruleColumn ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfSqlFragmentRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_col_2_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:3> : { { this_STRING_3 = ( Token ) match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_ruleIfSqlFragment12295 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STRING_3 , grammarAccess . getIfSqlFragmentAccess ( ) . getSTRINGTerminalRuleCall_2_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlFragmentAccess ( ) . getCnstConstantParserRuleCall_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleConstant_in_ruleIfSqlFragment12315 ) ; lv_cnst_4_0 = ruleConstant ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfSqlFragmentRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_cnst_4_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:4> : { { this_COLON_5 = ( Token ) match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_ruleIfSqlFragment12334 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COLON_5 , grammarAccess . getIfSqlFragmentAccess ( ) . getCOLONTerminalRuleCall_3_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlFragmentAccess ( ) . getIdentIdentifierParserRuleCall_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifier_in_ruleIfSqlFragment12354 ) ; lv_ident_6_0 = ruleIdentifier ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfSqlFragmentRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_ident_6_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:5> : { { this_PERCENT_7 = ( Token ) match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_ruleIfSqlFragment12373 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PERCENT_7 , grammarAccess . getIfSqlFragmentAccess ( ) . getPERCENTTerminalRuleCall_4_0 ( ) ) ; } int alt108 = <NUM_LIT:2> ; int LA108_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA108_0 == RULE_PERCENT ) ) { alt108 = <NUM_LIT:1> ; } else if ( ( LA108_0 == RULE_IDENT || LA108_0 == RULE_IDENT_DOT ) ) { alt108 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt108 ) { case <NUM_LIT:1> : { { this_PERCENT_8 = ( Token ) match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_ruleIfSqlFragment12385 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PERCENT_8 , grammarAccess . getIfSqlFragmentAccess ( ) . getPERCENTTerminalRuleCall_4_1_0_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlFragmentAccess ( ) . getDbtabDatabaseTableParserRuleCall_4_1_0_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseTable_in_ruleIfSqlFragment12405 ) ; lv_dbtab_9_0 = ruleDatabaseTable ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfSqlFragmentRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_dbtab_9_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:2> : { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlFragmentAccess ( ) . getDbcolDatabaseColumnParserRuleCall_4_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseColumn_in_ruleIfSqlFragment12433 ) ; lv_dbcol_10_0 = ruleDatabaseColumn ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfSqlFragmentRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_dbcol_10_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; } } } break ; case <NUM_LIT:6> : { { this_LBRACE_11 = ( Token ) match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_ruleIfSqlFragment12453 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LBRACE_11 , grammarAccess . getIfSqlFragmentAccess ( ) . getLBRACETerminalRuleCall_5_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlFragmentAccess ( ) . getMetaIfMetaSqlParserRuleCall_5_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfMetaSql_in_ruleIfSqlFragment12473 ) ; lv_meta_12_0 = ruleIfMetaSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfSqlFragmentRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_meta_12_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } this_RBRACE_13 = ( Token ) match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_ruleIfSqlFragment12484 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RBRACE_13 , grammarAccess . getIfSqlFragmentAccess ( ) . getRBRACETerminalRuleCall_5_2 ( ) ) ; } } } break ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final String entryRuleIfSqlValue ( ) throws RecognitionException { String current = null ; AntlrDatatypeRuleToken iv_ruleIfSqlValue = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlValueRule ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlValue_in_entryRuleIfSqlValue12521 ) ; iv_ruleIfSqlValue = ruleIfSqlValue ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleIfSqlValue . getText ( ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfSqlValue12532 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final AntlrDatatypeRuleToken ruleIfSqlValue ( ) throws RecognitionException { AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken ( ) ; Token this_REST_0 = null ; Token this_IDENT_DOT_1 = null ; Token this_IDENT_2 = null ; Token this_NUMBER_3 = null ; Token this_WS_4 = null ; Token this_SEMICOLON_5 = null ; Token this_COMMA_6 = null ; Token this_MINUS_7 = null ; Token this_PLUS_8 = null ; Token this_LPAREN_9 = null ; Token this_RPAREN_10 = null ; Token this_QUESTI_11 = null ; Token this_NOT_12 = null ; Token this_BAND_13 = null ; Token this_HASH_14 = null ; Token this_CARET_15 = null ; Token this_EQUALS_16 = null ; Token this_LESS_THAN_17 = null ; Token this_MORE_THAN_18 = null ; Token this_AND_19 = null ; Token this_OR_20 = null ; Token this_ESC_CHAR_21 = null ; Token this_ON_OFF_22 = null ; Token this_STATEMEN_TYPE_23 = null ; Token this_MAPPING_TYPE_24 = null ; Token this_OPTION_TYPE_25 = null ; Token this_REST_26 = null ; Token this_IDENT_DOT_27 = null ; Token this_IDENT_28 = null ; Token this_NUMBER_29 = null ; Token this_WS_30 = null ; Token this_SEMICOLON_31 = null ; Token this_COMMA_32 = null ; Token this_MINUS_33 = null ; Token this_PLUS_34 = null ; Token this_LPAREN_35 = null ; Token this_RPAREN_36 = null ; Token this_QUESTI_37 = null ; Token this_NOT_38 = null ; Token this_BAND_39 = null ; Token this_HASH_40 = null ; Token this_CARET_41 = null ; Token this_EQUALS_42 = null ; Token this_LESS_THAN_43 = null ; Token this_MORE_THAN_44 = null ; Token this_AND_45 = null ; Token this_OR_46 = null ; Token this_ESC_CHAR_47 = null ; Token this_ON_OFF_48 = null ; Token this_STATEMEN_TYPE_49 = null ; Token this_MAPPING_TYPE_50 = null ; Token this_OPTION_TYPE_51 = null ; enterRule ( ) ; try { { { int alt110 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt110 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt110 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt110 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt110 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt110 = <NUM_LIT:5> ; } break ; case RULE_SEMICOLON : { alt110 = <NUM_LIT:6> ; } break ; case RULE_COMMA : { alt110 = <NUM_LIT:7> ; } break ; case RULE_MINUS : { alt110 = <NUM_LIT:8> ; } break ; case RULE_PLUS : { alt110 = <NUM_LIT:9> ; } break ; case RULE_LPAREN : { alt110 = <NUM_LIT:10> ; } break ; case RULE_RPAREN : { alt110 = <NUM_LIT:11> ; } break ; case RULE_QUESTI : { alt110 = <NUM_LIT:12> ; } break ; case RULE_NOT : { alt110 = <NUM_LIT> ; } break ; case RULE_BAND : { alt110 = <NUM_LIT> ; } break ; case RULE_HASH : { alt110 = <NUM_LIT:15> ; } break ; case RULE_CARET : { alt110 = <NUM_LIT:16> ; } break ; case RULE_EQUALS : { alt110 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt110 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt110 = <NUM_LIT> ; } break ; case RULE_AND : { alt110 = <NUM_LIT:20> ; } break ; case RULE_OR : { alt110 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt110 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt110 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt110 = <NUM_LIT:24> ; } break ; case RULE_MAPPING_TYPE : { alt110 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt110 = <NUM_LIT> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt110 ) { case <NUM_LIT:1> : { this_REST_0 = ( Token ) match ( input , RULE_REST , FOLLOW_RULE_REST_in_ruleIfSqlValue12573 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_REST_0 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_REST_0 , grammarAccess . getIfSqlValueAccess ( ) . getRESTTerminalRuleCall_0_0 ( ) ) ; } } break ; case <NUM_LIT:2> : { this_IDENT_DOT_1 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_ruleIfSqlValue12599 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_DOT_1 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_DOT_1 , grammarAccess . getIfSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } } break ; case <NUM_LIT:3> : { this_IDENT_2 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleIfSqlValue12625 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_2 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_2 , grammarAccess . getIfSqlValueAccess ( ) . getIDENTTerminalRuleCall_0_2 ( ) ) ; } } break ; case <NUM_LIT:4> : { this_NUMBER_3 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleIfSqlValue12651 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NUMBER_3 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NUMBER_3 , grammarAccess . getIfSqlValueAccess ( ) . getNUMBERTerminalRuleCall_0_3 ( ) ) ; } } break ; case <NUM_LIT:5> : { this_WS_4 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleIfSqlValue12677 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_WS_4 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_4 , grammarAccess . getIfSqlValueAccess ( ) . getWSTerminalRuleCall_0_4 ( ) ) ; } } break ; case <NUM_LIT:6> : { this_SEMICOLON_5 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleIfSqlValue12703 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_SEMICOLON_5 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_5 , grammarAccess . getIfSqlValueAccess ( ) . getSEMICOLONTerminalRuleCall_0_5 ( ) ) ; } } break ; case <NUM_LIT:7> : { this_COMMA_6 = ( Token ) match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_ruleIfSqlValue12729 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_COMMA_6 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COMMA_6 , grammarAccess . getIfSqlValueAccess ( ) . getCOMMATerminalRuleCall_0_6 ( ) ) ; } } break ; case <NUM_LIT:8> : { this_MINUS_7 = ( Token ) match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_ruleIfSqlValue12755 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MINUS_7 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MINUS_7 , grammarAccess . getIfSqlValueAccess ( ) . getMINUSTerminalRuleCall_0_7 ( ) ) ; } } break ; case <NUM_LIT:9> : { this_PLUS_8 = ( Token ) match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_ruleIfSqlValue12781 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_PLUS_8 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PLUS_8 , grammarAccess . getIfSqlValueAccess ( ) . getPLUSTerminalRuleCall_0_8 ( ) ) ; } } break ; case <NUM_LIT:10> : { this_LPAREN_9 = ( Token ) match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_ruleIfSqlValue12807 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LPAREN_9 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LPAREN_9 , grammarAccess . getIfSqlValueAccess ( ) . getLPARENTerminalRuleCall_0_9 ( ) ) ; } } break ; case <NUM_LIT:11> : { this_RPAREN_10 = ( Token ) match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_ruleIfSqlValue12833 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_RPAREN_10 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RPAREN_10 , grammarAccess . getIfSqlValueAccess ( ) . getRPARENTerminalRuleCall_0_10 ( ) ) ; } } break ; case <NUM_LIT:12> : { this_QUESTI_11 = ( Token ) match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_ruleIfSqlValue12859 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_QUESTI_11 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_QUESTI_11 , grammarAccess . getIfSqlValueAccess ( ) . getQUESTITerminalRuleCall_0_11 ( ) ) ; } } break ; case <NUM_LIT> : { this_NOT_12 = ( Token ) match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_ruleIfSqlValue12885 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NOT_12 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NOT_12 , grammarAccess . getIfSqlValueAccess ( ) . getNOTTerminalRuleCall_0_12 ( ) ) ; } } break ; case <NUM_LIT> : { this_BAND_13 = ( Token ) match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_ruleIfSqlValue12911 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BAND_13 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BAND_13 , grammarAccess . getIfSqlValueAccess ( ) . getBANDTerminalRuleCall_0_13 ( ) ) ; } } break ; case <NUM_LIT:15> : { this_HASH_14 = ( Token ) match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_ruleIfSqlValue12937 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_HASH_14 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_HASH_14 , grammarAccess . getIfSqlValueAccess ( ) . getHASHTerminalRuleCall_0_14 ( ) ) ; } } break ; case <NUM_LIT:16> : { this_CARET_15 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_ruleIfSqlValue12963 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_CARET_15 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_15 , grammarAccess . getIfSqlValueAccess ( ) . getCARETTerminalRuleCall_0_15 ( ) ) ; } } break ; case <NUM_LIT> : { this_EQUALS_16 = ( Token ) match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_ruleIfSqlValue12989 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_EQUALS_16 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_EQUALS_16 , grammarAccess . getIfSqlValueAccess ( ) . getEQUALSTerminalRuleCall_0_16 ( ) ) ; } } break ; case <NUM_LIT> : { this_LESS_THAN_17 = ( Token ) match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_ruleIfSqlValue13015 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LESS_THAN_17 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LESS_THAN_17 , grammarAccess . getIfSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_0_17 ( ) ) ; } } break ; case <NUM_LIT> : { this_MORE_THAN_18 = ( Token ) match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_ruleIfSqlValue13041 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MORE_THAN_18 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MORE_THAN_18 , grammarAccess . getIfSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_0_18 ( ) ) ; } } break ; case <NUM_LIT:20> : { this_AND_19 = ( Token ) match ( input , RULE_AND , FOLLOW_RULE_AND_in_ruleIfSqlValue13067 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_AND_19 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AND_19 , grammarAccess . getIfSqlValueAccess ( ) . getANDTerminalRuleCall_0_19 ( ) ) ; } } break ; case <NUM_LIT> : { this_OR_20 = ( Token ) match ( input , RULE_OR , FOLLOW_RULE_OR_in_ruleIfSqlValue13093 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OR_20 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OR_20 , grammarAccess . getIfSqlValueAccess ( ) . getORTerminalRuleCall_0_20 ( ) ) ; } } break ; case <NUM_LIT> : { this_ESC_CHAR_21 = ( Token ) match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_ruleIfSqlValue13119 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ESC_CHAR_21 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ESC_CHAR_21 , grammarAccess . getIfSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_0_21 ( ) ) ; } } break ; case <NUM_LIT> : { this_ON_OFF_22 = ( Token ) match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_ruleIfSqlValue13145 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ON_OFF_22 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ON_OFF_22 , grammarAccess . getIfSqlValueAccess ( ) . getON_OFFTerminalRuleCall_0_22 ( ) ) ; } } break ; case <NUM_LIT:24> : { this_STATEMEN_TYPE_23 = ( Token ) match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_ruleIfSqlValue13171 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_STATEMEN_TYPE_23 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STATEMEN_TYPE_23 , grammarAccess . getIfSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_0_23 ( ) ) ; } } break ; case <NUM_LIT> : { this_MAPPING_TYPE_24 = ( Token ) match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_ruleIfSqlValue13197 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MAPPING_TYPE_24 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MAPPING_TYPE_24 , grammarAccess . getIfSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_0_24 ( ) ) ; } } break ; case <NUM_LIT> : { this_OPTION_TYPE_25 = ( Token ) match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_ruleIfSqlValue13223 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OPTION_TYPE_25 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OPTION_TYPE_25 , grammarAccess . getIfSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_0_25 ( ) ) ; } } break ; } loop112 : do { int alt112 = <NUM_LIT:2> ; alt112 = dfa112 . predict ( input ) ; switch ( alt112 ) { case <NUM_LIT:1> : { int alt111 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt111 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt111 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt111 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt111 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt111 = <NUM_LIT:5> ; } break ; case RULE_SEMICOLON : { alt111 = <NUM_LIT:6> ; } break ; case RULE_COMMA : { alt111 = <NUM_LIT:7> ; } break ; case RULE_MINUS : { alt111 = <NUM_LIT:8> ; } break ; case RULE_PLUS : { alt111 = <NUM_LIT:9> ; } break ; case RULE_LPAREN : { alt111 = <NUM_LIT:10> ; } break ; case RULE_RPAREN : { alt111 = <NUM_LIT:11> ; } break ; case RULE_QUESTI : { alt111 = <NUM_LIT:12> ; } break ; case RULE_NOT : { alt111 = <NUM_LIT> ; } break ; case RULE_BAND : { alt111 = <NUM_LIT> ; } break ; case RULE_HASH : { alt111 = <NUM_LIT:15> ; } break ; case RULE_CARET : { alt111 = <NUM_LIT:16> ; } break ; case RULE_EQUALS : { alt111 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt111 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt111 = <NUM_LIT> ; } break ; case RULE_AND : { alt111 = <NUM_LIT:20> ; } break ; case RULE_OR : { alt111 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt111 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt111 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt111 = <NUM_LIT:24> ; } break ; case RULE_MAPPING_TYPE : { alt111 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt111 = <NUM_LIT> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt111 ) { case <NUM_LIT:1> : { this_REST_26 = ( Token ) match ( input , RULE_REST , FOLLOW_RULE_REST_in_ruleIfSqlValue13453 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_REST_26 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_REST_26 , grammarAccess . getIfSqlValueAccess ( ) . getRESTTerminalRuleCall_1_0_0 ( ) ) ; } } break ; case <NUM_LIT:2> : { this_IDENT_DOT_27 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_ruleIfSqlValue13479 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_DOT_27 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_DOT_27 , grammarAccess . getIfSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } } break ; case <NUM_LIT:3> : { this_IDENT_28 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleIfSqlValue13505 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_28 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_28 , grammarAccess . getIfSqlValueAccess ( ) . getIDENTTerminalRuleCall_1_0_2 ( ) ) ; } } break ; case <NUM_LIT:4> : { this_NUMBER_29 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleIfSqlValue13531 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NUMBER_29 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NUMBER_29 , grammarAccess . getIfSqlValueAccess ( ) . getNUMBERTerminalRuleCall_1_0_3 ( ) ) ; } } break ; case <NUM_LIT:5> : { this_WS_30 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleIfSqlValue13557 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_WS_30 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_30 , grammarAccess . getIfSqlValueAccess ( ) . getWSTerminalRuleCall_1_0_4 ( ) ) ; } } break ; case <NUM_LIT:6> : { this_SEMICOLON_31 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleIfSqlValue13583 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_SEMICOLON_31 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_31 , grammarAccess . getIfSqlValueAccess ( ) . getSEMICOLONTerminalRuleCall_1_0_5 ( ) ) ; } } break ; case <NUM_LIT:7> : { this_COMMA_32 = ( Token ) match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_ruleIfSqlValue13609 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_COMMA_32 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COMMA_32 , grammarAccess . getIfSqlValueAccess ( ) . getCOMMATerminalRuleCall_1_0_6 ( ) ) ; } } break ; case <NUM_LIT:8> : { this_MINUS_33 = ( Token ) match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_ruleIfSqlValue13635 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MINUS_33 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MINUS_33 , grammarAccess . getIfSqlValueAccess ( ) . getMINUSTerminalRuleCall_1_0_7 ( ) ) ; } } break ; case <NUM_LIT:9> : { this_PLUS_34 = ( Token ) match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_ruleIfSqlValue13661 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_PLUS_34 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PLUS_34 , grammarAccess . getIfSqlValueAccess ( ) . getPLUSTerminalRuleCall_1_0_8 ( ) ) ; } } break ; case <NUM_LIT:10> : { this_LPAREN_35 = ( Token ) match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_ruleIfSqlValue13687 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LPAREN_35 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LPAREN_35 , grammarAccess . getIfSqlValueAccess ( ) . getLPARENTerminalRuleCall_1_0_9 ( ) ) ; } } break ; case <NUM_LIT:11> : { this_RPAREN_36 = ( Token ) match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_ruleIfSqlValue13713 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_RPAREN_36 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RPAREN_36 , grammarAccess . getIfSqlValueAccess ( ) . getRPARENTerminalRuleCall_1_0_10 ( ) ) ; } } break ; case <NUM_LIT:12> : { this_QUESTI_37 = ( Token ) match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_ruleIfSqlValue13739 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_QUESTI_37 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_QUESTI_37 , grammarAccess . getIfSqlValueAccess ( ) . getQUESTITerminalRuleCall_1_0_11 ( ) ) ; } } break ; case <NUM_LIT> : { this_NOT_38 = ( Token ) match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_ruleIfSqlValue13765 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NOT_38 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NOT_38 , grammarAccess . getIfSqlValueAccess ( ) . getNOTTerminalRuleCall_1_0_12 ( ) ) ; } } break ; case <NUM_LIT> : { this_BAND_39 = ( Token ) match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_ruleIfSqlValue13791 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BAND_39 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BAND_39 , grammarAccess . getIfSqlValueAccess ( ) . getBANDTerminalRuleCall_1_0_13 ( ) ) ; } } break ; case <NUM_LIT:15> : { this_HASH_40 = ( Token ) match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_ruleIfSqlValue13817 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_HASH_40 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_HASH_40 , grammarAccess . getIfSqlValueAccess ( ) . getHASHTerminalRuleCall_1_0_14 ( ) ) ; } } break ; case <NUM_LIT:16> : { this_CARET_41 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_ruleIfSqlValue13843 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_CARET_41 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_41 , grammarAccess . getIfSqlValueAccess ( ) . getCARETTerminalRuleCall_1_0_15 ( ) ) ; } } break ; case <NUM_LIT> : { this_EQUALS_42 = ( Token ) match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_ruleIfSqlValue13869 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_EQUALS_42 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_EQUALS_42 , grammarAccess . getIfSqlValueAccess ( ) . getEQUALSTerminalRuleCall_1_0_16 ( ) ) ; } } break ; case <NUM_LIT> : { this_LESS_THAN_43 = ( Token ) match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_ruleIfSqlValue13895 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LESS_THAN_43 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LESS_THAN_43 , grammarAccess . getIfSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_1_0_17 ( ) ) ; } } break ; case <NUM_LIT> : { this_MORE_THAN_44 = ( Token ) match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_ruleIfSqlValue13921 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MORE_THAN_44 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MORE_THAN_44 , grammarAccess . getIfSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_1_0_18 ( ) ) ; } } break ; case <NUM_LIT:20> : { this_AND_45 = ( Token ) match ( input , RULE_AND , FOLLOW_RULE_AND_in_ruleIfSqlValue13947 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_AND_45 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AND_45 , grammarAccess . getIfSqlValueAccess ( ) . getANDTerminalRuleCall_1_0_19 ( ) ) ; } } break ; case <NUM_LIT> : { this_OR_46 = ( Token ) match ( input , RULE_OR , FOLLOW_RULE_OR_in_ruleIfSqlValue13973 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OR_46 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OR_46 , grammarAccess . getIfSqlValueAccess ( ) . getORTerminalRuleCall_1_0_20 ( ) ) ; } } break ; case <NUM_LIT> : { this_ESC_CHAR_47 = ( Token ) match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_ruleIfSqlValue13999 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ESC_CHAR_47 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ESC_CHAR_47 , grammarAccess . getIfSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_1_0_21 ( ) ) ; } } break ; case <NUM_LIT> : { this_ON_OFF_48 = ( Token ) match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_ruleIfSqlValue14025 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ON_OFF_48 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ON_OFF_48 , grammarAccess . getIfSqlValueAccess ( ) . getON_OFFTerminalRuleCall_1_0_22 ( ) ) ; } } break ; case <NUM_LIT:24> : { this_STATEMEN_TYPE_49 = ( Token ) match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_ruleIfSqlValue14051 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_STATEMEN_TYPE_49 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STATEMEN_TYPE_49 , grammarAccess . getIfSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_1_0_23 ( ) ) ; } } break ; case <NUM_LIT> : { this_MAPPING_TYPE_50 = ( Token ) match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_ruleIfSqlValue14077 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MAPPING_TYPE_50 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MAPPING_TYPE_50 , grammarAccess . getIfSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_1_0_24 ( ) ) ; } } break ; case <NUM_LIT> : { this_OPTION_TYPE_51 = ( Token ) match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_ruleIfSqlValue14103 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OPTION_TYPE_51 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OPTION_TYPE_51 , grammarAccess . getIfSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_1_0_25 ( ) ) ; } } break ; } } break ; default : break loop112 ; } } while ( true ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleIfMetaSql ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleIfMetaSql = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfMetaSqlRule ( ) ) ; } pushFollow ( FOLLOW_ruleIfMetaSql_in_entryRuleIfMetaSql14151 ) ; iv_ruleIfMetaSql = ruleIfMetaSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleIfMetaSql ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfMetaSql14161 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleIfMetaSql ( ) throws RecognitionException { EObject current = null ; Token this_WS_0 = null ; Token this_BOR_2 = null ; Token lv_type_4_0 = null ; Token this_BOR_6 = null ; Token this_BOR_8 = null ; Token lv_type_10_0 = null ; Token this_BOR_12 = null ; Token lv_type_14_0 = null ; Token this_BOR_16 = null ; EObject lv_ifs_1_0 = null ; EObject lv_ifs_3_0 = null ; EObject lv_cond_5_0 = null ; EObject lv_ifs_7_0 = null ; EObject lv_ifs_9_0 = null ; EObject lv_ifs_11_0 = null ; EObject lv_ifs_13_0 = null ; EObject lv_ifs_15_0 = null ; EObject lv_ifs_17_0 = null ; enterRule ( ) ; try { { int alt117 = <NUM_LIT:4> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_WS : { alt117 = <NUM_LIT:1> ; } break ; case RULE_QUESTI : { alt117 = <NUM_LIT:2> ; } break ; case RULE_BAND : { alt117 = <NUM_LIT:3> ; } break ; case RULE_BOR : { alt117 = <NUM_LIT:4> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt117 ) { case <NUM_LIT:1> : { { this_WS_0 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleIfMetaSql14198 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_0 , grammarAccess . getIfMetaSqlAccess ( ) . getWSTerminalRuleCall_0_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_0_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleIfMetaSql14218 ) ; lv_ifs_1_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_1_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop113 : do { int alt113 = <NUM_LIT:2> ; int LA113_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA113_0 == RULE_BOR ) ) { alt113 = <NUM_LIT:1> ; } switch ( alt113 ) { case <NUM_LIT:1> : { this_BOR_2 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleIfMetaSql14230 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_2 , grammarAccess . getIfMetaSqlAccess ( ) . getBORTerminalRuleCall_0_2_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_0_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleIfMetaSql14250 ) ; lv_ifs_3_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_3_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : break loop113 ; } } while ( true ) ; } } break ; case <NUM_LIT:2> : { { { { lv_type_4_0 = ( Token ) match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_ruleIfMetaSql14277 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_type_4_0 , grammarAccess . getIfMetaSqlAccess ( ) . getTypeQUESTITerminalRuleCall_1_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIfMetaSqlRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:type>" , lv_type_4_0 , "<STR_LIT>" ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfMetaSqlAccess ( ) . getCondIfSqlCondParserRuleCall_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlCond_in_ruleIfMetaSql14303 ) ; lv_cond_5_0 = ruleIfSqlCond ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfMetaSqlRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_cond_5_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } this_BOR_6 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleIfMetaSql14314 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_6 , grammarAccess . getIfMetaSqlAccess ( ) . getBORTerminalRuleCall_1_2 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_1_3_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleIfMetaSql14334 ) ; lv_ifs_7_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_7_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop114 : do { int alt114 = <NUM_LIT:2> ; int LA114_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA114_0 == RULE_BOR ) ) { alt114 = <NUM_LIT:1> ; } switch ( alt114 ) { case <NUM_LIT:1> : { this_BOR_8 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleIfMetaSql14346 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_8 , grammarAccess . getIfMetaSqlAccess ( ) . getBORTerminalRuleCall_1_4_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_1_4_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleIfMetaSql14366 ) ; lv_ifs_9_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_9_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : break loop114 ; } } while ( true ) ; } } break ; case <NUM_LIT:3> : { { { { lv_type_10_0 = ( Token ) match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_ruleIfMetaSql14393 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_type_10_0 , grammarAccess . getIfMetaSqlAccess ( ) . getTypeBANDTerminalRuleCall_2_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIfMetaSqlRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:type>" , lv_type_10_0 , "<STR_LIT>" ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleIfMetaSql14419 ) ; lv_ifs_11_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_11_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop115 : do { int alt115 = <NUM_LIT:2> ; int LA115_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA115_0 == RULE_BOR ) ) { alt115 = <NUM_LIT:1> ; } switch ( alt115 ) { case <NUM_LIT:1> : { this_BOR_12 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleIfMetaSql14431 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_12 , grammarAccess . getIfMetaSqlAccess ( ) . getBORTerminalRuleCall_2_2_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_2_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleIfMetaSql14451 ) ; lv_ifs_13_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_13_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : break loop115 ; } } while ( true ) ; } } break ; case <NUM_LIT:4> : { { { { lv_type_14_0 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleIfMetaSql14478 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_type_14_0 , grammarAccess . getIfMetaSqlAccess ( ) . getTypeBORTerminalRuleCall_3_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIfMetaSqlRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:type>" , lv_type_14_0 , "<STR_LIT>" ) ; } } } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleIfMetaSql14504 ) ; lv_ifs_15_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_15_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop116 : do { int alt116 = <NUM_LIT:2> ; int LA116_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA116_0 == RULE_BOR ) ) { alt116 = <NUM_LIT:1> ; } switch ( alt116 ) { case <NUM_LIT:1> : { this_BOR_16 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleIfMetaSql14516 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_16 , grammarAccess . getIfMetaSqlAccess ( ) . getBORTerminalRuleCall_3_2_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfMetaSqlAccess ( ) . getIfsIfSqlParserRuleCall_3_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSql_in_ruleIfMetaSql14536 ) ; lv_ifs_17_0 = ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfMetaSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_ifs_17_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : break loop116 ; } } while ( true ) ; } } break ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleIfSqlCond ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleIfSqlCond = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlCondRule ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlCond_in_entryRuleIfSqlCond14575 ) ; iv_ruleIfSqlCond = ruleIfSqlCond ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleIfSqlCond ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfSqlCond14585 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleIfSqlCond ( ) throws RecognitionException { EObject current = null ; Token this_WS_0 = null ; Token this_WS_2 = null ; Token lv_oper_3_1 = null ; Token lv_oper_3_2 = null ; Token this_WS_4 = null ; Token this_WS_6 = null ; EObject lv_bool1_1_0 = null ; EObject lv_bool2_5_0 = null ; enterRule ( ) ; try { { { loop118 : do { int alt118 = <NUM_LIT:2> ; int LA118_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA118_0 == RULE_WS ) ) { alt118 = <NUM_LIT:1> ; } switch ( alt118 ) { case <NUM_LIT:1> : { this_WS_0 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleIfSqlCond14622 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_0 , grammarAccess . getIfSqlCondAccess ( ) . getWSTerminalRuleCall_0 ( ) ) ; } } break ; default : break loop118 ; } } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlCondAccess ( ) . getBool1IfSqlBoolParserRuleCall_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlBool_in_ruleIfSqlCond14644 ) ; lv_bool1_1_0 = ruleIfSqlBool ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfSqlCondRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_bool1_1_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop119 : do { int alt119 = <NUM_LIT:2> ; int LA119_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA119_0 == RULE_WS ) ) { alt119 = <NUM_LIT:1> ; } switch ( alt119 ) { case <NUM_LIT:1> : { this_WS_2 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleIfSqlCond14656 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_2 , grammarAccess . getIfSqlCondAccess ( ) . getWSTerminalRuleCall_2 ( ) ) ; } } break ; default : break loop119 ; } } while ( true ) ; loop123 : do { int alt123 = <NUM_LIT:2> ; int LA123_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA123_0 >= RULE_AND && LA123_0 <= RULE_OR ) ) ) { alt123 = <NUM_LIT:1> ; } switch ( alt123 ) { case <NUM_LIT:1> : { { { int alt120 = <NUM_LIT:2> ; int LA120_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA120_0 == RULE_AND ) ) { alt120 = <NUM_LIT:1> ; } else if ( ( LA120_0 == RULE_OR ) ) { alt120 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt120 ) { case <NUM_LIT:1> : { lv_oper_3_1 = ( Token ) match ( input , RULE_AND , FOLLOW_RULE_AND_in_ruleIfSqlCond14677 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_oper_3_1 , grammarAccess . getIfSqlCondAccess ( ) . getOperANDTerminalRuleCall_3_0_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIfSqlCondRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_oper_3_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_oper_3_2 = ( Token ) match ( input , RULE_OR , FOLLOW_RULE_OR_in_ruleIfSqlCond14697 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_oper_3_2 , grammarAccess . getIfSqlCondAccess ( ) . getOperORTerminalRuleCall_3_0_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIfSqlCondRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_oper_3_2 , "<STR_LIT>" ) ; } } break ; } } } loop121 : do { int alt121 = <NUM_LIT:2> ; int LA121_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA121_0 == RULE_WS ) ) { alt121 = <NUM_LIT:1> ; } switch ( alt121 ) { case <NUM_LIT:1> : { this_WS_4 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleIfSqlCond14717 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_4 , grammarAccess . getIfSqlCondAccess ( ) . getWSTerminalRuleCall_3_1 ( ) ) ; } } break ; default : break loop121 ; } } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlCondAccess ( ) . getBool2IfSqlBoolParserRuleCall_3_2_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlBool_in_ruleIfSqlCond14739 ) ; lv_bool2_5_0 = ruleIfSqlBool ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfSqlCondRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_bool2_5_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop122 : do { int alt122 = <NUM_LIT:2> ; int LA122_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA122_0 == RULE_WS ) ) { alt122 = <NUM_LIT:1> ; } switch ( alt122 ) { case <NUM_LIT:1> : { this_WS_6 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleIfSqlCond14751 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_6 , grammarAccess . getIfSqlCondAccess ( ) . getWSTerminalRuleCall_3_3 ( ) ) ; } } break ; default : break loop122 ; } } while ( true ) ; } break ; default : break loop123 ; } } while ( true ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleIfSqlBool ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleIfSqlBool = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlBoolRule ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlBool_in_entryRuleIfSqlBool14790 ) ; iv_ruleIfSqlBool = ruleIfSqlBool ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleIfSqlBool ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfSqlBool14800 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleIfSqlBool ( ) throws RecognitionException { EObject current = null ; Token lv_not_0_0 = null ; Token this_STRING_1 = null ; Token lv_not_3_0 = null ; Token this_COLON_4 = null ; Token lv_not_6_0 = null ; Token this_LPAREN_7 = null ; Token this_RPAREN_9 = null ; EObject lv_cnst_2_0 = null ; EObject lv_ident_5_0 = null ; EObject lv_cond_8_0 = null ; enterRule ( ) ; try { { int alt127 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_NOT : { switch ( input . LA ( <NUM_LIT:2> ) ) { case RULE_COLON : { alt127 = <NUM_LIT:2> ; } break ; case RULE_STRING : { alt127 = <NUM_LIT:1> ; } break ; case RULE_LPAREN : { alt127 = <NUM_LIT:3> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:1> , input ) ; throw nvae ; } } break ; case RULE_STRING : { alt127 = <NUM_LIT:1> ; } break ; case RULE_COLON : { alt127 = <NUM_LIT:2> ; } break ; case RULE_LPAREN : { alt127 = <NUM_LIT:3> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt127 ) { case <NUM_LIT:1> : { { int alt124 = <NUM_LIT:2> ; int LA124_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA124_0 == RULE_NOT ) ) { alt124 = <NUM_LIT:1> ; } switch ( alt124 ) { case <NUM_LIT:1> : { { lv_not_0_0 = ( Token ) match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_ruleIfSqlBool14843 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_not_0_0 , grammarAccess . getIfSqlBoolAccess ( ) . getNotNOTTerminalRuleCall_0_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIfSqlBoolRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , true , "<STR_LIT>" ) ; } } } break ; } this_STRING_1 = ( Token ) match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_ruleIfSqlBool14860 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STRING_1 , grammarAccess . getIfSqlBoolAccess ( ) . getSTRINGTerminalRuleCall_0_1 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlBoolAccess ( ) . getCnstConstantParserRuleCall_0_2_0 ( ) ) ; } pushFollow ( FOLLOW_ruleConstant_in_ruleIfSqlBool14880 ) ; lv_cnst_2_0 = ruleConstant ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfSqlBoolRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_cnst_2_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:2> : { { int alt125 = <NUM_LIT:2> ; int LA125_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA125_0 == RULE_NOT ) ) { alt125 = <NUM_LIT:1> ; } switch ( alt125 ) { case <NUM_LIT:1> : { { lv_not_3_0 = ( Token ) match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_ruleIfSqlBool14905 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_not_3_0 , grammarAccess . getIfSqlBoolAccess ( ) . getNotNOTTerminalRuleCall_1_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIfSqlBoolRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , true , "<STR_LIT>" ) ; } } } break ; } this_COLON_4 = ( Token ) match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_ruleIfSqlBool14922 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COLON_4 , grammarAccess . getIfSqlBoolAccess ( ) . getCOLONTerminalRuleCall_1_1 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlBoolAccess ( ) . getIdentIdentifierParserRuleCall_1_2_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifier_in_ruleIfSqlBool14942 ) ; lv_ident_5_0 = ruleIdentifier ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfSqlBoolRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_ident_5_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:3> : { { int alt126 = <NUM_LIT:2> ; int LA126_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA126_0 == RULE_NOT ) ) { alt126 = <NUM_LIT:1> ; } switch ( alt126 ) { case <NUM_LIT:1> : { { lv_not_6_0 = ( Token ) match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_ruleIfSqlBool14967 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_not_6_0 , grammarAccess . getIfSqlBoolAccess ( ) . getNotNOTTerminalRuleCall_2_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIfSqlBoolRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , true , "<STR_LIT>" ) ; } } } break ; } this_LPAREN_7 = ( Token ) match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_ruleIfSqlBool14984 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LPAREN_7 , grammarAccess . getIfSqlBoolAccess ( ) . getLPARENTerminalRuleCall_2_1 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIfSqlBoolAccess ( ) . getCondIfSqlCondParserRuleCall_2_2_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIfSqlCond_in_ruleIfSqlBool15004 ) ; lv_cond_8_0 = ruleIfSqlCond ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getIfSqlBoolRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_cond_8_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } this_RPAREN_9 = ( Token ) match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_ruleIfSqlBool15015 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RPAREN_9 , grammarAccess . getIfSqlBoolAccess ( ) . getRPARENTerminalRuleCall_2_3 ( ) ) ; } } } break ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleOrdSql ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleOrdSql = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getOrdSqlRule ( ) ) ; } pushFollow ( FOLLOW_ruleOrdSql_in_entryRuleOrdSql15051 ) ; iv_ruleOrdSql = ruleOrdSql ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleOrdSql ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleOrdSql15061 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleOrdSql ( ) throws RecognitionException { EObject current = null ; EObject lv_sqls_0_0 = null ; enterRule ( ) ; try { { int cnt128 = <NUM_LIT:0> ; loop128 : do { int alt128 = <NUM_LIT:2> ; int LA128_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA128_0 >= RULE_WS && LA128_0 <= RULE_LBRACE ) || ( LA128_0 >= RULE_QUESTI && LA128_0 <= RULE_OPTION_TYPE ) ) ) { alt128 = <NUM_LIT:1> ; } switch ( alt128 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getOrdSqlAccess ( ) . getSqlsOrdSql2ParserRuleCall_0 ( ) ) ; } pushFollow ( FOLLOW_ruleOrdSql2_in_ruleOrdSql15106 ) ; lv_sqls_0_0 = ruleOrdSql2 ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getOrdSqlRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_sqls_0_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } break ; default : if ( cnt128 >= <NUM_LIT:1> ) break loop128 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt128 ++ ; } while ( true ) ; } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleOrdSql2 ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleOrdSql2 = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getOrdSql2Rule ( ) ) ; } pushFollow ( FOLLOW_ruleOrdSql2_in_entryRuleOrdSql215142 ) ; iv_ruleOrdSql2 = ruleOrdSql2 ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleOrdSql2 ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleOrdSql215152 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleOrdSql2 ( ) throws RecognitionException { EObject current = null ; Token this_STRING_1 = null ; Token this_COLON_3 = null ; Token this_PERCENT_5 = null ; AntlrDatatypeRuleToken lv_value_0_0 = null ; EObject lv_cnst_2_0 = null ; EObject lv_ident_4_0 = null ; EObject lv_dbcol_6_0 = null ; enterRule ( ) ; try { { int alt129 = <NUM_LIT:4> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_WS : case RULE_IDENT : case RULE_LPAREN : case RULE_NUMBER : case RULE_RPAREN : case RULE_SEMICOLON : case RULE_REST : case RULE_IDENT_DOT : case RULE_COMMA : case RULE_MINUS : case RULE_PLUS : case RULE_LBRACE : case RULE_QUESTI : case RULE_NOT : case RULE_BAND : case RULE_BOR : case RULE_HASH : case RULE_AT : case RULE_CARET : case RULE_EQUALS : case RULE_LESS_THAN : case RULE_MORE_THAN : case RULE_AND : case RULE_OR : case RULE_ESC_CHAR : case RULE_ON_OFF : case RULE_STATEMEN_TYPE : case RULE_MAPPING_TYPE : case RULE_OPTION_TYPE : { alt129 = <NUM_LIT:1> ; } break ; case RULE_STRING : { alt129 = <NUM_LIT:2> ; } break ; case RULE_COLON : { alt129 = <NUM_LIT:3> ; } break ; case RULE_PERCENT : { alt129 = <NUM_LIT:4> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt129 ) { case <NUM_LIT:1> : { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getOrdSql2Access ( ) . getValueOrdSqlValueParserRuleCall_0_0 ( ) ) ; } pushFollow ( FOLLOW_ruleOrdSqlValue_in_ruleOrdSql215198 ) ; lv_value_0_0 = ruleOrdSqlValue ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getOrdSql2Rule ( ) ) ; } set ( current , "<STR_LIT:value>" , lv_value_0_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; case <NUM_LIT:2> : { { this_STRING_1 = ( Token ) match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_ruleOrdSql215216 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STRING_1 , grammarAccess . getOrdSql2Access ( ) . getSTRINGTerminalRuleCall_1_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getOrdSql2Access ( ) . getCnstConstantParserRuleCall_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleConstant_in_ruleOrdSql215236 ) ; lv_cnst_2_0 = ruleConstant ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getOrdSql2Rule ( ) ) ; } set ( current , "<STR_LIT>" , lv_cnst_2_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:3> : { { this_COLON_3 = ( Token ) match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_ruleOrdSql215255 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COLON_3 , grammarAccess . getOrdSql2Access ( ) . getCOLONTerminalRuleCall_2_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getOrdSql2Access ( ) . getIdentIdentifierParserRuleCall_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifier_in_ruleOrdSql215275 ) ; lv_ident_4_0 = ruleIdentifier ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getOrdSql2Rule ( ) ) ; } set ( current , "<STR_LIT>" , lv_ident_4_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; case <NUM_LIT:4> : { { this_PERCENT_5 = ( Token ) match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_ruleOrdSql215294 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PERCENT_5 , grammarAccess . getOrdSql2Access ( ) . getPERCENTTerminalRuleCall_3_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getOrdSql2Access ( ) . getDbcolDatabaseColumnParserRuleCall_3_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseColumn_in_ruleOrdSql215314 ) ; lv_dbcol_6_0 = ruleDatabaseColumn ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getOrdSql2Rule ( ) ) ; } set ( current , "<STR_LIT>" , lv_dbcol_6_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } break ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final String entryRuleOrdSqlValue ( ) throws RecognitionException { String current = null ; AntlrDatatypeRuleToken iv_ruleOrdSqlValue = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getOrdSqlValueRule ( ) ) ; } pushFollow ( FOLLOW_ruleOrdSqlValue_in_entryRuleOrdSqlValue15352 ) ; iv_ruleOrdSqlValue = ruleOrdSqlValue ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleOrdSqlValue . getText ( ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleOrdSqlValue15363 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final AntlrDatatypeRuleToken ruleOrdSqlValue ( ) throws RecognitionException { AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken ( ) ; Token this_REST_0 = null ; Token this_IDENT_DOT_1 = null ; Token this_IDENT_2 = null ; Token this_NUMBER_3 = null ; Token this_WS_4 = null ; Token this_SEMICOLON_5 = null ; Token this_COMMA_6 = null ; Token this_MINUS_7 = null ; Token this_PLUS_8 = null ; Token this_LPAREN_9 = null ; Token this_RPAREN_10 = null ; Token this_LBRACE_11 = null ; Token this_QUESTI_12 = null ; Token this_NOT_13 = null ; Token this_BAND_14 = null ; Token this_BOR_15 = null ; Token this_HASH_16 = null ; Token this_AT_17 = null ; Token this_CARET_18 = null ; Token this_EQUALS_19 = null ; Token this_LESS_THAN_20 = null ; Token this_MORE_THAN_21 = null ; Token this_AND_22 = null ; Token this_OR_23 = null ; Token this_ESC_CHAR_24 = null ; Token this_ON_OFF_25 = null ; Token this_STATEMEN_TYPE_26 = null ; Token this_MAPPING_TYPE_27 = null ; Token this_OPTION_TYPE_28 = null ; Token this_REST_29 = null ; Token this_IDENT_DOT_30 = null ; Token this_IDENT_31 = null ; Token this_NUMBER_32 = null ; Token this_WS_33 = null ; Token this_SEMICOLON_34 = null ; Token this_COMMA_35 = null ; Token this_MINUS_36 = null ; Token this_PLUS_37 = null ; Token this_LPAREN_38 = null ; Token this_RPAREN_39 = null ; Token this_LBRACE_40 = null ; Token this_QUESTI_41 = null ; Token this_NOT_42 = null ; Token this_BAND_43 = null ; Token this_BOR_44 = null ; Token this_HASH_45 = null ; Token this_AT_46 = null ; Token this_CARET_47 = null ; Token this_EQUALS_48 = null ; Token this_LESS_THAN_49 = null ; Token this_MORE_THAN_50 = null ; Token this_AND_51 = null ; Token this_OR_52 = null ; Token this_ESC_CHAR_53 = null ; Token this_ON_OFF_54 = null ; Token this_STATEMEN_TYPE_55 = null ; Token this_MAPPING_TYPE_56 = null ; Token this_OPTION_TYPE_57 = null ; enterRule ( ) ; try { { { int alt130 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt130 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt130 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt130 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt130 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt130 = <NUM_LIT:5> ; } break ; case RULE_SEMICOLON : { alt130 = <NUM_LIT:6> ; } break ; case RULE_COMMA : { alt130 = <NUM_LIT:7> ; } break ; case RULE_MINUS : { alt130 = <NUM_LIT:8> ; } break ; case RULE_PLUS : { alt130 = <NUM_LIT:9> ; } break ; case RULE_LPAREN : { alt130 = <NUM_LIT:10> ; } break ; case RULE_RPAREN : { alt130 = <NUM_LIT:11> ; } break ; case RULE_LBRACE : { alt130 = <NUM_LIT:12> ; } break ; case RULE_QUESTI : { alt130 = <NUM_LIT> ; } break ; case RULE_NOT : { alt130 = <NUM_LIT> ; } break ; case RULE_BAND : { alt130 = <NUM_LIT:15> ; } break ; case RULE_BOR : { alt130 = <NUM_LIT:16> ; } break ; case RULE_HASH : { alt130 = <NUM_LIT> ; } break ; case RULE_AT : { alt130 = <NUM_LIT> ; } break ; case RULE_CARET : { alt130 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt130 = <NUM_LIT:20> ; } break ; case RULE_LESS_THAN : { alt130 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt130 = <NUM_LIT> ; } break ; case RULE_AND : { alt130 = <NUM_LIT> ; } break ; case RULE_OR : { alt130 = <NUM_LIT:24> ; } break ; case RULE_ESC_CHAR : { alt130 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt130 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt130 = <NUM_LIT> ; } break ; case RULE_MAPPING_TYPE : { alt130 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt130 = <NUM_LIT> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt130 ) { case <NUM_LIT:1> : { this_REST_0 = ( Token ) match ( input , RULE_REST , FOLLOW_RULE_REST_in_ruleOrdSqlValue15404 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_REST_0 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_REST_0 , grammarAccess . getOrdSqlValueAccess ( ) . getRESTTerminalRuleCall_0_0 ( ) ) ; } } break ; case <NUM_LIT:2> : { this_IDENT_DOT_1 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_ruleOrdSqlValue15430 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_DOT_1 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_DOT_1 , grammarAccess . getOrdSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } } break ; case <NUM_LIT:3> : { this_IDENT_2 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleOrdSqlValue15456 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_2 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_2 , grammarAccess . getOrdSqlValueAccess ( ) . getIDENTTerminalRuleCall_0_2 ( ) ) ; } } break ; case <NUM_LIT:4> : { this_NUMBER_3 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleOrdSqlValue15482 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NUMBER_3 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NUMBER_3 , grammarAccess . getOrdSqlValueAccess ( ) . getNUMBERTerminalRuleCall_0_3 ( ) ) ; } } break ; case <NUM_LIT:5> : { this_WS_4 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleOrdSqlValue15508 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_WS_4 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_4 , grammarAccess . getOrdSqlValueAccess ( ) . getWSTerminalRuleCall_0_4 ( ) ) ; } } break ; case <NUM_LIT:6> : { this_SEMICOLON_5 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleOrdSqlValue15534 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_SEMICOLON_5 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_5 , grammarAccess . getOrdSqlValueAccess ( ) . getSEMICOLONTerminalRuleCall_0_5 ( ) ) ; } } break ; case <NUM_LIT:7> : { this_COMMA_6 = ( Token ) match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_ruleOrdSqlValue15560 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_COMMA_6 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COMMA_6 , grammarAccess . getOrdSqlValueAccess ( ) . getCOMMATerminalRuleCall_0_6 ( ) ) ; } } break ; case <NUM_LIT:8> : { this_MINUS_7 = ( Token ) match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_ruleOrdSqlValue15586 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MINUS_7 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MINUS_7 , grammarAccess . getOrdSqlValueAccess ( ) . getMINUSTerminalRuleCall_0_7 ( ) ) ; } } break ; case <NUM_LIT:9> : { this_PLUS_8 = ( Token ) match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_ruleOrdSqlValue15612 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_PLUS_8 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PLUS_8 , grammarAccess . getOrdSqlValueAccess ( ) . getPLUSTerminalRuleCall_0_8 ( ) ) ; } } break ; case <NUM_LIT:10> : { this_LPAREN_9 = ( Token ) match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_ruleOrdSqlValue15638 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LPAREN_9 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LPAREN_9 , grammarAccess . getOrdSqlValueAccess ( ) . getLPARENTerminalRuleCall_0_9 ( ) ) ; } } break ; case <NUM_LIT:11> : { this_RPAREN_10 = ( Token ) match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_ruleOrdSqlValue15664 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_RPAREN_10 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RPAREN_10 , grammarAccess . getOrdSqlValueAccess ( ) . getRPARENTerminalRuleCall_0_10 ( ) ) ; } } break ; case <NUM_LIT:12> : { this_LBRACE_11 = ( Token ) match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_ruleOrdSqlValue15690 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LBRACE_11 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LBRACE_11 , grammarAccess . getOrdSqlValueAccess ( ) . getLBRACETerminalRuleCall_0_11 ( ) ) ; } } break ; case <NUM_LIT> : { this_QUESTI_12 = ( Token ) match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_ruleOrdSqlValue15716 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_QUESTI_12 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_QUESTI_12 , grammarAccess . getOrdSqlValueAccess ( ) . getQUESTITerminalRuleCall_0_12 ( ) ) ; } } break ; case <NUM_LIT> : { this_NOT_13 = ( Token ) match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_ruleOrdSqlValue15742 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NOT_13 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NOT_13 , grammarAccess . getOrdSqlValueAccess ( ) . getNOTTerminalRuleCall_0_13 ( ) ) ; } } break ; case <NUM_LIT:15> : { this_BAND_14 = ( Token ) match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_ruleOrdSqlValue15768 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BAND_14 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BAND_14 , grammarAccess . getOrdSqlValueAccess ( ) . getBANDTerminalRuleCall_0_14 ( ) ) ; } } break ; case <NUM_LIT:16> : { this_BOR_15 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleOrdSqlValue15794 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BOR_15 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_15 , grammarAccess . getOrdSqlValueAccess ( ) . getBORTerminalRuleCall_0_15 ( ) ) ; } } break ; case <NUM_LIT> : { this_HASH_16 = ( Token ) match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_ruleOrdSqlValue15820 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_HASH_16 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_HASH_16 , grammarAccess . getOrdSqlValueAccess ( ) . getHASHTerminalRuleCall_0_16 ( ) ) ; } } break ; case <NUM_LIT> : { this_AT_17 = ( Token ) match ( input , RULE_AT , FOLLOW_RULE_AT_in_ruleOrdSqlValue15846 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_AT_17 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AT_17 , grammarAccess . getOrdSqlValueAccess ( ) . getATTerminalRuleCall_0_17 ( ) ) ; } } break ; case <NUM_LIT> : { this_CARET_18 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_ruleOrdSqlValue15872 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_CARET_18 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_18 , grammarAccess . getOrdSqlValueAccess ( ) . getCARETTerminalRuleCall_0_18 ( ) ) ; } } break ; case <NUM_LIT:20> : { this_EQUALS_19 = ( Token ) match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_ruleOrdSqlValue15898 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_EQUALS_19 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_EQUALS_19 , grammarAccess . getOrdSqlValueAccess ( ) . getEQUALSTerminalRuleCall_0_19 ( ) ) ; } } break ; case <NUM_LIT> : { this_LESS_THAN_20 = ( Token ) match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_ruleOrdSqlValue15924 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LESS_THAN_20 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LESS_THAN_20 , grammarAccess . getOrdSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_0_20 ( ) ) ; } } break ; case <NUM_LIT> : { this_MORE_THAN_21 = ( Token ) match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_ruleOrdSqlValue15950 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MORE_THAN_21 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MORE_THAN_21 , grammarAccess . getOrdSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_0_21 ( ) ) ; } } break ; case <NUM_LIT> : { this_AND_22 = ( Token ) match ( input , RULE_AND , FOLLOW_RULE_AND_in_ruleOrdSqlValue15976 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_AND_22 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AND_22 , grammarAccess . getOrdSqlValueAccess ( ) . getANDTerminalRuleCall_0_22 ( ) ) ; } } break ; case <NUM_LIT:24> : { this_OR_23 = ( Token ) match ( input , RULE_OR , FOLLOW_RULE_OR_in_ruleOrdSqlValue16002 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OR_23 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OR_23 , grammarAccess . getOrdSqlValueAccess ( ) . getORTerminalRuleCall_0_23 ( ) ) ; } } break ; case <NUM_LIT> : { this_ESC_CHAR_24 = ( Token ) match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_ruleOrdSqlValue16028 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ESC_CHAR_24 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ESC_CHAR_24 , grammarAccess . getOrdSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_0_24 ( ) ) ; } } break ; case <NUM_LIT> : { this_ON_OFF_25 = ( Token ) match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_ruleOrdSqlValue16054 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ON_OFF_25 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ON_OFF_25 , grammarAccess . getOrdSqlValueAccess ( ) . getON_OFFTerminalRuleCall_0_25 ( ) ) ; } } break ; case <NUM_LIT> : { this_STATEMEN_TYPE_26 = ( Token ) match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_ruleOrdSqlValue16080 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_STATEMEN_TYPE_26 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STATEMEN_TYPE_26 , grammarAccess . getOrdSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_0_26 ( ) ) ; } } break ; case <NUM_LIT> : { this_MAPPING_TYPE_27 = ( Token ) match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_ruleOrdSqlValue16106 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MAPPING_TYPE_27 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MAPPING_TYPE_27 , grammarAccess . getOrdSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_0_27 ( ) ) ; } } break ; case <NUM_LIT> : { this_OPTION_TYPE_28 = ( Token ) match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_ruleOrdSqlValue16132 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OPTION_TYPE_28 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OPTION_TYPE_28 , grammarAccess . getOrdSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_0_28 ( ) ) ; } } break ; } loop132 : do { int alt132 = <NUM_LIT:2> ; alt132 = dfa132 . predict ( input ) ; switch ( alt132 ) { case <NUM_LIT:1> : { int alt131 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt131 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt131 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt131 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt131 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt131 = <NUM_LIT:5> ; } break ; case RULE_SEMICOLON : { alt131 = <NUM_LIT:6> ; } break ; case RULE_COMMA : { alt131 = <NUM_LIT:7> ; } break ; case RULE_MINUS : { alt131 = <NUM_LIT:8> ; } break ; case RULE_PLUS : { alt131 = <NUM_LIT:9> ; } break ; case RULE_LPAREN : { alt131 = <NUM_LIT:10> ; } break ; case RULE_RPAREN : { alt131 = <NUM_LIT:11> ; } break ; case RULE_LBRACE : { alt131 = <NUM_LIT:12> ; } break ; case RULE_QUESTI : { alt131 = <NUM_LIT> ; } break ; case RULE_NOT : { alt131 = <NUM_LIT> ; } break ; case RULE_BAND : { alt131 = <NUM_LIT:15> ; } break ; case RULE_BOR : { alt131 = <NUM_LIT:16> ; } break ; case RULE_HASH : { alt131 = <NUM_LIT> ; } break ; case RULE_AT : { alt131 = <NUM_LIT> ; } break ; case RULE_CARET : { alt131 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt131 = <NUM_LIT:20> ; } break ; case RULE_LESS_THAN : { alt131 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt131 = <NUM_LIT> ; } break ; case RULE_AND : { alt131 = <NUM_LIT> ; } break ; case RULE_OR : { alt131 = <NUM_LIT:24> ; } break ; case RULE_ESC_CHAR : { alt131 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt131 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt131 = <NUM_LIT> ; } break ; case RULE_MAPPING_TYPE : { alt131 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt131 = <NUM_LIT> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt131 ) { case <NUM_LIT:1> : { this_REST_29 = ( Token ) match ( input , RULE_REST , FOLLOW_RULE_REST_in_ruleOrdSqlValue16386 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_REST_29 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_REST_29 , grammarAccess . getOrdSqlValueAccess ( ) . getRESTTerminalRuleCall_1_0_0 ( ) ) ; } } break ; case <NUM_LIT:2> : { this_IDENT_DOT_30 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_ruleOrdSqlValue16412 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_DOT_30 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_DOT_30 , grammarAccess . getOrdSqlValueAccess ( ) . getIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } } break ; case <NUM_LIT:3> : { this_IDENT_31 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleOrdSqlValue16438 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_31 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_31 , grammarAccess . getOrdSqlValueAccess ( ) . getIDENTTerminalRuleCall_1_0_2 ( ) ) ; } } break ; case <NUM_LIT:4> : { this_NUMBER_32 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleOrdSqlValue16464 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NUMBER_32 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NUMBER_32 , grammarAccess . getOrdSqlValueAccess ( ) . getNUMBERTerminalRuleCall_1_0_3 ( ) ) ; } } break ; case <NUM_LIT:5> : { this_WS_33 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleOrdSqlValue16490 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_WS_33 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_33 , grammarAccess . getOrdSqlValueAccess ( ) . getWSTerminalRuleCall_1_0_4 ( ) ) ; } } break ; case <NUM_LIT:6> : { this_SEMICOLON_34 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleOrdSqlValue16516 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_SEMICOLON_34 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_34 , grammarAccess . getOrdSqlValueAccess ( ) . getSEMICOLONTerminalRuleCall_1_0_5 ( ) ) ; } } break ; case <NUM_LIT:7> : { this_COMMA_35 = ( Token ) match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_ruleOrdSqlValue16542 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_COMMA_35 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COMMA_35 , grammarAccess . getOrdSqlValueAccess ( ) . getCOMMATerminalRuleCall_1_0_6 ( ) ) ; } } break ; case <NUM_LIT:8> : { this_MINUS_36 = ( Token ) match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_ruleOrdSqlValue16568 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MINUS_36 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MINUS_36 , grammarAccess . getOrdSqlValueAccess ( ) . getMINUSTerminalRuleCall_1_0_7 ( ) ) ; } } break ; case <NUM_LIT:9> : { this_PLUS_37 = ( Token ) match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_ruleOrdSqlValue16594 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_PLUS_37 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PLUS_37 , grammarAccess . getOrdSqlValueAccess ( ) . getPLUSTerminalRuleCall_1_0_8 ( ) ) ; } } break ; case <NUM_LIT:10> : { this_LPAREN_38 = ( Token ) match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_ruleOrdSqlValue16620 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LPAREN_38 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LPAREN_38 , grammarAccess . getOrdSqlValueAccess ( ) . getLPARENTerminalRuleCall_1_0_9 ( ) ) ; } } break ; case <NUM_LIT:11> : { this_RPAREN_39 = ( Token ) match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_ruleOrdSqlValue16646 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_RPAREN_39 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RPAREN_39 , grammarAccess . getOrdSqlValueAccess ( ) . getRPARENTerminalRuleCall_1_0_10 ( ) ) ; } } break ; case <NUM_LIT:12> : { this_LBRACE_40 = ( Token ) match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_ruleOrdSqlValue16672 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LBRACE_40 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LBRACE_40 , grammarAccess . getOrdSqlValueAccess ( ) . getLBRACETerminalRuleCall_1_0_11 ( ) ) ; } } break ; case <NUM_LIT> : { this_QUESTI_41 = ( Token ) match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_ruleOrdSqlValue16698 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_QUESTI_41 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_QUESTI_41 , grammarAccess . getOrdSqlValueAccess ( ) . getQUESTITerminalRuleCall_1_0_12 ( ) ) ; } } break ; case <NUM_LIT> : { this_NOT_42 = ( Token ) match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_ruleOrdSqlValue16724 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NOT_42 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NOT_42 , grammarAccess . getOrdSqlValueAccess ( ) . getNOTTerminalRuleCall_1_0_13 ( ) ) ; } } break ; case <NUM_LIT:15> : { this_BAND_43 = ( Token ) match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_ruleOrdSqlValue16750 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BAND_43 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BAND_43 , grammarAccess . getOrdSqlValueAccess ( ) . getBANDTerminalRuleCall_1_0_14 ( ) ) ; } } break ; case <NUM_LIT:16> : { this_BOR_44 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleOrdSqlValue16776 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BOR_44 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_44 , grammarAccess . getOrdSqlValueAccess ( ) . getBORTerminalRuleCall_1_0_15 ( ) ) ; } } break ; case <NUM_LIT> : { this_HASH_45 = ( Token ) match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_ruleOrdSqlValue16802 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_HASH_45 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_HASH_45 , grammarAccess . getOrdSqlValueAccess ( ) . getHASHTerminalRuleCall_1_0_16 ( ) ) ; } } break ; case <NUM_LIT> : { this_AT_46 = ( Token ) match ( input , RULE_AT , FOLLOW_RULE_AT_in_ruleOrdSqlValue16828 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_AT_46 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AT_46 , grammarAccess . getOrdSqlValueAccess ( ) . getATTerminalRuleCall_1_0_17 ( ) ) ; } } break ; case <NUM_LIT> : { this_CARET_47 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_ruleOrdSqlValue16854 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_CARET_47 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_47 , grammarAccess . getOrdSqlValueAccess ( ) . getCARETTerminalRuleCall_1_0_18 ( ) ) ; } } break ; case <NUM_LIT:20> : { this_EQUALS_48 = ( Token ) match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_ruleOrdSqlValue16880 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_EQUALS_48 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_EQUALS_48 , grammarAccess . getOrdSqlValueAccess ( ) . getEQUALSTerminalRuleCall_1_0_19 ( ) ) ; } } break ; case <NUM_LIT> : { this_LESS_THAN_49 = ( Token ) match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_ruleOrdSqlValue16906 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LESS_THAN_49 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LESS_THAN_49 , grammarAccess . getOrdSqlValueAccess ( ) . getLESS_THANTerminalRuleCall_1_0_20 ( ) ) ; } } break ; case <NUM_LIT> : { this_MORE_THAN_50 = ( Token ) match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_ruleOrdSqlValue16932 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MORE_THAN_50 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MORE_THAN_50 , grammarAccess . getOrdSqlValueAccess ( ) . getMORE_THANTerminalRuleCall_1_0_21 ( ) ) ; } } break ; case <NUM_LIT> : { this_AND_51 = ( Token ) match ( input , RULE_AND , FOLLOW_RULE_AND_in_ruleOrdSqlValue16958 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_AND_51 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AND_51 , grammarAccess . getOrdSqlValueAccess ( ) . getANDTerminalRuleCall_1_0_22 ( ) ) ; } } break ; case <NUM_LIT:24> : { this_OR_52 = ( Token ) match ( input , RULE_OR , FOLLOW_RULE_OR_in_ruleOrdSqlValue16984 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OR_52 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OR_52 , grammarAccess . getOrdSqlValueAccess ( ) . getORTerminalRuleCall_1_0_23 ( ) ) ; } } break ; case <NUM_LIT> : { this_ESC_CHAR_53 = ( Token ) match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_ruleOrdSqlValue17010 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ESC_CHAR_53 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ESC_CHAR_53 , grammarAccess . getOrdSqlValueAccess ( ) . getESC_CHARTerminalRuleCall_1_0_24 ( ) ) ; } } break ; case <NUM_LIT> : { this_ON_OFF_54 = ( Token ) match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_ruleOrdSqlValue17036 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ON_OFF_54 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ON_OFF_54 , grammarAccess . getOrdSqlValueAccess ( ) . getON_OFFTerminalRuleCall_1_0_25 ( ) ) ; } } break ; case <NUM_LIT> : { this_STATEMEN_TYPE_55 = ( Token ) match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_ruleOrdSqlValue17062 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_STATEMEN_TYPE_55 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STATEMEN_TYPE_55 , grammarAccess . getOrdSqlValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_1_0_26 ( ) ) ; } } break ; case <NUM_LIT> : { this_MAPPING_TYPE_56 = ( Token ) match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_ruleOrdSqlValue17088 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MAPPING_TYPE_56 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MAPPING_TYPE_56 , grammarAccess . getOrdSqlValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_1_0_27 ( ) ) ; } } break ; case <NUM_LIT> : { this_OPTION_TYPE_57 = ( Token ) match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_ruleOrdSqlValue17114 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OPTION_TYPE_57 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OPTION_TYPE_57 , grammarAccess . getOrdSqlValueAccess ( ) . getOPTION_TYPETerminalRuleCall_1_0_28 ( ) ) ; } } break ; } } break ; default : break loop132 ; } } while ( true ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleColumn ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleColumn = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getColumnRule ( ) ) ; } pushFollow ( FOLLOW_ruleColumn_in_entryRuleColumn17162 ) ; iv_ruleColumn = ruleColumn ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleColumn ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleColumn17172 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleColumn ( ) throws RecognitionException { EObject current = null ; Token lv_name_0_1 = null ; Token lv_name_0_2 = null ; Token lv_name_0_3 = null ; Token this_CARET_1 = null ; Token lv_type_2_0 = null ; Token this_CARET_3 = null ; Token lv_vals_4_1 = null ; Token lv_vals_4_2 = null ; enterRule ( ) ; try { { { { { int alt133 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_IDENT : { alt133 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt133 = <NUM_LIT:2> ; } break ; case RULE_NUMBER : { alt133 = <NUM_LIT:3> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt133 ) { case <NUM_LIT:1> : { lv_name_0_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleColumn17216 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_1 , grammarAccess . getColumnAccess ( ) . getNameIDENTTerminalRuleCall_0_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getColumnRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_name_0_2 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_ruleColumn17236 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_2 , grammarAccess . getColumnAccess ( ) . getNameIDENT_DOTTerminalRuleCall_0_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getColumnRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_2 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:3> : { lv_name_0_3 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleColumn17256 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_3 , grammarAccess . getColumnAccess ( ) . getNameNUMBERTerminalRuleCall_0_0_2 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getColumnRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_3 , "<STR_LIT>" ) ; } } break ; } } } int alt137 = <NUM_LIT:2> ; int LA137_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA137_0 == RULE_CARET ) ) { int LA137_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred5_InternalProcessorDsl ( ) ) ) { alt137 = <NUM_LIT:1> ; } } switch ( alt137 ) { case <NUM_LIT:1> : { { this_CARET_1 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_ruleColumn17282 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_1 , grammarAccess . getColumnAccess ( ) . getCARETTerminalRuleCall_1_0 ( ) ) ; } } int alt134 = <NUM_LIT:2> ; int LA134_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA134_0 == RULE_IDENT ) ) { int LA134_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred6_InternalProcessorDsl ( ) ) ) { alt134 = <NUM_LIT:1> ; } } switch ( alt134 ) { case <NUM_LIT:1> : { { lv_type_2_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleColumn17310 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_type_2_0 , grammarAccess . getColumnAccess ( ) . getTypeIDENTTerminalRuleCall_1_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getColumnRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:type>" , lv_type_2_0 , "<STR_LIT>" ) ; } } } break ; } loop136 : do { int alt136 = <NUM_LIT:2> ; int LA136_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA136_0 == RULE_CARET ) ) { int LA136_2 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA136_2 == RULE_IDENT ) ) { int LA136_3 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred7_InternalProcessorDsl ( ) ) ) { alt136 = <NUM_LIT:1> ; } } else if ( ( LA136_2 == RULE_NUMBER ) ) { int LA136_4 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred7_InternalProcessorDsl ( ) ) ) { alt136 = <NUM_LIT:1> ; } } } switch ( alt136 ) { case <NUM_LIT:1> : { { this_CARET_3 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_ruleColumn17334 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_3 , grammarAccess . getColumnAccess ( ) . getCARETTerminalRuleCall_1_2_0 ( ) ) ; } } { { int alt135 = <NUM_LIT:2> ; int LA135_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA135_0 == RULE_IDENT ) ) { alt135 = <NUM_LIT:1> ; } else if ( ( LA135_0 == RULE_NUMBER ) ) { alt135 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt135 ) { case <NUM_LIT:1> : { lv_vals_4_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleColumn17353 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_vals_4_1 , grammarAccess . getColumnAccess ( ) . getValsIDENTTerminalRuleCall_1_2_1_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getColumnRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_vals_4_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_vals_4_2 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleColumn17373 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_vals_4_2 , grammarAccess . getColumnAccess ( ) . getValsNUMBERTerminalRuleCall_1_2_1_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getColumnRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_vals_4_2 , "<STR_LIT>" ) ; } } break ; } } } } break ; default : break loop136 ; } } while ( true ) ; } break ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleConstant ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleConstant = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getConstantRule ( ) ) ; } pushFollow ( FOLLOW_ruleConstant_in_entryRuleConstant17421 ) ; iv_ruleConstant = ruleConstant ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleConstant ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleConstant17431 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleConstant ( ) throws RecognitionException { EObject current = null ; Token lv_case_0_1 = null ; Token lv_case_0_2 = null ; Token lv_name_1_1 = null ; Token lv_name_1_2 = null ; Token this_CARET_2 = null ; Token lv_type_3_0 = null ; Token this_CARET_4 = null ; Token lv_vals_5_1 = null ; Token lv_vals_5_2 = null ; enterRule ( ) ; try { { { int alt139 = <NUM_LIT:2> ; int LA139_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA139_0 >= RULE_MINUS && LA139_0 <= RULE_PLUS ) ) ) { alt139 = <NUM_LIT:1> ; } switch ( alt139 ) { case <NUM_LIT:1> : { { int alt138 = <NUM_LIT:2> ; int LA138_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA138_0 == RULE_PLUS ) ) { alt138 = <NUM_LIT:1> ; } else if ( ( LA138_0 == RULE_MINUS ) ) { alt138 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt138 ) { case <NUM_LIT:1> : { lv_case_0_1 = ( Token ) match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_ruleConstant17475 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_case_0_1 , grammarAccess . getConstantAccess ( ) . getCasePLUSTerminalRuleCall_0_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getConstantRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_case_0_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_case_0_2 = ( Token ) match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_ruleConstant17495 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_case_0_2 , grammarAccess . getConstantAccess ( ) . getCaseMINUSTerminalRuleCall_0_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getConstantRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_case_0_2 , "<STR_LIT>" ) ; } } break ; } } } break ; } { { int alt140 = <NUM_LIT:2> ; int LA140_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA140_0 == RULE_IDENT ) ) { alt140 = <NUM_LIT:1> ; } else if ( ( LA140_0 == RULE_IDENT_DOT ) ) { alt140 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt140 ) { case <NUM_LIT:1> : { lv_name_1_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleConstant17523 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_1_1 , grammarAccess . getConstantAccess ( ) . getNameIDENTTerminalRuleCall_1_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getConstantRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_1_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_name_1_2 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_ruleConstant17543 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_1_2 , grammarAccess . getConstantAccess ( ) . getNameIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getConstantRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_1_2 , "<STR_LIT>" ) ; } } break ; } } } int alt144 = <NUM_LIT:2> ; int LA144_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA144_0 == RULE_CARET ) ) { int LA144_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred8_InternalProcessorDsl ( ) ) ) { alt144 = <NUM_LIT:1> ; } } switch ( alt144 ) { case <NUM_LIT:1> : { { this_CARET_2 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_ruleConstant17569 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_2 , grammarAccess . getConstantAccess ( ) . getCARETTerminalRuleCall_2_0 ( ) ) ; } } int alt141 = <NUM_LIT:2> ; int LA141_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA141_0 == RULE_IDENT ) ) { int LA141_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred9_InternalProcessorDsl ( ) ) ) { alt141 = <NUM_LIT:1> ; } } switch ( alt141 ) { case <NUM_LIT:1> : { { lv_type_3_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleConstant17597 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_type_3_0 , grammarAccess . getConstantAccess ( ) . getTypeIDENTTerminalRuleCall_2_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getConstantRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:type>" , lv_type_3_0 , "<STR_LIT>" ) ; } } } break ; } loop143 : do { int alt143 = <NUM_LIT:2> ; int LA143_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA143_0 == RULE_CARET ) ) { int LA143_2 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA143_2 == RULE_IDENT ) ) { int LA143_3 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred10_InternalProcessorDsl ( ) ) ) { alt143 = <NUM_LIT:1> ; } } else if ( ( LA143_2 == RULE_NUMBER ) ) { int LA143_4 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred10_InternalProcessorDsl ( ) ) ) { alt143 = <NUM_LIT:1> ; } } } switch ( alt143 ) { case <NUM_LIT:1> : { { this_CARET_4 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_ruleConstant17621 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_4 , grammarAccess . getConstantAccess ( ) . getCARETTerminalRuleCall_2_2_0 ( ) ) ; } } { { int alt142 = <NUM_LIT:2> ; int LA142_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA142_0 == RULE_IDENT ) ) { alt142 = <NUM_LIT:1> ; } else if ( ( LA142_0 == RULE_NUMBER ) ) { alt142 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt142 ) { case <NUM_LIT:1> : { lv_vals_5_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleConstant17640 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_vals_5_1 , grammarAccess . getConstantAccess ( ) . getValsIDENTTerminalRuleCall_2_2_1_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getConstantRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_vals_5_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_vals_5_2 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleConstant17660 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_vals_5_2 , grammarAccess . getConstantAccess ( ) . getValsNUMBERTerminalRuleCall_2_2_1_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getConstantRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_vals_5_2 , "<STR_LIT>" ) ; } } break ; } } } } break ; default : break loop143 ; } } while ( true ) ; } break ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleIdentifier ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleIdentifier = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getIdentifierRule ( ) ) ; } pushFollow ( FOLLOW_ruleIdentifier_in_entryRuleIdentifier17708 ) ; iv_ruleIdentifier = ruleIdentifier ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleIdentifier ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIdentifier17718 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleIdentifier ( ) throws RecognitionException { EObject current = null ; Token lv_mode_0_1 = null ; Token lv_mode_0_2 = null ; Token lv_mode_0_3 = null ; Token lv_case_1_1 = null ; Token lv_case_1_2 = null ; Token lv_name_2_1 = null ; Token lv_name_2_2 = null ; Token lv_name_2_3 = null ; Token this_CARET_3 = null ; Token lv_type_4_0 = null ; Token this_CARET_5 = null ; Token lv_vals_6_1 = null ; Token lv_vals_6_2 = null ; enterRule ( ) ; try { { { int alt146 = <NUM_LIT:2> ; int LA146_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA146_0 >= RULE_EQUALS && LA146_0 <= RULE_MORE_THAN ) ) ) { alt146 = <NUM_LIT:1> ; } switch ( alt146 ) { case <NUM_LIT:1> : { { int alt145 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_EQUALS : { alt145 = <NUM_LIT:1> ; } break ; case RULE_LESS_THAN : { alt145 = <NUM_LIT:2> ; } break ; case RULE_MORE_THAN : { alt145 = <NUM_LIT:3> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt145 ) { case <NUM_LIT:1> : { lv_mode_0_1 = ( Token ) match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_ruleIdentifier17762 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_mode_0_1 , grammarAccess . getIdentifierAccess ( ) . getModeEQUALSTerminalRuleCall_0_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIdentifierRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_mode_0_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_mode_0_2 = ( Token ) match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_ruleIdentifier17782 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_mode_0_2 , grammarAccess . getIdentifierAccess ( ) . getModeLESS_THANTerminalRuleCall_0_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIdentifierRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_mode_0_2 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:3> : { lv_mode_0_3 = ( Token ) match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_ruleIdentifier17802 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_mode_0_3 , grammarAccess . getIdentifierAccess ( ) . getModeMORE_THANTerminalRuleCall_0_0_2 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIdentifierRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_mode_0_3 , "<STR_LIT>" ) ; } } break ; } } } break ; } int alt148 = <NUM_LIT:2> ; int LA148_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA148_0 >= RULE_MINUS && LA148_0 <= RULE_PLUS ) ) ) { alt148 = <NUM_LIT:1> ; } switch ( alt148 ) { case <NUM_LIT:1> : { { int alt147 = <NUM_LIT:2> ; int LA147_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA147_0 == RULE_PLUS ) ) { alt147 = <NUM_LIT:1> ; } else if ( ( LA147_0 == RULE_MINUS ) ) { alt147 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt147 ) { case <NUM_LIT:1> : { lv_case_1_1 = ( Token ) match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_ruleIdentifier17830 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_case_1_1 , grammarAccess . getIdentifierAccess ( ) . getCasePLUSTerminalRuleCall_1_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIdentifierRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_case_1_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_case_1_2 = ( Token ) match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_ruleIdentifier17850 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_case_1_2 , grammarAccess . getIdentifierAccess ( ) . getCaseMINUSTerminalRuleCall_1_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIdentifierRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_case_1_2 , "<STR_LIT>" ) ; } } break ; } } } break ; } { { int alt149 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_IDENT : { alt149 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt149 = <NUM_LIT:2> ; } break ; case RULE_NUMBER : { alt149 = <NUM_LIT:3> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt149 ) { case <NUM_LIT:1> : { lv_name_2_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleIdentifier17878 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_2_1 , grammarAccess . getIdentifierAccess ( ) . getNameIDENTTerminalRuleCall_2_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIdentifierRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_2_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_name_2_2 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_ruleIdentifier17898 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_2_2 , grammarAccess . getIdentifierAccess ( ) . getNameIDENT_DOTTerminalRuleCall_2_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIdentifierRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_2_2 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:3> : { lv_name_2_3 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleIdentifier17918 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_2_3 , grammarAccess . getIdentifierAccess ( ) . getNameNUMBERTerminalRuleCall_2_0_2 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIdentifierRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_2_3 , "<STR_LIT>" ) ; } } break ; } } } int alt153 = <NUM_LIT:2> ; int LA153_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA153_0 == RULE_CARET ) ) { int LA153_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred11_InternalProcessorDsl ( ) ) ) { alt153 = <NUM_LIT:1> ; } } switch ( alt153 ) { case <NUM_LIT:1> : { { this_CARET_3 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_ruleIdentifier17944 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_3 , grammarAccess . getIdentifierAccess ( ) . getCARETTerminalRuleCall_3_0 ( ) ) ; } } int alt150 = <NUM_LIT:2> ; int LA150_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA150_0 == RULE_IDENT ) ) { int LA150_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred12_InternalProcessorDsl ( ) ) ) { alt150 = <NUM_LIT:1> ; } } switch ( alt150 ) { case <NUM_LIT:1> : { { lv_type_4_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleIdentifier17972 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_type_4_0 , grammarAccess . getIdentifierAccess ( ) . getTypeIDENTTerminalRuleCall_3_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIdentifierRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:type>" , lv_type_4_0 , "<STR_LIT>" ) ; } } } break ; } loop152 : do { int alt152 = <NUM_LIT:2> ; int LA152_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA152_0 == RULE_CARET ) ) { int LA152_2 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA152_2 == RULE_IDENT ) ) { int LA152_3 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred13_InternalProcessorDsl ( ) ) ) { alt152 = <NUM_LIT:1> ; } } else if ( ( LA152_2 == RULE_NUMBER ) ) { int LA152_4 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred13_InternalProcessorDsl ( ) ) ) { alt152 = <NUM_LIT:1> ; } } } switch ( alt152 ) { case <NUM_LIT:1> : { { this_CARET_5 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_ruleIdentifier17996 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_5 , grammarAccess . getIdentifierAccess ( ) . getCARETTerminalRuleCall_3_2_0 ( ) ) ; } } { { int alt151 = <NUM_LIT:2> ; int LA151_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA151_0 == RULE_IDENT ) ) { alt151 = <NUM_LIT:1> ; } else if ( ( LA151_0 == RULE_NUMBER ) ) { alt151 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt151 ) { case <NUM_LIT:1> : { lv_vals_6_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleIdentifier18015 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_vals_6_1 , grammarAccess . getIdentifierAccess ( ) . getValsIDENTTerminalRuleCall_3_2_1_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIdentifierRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_vals_6_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_vals_6_2 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleIdentifier18035 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_vals_6_2 , grammarAccess . getIdentifierAccess ( ) . getValsNUMBERTerminalRuleCall_3_2_1_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getIdentifierRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_vals_6_2 , "<STR_LIT>" ) ; } } break ; } } } } break ; default : break loop152 ; } } while ( true ) ; } break ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleDatabaseColumn ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleDatabaseColumn = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getDatabaseColumnRule ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseColumn_in_entryRuleDatabaseColumn18083 ) ; iv_ruleDatabaseColumn = ruleDatabaseColumn ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleDatabaseColumn ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleDatabaseColumn18093 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleDatabaseColumn ( ) throws RecognitionException { EObject current = null ; Token lv_name_0_1 = null ; Token lv_name_0_2 = null ; enterRule ( ) ; try { { { { int alt154 = <NUM_LIT:2> ; int LA154_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA154_0 == RULE_IDENT ) ) { alt154 = <NUM_LIT:1> ; } else if ( ( LA154_0 == RULE_IDENT_DOT ) ) { alt154 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt154 ) { case <NUM_LIT:1> : { lv_name_0_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleDatabaseColumn18136 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_1 , grammarAccess . getDatabaseColumnAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getDatabaseColumnRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_name_0_2 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_ruleDatabaseColumn18156 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_2 , grammarAccess . getDatabaseColumnAccess ( ) . getNameIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getDatabaseColumnRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_2 , "<STR_LIT>" ) ; } } break ; } } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleDatabaseTable ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleDatabaseTable = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getDatabaseTableRule ( ) ) ; } pushFollow ( FOLLOW_ruleDatabaseTable_in_entryRuleDatabaseTable18199 ) ; iv_ruleDatabaseTable = ruleDatabaseTable ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleDatabaseTable ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleDatabaseTable18209 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleDatabaseTable ( ) throws RecognitionException { EObject current = null ; Token lv_name_0_1 = null ; Token lv_name_0_2 = null ; enterRule ( ) ; try { { { { int alt155 = <NUM_LIT:2> ; int LA155_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA155_0 == RULE_IDENT ) ) { alt155 = <NUM_LIT:1> ; } else if ( ( LA155_0 == RULE_IDENT_DOT ) ) { alt155 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt155 ) { case <NUM_LIT:1> : { lv_name_0_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleDatabaseTable18252 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_1 , grammarAccess . getDatabaseTableAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getDatabaseTableRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_name_0_2 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_ruleDatabaseTable18272 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_2 , grammarAccess . getDatabaseTableAccess ( ) . getNameIDENT_DOTTerminalRuleCall_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getDatabaseTableRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_2 , "<STR_LIT>" ) ; } } break ; } } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleMappingRule ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleMappingRule = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMappingRuleRule ( ) ) ; } pushFollow ( FOLLOW_ruleMappingRule_in_entryRuleMappingRule18315 ) ; iv_ruleMappingRule = ruleMappingRule ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleMappingRule ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMappingRule18325 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleMappingRule ( ) throws RecognitionException { EObject current = null ; Token lv_name_0_0 = null ; Token this_LPAREN_1 = null ; Token lv_type_2_0 = null ; Token this_COMMA_3 = null ; Token lv_filters_4_0 = null ; Token this_RPAREN_5 = null ; Token this_EQUALS_6 = null ; Token this_SEMICOLON_8 = null ; EObject lv_mapping_7_0 = null ; enterRule ( ) ; try { { { { { lv_name_0_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleMappingRule18367 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_0 , grammarAccess . getMappingRuleAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMappingRuleRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_0 , "<STR_LIT>" ) ; } } } this_LPAREN_1 = ( Token ) match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_ruleMappingRule18383 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LPAREN_1 , grammarAccess . getMappingRuleAccess ( ) . getLPARENTerminalRuleCall_1 ( ) ) ; } { { lv_type_2_0 = ( Token ) match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_ruleMappingRule18399 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_type_2_0 , grammarAccess . getMappingRuleAccess ( ) . getTypeMAPPING_TYPETerminalRuleCall_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMappingRuleRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:type>" , lv_type_2_0 , "<STR_LIT>" ) ; } } } loop156 : do { int alt156 = <NUM_LIT:2> ; int LA156_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA156_0 == RULE_COMMA ) ) { alt156 = <NUM_LIT:1> ; } switch ( alt156 ) { case <NUM_LIT:1> : { this_COMMA_3 = ( Token ) match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_ruleMappingRule18416 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COMMA_3 , grammarAccess . getMappingRuleAccess ( ) . getCOMMATerminalRuleCall_3_0 ( ) ) ; } { { lv_filters_4_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleMappingRule18432 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_filters_4_0 , grammarAccess . getMappingRuleAccess ( ) . getFiltersIDENTTerminalRuleCall_3_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMappingRuleRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_filters_4_0 , "<STR_LIT>" ) ; } } } } break ; default : break loop156 ; } } while ( true ) ; this_RPAREN_5 = ( Token ) match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_ruleMappingRule18450 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RPAREN_5 , grammarAccess . getMappingRuleAccess ( ) . getRPARENTerminalRuleCall_4 ( ) ) ; } this_EQUALS_6 = ( Token ) match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_ruleMappingRule18460 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_EQUALS_6 , grammarAccess . getMappingRuleAccess ( ) . getEQUALSTerminalRuleCall_5 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMappingRuleAccess ( ) . getMappingMappingParserRuleCall_6_0 ( ) ) ; } pushFollow ( FOLLOW_ruleMapping_in_ruleMappingRule18480 ) ; lv_mapping_7_0 = ruleMapping ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMappingRuleRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_mapping_7_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } this_SEMICOLON_8 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleMappingRule18491 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_8 , grammarAccess . getMappingRuleAccess ( ) . getSEMICOLONTerminalRuleCall_7 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleMapping ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleMapping = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMappingRule ( ) ) ; } pushFollow ( FOLLOW_ruleMapping_in_entryRuleMapping18526 ) ; iv_ruleMapping = ruleMapping ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleMapping ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMapping18536 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleMapping ( ) throws RecognitionException { EObject current = null ; Token this_WS_0 = null ; Token this_WS_2 = null ; Token this_WS_4 = null ; EObject lv_mappingItems_1_0 = null ; EObject lv_mappingItems_3_0 = null ; enterRule ( ) ; try { { { loop157 : do { int alt157 = <NUM_LIT:2> ; int LA157_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA157_0 == RULE_WS ) ) { alt157 = <NUM_LIT:1> ; } switch ( alt157 ) { case <NUM_LIT:1> : { this_WS_0 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleMapping18573 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_0 , grammarAccess . getMappingAccess ( ) . getWSTerminalRuleCall_0 ( ) ) ; } } break ; default : break loop157 ; } } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMappingAccess ( ) . getMappingItemsMappingItemParserRuleCall_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleMappingItem_in_ruleMapping18595 ) ; lv_mappingItems_1_0 = ruleMappingItem ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMappingRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_mappingItems_1_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } loop159 : do { int alt159 = <NUM_LIT:2> ; alt159 = dfa159 . predict ( input ) ; switch ( alt159 ) { case <NUM_LIT:1> : { int cnt158 = <NUM_LIT:0> ; loop158 : do { int alt158 = <NUM_LIT:2> ; int LA158_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA158_0 == RULE_WS ) ) { alt158 = <NUM_LIT:1> ; } switch ( alt158 ) { case <NUM_LIT:1> : { this_WS_2 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleMapping18608 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_2 , grammarAccess . getMappingAccess ( ) . getWSTerminalRuleCall_2_0 ( ) ) ; } } break ; default : if ( cnt158 >= <NUM_LIT:1> ) break loop158 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt158 ++ ; } while ( true ) ; { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMappingAccess ( ) . getMappingItemsMappingItemParserRuleCall_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleMappingItem_in_ruleMapping18630 ) ; lv_mappingItems_3_0 = ruleMappingItem ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMappingRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_mappingItems_3_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; default : break loop159 ; } } while ( true ) ; loop160 : do { int alt160 = <NUM_LIT:2> ; int LA160_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA160_0 == RULE_WS ) ) { alt160 = <NUM_LIT:1> ; } switch ( alt160 ) { case <NUM_LIT:1> : { this_WS_4 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleMapping18644 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_4 , grammarAccess . getMappingAccess ( ) . getWSTerminalRuleCall_3 ( ) ) ; } } break ; default : break loop160 ; } } while ( true ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleMappingItem ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleMappingItem = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMappingItemRule ( ) ) ; } pushFollow ( FOLLOW_ruleMappingItem_in_entryRuleMappingItem18681 ) ; iv_ruleMappingItem = ruleMappingItem ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleMappingItem ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMappingItem18691 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleMappingItem ( ) throws RecognitionException { EObject current = null ; Token lv_col_0_1 = null ; Token lv_col_0_2 = null ; Token this_STRING_1 = null ; Token lv_type_2_0 = null ; Token this_STRING_3 = null ; EObject lv_attr_4_0 = null ; enterRule ( ) ; try { { { { { int alt161 = <NUM_LIT:2> ; int LA161_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA161_0 == RULE_IDENT ) ) { alt161 = <NUM_LIT:1> ; } else if ( ( LA161_0 == RULE_NUMBER ) ) { alt161 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt161 ) { case <NUM_LIT:1> : { lv_col_0_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleMappingItem18735 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_col_0_1 , grammarAccess . getMappingItemAccess ( ) . getColIDENTTerminalRuleCall_0_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMappingItemRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_col_0_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_col_0_2 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleMappingItem18755 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_col_0_2 , grammarAccess . getMappingItemAccess ( ) . getColNUMBERTerminalRuleCall_0_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMappingItemRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_col_0_2 , "<STR_LIT>" ) ; } } break ; } } } int alt164 = <NUM_LIT:2> ; int LA164_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA164_0 == RULE_STRING ) ) { alt164 = <NUM_LIT:1> ; } switch ( alt164 ) { case <NUM_LIT:1> : { this_STRING_1 = ( Token ) match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_ruleMappingItem18775 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STRING_1 , grammarAccess . getMappingItemAccess ( ) . getSTRINGTerminalRuleCall_1_0 ( ) ) ; } int alt162 = <NUM_LIT:2> ; int LA162_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA162_0 == RULE_IDENT ) ) { alt162 = <NUM_LIT:1> ; } switch ( alt162 ) { case <NUM_LIT:1> : { { lv_type_2_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleMappingItem18791 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_type_2_0 , grammarAccess . getMappingItemAccess ( ) . getTypeIDENTTerminalRuleCall_1_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMappingItemRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:type>" , lv_type_2_0 , "<STR_LIT>" ) ; } } } break ; } int alt163 = <NUM_LIT:2> ; int LA163_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA163_0 == RULE_STRING ) ) { alt163 = <NUM_LIT:1> ; } switch ( alt163 ) { case <NUM_LIT:1> : { this_STRING_3 = ( Token ) match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_ruleMappingItem18809 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STRING_3 , grammarAccess . getMappingItemAccess ( ) . getSTRINGTerminalRuleCall_1_2_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMappingItemAccess ( ) . getAttrMappingColumnParserRuleCall_1_2_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleMappingColumn_in_ruleMappingItem18829 ) ; lv_attr_4_0 = ruleMappingColumn ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getMappingItemRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_attr_4_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } break ; } } break ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleMappingColumn ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleMappingColumn = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getMappingColumnRule ( ) ) ; } pushFollow ( FOLLOW_ruleMappingColumn_in_entryRuleMappingColumn18869 ) ; iv_ruleMappingColumn = ruleMappingColumn ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleMappingColumn ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMappingColumn18879 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleMappingColumn ( ) throws RecognitionException { EObject current = null ; Token lv_name_0_1 = null ; Token lv_name_0_2 = null ; Token this_CARET_1 = null ; Token lv_vals_2_1 = null ; Token lv_vals_2_2 = null ; enterRule ( ) ; try { { { { { int alt165 = <NUM_LIT:2> ; int LA165_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA165_0 == RULE_IDENT ) ) { alt165 = <NUM_LIT:1> ; } else if ( ( LA165_0 == RULE_IDENT_DOT ) ) { alt165 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt165 ) { case <NUM_LIT:1> : { lv_name_0_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleMappingColumn18923 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_1 , grammarAccess . getMappingColumnAccess ( ) . getNameIDENTTerminalRuleCall_0_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMappingColumnRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_name_0_2 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_ruleMappingColumn18943 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_2 , grammarAccess . getMappingColumnAccess ( ) . getNameIDENT_DOTTerminalRuleCall_0_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMappingColumnRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_2 , "<STR_LIT>" ) ; } } break ; } } } loop167 : do { int alt167 = <NUM_LIT:2> ; int LA167_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA167_0 == RULE_CARET ) ) { alt167 = <NUM_LIT:1> ; } switch ( alt167 ) { case <NUM_LIT:1> : { this_CARET_1 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_ruleMappingColumn18963 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_1 , grammarAccess . getMappingColumnAccess ( ) . getCARETTerminalRuleCall_1_0 ( ) ) ; } { { int alt166 = <NUM_LIT:2> ; int LA166_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA166_0 == RULE_IDENT ) ) { alt166 = <NUM_LIT:1> ; } else if ( ( LA166_0 == RULE_NUMBER ) ) { alt166 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt166 ) { case <NUM_LIT:1> : { lv_vals_2_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleMappingColumn18981 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_vals_2_1 , grammarAccess . getMappingColumnAccess ( ) . getValsIDENTTerminalRuleCall_1_1_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMappingColumnRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_vals_2_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_vals_2_2 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleMappingColumn19001 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_vals_2_2 , grammarAccess . getMappingColumnAccess ( ) . getValsNUMBERTerminalRuleCall_1_1_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getMappingColumnRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_vals_2_2 , "<STR_LIT>" ) ; } } break ; } } } } break ; default : break loop167 ; } } while ( true ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRuleOptionalFeature ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleOptionalFeature = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getOptionalFeatureRule ( ) ) ; } pushFollow ( FOLLOW_ruleOptionalFeature_in_entryRuleOptionalFeature19047 ) ; iv_ruleOptionalFeature = ruleOptionalFeature ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleOptionalFeature ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleOptionalFeature19057 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject ruleOptionalFeature ( ) throws RecognitionException { EObject current = null ; Token lv_name_0_0 = null ; Token this_LPAREN_1 = null ; Token lv_type_2_0 = null ; Token this_COMMA_3 = null ; Token lv_filters_4_0 = null ; Token this_RPAREN_5 = null ; Token this_EQUALS_6 = null ; Token this_SEMICOLON_8 = null ; AntlrDatatypeRuleToken lv_option_7_0 = null ; enterRule ( ) ; try { { { { { lv_name_0_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleOptionalFeature19099 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_0 , grammarAccess . getOptionalFeatureAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getOptionalFeatureRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_0 , "<STR_LIT>" ) ; } } } this_LPAREN_1 = ( Token ) match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_ruleOptionalFeature19115 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LPAREN_1 , grammarAccess . getOptionalFeatureAccess ( ) . getLPARENTerminalRuleCall_1 ( ) ) ; } { { lv_type_2_0 = ( Token ) match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_ruleOptionalFeature19131 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_type_2_0 , grammarAccess . getOptionalFeatureAccess ( ) . getTypeOPTION_TYPETerminalRuleCall_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getOptionalFeatureRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:type>" , lv_type_2_0 , "<STR_LIT>" ) ; } } } loop168 : do { int alt168 = <NUM_LIT:2> ; int LA168_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA168_0 == RULE_COMMA ) ) { alt168 = <NUM_LIT:1> ; } switch ( alt168 ) { case <NUM_LIT:1> : { this_COMMA_3 = ( Token ) match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_ruleOptionalFeature19148 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COMMA_3 , grammarAccess . getOptionalFeatureAccess ( ) . getCOMMATerminalRuleCall_3_0 ( ) ) ; } { { lv_filters_4_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleOptionalFeature19164 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_filters_4_0 , grammarAccess . getOptionalFeatureAccess ( ) . getFiltersIDENTTerminalRuleCall_3_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getOptionalFeatureRule ( ) ) ; } addWithLastConsumed ( current , "<STR_LIT>" , lv_filters_4_0 , "<STR_LIT>" ) ; } } } } break ; default : break loop168 ; } } while ( true ) ; this_RPAREN_5 = ( Token ) match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_ruleOptionalFeature19182 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RPAREN_5 , grammarAccess . getOptionalFeatureAccess ( ) . getRPARENTerminalRuleCall_4 ( ) ) ; } this_EQUALS_6 = ( Token ) match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_ruleOptionalFeature19192 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_EQUALS_6 , grammarAccess . getOptionalFeatureAccess ( ) . getEQUALSTerminalRuleCall_5 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getOptionalFeatureAccess ( ) . getOptionFeatureValueParserRuleCall_6_0 ( ) ) ; } pushFollow ( FOLLOW_ruleFeatureValue_in_ruleOptionalFeature19212 ) ; lv_option_7_0 = ruleFeatureValue ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getOptionalFeatureRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_option_7_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } this_SEMICOLON_8 = ( Token ) match ( input , RULE_SEMICOLON , FOLLOW_RULE_SEMICOLON_in_ruleOptionalFeature19223 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_SEMICOLON_8 , grammarAccess . getOptionalFeatureAccess ( ) . getSEMICOLONTerminalRuleCall_7 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final String entryRuleFeatureValue ( ) throws RecognitionException { String current = null ; AntlrDatatypeRuleToken iv_ruleFeatureValue = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getFeatureValueRule ( ) ) ; } pushFollow ( FOLLOW_ruleFeatureValue_in_entryRuleFeatureValue19259 ) ; iv_ruleFeatureValue = ruleFeatureValue ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleFeatureValue . getText ( ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleFeatureValue19270 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final AntlrDatatypeRuleToken ruleFeatureValue ( ) throws RecognitionException { AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken ( ) ; Token this_REST_0 = null ; Token this_IDENT_DOT_1 = null ; Token this_IDENT_2 = null ; Token this_NUMBER_3 = null ; Token this_WS_4 = null ; Token this_COLON_5 = null ; Token this_STRING_6 = null ; Token this_COMMA_7 = null ; Token this_MINUS_8 = null ; Token this_PLUS_9 = null ; Token this_LPAREN_10 = null ; Token this_RPAREN_11 = null ; Token this_LBRACE_12 = null ; Token this_RBRACE_13 = null ; Token this_QUESTI_14 = null ; Token this_NOT_15 = null ; Token this_BAND_16 = null ; Token this_BOR_17 = null ; Token this_HASH_18 = null ; Token this_AT_19 = null ; Token this_CARET_20 = null ; Token this_EQUALS_21 = null ; Token this_LESS_THAN_22 = null ; Token this_MORE_THAN_23 = null ; Token this_PERCENT_24 = null ; Token this_AND_25 = null ; Token this_OR_26 = null ; Token this_ESC_CHAR_27 = null ; Token this_ON_OFF_28 = null ; Token this_STATEMEN_TYPE_29 = null ; Token this_MAPPING_TYPE_30 = null ; Token this_OPTION_TYPE_31 = null ; enterRule ( ) ; try { { int cnt169 = <NUM_LIT:0> ; loop169 : do { int alt169 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt169 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt169 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt169 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt169 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt169 = <NUM_LIT:5> ; } break ; case RULE_COLON : { alt169 = <NUM_LIT:6> ; } break ; case RULE_STRING : { alt169 = <NUM_LIT:7> ; } break ; case RULE_COMMA : { alt169 = <NUM_LIT:8> ; } break ; case RULE_MINUS : { alt169 = <NUM_LIT:9> ; } break ; case RULE_PLUS : { alt169 = <NUM_LIT:10> ; } break ; case RULE_LPAREN : { alt169 = <NUM_LIT:11> ; } break ; case RULE_RPAREN : { alt169 = <NUM_LIT:12> ; } break ; case RULE_LBRACE : { alt169 = <NUM_LIT> ; } break ; case RULE_RBRACE : { alt169 = <NUM_LIT> ; } break ; case RULE_QUESTI : { alt169 = <NUM_LIT:15> ; } break ; case RULE_NOT : { alt169 = <NUM_LIT:16> ; } break ; case RULE_BAND : { alt169 = <NUM_LIT> ; } break ; case RULE_BOR : { alt169 = <NUM_LIT> ; } break ; case RULE_HASH : { alt169 = <NUM_LIT> ; } break ; case RULE_AT : { alt169 = <NUM_LIT:20> ; } break ; case RULE_CARET : { alt169 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt169 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt169 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt169 = <NUM_LIT:24> ; } break ; case RULE_PERCENT : { alt169 = <NUM_LIT> ; } break ; case RULE_AND : { alt169 = <NUM_LIT> ; } break ; case RULE_OR : { alt169 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt169 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt169 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt169 = <NUM_LIT:30> ; } break ; case RULE_MAPPING_TYPE : { alt169 = <NUM_LIT:31> ; } break ; case RULE_OPTION_TYPE : { alt169 = <NUM_LIT:32> ; } break ; } switch ( alt169 ) { case <NUM_LIT:1> : { this_REST_0 = ( Token ) match ( input , RULE_REST , FOLLOW_RULE_REST_in_ruleFeatureValue19310 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_REST_0 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_REST_0 , grammarAccess . getFeatureValueAccess ( ) . getRESTTerminalRuleCall_0 ( ) ) ; } } break ; case <NUM_LIT:2> : { this_IDENT_DOT_1 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_ruleFeatureValue19336 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_DOT_1 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_DOT_1 , grammarAccess . getFeatureValueAccess ( ) . getIDENT_DOTTerminalRuleCall_1 ( ) ) ; } } break ; case <NUM_LIT:3> : { this_IDENT_2 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleFeatureValue19362 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_2 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_2 , grammarAccess . getFeatureValueAccess ( ) . getIDENTTerminalRuleCall_2 ( ) ) ; } } break ; case <NUM_LIT:4> : { this_NUMBER_3 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_ruleFeatureValue19388 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NUMBER_3 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NUMBER_3 , grammarAccess . getFeatureValueAccess ( ) . getNUMBERTerminalRuleCall_3 ( ) ) ; } } break ; case <NUM_LIT:5> : { this_WS_4 = ( Token ) match ( input , RULE_WS , FOLLOW_RULE_WS_in_ruleFeatureValue19414 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_WS_4 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_WS_4 , grammarAccess . getFeatureValueAccess ( ) . getWSTerminalRuleCall_4 ( ) ) ; } } break ; case <NUM_LIT:6> : { this_COLON_5 = ( Token ) match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_ruleFeatureValue19440 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_COLON_5 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COLON_5 , grammarAccess . getFeatureValueAccess ( ) . getCOLONTerminalRuleCall_5 ( ) ) ; } } break ; case <NUM_LIT:7> : { this_STRING_6 = ( Token ) match ( input , RULE_STRING , FOLLOW_RULE_STRING_in_ruleFeatureValue19466 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_STRING_6 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STRING_6 , grammarAccess . getFeatureValueAccess ( ) . getSTRINGTerminalRuleCall_6 ( ) ) ; } } break ; case <NUM_LIT:8> : { this_COMMA_7 = ( Token ) match ( input , RULE_COMMA , FOLLOW_RULE_COMMA_in_ruleFeatureValue19492 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_COMMA_7 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COMMA_7 , grammarAccess . getFeatureValueAccess ( ) . getCOMMATerminalRuleCall_7 ( ) ) ; } } break ; case <NUM_LIT:9> : { this_MINUS_8 = ( Token ) match ( input , RULE_MINUS , FOLLOW_RULE_MINUS_in_ruleFeatureValue19518 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MINUS_8 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MINUS_8 , grammarAccess . getFeatureValueAccess ( ) . getMINUSTerminalRuleCall_8 ( ) ) ; } } break ; case <NUM_LIT:10> : { this_PLUS_9 = ( Token ) match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_ruleFeatureValue19544 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_PLUS_9 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PLUS_9 , grammarAccess . getFeatureValueAccess ( ) . getPLUSTerminalRuleCall_9 ( ) ) ; } } break ; case <NUM_LIT:11> : { this_LPAREN_10 = ( Token ) match ( input , RULE_LPAREN , FOLLOW_RULE_LPAREN_in_ruleFeatureValue19570 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LPAREN_10 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LPAREN_10 , grammarAccess . getFeatureValueAccess ( ) . getLPARENTerminalRuleCall_10 ( ) ) ; } } break ; case <NUM_LIT:12> : { this_RPAREN_11 = ( Token ) match ( input , RULE_RPAREN , FOLLOW_RULE_RPAREN_in_ruleFeatureValue19596 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_RPAREN_11 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RPAREN_11 , grammarAccess . getFeatureValueAccess ( ) . getRPARENTerminalRuleCall_11 ( ) ) ; } } break ; case <NUM_LIT> : { this_LBRACE_12 = ( Token ) match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_ruleFeatureValue19622 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LBRACE_12 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LBRACE_12 , grammarAccess . getFeatureValueAccess ( ) . getLBRACETerminalRuleCall_12 ( ) ) ; } } break ; case <NUM_LIT> : { this_RBRACE_13 = ( Token ) match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_ruleFeatureValue19648 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_RBRACE_13 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RBRACE_13 , grammarAccess . getFeatureValueAccess ( ) . getRBRACETerminalRuleCall_13 ( ) ) ; } } break ; case <NUM_LIT:15> : { this_QUESTI_14 = ( Token ) match ( input , RULE_QUESTI , FOLLOW_RULE_QUESTI_in_ruleFeatureValue19674 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_QUESTI_14 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_QUESTI_14 , grammarAccess . getFeatureValueAccess ( ) . getQUESTITerminalRuleCall_14 ( ) ) ; } } break ; case <NUM_LIT:16> : { this_NOT_15 = ( Token ) match ( input , RULE_NOT , FOLLOW_RULE_NOT_in_ruleFeatureValue19700 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_NOT_15 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_NOT_15 , grammarAccess . getFeatureValueAccess ( ) . getNOTTerminalRuleCall_15 ( ) ) ; } } break ; case <NUM_LIT> : { this_BAND_16 = ( Token ) match ( input , RULE_BAND , FOLLOW_RULE_BAND_in_ruleFeatureValue19726 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BAND_16 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BAND_16 , grammarAccess . getFeatureValueAccess ( ) . getBANDTerminalRuleCall_16 ( ) ) ; } } break ; case <NUM_LIT> : { this_BOR_17 = ( Token ) match ( input , RULE_BOR , FOLLOW_RULE_BOR_in_ruleFeatureValue19752 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_BOR_17 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_BOR_17 , grammarAccess . getFeatureValueAccess ( ) . getBORTerminalRuleCall_17 ( ) ) ; } } break ; case <NUM_LIT> : { this_HASH_18 = ( Token ) match ( input , RULE_HASH , FOLLOW_RULE_HASH_in_ruleFeatureValue19778 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_HASH_18 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_HASH_18 , grammarAccess . getFeatureValueAccess ( ) . getHASHTerminalRuleCall_18 ( ) ) ; } } break ; case <NUM_LIT:20> : { this_AT_19 = ( Token ) match ( input , RULE_AT , FOLLOW_RULE_AT_in_ruleFeatureValue19804 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_AT_19 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AT_19 , grammarAccess . getFeatureValueAccess ( ) . getATTerminalRuleCall_19 ( ) ) ; } } break ; case <NUM_LIT> : { this_CARET_20 = ( Token ) match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_ruleFeatureValue19830 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_CARET_20 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_CARET_20 , grammarAccess . getFeatureValueAccess ( ) . getCARETTerminalRuleCall_20 ( ) ) ; } } break ; case <NUM_LIT> : { this_EQUALS_21 = ( Token ) match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_ruleFeatureValue19856 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_EQUALS_21 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_EQUALS_21 , grammarAccess . getFeatureValueAccess ( ) . getEQUALSTerminalRuleCall_21 ( ) ) ; } } break ; case <NUM_LIT> : { this_LESS_THAN_22 = ( Token ) match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_ruleFeatureValue19882 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_LESS_THAN_22 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LESS_THAN_22 , grammarAccess . getFeatureValueAccess ( ) . getLESS_THANTerminalRuleCall_22 ( ) ) ; } } break ; case <NUM_LIT:24> : { this_MORE_THAN_23 = ( Token ) match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_ruleFeatureValue19908 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MORE_THAN_23 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MORE_THAN_23 , grammarAccess . getFeatureValueAccess ( ) . getMORE_THANTerminalRuleCall_23 ( ) ) ; } } break ; case <NUM_LIT> : { this_PERCENT_24 = ( Token ) match ( input , RULE_PERCENT , FOLLOW_RULE_PERCENT_in_ruleFeatureValue19934 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_PERCENT_24 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_PERCENT_24 , grammarAccess . getFeatureValueAccess ( ) . getPERCENTTerminalRuleCall_24 ( ) ) ; } } break ; case <NUM_LIT> : { this_AND_25 = ( Token ) match ( input , RULE_AND , FOLLOW_RULE_AND_in_ruleFeatureValue19960 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_AND_25 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_AND_25 , grammarAccess . getFeatureValueAccess ( ) . getANDTerminalRuleCall_25 ( ) ) ; } } break ; case <NUM_LIT> : { this_OR_26 = ( Token ) match ( input , RULE_OR , FOLLOW_RULE_OR_in_ruleFeatureValue19986 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OR_26 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OR_26 , grammarAccess . getFeatureValueAccess ( ) . getORTerminalRuleCall_26 ( ) ) ; } } break ; case <NUM_LIT> : { this_ESC_CHAR_27 = ( Token ) match ( input , RULE_ESC_CHAR , FOLLOW_RULE_ESC_CHAR_in_ruleFeatureValue20012 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ESC_CHAR_27 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ESC_CHAR_27 , grammarAccess . getFeatureValueAccess ( ) . getESC_CHARTerminalRuleCall_27 ( ) ) ; } } break ; case <NUM_LIT> : { this_ON_OFF_28 = ( Token ) match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_ruleFeatureValue20038 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_ON_OFF_28 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_ON_OFF_28 , grammarAccess . getFeatureValueAccess ( ) . getON_OFFTerminalRuleCall_28 ( ) ) ; } } break ; case <NUM_LIT:30> : { this_STATEMEN_TYPE_29 = ( Token ) match ( input , RULE_STATEMEN_TYPE , FOLLOW_RULE_STATEMEN_TYPE_in_ruleFeatureValue20064 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_STATEMEN_TYPE_29 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_STATEMEN_TYPE_29 , grammarAccess . getFeatureValueAccess ( ) . getSTATEMEN_TYPETerminalRuleCall_29 ( ) ) ; } } break ; case <NUM_LIT:31> : { this_MAPPING_TYPE_30 = ( Token ) match ( input , RULE_MAPPING_TYPE , FOLLOW_RULE_MAPPING_TYPE_in_ruleFeatureValue20090 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_MAPPING_TYPE_30 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MAPPING_TYPE_30 , grammarAccess . getFeatureValueAccess ( ) . getMAPPING_TYPETerminalRuleCall_30 ( ) ) ; } } break ; case <NUM_LIT:32> : { this_OPTION_TYPE_31 = ( Token ) match ( input , RULE_OPTION_TYPE , FOLLOW_RULE_OPTION_TYPE_in_ruleFeatureValue20116 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_OPTION_TYPE_31 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_OPTION_TYPE_31 , grammarAccess . getFeatureValueAccess ( ) . getOPTION_TYPETerminalRuleCall_31 ( ) ) ; } } break ; default : if ( cnt169 >= <NUM_LIT:1> ) break loop169 ; if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } EarlyExitException eee = new EarlyExitException ( <NUM_LIT> , input ) ; throw eee ; } cnt169 ++ ; } while ( true ) ; } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRulePojoType ( ) throws RecognitionException { EObject current = null ; EObject iv_rulePojoType = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoTypeRule ( ) ) ; } pushFollow ( FOLLOW_rulePojoType_in_entryRulePojoType20162 ) ; iv_rulePojoType = rulePojoType ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_rulePojoType ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoType20172 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject rulePojoType ( ) throws RecognitionException { EObject current = null ; Token lv_native_0_1 = null ; Token lv_native_0_2 = null ; Token lv_native_0_3 = null ; Token lv_native_0_4 = null ; Token lv_native_0_5 = null ; Token lv_native_0_6 = null ; Token lv_native_0_7 = null ; Token lv_native_0_8 = null ; Token this_COLON_1 = null ; Token this_COLON_2 = null ; Token otherlv_3 = null ; Token this_LESS_THAN_5 = null ; Token this_COLON_6 = null ; Token otherlv_7 = null ; Token this_MORE_THAN_9 = null ; Token lv_array_10_0 = null ; enterRule ( ) ; try { { { int alt174 = <NUM_LIT:2> ; int LA174_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA174_0 >= <NUM_LIT> && LA174_0 <= <NUM_LIT> ) ) ) { alt174 = <NUM_LIT:1> ; } else if ( ( LA174_0 == RULE_COLON ) ) { alt174 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt174 ) { case <NUM_LIT:1> : { { { int alt170 = <NUM_LIT:8> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt170 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt170 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt170 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt170 = <NUM_LIT:4> ; } break ; case <NUM_LIT> : { alt170 = <NUM_LIT:5> ; } break ; case <NUM_LIT> : { alt170 = <NUM_LIT:6> ; } break ; case <NUM_LIT> : { alt170 = <NUM_LIT:7> ; } break ; case <NUM_LIT> : { alt170 = <NUM_LIT:8> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt170 ) { case <NUM_LIT:1> : { lv_native_0_1 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_86_in_rulePojoType20218 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_0_1 , grammarAccess . getPojoTypeAccess ( ) . getNative_charKeyword_0_0_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoTypeRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_0_1 , null ) ; } } break ; case <NUM_LIT:2> : { lv_native_0_2 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_87_in_rulePojoType20247 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_0_2 , grammarAccess . getPojoTypeAccess ( ) . getNative_byteKeyword_0_0_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoTypeRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_0_2 , null ) ; } } break ; case <NUM_LIT:3> : { lv_native_0_3 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_88_in_rulePojoType20276 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_0_3 , grammarAccess . getPojoTypeAccess ( ) . getNative_shortKeyword_0_0_0_2 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoTypeRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_0_3 , null ) ; } } break ; case <NUM_LIT:4> : { lv_native_0_4 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_89_in_rulePojoType20305 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_0_4 , grammarAccess . getPojoTypeAccess ( ) . getNative_intKeyword_0_0_0_3 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoTypeRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_0_4 , null ) ; } } break ; case <NUM_LIT:5> : { lv_native_0_5 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_90_in_rulePojoType20334 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_0_5 , grammarAccess . getPojoTypeAccess ( ) . getNative_longKeyword_0_0_0_4 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoTypeRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_0_5 , null ) ; } } break ; case <NUM_LIT:6> : { lv_native_0_6 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_91_in_rulePojoType20363 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_0_6 , grammarAccess . getPojoTypeAccess ( ) . getNative_floatKeyword_0_0_0_5 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoTypeRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_0_6 , null ) ; } } break ; case <NUM_LIT:7> : { lv_native_0_7 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_92_in_rulePojoType20392 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_0_7 , grammarAccess . getPojoTypeAccess ( ) . getNative_doubleKeyword_0_0_0_6 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoTypeRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_0_7 , null ) ; } } break ; case <NUM_LIT:8> : { lv_native_0_8 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_93_in_rulePojoType20421 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_0_8 , grammarAccess . getPojoTypeAccess ( ) . getNative_booleanKeyword_0_0_0_7 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoTypeRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_0_8 , null ) ; } } break ; } } } } break ; case <NUM_LIT:2> : { { { this_COLON_1 = ( Token ) match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rulePojoType20456 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COLON_1 , grammarAccess . getPojoTypeAccess ( ) . getCOLONTerminalRuleCall_0_1_0_0 ( ) ) ; } int alt171 = <NUM_LIT:2> ; int LA171_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA171_0 == RULE_COLON ) ) { alt171 = <NUM_LIT:1> ; } else if ( ( LA171_0 == RULE_IDENT || LA171_0 == RULE_IDENT_DOT ) ) { alt171 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt171 ) { case <NUM_LIT:1> : { { this_COLON_2 = ( Token ) match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rulePojoType20468 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COLON_2 , grammarAccess . getPojoTypeAccess ( ) . getCOLONTerminalRuleCall_0_1_0_1_0_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoTypeRule ( ) ) ; } } otherlv_3 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojoType20487 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_3 , grammarAccess . getPojoTypeAccess ( ) . getRefPojoEntityCrossReference_0_1_0_1_0_1_0 ( ) ) ; } } } } } break ; case <NUM_LIT:2> : { { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoTypeRule ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoTypeAccess ( ) . getTypeJvmTypeCrossReference_0_1_0_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_rulePojoType20517 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { afterParserOrEnumRuleCall ( ) ; } } } } break ; } } int alt173 = <NUM_LIT:2> ; int LA173_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA173_0 == RULE_LESS_THAN ) ) { alt173 = <NUM_LIT:1> ; } switch ( alt173 ) { case <NUM_LIT:1> : { this_LESS_THAN_5 = ( Token ) match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rulePojoType20531 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LESS_THAN_5 , grammarAccess . getPojoTypeAccess ( ) . getLESS_THANTerminalRuleCall_0_1_1_0 ( ) ) ; } int alt172 = <NUM_LIT:2> ; int LA172_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA172_0 == RULE_COLON ) ) { alt172 = <NUM_LIT:1> ; } else if ( ( LA172_0 == RULE_IDENT || LA172_0 == RULE_IDENT_DOT ) ) { alt172 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt172 ) { case <NUM_LIT:1> : { { this_COLON_6 = ( Token ) match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rulePojoType20543 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COLON_6 , grammarAccess . getPojoTypeAccess ( ) . getCOLONTerminalRuleCall_0_1_1_1_0_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoTypeRule ( ) ) ; } } otherlv_7 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojoType20562 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_7 , grammarAccess . getPojoTypeAccess ( ) . getGrefPojoEntityCrossReference_0_1_1_1_0_1_0 ( ) ) ; } } } } } break ; case <NUM_LIT:2> : { { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoTypeRule ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoTypeAccess ( ) . getGtypeJvmTypeCrossReference_0_1_1_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_rulePojoType20592 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { afterParserOrEnumRuleCall ( ) ; } } } } break ; } this_MORE_THAN_9 = ( Token ) match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rulePojoType20604 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MORE_THAN_9 , grammarAccess . getPojoTypeAccess ( ) . getMORE_THANTerminalRuleCall_0_1_1_2 ( ) ) ; } } break ; } } } break ; } int alt175 = <NUM_LIT:2> ; int LA175_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA175_0 == <NUM_LIT> ) ) { alt175 = <NUM_LIT:1> ; } switch ( alt175 ) { case <NUM_LIT:1> : { { lv_array_10_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_94_in_rulePojoType20625 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_array_10_0 , grammarAccess . getPojoTypeAccess ( ) . getArrayLeftSquareBracketRightSquareBracketKeyword_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoTypeRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , true , "<STR_LIT:[]>" ) ; } } } break ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRulePackageDeclaration ( ) throws RecognitionException { EObject current = null ; EObject iv_rulePackageDeclaration = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPackageDeclarationRule ( ) ) ; } pushFollow ( FOLLOW_rulePackageDeclaration_in_entryRulePackageDeclaration20681 ) ; iv_rulePackageDeclaration = rulePackageDeclaration ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_rulePackageDeclaration ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePackageDeclaration20691 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject rulePackageDeclaration ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; Token lv_name_1_1 = null ; Token lv_name_1_2 = null ; Token otherlv_2 = null ; Token lv_suffix_3_1 = null ; Token lv_suffix_3_2 = null ; Token this_LBRACE_4 = null ; Token this_RBRACE_6 = null ; EObject lv_elements_5_0 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_95_in_rulePackageDeclaration20732 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getPackageDeclarationAccess ( ) . getPackageKeyword_0 ( ) ) ; } { { int alt176 = <NUM_LIT:2> ; int LA176_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA176_0 == RULE_IDENT ) ) { alt176 = <NUM_LIT:1> ; } else if ( ( LA176_0 == RULE_IDENT_DOT ) ) { alt176 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt176 ) { case <NUM_LIT:1> : { lv_name_1_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePackageDeclaration20751 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_1_1 , grammarAccess . getPackageDeclarationAccess ( ) . getNameIDENTTerminalRuleCall_1_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPackageDeclarationRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_1_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_name_1_2 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_rulePackageDeclaration20771 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_1_2 , grammarAccess . getPackageDeclarationAccess ( ) . getNameIDENT_DOTTerminalRuleCall_1_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPackageDeclarationRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_1_2 , "<STR_LIT>" ) ; } } break ; } } } int alt178 = <NUM_LIT:2> ; int LA178_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA178_0 == <NUM_LIT> ) ) { alt178 = <NUM_LIT:1> ; } switch ( alt178 ) { case <NUM_LIT:1> : { otherlv_2 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_96_in_rulePackageDeclaration20792 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_2 , grammarAccess . getPackageDeclarationAccess ( ) . getSuffixKeyword_2_0 ( ) ) ; } { { int alt177 = <NUM_LIT:2> ; int LA177_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA177_0 == RULE_IDENT ) ) { alt177 = <NUM_LIT:1> ; } else if ( ( LA177_0 == RULE_NUMBER ) ) { alt177 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt177 ) { case <NUM_LIT:1> : { lv_suffix_3_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePackageDeclaration20811 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_suffix_3_1 , grammarAccess . getPackageDeclarationAccess ( ) . getSuffixIDENTTerminalRuleCall_2_1_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPackageDeclarationRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_suffix_3_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_suffix_3_2 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rulePackageDeclaration20831 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_suffix_3_2 , grammarAccess . getPackageDeclarationAccess ( ) . getSuffixNUMBERTerminalRuleCall_2_1_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPackageDeclarationRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_suffix_3_2 , "<STR_LIT>" ) ; } } break ; } } } } break ; } this_LBRACE_4 = ( Token ) match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_rulePackageDeclaration20852 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LBRACE_4 , grammarAccess . getPackageDeclarationAccess ( ) . getLBRACETerminalRuleCall_3 ( ) ) ; } loop179 : do { int alt179 = <NUM_LIT:2> ; int LA179_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA179_0 == <NUM_LIT> || LA179_0 == <NUM_LIT> || ( LA179_0 >= <NUM_LIT> && LA179_0 <= <NUM_LIT> ) ) ) { alt179 = <NUM_LIT:1> ; } switch ( alt179 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPackageDeclarationAccess ( ) . getElementsAbstractPojoEntityParserRuleCall_4_0 ( ) ) ; } pushFollow ( FOLLOW_ruleAbstractPojoEntity_in_rulePackageDeclaration20872 ) ; lv_elements_5_0 = ruleAbstractPojoEntity ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPackageDeclarationRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_elements_5_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } break ; default : break loop179 ; } } while ( true ) ; this_RBRACE_6 = ( Token ) match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_rulePackageDeclaration20884 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RBRACE_6 , grammarAccess . getPackageDeclarationAccess ( ) . getRBRACETerminalRuleCall_5 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRuleAbstractPojoEntity ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleAbstractPojoEntity = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getAbstractPojoEntityRule ( ) ) ; } pushFollow ( FOLLOW_ruleAbstractPojoEntity_in_entryRuleAbstractPojoEntity20929 ) ; iv_ruleAbstractPojoEntity = ruleAbstractPojoEntity ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleAbstractPojoEntity ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleAbstractPojoEntity20939 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject ruleAbstractPojoEntity ( ) throws RecognitionException { EObject current = null ; EObject this_PackageDeclaration_0 = null ; EObject this_PojoEntity_1 = null ; EObject this_Import_2 = null ; EObject this_Implements_3 = null ; EObject this_Extends_4 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { int alt180 = <NUM_LIT:5> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt180 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : case <NUM_LIT:100> : case <NUM_LIT> : { alt180 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt180 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt180 = <NUM_LIT:4> ; } break ; case <NUM_LIT> : { alt180 = <NUM_LIT:5> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt180 ) { case <NUM_LIT:1> : { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getAbstractPojoEntityAccess ( ) . getPackageDeclarationParserRuleCall_0 ( ) ) ; } pushFollow ( FOLLOW_rulePackageDeclaration_in_ruleAbstractPojoEntity20990 ) ; this_PackageDeclaration_0 = rulePackageDeclaration ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = this_PackageDeclaration_0 ; afterParserOrEnumRuleCall ( ) ; } } break ; case <NUM_LIT:2> : { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getAbstractPojoEntityAccess ( ) . getPojoEntityParserRuleCall_1 ( ) ) ; } pushFollow ( FOLLOW_rulePojoEntity_in_ruleAbstractPojoEntity21017 ) ; this_PojoEntity_1 = rulePojoEntity ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = this_PojoEntity_1 ; afterParserOrEnumRuleCall ( ) ; } } break ; case <NUM_LIT:3> : { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getAbstractPojoEntityAccess ( ) . getImportParserRuleCall_2 ( ) ) ; } pushFollow ( FOLLOW_ruleImport_in_ruleAbstractPojoEntity21044 ) ; this_Import_2 = ruleImport ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = this_Import_2 ; afterParserOrEnumRuleCall ( ) ; } } break ; case <NUM_LIT:4> : { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getAbstractPojoEntityAccess ( ) . getImplementsParserRuleCall_3 ( ) ) ; } pushFollow ( FOLLOW_ruleImplements_in_ruleAbstractPojoEntity21071 ) ; this_Implements_3 = ruleImplements ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = this_Implements_3 ; afterParserOrEnumRuleCall ( ) ; } } break ; case <NUM_LIT:5> : { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getAbstractPojoEntityAccess ( ) . getExtendsParserRuleCall_4 ( ) ) ; } pushFollow ( FOLLOW_ruleExtends_in_ruleAbstractPojoEntity21098 ) ; this_Extends_4 = ruleExtends ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = this_Extends_4 ; afterParserOrEnumRuleCall ( ) ; } } break ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRuleImport ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleImport = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getImportRule ( ) ) ; } pushFollow ( FOLLOW_ruleImport_in_entryRuleImport21143 ) ; iv_ruleImport = ruleImport ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleImport ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleImport21153 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject ruleImport ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; AntlrDatatypeRuleToken lv_importedNamespace_1_0 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_97_in_ruleImport21194 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getImportAccess ( ) . getImportKeyword_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getImportAccess ( ) . getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedNameWithWildcard_in_ruleImport21215 ) ; lv_importedNamespace_1_0 = ruleQualifiedNameWithWildcard ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getImportRule ( ) ) ; } set ( current , "<STR_LIT>" , lv_importedNamespace_1_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRuleImplements ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleImplements = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getImplementsRule ( ) ) ; } pushFollow ( FOLLOW_ruleImplements_in_entryRuleImplements21261 ) ; iv_ruleImplements = ruleImplements ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleImplements ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleImplements21271 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject ruleImplements ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_98_in_ruleImplements21312 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getImplementsAccess ( ) . getImplementsKeyword_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getImplementsRule ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getImplementsAccess ( ) . getImplementsJvmTypeCrossReference_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_ruleImplements21335 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { afterParserOrEnumRuleCall ( ) ; } } } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRuleExtends ( ) throws RecognitionException { EObject current = null ; EObject iv_ruleExtends = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getExtendsRule ( ) ) ; } pushFollow ( FOLLOW_ruleExtends_in_entryRuleExtends21381 ) ; iv_ruleExtends = ruleExtends ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleExtends ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleExtends21391 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject ruleExtends ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_99_in_ruleExtends21432 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getExtendsAccess ( ) . getExtendsKeyword_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getExtendsRule ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getExtendsAccess ( ) . getExtendsJvmTypeCrossReference_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_ruleExtends21455 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { afterParserOrEnumRuleCall ( ) ; } } } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRulePojoEntityModifier1 ( ) throws RecognitionException { EObject current = null ; EObject iv_rulePojoEntityModifier1 = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoEntityModifier1Rule ( ) ) ; } pushFollow ( FOLLOW_rulePojoEntityModifier1_in_entryRulePojoEntityModifier121495 ) ; iv_rulePojoEntityModifier1 = rulePojoEntityModifier1 ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_rulePojoEntityModifier1 ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoEntityModifier121505 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject rulePojoEntityModifier1 ( ) throws RecognitionException { EObject current = null ; Token lv_final_0_0 = null ; Token lv_abstract_1_0 = null ; enterRule ( ) ; try { { int alt181 = <NUM_LIT:2> ; int LA181_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA181_0 == <NUM_LIT:100> ) ) { alt181 = <NUM_LIT:1> ; } else if ( ( LA181_0 == <NUM_LIT> ) ) { alt181 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt181 ) { case <NUM_LIT:1> : { { { lv_final_0_0 = ( Token ) match ( input , <NUM_LIT:100> , FOLLOW_100_in_rulePojoEntityModifier121548 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_final_0_0 , grammarAccess . getPojoEntityModifier1Access ( ) . getFinalFinalKeyword_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoEntityModifier1Rule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , true , "<STR_LIT>" ) ; } } } } break ; case <NUM_LIT:2> : { { { lv_abstract_1_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_101_in_rulePojoEntityModifier121585 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_abstract_1_0 , grammarAccess . getPojoEntityModifier1Access ( ) . getAbstractAbstractKeyword_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoEntityModifier1Rule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , true , "<STR_LIT>" ) ; } } } } break ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRulePojoEntityModifier2 ( ) throws RecognitionException { EObject current = null ; EObject iv_rulePojoEntityModifier2 = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoEntityModifier2Rule ( ) ) ; } pushFollow ( FOLLOW_rulePojoEntityModifier2_in_entryRulePojoEntityModifier221634 ) ; iv_rulePojoEntityModifier2 = rulePojoEntityModifier2 ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_rulePojoEntityModifier2 ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoEntityModifier221644 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject rulePojoEntityModifier2 ( ) throws RecognitionException { EObject current = null ; Token otherlv_0 = null ; Token otherlv_1 = null ; Token otherlv_2 = null ; Token lv_discriminator_3_1 = null ; Token lv_discriminator_3_2 = null ; Token otherlv_4 = null ; Token lv_sernum_5_0 = null ; enterRule ( ) ; try { { int alt183 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt183 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt183 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt183 = <NUM_LIT:3> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt183 ) { case <NUM_LIT:1> : { { otherlv_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_99_in_rulePojoEntityModifier221682 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_0 , grammarAccess . getPojoEntityModifier2Access ( ) . getExtendsKeyword_0_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoEntityModifier2Rule ( ) ) ; } } otherlv_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojoEntityModifier221702 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getPojoEntityModifier2Access ( ) . getSuperTypePojoEntityCrossReference_0_1_0 ( ) ) ; } } } } } break ; case <NUM_LIT:2> : { { otherlv_2 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_102_in_rulePojoEntityModifier221722 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_2 , grammarAccess . getPojoEntityModifier2Access ( ) . getDiscriminatorKeyword_1_0 ( ) ) ; } { { int alt182 = <NUM_LIT:2> ; int LA182_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA182_0 == RULE_IDENT ) ) { alt182 = <NUM_LIT:1> ; } else if ( ( LA182_0 == RULE_NUMBER ) ) { alt182 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt182 ) { case <NUM_LIT:1> : { lv_discriminator_3_1 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojoEntityModifier221741 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_discriminator_3_1 , grammarAccess . getPojoEntityModifier2Access ( ) . getDiscriminatorIDENTTerminalRuleCall_1_1_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoEntityModifier2Rule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_discriminator_3_1 , "<STR_LIT>" ) ; } } break ; case <NUM_LIT:2> : { lv_discriminator_3_2 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rulePojoEntityModifier221761 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_discriminator_3_2 , grammarAccess . getPojoEntityModifier2Access ( ) . getDiscriminatorNUMBERTerminalRuleCall_1_1_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoEntityModifier2Rule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_discriminator_3_2 , "<STR_LIT>" ) ; } } break ; } } } } } break ; case <NUM_LIT:3> : { { otherlv_4 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_103_in_rulePojoEntityModifier221789 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_4 , grammarAccess . getPojoEntityModifier2Access ( ) . getSerializableKeyword_2_0 ( ) ) ; } { { lv_sernum_5_0 = ( Token ) match ( input , RULE_NUMBER , FOLLOW_RULE_NUMBER_in_rulePojoEntityModifier221806 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_sernum_5_0 , grammarAccess . getPojoEntityModifier2Access ( ) . getSernumNUMBERTerminalRuleCall_2_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoEntityModifier2Rule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_sernum_5_0 , "<STR_LIT>" ) ; } } } } } break ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRulePojoEntity ( ) throws RecognitionException { EObject current = null ; EObject iv_rulePojoEntity = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoEntityRule ( ) ) ; } pushFollow ( FOLLOW_rulePojoEntity_in_entryRulePojoEntity21854 ) ; iv_rulePojoEntity = rulePojoEntity ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_rulePojoEntity ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoEntity21864 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject rulePojoEntity ( ) throws RecognitionException { EObject current = null ; Token otherlv_1 = null ; Token lv_name_2_0 = null ; Token this_LBRACE_4 = null ; Token this_RBRACE_6 = null ; EObject lv_modifiers1_0_0 = null ; EObject lv_modifiers2_3_0 = null ; EObject lv_features_5_0 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { loop184 : do { int alt184 = <NUM_LIT:2> ; int LA184_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA184_0 >= <NUM_LIT:100> && LA184_0 <= <NUM_LIT> ) ) ) { alt184 = <NUM_LIT:1> ; } switch ( alt184 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoEntityAccess ( ) . getModifiers1PojoEntityModifier1ParserRuleCall_0_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoEntityModifier1_in_rulePojoEntity21914 ) ; lv_modifiers1_0_0 = rulePojoEntityModifier1 ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojoEntityRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_modifiers1_0_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } break ; default : break loop184 ; } } while ( true ) ; otherlv_1 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_74_in_rulePojoEntity21927 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_1 , grammarAccess . getPojoEntityAccess ( ) . getPojoKeyword_1 ( ) ) ; } { { lv_name_2_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojoEntity21944 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_2_0 , grammarAccess . getPojoEntityAccess ( ) . getNameIDENTTerminalRuleCall_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoEntityRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_2_0 , "<STR_LIT>" ) ; } } } loop185 : do { int alt185 = <NUM_LIT:2> ; int LA185_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA185_0 == <NUM_LIT> || ( LA185_0 >= <NUM_LIT> && LA185_0 <= <NUM_LIT> ) ) ) { alt185 = <NUM_LIT:1> ; } switch ( alt185 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoEntityAccess ( ) . getModifiers2PojoEntityModifier2ParserRuleCall_3_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoEntityModifier2_in_rulePojoEntity21970 ) ; lv_modifiers2_3_0 = rulePojoEntityModifier2 ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojoEntityRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_modifiers2_3_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } break ; default : break loop185 ; } } while ( true ) ; this_LBRACE_4 = ( Token ) match ( input , RULE_LBRACE , FOLLOW_RULE_LBRACE_in_rulePojoEntity21982 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LBRACE_4 , grammarAccess . getPojoEntityAccess ( ) . getLBRACETerminalRuleCall_4 ( ) ) ; } loop186 : do { int alt186 = <NUM_LIT:2> ; int LA186_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA186_0 == RULE_IDENT ) ) { alt186 = <NUM_LIT:1> ; } switch ( alt186 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoEntityAccess ( ) . getFeaturesPojoPropertyParserRuleCall_5_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoProperty_in_rulePojoEntity22002 ) ; lv_features_5_0 = rulePojoProperty ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojoEntityRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_features_5_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } break ; default : break loop186 ; } } while ( true ) ; this_RBRACE_6 = ( Token ) match ( input , RULE_RBRACE , FOLLOW_RULE_RBRACE_in_rulePojoEntity22014 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_RBRACE_6 , grammarAccess . getPojoEntityAccess ( ) . getRBRACETerminalRuleCall_6 ( ) ) ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject entryRulePojoPropertyModifier ( ) throws RecognitionException { EObject current = null ; EObject iv_rulePojoPropertyModifier = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoPropertyModifierRule ( ) ) ; } pushFollow ( FOLLOW_rulePojoPropertyModifier_in_entryRulePojoPropertyModifier22053 ) ; iv_rulePojoPropertyModifier = rulePojoPropertyModifier ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_rulePojoPropertyModifier ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoPropertyModifier22063 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject rulePojoPropertyModifier ( ) throws RecognitionException { EObject current = null ; Token lv_required_0_0 = null ; Token lv_discriminator_1_0 = null ; Token lv_primaryKey_2_0 = null ; enterRule ( ) ; try { { int alt187 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt187 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt187 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt187 = <NUM_LIT:3> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt187 ) { case <NUM_LIT:1> : { { { lv_required_0_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_104_in_rulePojoPropertyModifier22106 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_required_0_0 , grammarAccess . getPojoPropertyModifierAccess ( ) . getRequiredRequiredKeyword_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyModifierRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , true , "<STR_LIT>" ) ; } } } } break ; case <NUM_LIT:2> : { { { lv_discriminator_1_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_102_in_rulePojoPropertyModifier22143 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_discriminator_1_0 , grammarAccess . getPojoPropertyModifierAccess ( ) . getDiscriminatorDiscriminatorKeyword_1_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyModifierRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , true , "<STR_LIT>" ) ; } } } } break ; case <NUM_LIT:3> : { { { lv_primaryKey_2_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_105_in_rulePojoPropertyModifier22180 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_primaryKey_2_0 , grammarAccess . getPojoPropertyModifierAccess ( ) . getPrimaryKeyPrimaryKeyKeyword_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyModifierRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , true , "<STR_LIT>" ) ; } } } } break ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final EObject entryRulePojoProperty ( ) throws RecognitionException { EObject current = null ; EObject iv_rulePojoProperty = null ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoPropertyRule ( ) ) ; } pushFollow ( FOLLOW_rulePojoProperty_in_entryRulePojoProperty22235 ) ; iv_rulePojoProperty = rulePojoProperty ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_rulePojoProperty ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoProperty22245 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final EObject rulePojoProperty ( ) throws RecognitionException { EObject current = null ; Token lv_name_0_0 = null ; Token lv_native_1_1 = null ; Token lv_native_1_2 = null ; Token lv_native_1_3 = null ; Token lv_native_1_4 = null ; Token lv_native_1_5 = null ; Token lv_native_1_6 = null ; Token lv_native_1_7 = null ; Token lv_native_1_8 = null ; Token this_COLON_2 = null ; Token this_COLON_3 = null ; Token this_COLON_4 = null ; Token otherlv_5 = null ; Token otherlv_6 = null ; Token this_LESS_THAN_8 = null ; Token this_COLON_9 = null ; Token otherlv_10 = null ; Token this_MORE_THAN_12 = null ; Token lv_array_13_0 = null ; EObject lv_modifiers_14_0 = null ; enterRule ( ) ; HiddenTokens myHiddenTokenState = ( ( XtextTokenStream ) input ) . setHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" ) ; try { { { { { lv_name_0_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojoProperty22291 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_name_0_0 , grammarAccess . getPojoPropertyAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT:name>" , lv_name_0_0 , "<STR_LIT>" ) ; } } } int alt194 = <NUM_LIT:2> ; int LA194_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA194_0 >= <NUM_LIT> && LA194_0 <= <NUM_LIT> ) ) ) { alt194 = <NUM_LIT:1> ; } else if ( ( LA194_0 == RULE_COLON ) ) { alt194 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt194 ) { case <NUM_LIT:1> : { { { int alt188 = <NUM_LIT:8> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt188 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt188 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt188 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt188 = <NUM_LIT:4> ; } break ; case <NUM_LIT> : { alt188 = <NUM_LIT:5> ; } break ; case <NUM_LIT> : { alt188 = <NUM_LIT:6> ; } break ; case <NUM_LIT> : { alt188 = <NUM_LIT:7> ; } break ; case <NUM_LIT> : { alt188 = <NUM_LIT:8> ; } break ; default : if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt188 ) { case <NUM_LIT:1> : { lv_native_1_1 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_86_in_rulePojoProperty22317 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_1_1 , grammarAccess . getPojoPropertyAccess ( ) . getNative_charKeyword_1_0_0_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_1_1 , null ) ; } } break ; case <NUM_LIT:2> : { lv_native_1_2 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_87_in_rulePojoProperty22346 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_1_2 , grammarAccess . getPojoPropertyAccess ( ) . getNative_byteKeyword_1_0_0_1 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_1_2 , null ) ; } } break ; case <NUM_LIT:3> : { lv_native_1_3 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_88_in_rulePojoProperty22375 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_1_3 , grammarAccess . getPojoPropertyAccess ( ) . getNative_shortKeyword_1_0_0_2 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_1_3 , null ) ; } } break ; case <NUM_LIT:4> : { lv_native_1_4 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_89_in_rulePojoProperty22404 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_1_4 , grammarAccess . getPojoPropertyAccess ( ) . getNative_intKeyword_1_0_0_3 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_1_4 , null ) ; } } break ; case <NUM_LIT:5> : { lv_native_1_5 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_90_in_rulePojoProperty22433 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_1_5 , grammarAccess . getPojoPropertyAccess ( ) . getNative_longKeyword_1_0_0_4 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_1_5 , null ) ; } } break ; case <NUM_LIT:6> : { lv_native_1_6 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_91_in_rulePojoProperty22462 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_1_6 , grammarAccess . getPojoPropertyAccess ( ) . getNative_floatKeyword_1_0_0_5 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_1_6 , null ) ; } } break ; case <NUM_LIT:7> : { lv_native_1_7 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_92_in_rulePojoProperty22491 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_1_7 , grammarAccess . getPojoPropertyAccess ( ) . getNative_doubleKeyword_1_0_0_6 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_1_7 , null ) ; } } break ; case <NUM_LIT:8> : { lv_native_1_8 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_93_in_rulePojoProperty22520 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_native_1_8 , grammarAccess . getPojoPropertyAccess ( ) . getNative_booleanKeyword_1_0_0_7 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , lv_native_1_8 , null ) ; } } break ; } } } } break ; case <NUM_LIT:2> : { { { this_COLON_2 = ( Token ) match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rulePojoProperty22555 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COLON_2 , grammarAccess . getPojoPropertyAccess ( ) . getCOLONTerminalRuleCall_1_1_0_0 ( ) ) ; } int alt191 = <NUM_LIT:2> ; int LA191_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA191_0 == RULE_COLON ) ) { alt191 = <NUM_LIT:1> ; } else if ( ( LA191_0 == RULE_IDENT || LA191_0 == RULE_IDENT_DOT ) ) { alt191 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt191 ) { case <NUM_LIT:1> : { { this_COLON_3 = ( Token ) match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rulePojoProperty22567 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COLON_3 , grammarAccess . getPojoPropertyAccess ( ) . getCOLONTerminalRuleCall_1_1_0_1_0_0 ( ) ) ; } int alt190 = <NUM_LIT:2> ; int LA190_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA190_0 == RULE_COLON ) ) { alt190 = <NUM_LIT:1> ; } else if ( ( LA190_0 == RULE_IDENT ) ) { alt190 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt190 ) { case <NUM_LIT:1> : { { this_COLON_4 = ( Token ) match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rulePojoProperty22579 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COLON_4 , grammarAccess . getPojoPropertyAccess ( ) . getCOLONTerminalRuleCall_1_1_0_1_0_1_0_0 ( ) ) ; } loop189 : do { int alt189 = <NUM_LIT:2> ; int LA189_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA189_0 == RULE_IDENT ) ) { int LA189_2 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA189_2 == EOF || LA189_2 == RULE_IDENT || LA189_2 == RULE_RBRACE || LA189_2 == RULE_LESS_THAN || LA189_2 == <NUM_LIT> || LA189_2 == <NUM_LIT> || ( LA189_2 >= <NUM_LIT> && LA189_2 <= <NUM_LIT> ) ) ) { alt189 = <NUM_LIT:1> ; } } switch ( alt189 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyRule ( ) ) ; } } otherlv_5 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojoProperty22598 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_5 , grammarAccess . getPojoPropertyAccess ( ) . getAttrsPojoPropertyCrossReference_1_1_0_1_0_1_0_1_0 ( ) ) ; } } } break ; default : break loop189 ; } } while ( true ) ; } } break ; case <NUM_LIT:2> : { { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyRule ( ) ) ; } } otherlv_6 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojoProperty22626 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_6 , grammarAccess . getPojoPropertyAccess ( ) . getRefPojoEntityCrossReference_1_1_0_1_0_1_1_0 ( ) ) ; } } } } break ; } } } break ; case <NUM_LIT:2> : { { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyRule ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoPropertyAccess ( ) . getTypeJvmTypeCrossReference_1_1_0_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_rulePojoProperty22657 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { afterParserOrEnumRuleCall ( ) ; } } } } break ; } } int alt193 = <NUM_LIT:2> ; int LA193_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA193_0 == RULE_LESS_THAN ) ) { alt193 = <NUM_LIT:1> ; } switch ( alt193 ) { case <NUM_LIT:1> : { this_LESS_THAN_8 = ( Token ) match ( input , RULE_LESS_THAN , FOLLOW_RULE_LESS_THAN_in_rulePojoProperty22671 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_LESS_THAN_8 , grammarAccess . getPojoPropertyAccess ( ) . getLESS_THANTerminalRuleCall_1_1_1_0 ( ) ) ; } int alt192 = <NUM_LIT:2> ; int LA192_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA192_0 == RULE_COLON ) ) { alt192 = <NUM_LIT:1> ; } else if ( ( LA192_0 == RULE_IDENT || LA192_0 == RULE_IDENT_DOT ) ) { alt192 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt192 ) { case <NUM_LIT:1> : { { this_COLON_9 = ( Token ) match ( input , RULE_COLON , FOLLOW_RULE_COLON_in_rulePojoProperty22683 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_COLON_9 , grammarAccess . getPojoPropertyAccess ( ) . getCOLONTerminalRuleCall_1_1_1_1_0_0 ( ) ) ; } { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyRule ( ) ) ; } } otherlv_10 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rulePojoProperty22702 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( otherlv_10 , grammarAccess . getPojoPropertyAccess ( ) . getGrefPojoEntityCrossReference_1_1_1_1_0_1_0 ( ) ) ; } } } } } break ; case <NUM_LIT:2> : { { { if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyRule ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoPropertyAccess ( ) . getGtypeJvmTypeCrossReference_1_1_1_1_1_0 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_rulePojoProperty22732 ) ; ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { afterParserOrEnumRuleCall ( ) ; } } } } break ; } this_MORE_THAN_12 = ( Token ) match ( input , RULE_MORE_THAN , FOLLOW_RULE_MORE_THAN_in_rulePojoProperty22744 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_MORE_THAN_12 , grammarAccess . getPojoPropertyAccess ( ) . getMORE_THANTerminalRuleCall_1_1_1_2 ( ) ) ; } } break ; } } } break ; } int alt195 = <NUM_LIT:2> ; int LA195_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA195_0 == <NUM_LIT> ) ) { alt195 = <NUM_LIT:1> ; } switch ( alt195 ) { case <NUM_LIT:1> : { { lv_array_13_0 = ( Token ) match ( input , <NUM_LIT> , FOLLOW_94_in_rulePojoProperty22765 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( lv_array_13_0 , grammarAccess . getPojoPropertyAccess ( ) . getArrayLeftSquareBracketRightSquareBracketKeyword_2_0 ( ) ) ; } if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElement ( grammarAccess . getPojoPropertyRule ( ) ) ; } setWithLastConsumed ( current , "<STR_LIT>" , true , "<STR_LIT:[]>" ) ; } } } break ; } loop196 : do { int alt196 = <NUM_LIT:2> ; int LA196_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA196_0 == <NUM_LIT> || ( LA196_0 >= <NUM_LIT> && LA196_0 <= <NUM_LIT> ) ) ) { alt196 = <NUM_LIT:1> ; } switch ( alt196 ) { case <NUM_LIT:1> : { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getPojoPropertyAccess ( ) . getModifiersPojoPropertyModifierParserRuleCall_3_0 ( ) ) ; } pushFollow ( FOLLOW_rulePojoPropertyModifier_in_rulePojoProperty22800 ) ; lv_modifiers_14_0 = rulePojoPropertyModifier ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { if ( current == null ) { current = createModelElementForParent ( grammarAccess . getPojoPropertyRule ( ) ) ; } add ( current , "<STR_LIT>" , lv_modifiers_14_0 , "<STR_LIT>" ) ; afterParserOrEnumRuleCall ( ) ; } } } break ; default : break loop196 ; } } while ( true ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { myHiddenTokenState . restore ( ) ; } return current ; } public final String entryRuleQualifiedNameWithWildcard ( ) throws RecognitionException { String current = null ; AntlrDatatypeRuleToken iv_ruleQualifiedNameWithWildcard = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getQualifiedNameWithWildcardRule ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedNameWithWildcard_in_entryRuleQualifiedNameWithWildcard22842 ) ; iv_ruleQualifiedNameWithWildcard = ruleQualifiedNameWithWildcard ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleQualifiedNameWithWildcard . getText ( ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleQualifiedNameWithWildcard22853 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final AntlrDatatypeRuleToken ruleQualifiedNameWithWildcard ( ) throws RecognitionException { AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken ( ) ; Token kw = null ; AntlrDatatypeRuleToken this_QualifiedName_0 = null ; enterRule ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getQualifiedNameWithWildcardAccess ( ) . getQualifiedNameParserRuleCall_0 ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_ruleQualifiedNameWithWildcard22900 ) ; this_QualifiedName_0 = ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_QualifiedName_0 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { afterParserOrEnumRuleCall ( ) ; } int alt197 = <NUM_LIT:2> ; int LA197_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA197_0 == <NUM_LIT> ) ) { alt197 = <NUM_LIT:1> ; } switch ( alt197 ) { case <NUM_LIT:1> : { kw = ( Token ) match ( input , <NUM_LIT> , FOLLOW_106_in_ruleQualifiedNameWithWildcard22919 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( kw ) ; newLeafNode ( kw , grammarAccess . getQualifiedNameWithWildcardAccess ( ) . getFullStopAsteriskKeyword_1 ( ) ) ; } } break ; } } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final String entryRuleQualifiedName ( ) throws RecognitionException { String current = null ; AntlrDatatypeRuleToken iv_ruleQualifiedName = null ; try { { if ( state . backtracking == <NUM_LIT:0> ) { newCompositeNode ( grammarAccess . getQualifiedNameRule ( ) ) ; } pushFollow ( FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName22962 ) ; iv_ruleQualifiedName = ruleQualifiedName ( ) ; state . _fsp -- ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current = iv_ruleQualifiedName . getText ( ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleQualifiedName22973 ) ; if ( state . failed ) return current ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final AntlrDatatypeRuleToken ruleQualifiedName ( ) throws RecognitionException { AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken ( ) ; Token this_IDENT_0 = null ; Token this_IDENT_DOT_1 = null ; enterRule ( ) ; try { { int alt198 = <NUM_LIT:2> ; int LA198_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA198_0 == RULE_IDENT ) ) { alt198 = <NUM_LIT:1> ; } else if ( ( LA198_0 == RULE_IDENT_DOT ) ) { alt198 = <NUM_LIT:2> ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return current ; } NoViableAltException nvae = new NoViableAltException ( "<STR_LIT>" , <NUM_LIT> , <NUM_LIT:0> , input ) ; throw nvae ; } switch ( alt198 ) { case <NUM_LIT:1> : { this_IDENT_0 = ( Token ) match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_ruleQualifiedName23013 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_0 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_0 , grammarAccess . getQualifiedNameAccess ( ) . getIDENTTerminalRuleCall_0 ( ) ) ; } } break ; case <NUM_LIT:2> : { this_IDENT_DOT_1 = ( Token ) match ( input , RULE_IDENT_DOT , FOLLOW_RULE_IDENT_DOT_in_ruleQualifiedName23039 ) ; if ( state . failed ) return current ; if ( state . backtracking == <NUM_LIT:0> ) { current . merge ( this_IDENT_DOT_1 ) ; } if ( state . backtracking == <NUM_LIT:0> ) { newLeafNode ( this_IDENT_DOT_1 , grammarAccess . getQualifiedNameAccess ( ) . getIDENT_DOTTerminalRuleCall_1 ( ) ) ; } } break ; } } if ( state . backtracking == <NUM_LIT:0> ) { leaveRule ( ) ; } } catch ( RecognitionException re ) { recover ( input , re ) ; appendSkippedTokens ( ) ; } finally { } return current ; } public final void synpred1_InternalProcessorDsl_fragment ( ) throws RecognitionException { { if ( ( input . LA ( <NUM_LIT:1> ) >= RULE_WS && input . LA ( <NUM_LIT:1> ) <= RULE_RPAREN ) || ( input . LA ( <NUM_LIT:1> ) >= RULE_REST && input . LA ( <NUM_LIT:1> ) <= RULE_OPTION_TYPE ) ) { input . consume ( ) ; state . errorRecovery = false ; state . failed = false ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } MismatchedSetException mse = new MismatchedSetException ( null , input ) ; throw mse ; } } } public final void synpred2_InternalProcessorDsl_fragment ( ) throws RecognitionException { { if ( ( input . LA ( <NUM_LIT:1> ) >= RULE_WS && input . LA ( <NUM_LIT:1> ) <= RULE_RPAREN ) || ( input . LA ( <NUM_LIT:1> ) >= RULE_REST && input . LA ( <NUM_LIT:1> ) <= RULE_IDENT_DOT ) || ( input . LA ( <NUM_LIT:1> ) >= RULE_COMMA && input . LA ( <NUM_LIT:1> ) <= RULE_PLUS ) || ( input . LA ( <NUM_LIT:1> ) >= RULE_RBRACE && input . LA ( <NUM_LIT:1> ) <= RULE_HASH ) || ( input . LA ( <NUM_LIT:1> ) >= RULE_CARET && input . LA ( <NUM_LIT:1> ) <= RULE_MORE_THAN ) || ( input . LA ( <NUM_LIT:1> ) >= RULE_AND && input . LA ( <NUM_LIT:1> ) <= RULE_OPTION_TYPE ) ) { input . consume ( ) ; state . errorRecovery = false ; state . failed = false ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } MismatchedSetException mse = new MismatchedSetException ( null , input ) ; throw mse ; } } } public final void synpred3_InternalProcessorDsl_fragment ( ) throws RecognitionException { { if ( ( input . LA ( <NUM_LIT:1> ) >= RULE_WS && input . LA ( <NUM_LIT:1> ) <= RULE_IDENT_DOT ) || ( input . LA ( <NUM_LIT:1> ) >= RULE_COMMA && input . LA ( <NUM_LIT:1> ) <= RULE_PLUS ) || ( input . LA ( <NUM_LIT:1> ) >= RULE_QUESTI && input . LA ( <NUM_LIT:1> ) <= RULE_BAND ) || input . LA ( <NUM_LIT:1> ) == RULE_HASH || ( input . LA ( <NUM_LIT:1> ) >= RULE_CARET && input . LA ( <NUM_LIT:1> ) <= RULE_MORE_THAN ) || ( input . LA ( <NUM_LIT:1> ) >= RULE_AND && input . LA ( <NUM_LIT:1> ) <= RULE_OPTION_TYPE ) ) { input . consume ( ) ; state . errorRecovery = false ; state . failed = false ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } MismatchedSetException mse = new MismatchedSetException ( null , input ) ; throw mse ; } } } public final void synpred4_InternalProcessorDsl_fragment ( ) throws RecognitionException { { if ( ( input . LA ( <NUM_LIT:1> ) >= RULE_WS && input . LA ( <NUM_LIT:1> ) <= RULE_IDENT_DOT ) || ( input . LA ( <NUM_LIT:1> ) >= RULE_COMMA && input . LA ( <NUM_LIT:1> ) <= RULE_LBRACE ) || ( input . LA ( <NUM_LIT:1> ) >= RULE_QUESTI && input . LA ( <NUM_LIT:1> ) <= RULE_MORE_THAN ) || ( input . LA ( <NUM_LIT:1> ) >= RULE_AND && input . LA ( <NUM_LIT:1> ) <= RULE_OPTION_TYPE ) ) { input . consume ( ) ; state . errorRecovery = false ; state . failed = false ; } else { if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return ; } MismatchedSetException mse = new MismatchedSetException ( null , input ) ; throw mse ; } } } public final void synpred5_InternalProcessorDsl_fragment ( ) throws RecognitionException { { match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_synpred5_InternalProcessorDsl17277 ) ; if ( state . failed ) return ; } } public final void synpred6_InternalProcessorDsl_fragment ( ) throws RecognitionException { { { match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_synpred6_InternalProcessorDsl17296 ) ; if ( state . failed ) return ; } } } public final void synpred7_InternalProcessorDsl_fragment ( ) throws RecognitionException { { match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_synpred7_InternalProcessorDsl17329 ) ; if ( state . failed ) return ; } } public final void synpred8_InternalProcessorDsl_fragment ( ) throws RecognitionException { { match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_synpred8_InternalProcessorDsl17564 ) ; if ( state . failed ) return ; } } public final void synpred9_InternalProcessorDsl_fragment ( ) throws RecognitionException { { { match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_synpred9_InternalProcessorDsl17583 ) ; if ( state . failed ) return ; } } } public final void synpred10_InternalProcessorDsl_fragment ( ) throws RecognitionException { { match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_synpred10_InternalProcessorDsl17616 ) ; if ( state . failed ) return ; } } public final void synpred11_InternalProcessorDsl_fragment ( ) throws RecognitionException { { match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_synpred11_InternalProcessorDsl17939 ) ; if ( state . failed ) return ; } } public final void synpred12_InternalProcessorDsl_fragment ( ) throws RecognitionException { { { match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_synpred12_InternalProcessorDsl17958 ) ; if ( state . failed ) return ; } } } public final void synpred13_InternalProcessorDsl_fragment ( ) throws RecognitionException { { match ( input , RULE_CARET , FOLLOW_RULE_CARET_in_synpred13_InternalProcessorDsl17991 ) ; if ( state . failed ) return ; } } public final boolean synpred8_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred8_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred9_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred9_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred1_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred1_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred10_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred10_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred12_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred12_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred4_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred4_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred7_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred7_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred3_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred3_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred13_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred13_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred2_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred2_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred6_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred6_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred11_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred11_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } public final boolean synpred5_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred5_InternalProcessorDsl_fragment ( ) ; } catch ( RecognitionException re ) { System . err . println ( "<STR_LIT>" + re ) ; } boolean success = ! state . failed ; input . rewind ( start ) ; state . backtracking -- ; state . failed = false ; return success ; } protected DFA12 dfa12 = new DFA12 ( this ) ; protected DFA89 dfa89 = new DFA89 ( this ) ; protected DFA100 dfa100 = new DFA100 ( this ) ; protected DFA112 dfa112 = new DFA112 ( this ) ; protected DFA132 dfa132 = new DFA132 ( this ) ; protected DFA159 dfa159 = new DFA159 ( this ) ; static final String DFA12_eotS = "<STR_LIT>" ; static final String DFA12_eofS = "<STR_LIT>" ; static final String DFA12_minS = "<STR_LIT>" ; static final String DFA12_maxS = "<STR_LIT>" ; static final String DFA12_acceptS = "<STR_LIT>" + "<STR_LIT>" ; static final String DFA12_specialS = "<STR_LIT>" ; static final String [ ] DFA12_transitionS = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; static final short [ ] DFA12_eot = DFA . unpackEncodedString ( DFA12_eotS ) ; static final short [ ] DFA12_eof = DFA . unpackEncodedString ( DFA12_eofS ) ; static final char [ ] DFA12_min = DFA . unpackEncodedStringToUnsignedChars ( DFA12_minS ) ; static final char [ ] DFA12_max = DFA . unpackEncodedStringToUnsignedChars ( DFA12_maxS ) ; static final short [ ] DFA12_accept = DFA . unpackEncodedString ( DFA12_acceptS ) ; static final short [ ] DFA12_special = DFA . unpackEncodedString ( DFA12_specialS ) ; static final short [ ] [ ] DFA12_transition ; static { int numStates = DFA12_transitionS . length ; DFA12_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA12_transition [ i ] = DFA . unpackEncodedString ( DFA12_transitionS [ i ] ) ; } } class DFA12 extends DFA { public DFA12 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT:12> ; this . eot = DFA12_eot ; this . eof = DFA12_eof ; this . min = DFA12_min ; this . max = DFA12_max ; this . accept = DFA12_accept ; this . special = DFA12_special ; this . transition = DFA12_transition ; } public String getDescription ( ) { return "<STR_LIT>" ; } } static final String DFA89_eotS = "<STR_LIT>" ; static final String DFA89_eofS = "<STR_LIT>" ; static final String DFA89_minS = "<STR_LIT>" ; static final String DFA89_maxS = "<STR_LIT>" ; static final String DFA89_acceptS = "<STR_LIT>" ; static final String DFA89_specialS = "<STR_LIT>" ; static final String [ ] DFA89_transitionS = { "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; static final short [ ] DFA89_eot = DFA . unpackEncodedString ( DFA89_eotS ) ; static final short [ ] DFA89_eof = DFA . unpackEncodedString ( DFA89_eofS ) ; static final char [ ] DFA89_min = DFA . unpackEncodedStringToUnsignedChars ( DFA89_minS ) ; static final char [ ] DFA89_max = DFA . unpackEncodedStringToUnsignedChars ( DFA89_maxS ) ; static final short [ ] DFA89_accept = DFA . unpackEncodedString ( DFA89_acceptS ) ; static final short [ ] DFA89_special = DFA . unpackEncodedString ( DFA89_specialS ) ; static final short [ ] [ ] DFA89_transition ; static { int numStates = DFA89_transitionS . length ; DFA89_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA89_transition [ i ] = DFA . unpackEncodedString ( DFA89_transitionS [ i ] ) ; } } class DFA89 extends DFA { public DFA89 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT> ; this . eot = DFA89_eot ; this . eof = DFA89_eof ; this . min = DFA89_min ; this . max = DFA89_max ; this . accept = DFA89_accept ; this . special = DFA89_special ; this . transition = DFA89_transition ; } public String getDescription ( ) { return "<STR_LIT>" ; } public int specialStateTransition ( int s , IntStream _input ) throws NoViableAltException { TokenStream input = ( TokenStream ) _input ; int _s = s ; switch ( s ) { case <NUM_LIT:0> : int LA89_0 = input . LA ( <NUM_LIT:1> ) ; int index89_0 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( LA89_0 == EOF || LA89_0 == RULE_SEMICOLON ) ) { s = <NUM_LIT:1> ; } else if ( ( LA89_0 == RULE_REST ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:2> ; } else if ( ( LA89_0 == RULE_IDENT_DOT ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:3> ; } else if ( ( LA89_0 == RULE_IDENT ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:4> ; } else if ( ( LA89_0 == RULE_NUMBER ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:5> ; } else if ( ( LA89_0 == RULE_WS ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:6> ; } else if ( ( LA89_0 == RULE_COLON ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:7> ; } else if ( ( LA89_0 == RULE_STRING ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:8> ; } else if ( ( LA89_0 == RULE_COMMA ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:9> ; } else if ( ( LA89_0 == RULE_MINUS ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:10> ; } else if ( ( LA89_0 == RULE_PLUS ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:11> ; } else if ( ( LA89_0 == RULE_LPAREN ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:12> ; } else if ( ( LA89_0 == RULE_RPAREN ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( LA89_0 == RULE_LBRACE ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( LA89_0 == RULE_RBRACE ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:15> ; } else if ( ( LA89_0 == RULE_QUESTI ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:16> ; } else if ( ( LA89_0 == RULE_NOT ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( LA89_0 == RULE_BAND ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( LA89_0 == RULE_BOR ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( LA89_0 == RULE_HASH ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:20> ; } else if ( ( LA89_0 == RULE_AT ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( LA89_0 == RULE_CARET ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( LA89_0 == RULE_EQUALS ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( LA89_0 == RULE_LESS_THAN ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:24> ; } else if ( ( LA89_0 == RULE_MORE_THAN ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( LA89_0 == RULE_PERCENT ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( LA89_0 == RULE_AND ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( LA89_0 == RULE_OR ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( LA89_0 == RULE_ESC_CHAR ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( LA89_0 == RULE_ON_OFF ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:30> ; } else if ( ( LA89_0 == RULE_STATEMEN_TYPE ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( LA89_0 == RULE_MAPPING_TYPE ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:32> ; } else if ( ( LA89_0 == RULE_OPTION_TYPE ) && ( synpred1_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } input . seek ( index89_0 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; } if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return - <NUM_LIT:1> ; } NoViableAltException nvae = new NoViableAltException ( getDescription ( ) , <NUM_LIT> , _s , input ) ; error ( nvae ) ; throw nvae ; } } static final String DFA100_eotS = "<STR_LIT>" ; static final String DFA100_eofS = "<STR_LIT>" ; static final String DFA100_minS = "<STR_LIT>" ; static final String DFA100_maxS = "<STR_LIT>" ; static final String DFA100_acceptS = "<STR_LIT>" ; static final String DFA100_specialS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String [ ] DFA100_transitionS = { "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; static final short [ ] DFA100_eot = DFA . unpackEncodedString ( DFA100_eotS ) ; static final short [ ] DFA100_eof = DFA . unpackEncodedString ( DFA100_eofS ) ; static final char [ ] DFA100_min = DFA . unpackEncodedStringToUnsignedChars ( DFA100_minS ) ; static final char [ ] DFA100_max = DFA . unpackEncodedStringToUnsignedChars ( DFA100_maxS ) ; static final short [ ] DFA100_accept = DFA . unpackEncodedString ( DFA100_acceptS ) ; static final short [ ] DFA100_special = DFA . unpackEncodedString ( DFA100_specialS ) ; static final short [ ] [ ] DFA100_transition ; static { int numStates = DFA100_transitionS . length ; DFA100_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA100_transition [ i ] = DFA . unpackEncodedString ( DFA100_transitionS [ i ] ) ; } } class DFA100 extends DFA { public DFA100 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT:100> ; this . eot = DFA100_eot ; this . eof = DFA100_eof ; this . min = DFA100_min ; this . max = DFA100_max ; this . accept = DFA100_accept ; this . special = DFA100_special ; this . transition = DFA100_transition ; } public String getDescription ( ) { return "<STR_LIT>" ; } public int specialStateTransition ( int s , IntStream _input ) throws NoViableAltException { TokenStream input = ( TokenStream ) _input ; int _s = s ; switch ( s ) { case <NUM_LIT:0> : int LA100_24 = input . LA ( <NUM_LIT:1> ) ; int index100_24 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_24 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:1> : int LA100_3 = input . LA ( <NUM_LIT:1> ) ; int index100_3 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_3 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:2> : int LA100_14 = input . LA ( <NUM_LIT:1> ) ; int index100_14 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_14 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:3> : int LA100_20 = input . LA ( <NUM_LIT:1> ) ; int index100_20 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_20 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:4> : int LA100_16 = input . LA ( <NUM_LIT:1> ) ; int index100_16 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_16 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:5> : int LA100_18 = input . LA ( <NUM_LIT:1> ) ; int index100_18 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_18 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:6> : int LA100_12 = input . LA ( <NUM_LIT:1> ) ; int index100_12 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_12 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:7> : int LA100_22 = input . LA ( <NUM_LIT:1> ) ; int index100_22 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_22 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:8> : int LA100_25 = input . LA ( <NUM_LIT:1> ) ; int index100_25 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_25 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:9> : int LA100_7 = input . LA ( <NUM_LIT:1> ) ; int index100_7 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_7 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:10> : int LA100_27 = input . LA ( <NUM_LIT:1> ) ; int index100_27 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_27 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:11> : int LA100_5 = input . LA ( <NUM_LIT:1> ) ; int index100_5 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_5 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:12> : int LA100_10 = input . LA ( <NUM_LIT:1> ) ; int index100_10 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_10 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA100_13 = input . LA ( <NUM_LIT:1> ) ; int index100_13 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_13 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA100_19 = input . LA ( <NUM_LIT:1> ) ; int index100_19 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_19 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:15> : int LA100_4 = input . LA ( <NUM_LIT:1> ) ; int index100_4 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_4 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:16> : int LA100_15 = input . LA ( <NUM_LIT:1> ) ; int index100_15 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_15 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA100_17 = input . LA ( <NUM_LIT:1> ) ; int index100_17 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_17 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA100_2 = input . LA ( <NUM_LIT:1> ) ; int index100_2 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_2 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA100_11 = input . LA ( <NUM_LIT:1> ) ; int index100_11 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_11 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:20> : int LA100_21 = input . LA ( <NUM_LIT:1> ) ; int index100_21 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_21 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA100_6 = input . LA ( <NUM_LIT:1> ) ; int index100_6 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_6 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA100_9 = input . LA ( <NUM_LIT:1> ) ; int index100_9 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_9 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA100_23 = input . LA ( <NUM_LIT:1> ) ; int index100_23 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_23 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:24> : int LA100_28 = input . LA ( <NUM_LIT:1> ) ; int index100_28 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_28 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA100_8 = input . LA ( <NUM_LIT:1> ) ; int index100_8 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_8 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA100_26 = input . LA ( <NUM_LIT:1> ) ; int index100_26 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred2_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index100_26 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; } if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return - <NUM_LIT:1> ; } NoViableAltException nvae = new NoViableAltException ( getDescription ( ) , <NUM_LIT:100> , _s , input ) ; error ( nvae ) ; throw nvae ; } } static final String DFA112_eotS = "<STR_LIT>" ; static final String DFA112_eofS = "<STR_LIT>" ; static final String DFA112_minS = "<STR_LIT>" ; static final String DFA112_maxS = "<STR_LIT>" ; static final String DFA112_acceptS = "<STR_LIT>" ; static final String DFA112_specialS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String [ ] DFA112_transitionS = { "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; static final short [ ] DFA112_eot = DFA . unpackEncodedString ( DFA112_eotS ) ; static final short [ ] DFA112_eof = DFA . unpackEncodedString ( DFA112_eofS ) ; static final char [ ] DFA112_min = DFA . unpackEncodedStringToUnsignedChars ( DFA112_minS ) ; static final char [ ] DFA112_max = DFA . unpackEncodedStringToUnsignedChars ( DFA112_maxS ) ; static final short [ ] DFA112_accept = DFA . unpackEncodedString ( DFA112_acceptS ) ; static final short [ ] DFA112_special = DFA . unpackEncodedString ( DFA112_specialS ) ; static final short [ ] [ ] DFA112_transition ; static { int numStates = DFA112_transitionS . length ; DFA112_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA112_transition [ i ] = DFA . unpackEncodedString ( DFA112_transitionS [ i ] ) ; } } class DFA112 extends DFA { public DFA112 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT> ; this . eot = DFA112_eot ; this . eof = DFA112_eof ; this . min = DFA112_min ; this . max = DFA112_max ; this . accept = DFA112_accept ; this . special = DFA112_special ; this . transition = DFA112_transition ; } public String getDescription ( ) { return "<STR_LIT>" ; } public int specialStateTransition ( int s , IntStream _input ) throws NoViableAltException { TokenStream input = ( TokenStream ) _input ; int _s = s ; switch ( s ) { case <NUM_LIT:0> : int LA112_16 = input . LA ( <NUM_LIT:1> ) ; int index112_16 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_16 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:1> : int LA112_10 = input . LA ( <NUM_LIT:1> ) ; int index112_10 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_10 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:2> : int LA112_21 = input . LA ( <NUM_LIT:1> ) ; int index112_21 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_21 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:3> : int LA112_12 = input . LA ( <NUM_LIT:1> ) ; int index112_12 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_12 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:4> : int LA112_23 = input . LA ( <NUM_LIT:1> ) ; int index112_23 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_23 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:5> : int LA112_14 = input . LA ( <NUM_LIT:1> ) ; int index112_14 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_14 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:6> : int LA112_7 = input . LA ( <NUM_LIT:1> ) ; int index112_7 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_7 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:7> : int LA112_2 = input . LA ( <NUM_LIT:1> ) ; int index112_2 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_2 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:8> : int LA112_17 = input . LA ( <NUM_LIT:1> ) ; int index112_17 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_17 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:9> : int LA112_4 = input . LA ( <NUM_LIT:1> ) ; int index112_4 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_4 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:10> : int LA112_19 = input . LA ( <NUM_LIT:1> ) ; int index112_19 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_19 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:11> : int LA112_26 = input . LA ( <NUM_LIT:1> ) ; int index112_26 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_26 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:12> : int LA112_24 = input . LA ( <NUM_LIT:1> ) ; int index112_24 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_24 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA112_9 = input . LA ( <NUM_LIT:1> ) ; int index112_9 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_9 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA112_5 = input . LA ( <NUM_LIT:1> ) ; int index112_5 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_5 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:15> : int LA112_15 = input . LA ( <NUM_LIT:1> ) ; int index112_15 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_15 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:16> : int LA112_22 = input . LA ( <NUM_LIT:1> ) ; int index112_22 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_22 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA112_13 = input . LA ( <NUM_LIT:1> ) ; int index112_13 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_13 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA112_27 = input . LA ( <NUM_LIT:1> ) ; int index112_27 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_27 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA112_11 = input . LA ( <NUM_LIT:1> ) ; int index112_11 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_11 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:20> : int LA112_18 = input . LA ( <NUM_LIT:1> ) ; int index112_18 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_18 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA112_8 = input . LA ( <NUM_LIT:1> ) ; int index112_8 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_8 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA112_20 = input . LA ( <NUM_LIT:1> ) ; int index112_20 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_20 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA112_25 = input . LA ( <NUM_LIT:1> ) ; int index112_25 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_25 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:24> : int LA112_6 = input . LA ( <NUM_LIT:1> ) ; int index112_6 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_6 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA112_3 = input . LA ( <NUM_LIT:1> ) ; int index112_3 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred3_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index112_3 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; } if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return - <NUM_LIT:1> ; } NoViableAltException nvae = new NoViableAltException ( getDescription ( ) , <NUM_LIT> , _s , input ) ; error ( nvae ) ; throw nvae ; } } static final String DFA132_eotS = "<STR_LIT>" ; static final String DFA132_eofS = "<STR_LIT>" ; static final String DFA132_minS = "<STR_LIT>" ; static final String DFA132_maxS = "<STR_LIT>" ; static final String DFA132_acceptS = "<STR_LIT>" ; static final String DFA132_specialS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String [ ] DFA132_transitionS = { "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; static final short [ ] DFA132_eot = DFA . unpackEncodedString ( DFA132_eotS ) ; static final short [ ] DFA132_eof = DFA . unpackEncodedString ( DFA132_eofS ) ; static final char [ ] DFA132_min = DFA . unpackEncodedStringToUnsignedChars ( DFA132_minS ) ; static final char [ ] DFA132_max = DFA . unpackEncodedStringToUnsignedChars ( DFA132_maxS ) ; static final short [ ] DFA132_accept = DFA . unpackEncodedString ( DFA132_acceptS ) ; static final short [ ] DFA132_special = DFA . unpackEncodedString ( DFA132_specialS ) ; static final short [ ] [ ] DFA132_transition ; static { int numStates = DFA132_transitionS . length ; DFA132_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA132_transition [ i ] = DFA . unpackEncodedString ( DFA132_transitionS [ i ] ) ; } } class DFA132 extends DFA { public DFA132 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT> ; this . eot = DFA132_eot ; this . eof = DFA132_eof ; this . min = DFA132_min ; this . max = DFA132_max ; this . accept = DFA132_accept ; this . special = DFA132_special ; this . transition = DFA132_transition ; } public String getDescription ( ) { return "<STR_LIT>" ; } public int specialStateTransition ( int s , IntStream _input ) throws NoViableAltException { TokenStream input = ( TokenStream ) _input ; int _s = s ; switch ( s ) { case <NUM_LIT:0> : int LA132_10 = input . LA ( <NUM_LIT:1> ) ; int index132_10 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_10 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:1> : int LA132_24 = input . LA ( <NUM_LIT:1> ) ; int index132_24 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_24 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:2> : int LA132_12 = input . LA ( <NUM_LIT:1> ) ; int index132_12 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_12 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:3> : int LA132_8 = input . LA ( <NUM_LIT:1> ) ; int index132_8 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_8 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:4> : int LA132_6 = input . LA ( <NUM_LIT:1> ) ; int index132_6 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_6 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:5> : int LA132_16 = input . LA ( <NUM_LIT:1> ) ; int index132_16 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_16 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:6> : int LA132_2 = input . LA ( <NUM_LIT:1> ) ; int index132_2 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_2 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:7> : int LA132_27 = input . LA ( <NUM_LIT:1> ) ; int index132_27 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_27 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:8> : int LA132_21 = input . LA ( <NUM_LIT:1> ) ; int index132_21 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_21 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:9> : int LA132_9 = input . LA ( <NUM_LIT:1> ) ; int index132_9 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_9 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:10> : int LA132_14 = input . LA ( <NUM_LIT:1> ) ; int index132_14 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_14 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:11> : int LA132_29 = input . LA ( <NUM_LIT:1> ) ; int index132_29 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_29 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:12> : int LA132_19 = input . LA ( <NUM_LIT:1> ) ; int index132_19 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_19 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA132_4 = input . LA ( <NUM_LIT:1> ) ; int index132_4 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_4 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA132_25 = input . LA ( <NUM_LIT:1> ) ; int index132_25 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_25 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:15> : int LA132_13 = input . LA ( <NUM_LIT:1> ) ; int index132_13 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_13 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:16> : int LA132_11 = input . LA ( <NUM_LIT:1> ) ; int index132_11 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_11 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA132_17 = input . LA ( <NUM_LIT:1> ) ; int index132_17 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_17 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA132_22 = input . LA ( <NUM_LIT:1> ) ; int index132_22 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_22 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA132_7 = input . LA ( <NUM_LIT:1> ) ; int index132_7 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_7 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:20> : int LA132_23 = input . LA ( <NUM_LIT:1> ) ; int index132_23 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_23 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA132_26 = input . LA ( <NUM_LIT:1> ) ; int index132_26 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_26 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA132_18 = input . LA ( <NUM_LIT:1> ) ; int index132_18 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_18 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA132_3 = input . LA ( <NUM_LIT:1> ) ; int index132_3 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_3 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:24> : int LA132_20 = input . LA ( <NUM_LIT:1> ) ; int index132_20 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_20 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA132_5 = input . LA ( <NUM_LIT:1> ) ; int index132_5 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_5 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA132_30 = input . LA ( <NUM_LIT:1> ) ; int index132_30 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_30 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA132_28 = input . LA ( <NUM_LIT:1> ) ; int index132_28 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_28 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA132_15 = input . LA ( <NUM_LIT:1> ) ; int index132_15 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred4_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index132_15 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; } if ( state . backtracking > <NUM_LIT:0> ) { state . failed = true ; return - <NUM_LIT:1> ; } NoViableAltException nvae = new NoViableAltException ( getDescription ( ) , <NUM_LIT> , _s , input ) ; error ( nvae ) ; throw nvae ; } } static final String DFA159_eotS = "<STR_LIT>" ; static final String DFA159_eofS = "<STR_LIT>" ; static final String DFA159_minS = "<STR_LIT>" ; static final String DFA159_maxS = "<STR_LIT>" ; static final String DFA159_acceptS = "<STR_LIT>" ; static final String DFA159_specialS = "<STR_LIT>" ; static final String [ ] DFA159_transitionS = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; static final short [ ] DFA159_eot = DFA . unpackEncodedString ( DFA159_eotS ) ; static final short [ ] DFA159_eof = DFA . unpackEncodedString ( DFA159_eofS ) ; static final char [ ] DFA159_min = DFA . unpackEncodedStringToUnsignedChars ( DFA159_minS ) ; static final char [ ] DFA159_max = DFA . unpackEncodedStringToUnsignedChars ( DFA159_maxS ) ; static final short [ ] DFA159_accept = DFA . unpackEncodedString ( DFA159_acceptS ) ; static final short [ ] DFA159_special = DFA . unpackEncodedString ( DFA159_specialS ) ; static final short [ ] [ ] DFA159_transition ; static { int numStates = DFA159_transitionS . length ; DFA159_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA159_transition [ i ] = DFA . unpackEncodedString ( DFA159_transitionS [ i ] ) ; } } class DFA159 extends DFA { public DFA159 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT> ; this . eot = DFA159_eot ; this . eof = DFA159_eof ; this . min = DFA159_min ; this . max = DFA159_max ; this . accept = DFA159_accept ; this . special = DFA159_special ; this . transition = DFA159_transition ; } public String getDescription ( ) { return "<STR_LIT>" ; } } public static final BitSet FOLLOW_ruleArtifacts_in_entryRuleArtifacts75 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleArtifacts85 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleArtifacts122 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOptionalFeature_in_ruleArtifacts146 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleArtifacts158 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMetaStatement_in_ruleArtifacts188 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleArtifacts200 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingRule_in_ruleArtifacts230 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleArtifacts242 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoDefinition_in_ruleArtifacts272 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleArtifacts284 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoUsage_in_ruleArtifacts314 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleArtifacts326 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleProperty_in_ruleArtifacts356 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleArtifacts368 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableDefinition_in_ruleArtifacts398 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleArtifacts410 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableUsage_in_ruleArtifacts440 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleArtifacts452 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePackageDeclaration_in_ruleArtifacts482 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleArtifacts494 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoUsageExt_in_ruleArtifacts524 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleArtifacts536 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlTypeAssignement_in_entryRuleSqlTypeAssignement576 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleSqlTypeAssignement586 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleSqlTypeAssignement628 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_ruleSqlTypeAssignement645 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleSqlTypeAssignement661 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_ruleSqlTypeAssignement677 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_ruleSqlTypeAssignement690 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoType_in_ruleSqlTypeAssignement711 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnTypeAssignement_in_entryRuleColumnTypeAssignement747 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleColumnTypeAssignement757 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleColumnTypeAssignement799 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_ruleColumnTypeAssignement816 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoType_in_ruleColumnTypeAssignement837 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleShowColumnTypeAssignement_in_entryRuleShowColumnTypeAssignement873 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleShowColumnTypeAssignement883 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleShowColumnTypeAssignement925 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_ruleShowColumnTypeAssignement942 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_ruleShowColumnTypeAssignement963 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableAssignement_in_entryRuleTableAssignement999 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleTableAssignement1009 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleTableAssignement1051 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_ruleTableAssignement1068 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleTableAssignement1085 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleJoinTableAssignement_in_entryRuleJoinTableAssignement1126 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleJoinTableAssignement1136 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleJoinTableAssignement1178 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_ruleJoinTableAssignement1196 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleJoinTableAssignement1213 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnAssignement_in_entryRuleColumnAssignement1256 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleColumnAssignement1266 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleColumnAssignement1308 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_ruleColumnAssignement1325 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleColumnAssignement1342 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImportAssignement_in_entryRuleImportAssignement1383 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleImportAssignement1393 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleImportAssignement1435 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_ruleImportAssignement1452 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleImportAssignement1469 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_ruleImportAssignement1487 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleImportAssignement1504 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleExportAssignement_in_entryRuleExportAssignement1547 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleExportAssignement1557 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleExportAssignement1599 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_ruleExportAssignement1616 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleExportAssignement1633 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_ruleExportAssignement1651 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleExportAssignement1668 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleInheritanceAssignement_in_entryRuleInheritanceAssignement1711 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleInheritanceAssignement1721 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleInheritanceAssignement1763 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_ruleInheritanceAssignement1780 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleInheritanceAssignement1797 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_ruleInheritanceAssignement1815 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleInheritanceAssignement1832 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleManyToManyAssignement_in_entryRuleManyToManyAssignement1875 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleManyToManyAssignement1885 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleManyToManyAssignement1927 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_ruleManyToManyAssignement1944 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleManyToManyAssignement1961 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_ruleManyToManyAssignement1979 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleManyToManyAssignement1996 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleProperty_in_entryRuleProperty2039 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleProperty2049 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_40_in_ruleProperty2093 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_41_in_ruleProperty2130 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_42_in_ruleProperty2168 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseProperty_in_ruleProperty2202 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_43_in_ruleProperty2228 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojogenProperty_in_ruleProperty2262 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleProperty2275 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseProperty_in_entryRuleDatabaseProperty2310 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleDatabaseProperty2320 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_44_in_ruleDatabaseProperty2363 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_45_in_ruleDatabaseProperty2400 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_46_in_ruleDatabaseProperty2438 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleDatabaseProperty2463 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_ruleDatabaseProperty2485 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_ruleDatabaseProperty2511 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleDatabaseProperty2536 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_ruleDatabaseProperty2558 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_48_in_ruleDatabaseProperty2584 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleDatabaseProperty2609 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_ruleDatabaseProperty2631 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_49_in_ruleDatabaseProperty2657 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleDatabaseProperty2682 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_ruleDatabaseProperty2704 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_50_in_ruleDatabaseProperty2730 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleDatabaseProperty2755 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_ruleDatabaseProperty2777 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojogenProperty_in_entryRulePojogenProperty2814 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojogenProperty2824 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_51_in_rulePojogenProperty2868 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty2894 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlTypeAssignement_in_rulePojogenProperty2916 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_52_in_rulePojogenProperty2944 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty2969 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty2987 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3005 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlTypeAssignement_in_rulePojogenProperty3027 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_53_in_rulePojogenProperty3055 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3080 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty3098 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3116 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnTypeAssignement_in_rulePojogenProperty3138 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_54_in_rulePojogenProperty3166 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3191 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty3209 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3226 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleShowColumnTypeAssignement_in_rulePojogenProperty3248 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_55_in_rulePojogenProperty3274 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3300 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty3318 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_56_in_rulePojogenProperty3351 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3377 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty3395 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_57_in_rulePojogenProperty3428 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3454 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleJoinTableAssignement_in_rulePojogenProperty3476 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_58_in_rulePojogenProperty3504 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3529 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty3547 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3565 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty3583 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_59_in_rulePojogenProperty3616 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3641 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty3659 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3677 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty3695 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_60_in_rulePojogenProperty3728 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3753 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty3771 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3789 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty3807 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_61_in_rulePojogenProperty3840 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3865 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty3883 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3901 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnTypeAssignement_in_rulePojogenProperty3923 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_62_in_rulePojogenProperty3951 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty3977 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableAssignement_in_rulePojogenProperty3999 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_63_in_rulePojogenProperty4027 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4052 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty4070 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4088 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnAssignement_in_rulePojogenProperty4110 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_64_in_rulePojogenProperty4138 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4163 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty4181 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4199 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleExportAssignement_in_rulePojogenProperty4221 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_65_in_rulePojogenProperty4249 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4274 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty4292 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4310 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImportAssignement_in_rulePojogenProperty4332 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_66_in_rulePojogenProperty4360 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4385 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty4403 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4421 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImportAssignement_in_rulePojogenProperty4443 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_67_in_rulePojogenProperty4471 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4496 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty4514 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4532 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleExportAssignement_in_rulePojogenProperty4554 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_68_in_rulePojogenProperty4582 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4607 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty4625 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4643 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImportAssignement_in_rulePojogenProperty4665 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_69_in_rulePojogenProperty4693 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4718 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty4736 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4754 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleManyToManyAssignement_in_rulePojogenProperty4776 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_70_in_rulePojogenProperty4804 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4829 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty4847 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4864 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty4882 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4900 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleInheritanceAssignement_in_rulePojogenProperty4922 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_71_in_rulePojogenProperty4950 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty4976 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojogenProperty4994 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_72_in_rulePojogenProperty5027 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty5053 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_rulePojogenProperty5077 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_73_in_rulePojogenProperty5105 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePojogenProperty5130 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_rulePojogenProperty5154 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_entryRulePropertyValue5192 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePropertyValue5203 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rulePropertyValue5244 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rulePropertyValue5270 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePropertyValue5296 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rulePropertyValue5322 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rulePropertyValue5348 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rulePropertyValue5374 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rulePropertyValue5400 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rulePropertyValue5426 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rulePropertyValue5452 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rulePropertyValue5478 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rulePropertyValue5504 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rulePropertyValue5530 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rulePropertyValue5556 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rulePropertyValue5582 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rulePropertyValue5608 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rulePropertyValue5634 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rulePropertyValue5660 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rulePropertyValue5686 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rulePropertyValue5712 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rulePropertyValue5738 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rulePropertyValue5764 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rulePropertyValue5790 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rulePropertyValue5816 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rulePropertyValue5842 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rulePropertyValue5868 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rulePropertyValue5894 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rulePropertyValue5920 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rulePropertyValue5946 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rulePropertyValue5972 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rulePropertyValue5998 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rulePropertyValue6024 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rulePropertyValue6302 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rulePropertyValue6328 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePropertyValue6354 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rulePropertyValue6380 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rulePropertyValue6406 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rulePropertyValue6432 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rulePropertyValue6458 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rulePropertyValue6484 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rulePropertyValue6510 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rulePropertyValue6536 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rulePropertyValue6562 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rulePropertyValue6588 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rulePropertyValue6614 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rulePropertyValue6640 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rulePropertyValue6666 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rulePropertyValue6692 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rulePropertyValue6718 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rulePropertyValue6744 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rulePropertyValue6770 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rulePropertyValue6796 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rulePropertyValue6822 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rulePropertyValue6848 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rulePropertyValue6874 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rulePropertyValue6900 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rulePropertyValue6926 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rulePropertyValue6952 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rulePropertyValue6978 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rulePropertyValue7004 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rulePropertyValue7030 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rulePropertyValue7056 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rulePropertyValue7082 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rulePropertyValue7108 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoDefinition_in_entryRulePojoDefinition7162 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoDefinition7172 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_74_in_rulePojoDefinition7213 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojoDefinition7230 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojoDefinition7254 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rulePojoDefinition7274 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rulePojoDefinition7293 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoUsage_in_entryRulePojoUsage7332 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoUsage7342 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnUsage_in_rulePojoUsage7389 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifierUsage_in_rulePojoUsage7416 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstantUsage_in_rulePojoUsage7443 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingUsage_in_rulePojoUsage7470 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnUsage_in_entryRuleColumnUsage7511 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleColumnUsage7521 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_75_in_ruleColumnUsage7562 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleColumnUsage7582 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleColumnUsage7602 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleColumnUsage7613 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifierUsage_in_entryRuleIdentifierUsage7658 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIdentifierUsage7668 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_76_in_ruleIdentifierUsage7709 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleIdentifierUsage7729 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleIdentifierUsage7749 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleIdentifierUsage7760 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstantUsage_in_entryRuleConstantUsage7805 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleConstantUsage7815 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_77_in_ruleConstantUsage7856 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleConstantUsage7876 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleConstantUsage7896 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleConstantUsage7907 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingUsage_in_entryRuleMappingUsage7952 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMappingUsage7962 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_78_in_ruleMappingUsage8003 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleMappingUsage8023 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleMappingUsage8043 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleMappingUsage8054 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoUsageExt_in_entryRulePojoUsageExt8093 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoUsageExt8103 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnUsageExt_in_rulePojoUsageExt8150 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifierUsageExt_in_rulePojoUsageExt8177 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstantUsageExt_in_rulePojoUsageExt8204 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingUsageExt_in_rulePojoUsageExt8231 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnUsageExt_in_entryRuleColumnUsageExt8272 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleColumnUsageExt8282 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_79_in_ruleColumnUsageExt8323 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleColumnUsageExt8343 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleColumnUsageExt8363 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleColumnUsageExt8374 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifierUsageExt_in_entryRuleIdentifierUsageExt8419 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIdentifierUsageExt8429 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_80_in_ruleIdentifierUsageExt8470 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleIdentifierUsageExt8490 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleIdentifierUsageExt8510 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleIdentifierUsageExt8521 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstantUsageExt_in_entryRuleConstantUsageExt8566 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleConstantUsageExt8576 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_81_in_ruleConstantUsageExt8617 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleConstantUsageExt8637 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleConstantUsageExt8657 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleConstantUsageExt8668 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingUsageExt_in_entryRuleMappingUsageExt8713 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMappingUsageExt8723 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_82_in_ruleMappingUsageExt8764 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleMappingUsageExt8784 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleMappingUsageExt8804 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleMappingUsageExt8815 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableDefinition_in_entryRuleTableDefinition8860 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleTableDefinition8870 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_83_in_ruleTableDefinition8911 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleTableDefinition8928 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleTableDefinition8950 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleTableDefinition8966 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableUsage_in_entryRuleTableUsage9011 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleTableUsage9021 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_84_in_ruleTableUsage9062 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleTableUsage9082 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleTableUsage9102 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_85_in_ruleTableUsage9115 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleTableUsage9132 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleTableUsage9150 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMetaStatement_in_entryRuleMetaStatement9189 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMetaStatement9199 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleMetaStatement9241 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_ruleMetaStatement9257 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_ruleMetaStatement9273 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_ruleMetaStatement9290 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleMetaStatement9306 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_ruleMetaStatement9324 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_ruleMetaStatement9334 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSql_in_ruleMetaStatement9354 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleMetaStatement9365 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSql_in_entryRuleSql9400 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleSql9410 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlFragment_in_ruleSql9455 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlFragment_in_entryRuleSqlFragment9491 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleSqlFragment9501 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlValue_in_ruleSqlFragment9547 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_ruleSqlFragment9565 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumn_in_ruleSqlFragment9585 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_ruleSqlFragment9604 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstant_in_ruleSqlFragment9624 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_ruleSqlFragment9643 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifier_in_ruleSqlFragment9663 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_ruleSqlFragment9682 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMetaSql_in_ruleSqlFragment9702 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_ruleSqlFragment9713 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_ruleSqlFragment9731 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_ruleSqlFragment9743 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseTable_in_ruleSqlFragment9763 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseColumn_in_ruleSqlFragment9791 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlValue_in_entryRuleSqlValue9830 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleSqlValue9841 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_ruleSqlValue9882 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_ruleSqlValue9908 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleSqlValue9934 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleSqlValue9960 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleSqlValue9986 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_ruleSqlValue10012 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_ruleSqlValue10038 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_ruleSqlValue10064 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_ruleSqlValue10090 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_ruleSqlValue10116 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_ruleSqlValue10142 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_ruleSqlValue10168 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_ruleSqlValue10194 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_ruleSqlValue10220 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleSqlValue10246 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_ruleSqlValue10272 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_ruleSqlValue10298 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_ruleSqlValue10324 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_ruleSqlValue10350 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_ruleSqlValue10376 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_ruleSqlValue10402 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_ruleSqlValue10428 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_ruleSqlValue10454 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_ruleSqlValue10480 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_ruleSqlValue10506 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_ruleSqlValue10532 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_ruleSqlValue10558 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_ruleSqlValue10796 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_ruleSqlValue10822 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleSqlValue10848 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleSqlValue10874 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleSqlValue10900 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_ruleSqlValue10926 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_ruleSqlValue10952 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_ruleSqlValue10978 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_ruleSqlValue11004 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_ruleSqlValue11030 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_ruleSqlValue11056 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_ruleSqlValue11082 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_ruleSqlValue11108 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_ruleSqlValue11134 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleSqlValue11160 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_ruleSqlValue11186 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_ruleSqlValue11212 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_ruleSqlValue11238 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_ruleSqlValue11264 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_ruleSqlValue11290 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_ruleSqlValue11316 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_ruleSqlValue11342 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_ruleSqlValue11368 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_ruleSqlValue11394 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_ruleSqlValue11420 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_ruleSqlValue11446 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_ruleSqlValue11472 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMetaSql_in_entryRuleMetaSql11520 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMetaSql11530 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleMetaSql11567 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleMetaSql11587 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleMetaSql11599 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleMetaSql11619 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_ruleMetaSql11646 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlCond_in_ruleMetaSql11672 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleMetaSql11683 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleMetaSql11703 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleMetaSql11715 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleMetaSql11735 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_ruleMetaSql11762 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleMetaSql11788 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleMetaSql11800 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleMetaSql11820 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleMetaSql11847 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleMetaSql11873 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleMetaSql11885 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleMetaSql11905 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_ruleMetaSql11932 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleMetaSql11949 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleMetaSql11967 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleMetaSql11993 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_ruleMetaSql12018 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleMetaSql12034 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSql_in_ruleMetaSql12054 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_entryRuleIfSql12091 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfSql12101 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlFragment_in_ruleIfSql12146 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlFragment_in_entryRuleIfSqlFragment12182 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfSqlFragment12192 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlValue_in_ruleIfSqlFragment12238 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_ruleIfSqlFragment12256 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumn_in_ruleIfSqlFragment12276 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_ruleIfSqlFragment12295 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstant_in_ruleIfSqlFragment12315 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_ruleIfSqlFragment12334 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifier_in_ruleIfSqlFragment12354 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_ruleIfSqlFragment12373 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_ruleIfSqlFragment12385 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseTable_in_ruleIfSqlFragment12405 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseColumn_in_ruleIfSqlFragment12433 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_ruleIfSqlFragment12453 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfMetaSql_in_ruleIfSqlFragment12473 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_ruleIfSqlFragment12484 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlValue_in_entryRuleIfSqlValue12521 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfSqlValue12532 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_ruleIfSqlValue12573 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_ruleIfSqlValue12599 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleIfSqlValue12625 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleIfSqlValue12651 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleIfSqlValue12677 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleIfSqlValue12703 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_ruleIfSqlValue12729 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_ruleIfSqlValue12755 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_ruleIfSqlValue12781 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_ruleIfSqlValue12807 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_ruleIfSqlValue12833 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_ruleIfSqlValue12859 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_ruleIfSqlValue12885 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_ruleIfSqlValue12911 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_ruleIfSqlValue12937 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_ruleIfSqlValue12963 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_ruleIfSqlValue12989 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_ruleIfSqlValue13015 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_ruleIfSqlValue13041 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_ruleIfSqlValue13067 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_ruleIfSqlValue13093 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_ruleIfSqlValue13119 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_ruleIfSqlValue13145 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_ruleIfSqlValue13171 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_ruleIfSqlValue13197 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_ruleIfSqlValue13223 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_ruleIfSqlValue13453 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_ruleIfSqlValue13479 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleIfSqlValue13505 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleIfSqlValue13531 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleIfSqlValue13557 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleIfSqlValue13583 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_ruleIfSqlValue13609 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_ruleIfSqlValue13635 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_ruleIfSqlValue13661 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_ruleIfSqlValue13687 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_ruleIfSqlValue13713 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_ruleIfSqlValue13739 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_ruleIfSqlValue13765 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_ruleIfSqlValue13791 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_ruleIfSqlValue13817 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_ruleIfSqlValue13843 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_ruleIfSqlValue13869 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_ruleIfSqlValue13895 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_ruleIfSqlValue13921 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_ruleIfSqlValue13947 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_ruleIfSqlValue13973 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_ruleIfSqlValue13999 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_ruleIfSqlValue14025 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_ruleIfSqlValue14051 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_ruleIfSqlValue14077 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_ruleIfSqlValue14103 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfMetaSql_in_entryRuleIfMetaSql14151 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfMetaSql14161 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleIfMetaSql14198 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleIfMetaSql14218 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleIfMetaSql14230 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleIfMetaSql14250 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_ruleIfMetaSql14277 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlCond_in_ruleIfMetaSql14303 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleIfMetaSql14314 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleIfMetaSql14334 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleIfMetaSql14346 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleIfMetaSql14366 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_ruleIfMetaSql14393 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleIfMetaSql14419 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleIfMetaSql14431 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleIfMetaSql14451 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleIfMetaSql14478 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleIfMetaSql14504 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleIfMetaSql14516 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_ruleIfMetaSql14536 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlCond_in_entryRuleIfSqlCond14575 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfSqlCond14585 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleIfSqlCond14622 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlBool_in_ruleIfSqlCond14644 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleIfSqlCond14656 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_ruleIfSqlCond14677 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_ruleIfSqlCond14697 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleIfSqlCond14717 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlBool_in_ruleIfSqlCond14739 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleIfSqlCond14751 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlBool_in_entryRuleIfSqlBool14790 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfSqlBool14800 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_ruleIfSqlBool14843 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_ruleIfSqlBool14860 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstant_in_ruleIfSqlBool14880 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_ruleIfSqlBool14905 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_ruleIfSqlBool14922 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifier_in_ruleIfSqlBool14942 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_ruleIfSqlBool14967 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_ruleIfSqlBool14984 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlCond_in_ruleIfSqlBool15004 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_ruleIfSqlBool15015 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSql_in_entryRuleOrdSql15051 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleOrdSql15061 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSql2_in_ruleOrdSql15106 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSql2_in_entryRuleOrdSql215142 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleOrdSql215152 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSqlValue_in_ruleOrdSql215198 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_ruleOrdSql215216 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstant_in_ruleOrdSql215236 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_ruleOrdSql215255 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifier_in_ruleOrdSql215275 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_ruleOrdSql215294 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseColumn_in_ruleOrdSql215314 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSqlValue_in_entryRuleOrdSqlValue15352 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleOrdSqlValue15363 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_ruleOrdSqlValue15404 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_ruleOrdSqlValue15430 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleOrdSqlValue15456 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleOrdSqlValue15482 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleOrdSqlValue15508 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleOrdSqlValue15534 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_ruleOrdSqlValue15560 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_ruleOrdSqlValue15586 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_ruleOrdSqlValue15612 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_ruleOrdSqlValue15638 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_ruleOrdSqlValue15664 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_ruleOrdSqlValue15690 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_ruleOrdSqlValue15716 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_ruleOrdSqlValue15742 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_ruleOrdSqlValue15768 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleOrdSqlValue15794 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_ruleOrdSqlValue15820 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_ruleOrdSqlValue15846 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_ruleOrdSqlValue15872 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_ruleOrdSqlValue15898 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_ruleOrdSqlValue15924 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_ruleOrdSqlValue15950 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_ruleOrdSqlValue15976 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_ruleOrdSqlValue16002 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_ruleOrdSqlValue16028 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_ruleOrdSqlValue16054 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_ruleOrdSqlValue16080 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_ruleOrdSqlValue16106 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_ruleOrdSqlValue16132 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_ruleOrdSqlValue16386 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_ruleOrdSqlValue16412 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleOrdSqlValue16438 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleOrdSqlValue16464 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleOrdSqlValue16490 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleOrdSqlValue16516 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_ruleOrdSqlValue16542 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_ruleOrdSqlValue16568 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_ruleOrdSqlValue16594 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_ruleOrdSqlValue16620 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_ruleOrdSqlValue16646 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_ruleOrdSqlValue16672 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_ruleOrdSqlValue16698 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_ruleOrdSqlValue16724 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_ruleOrdSqlValue16750 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleOrdSqlValue16776 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_ruleOrdSqlValue16802 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_ruleOrdSqlValue16828 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_ruleOrdSqlValue16854 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_ruleOrdSqlValue16880 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_ruleOrdSqlValue16906 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_ruleOrdSqlValue16932 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_ruleOrdSqlValue16958 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_ruleOrdSqlValue16984 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_ruleOrdSqlValue17010 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_ruleOrdSqlValue17036 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_ruleOrdSqlValue17062 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_ruleOrdSqlValue17088 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_ruleOrdSqlValue17114 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumn_in_entryRuleColumn17162 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleColumn17172 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleColumn17216 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_ruleColumn17236 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleColumn17256 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_ruleColumn17282 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleColumn17310 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_ruleColumn17334 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleColumn17353 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleColumn17373 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstant_in_entryRuleConstant17421 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleConstant17431 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_ruleConstant17475 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_ruleConstant17495 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleConstant17523 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_ruleConstant17543 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_ruleConstant17569 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleConstant17597 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_ruleConstant17621 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleConstant17640 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleConstant17660 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifier_in_entryRuleIdentifier17708 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIdentifier17718 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_ruleIdentifier17762 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_ruleIdentifier17782 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_ruleIdentifier17802 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_ruleIdentifier17830 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_ruleIdentifier17850 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleIdentifier17878 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_ruleIdentifier17898 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleIdentifier17918 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_ruleIdentifier17944 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleIdentifier17972 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_ruleIdentifier17996 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleIdentifier18015 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleIdentifier18035 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseColumn_in_entryRuleDatabaseColumn18083 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleDatabaseColumn18093 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleDatabaseColumn18136 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_ruleDatabaseColumn18156 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseTable_in_entryRuleDatabaseTable18199 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleDatabaseTable18209 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleDatabaseTable18252 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_ruleDatabaseTable18272 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingRule_in_entryRuleMappingRule18315 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMappingRule18325 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleMappingRule18367 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_ruleMappingRule18383 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_ruleMappingRule18399 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_ruleMappingRule18416 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleMappingRule18432 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_ruleMappingRule18450 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_ruleMappingRule18460 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMapping_in_ruleMappingRule18480 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleMappingRule18491 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMapping_in_entryRuleMapping18526 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMapping18536 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleMapping18573 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingItem_in_ruleMapping18595 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleMapping18608 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingItem_in_ruleMapping18630 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleMapping18644 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingItem_in_entryRuleMappingItem18681 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMappingItem18691 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleMappingItem18735 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleMappingItem18755 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_ruleMappingItem18775 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleMappingItem18791 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_ruleMappingItem18809 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingColumn_in_ruleMappingItem18829 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingColumn_in_entryRuleMappingColumn18869 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMappingColumn18879 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleMappingColumn18923 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_ruleMappingColumn18943 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_ruleMappingColumn18963 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleMappingColumn18981 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleMappingColumn19001 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOptionalFeature_in_entryRuleOptionalFeature19047 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleOptionalFeature19057 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleOptionalFeature19099 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_ruleOptionalFeature19115 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_ruleOptionalFeature19131 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_ruleOptionalFeature19148 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleOptionalFeature19164 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_ruleOptionalFeature19182 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_ruleOptionalFeature19192 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleFeatureValue_in_ruleOptionalFeature19212 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_ruleOptionalFeature19223 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleFeatureValue_in_entryRuleFeatureValue19259 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleFeatureValue19270 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_ruleFeatureValue19310 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_ruleFeatureValue19336 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleFeatureValue19362 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_ruleFeatureValue19388 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_ruleFeatureValue19414 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_ruleFeatureValue19440 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_ruleFeatureValue19466 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_ruleFeatureValue19492 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_ruleFeatureValue19518 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_ruleFeatureValue19544 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_ruleFeatureValue19570 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_ruleFeatureValue19596 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_ruleFeatureValue19622 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_ruleFeatureValue19648 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_ruleFeatureValue19674 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_ruleFeatureValue19700 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_ruleFeatureValue19726 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_ruleFeatureValue19752 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_ruleFeatureValue19778 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_ruleFeatureValue19804 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_ruleFeatureValue19830 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_ruleFeatureValue19856 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_ruleFeatureValue19882 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_ruleFeatureValue19908 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_ruleFeatureValue19934 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_ruleFeatureValue19960 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_ruleFeatureValue19986 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_ruleFeatureValue20012 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_ruleFeatureValue20038 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_ruleFeatureValue20064 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_ruleFeatureValue20090 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_ruleFeatureValue20116 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoType_in_entryRulePojoType20162 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoType20172 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_86_in_rulePojoType20218 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_87_in_rulePojoType20247 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_88_in_rulePojoType20276 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_89_in_rulePojoType20305 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_90_in_rulePojoType20334 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_91_in_rulePojoType20363 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_92_in_rulePojoType20392 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_93_in_rulePojoType20421 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rulePojoType20456 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rulePojoType20468 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojoType20487 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_rulePojoType20517 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rulePojoType20531 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rulePojoType20543 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojoType20562 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_rulePojoType20592 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rulePojoType20604 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_94_in_rulePojoType20625 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePackageDeclaration_in_entryRulePackageDeclaration20681 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePackageDeclaration20691 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_95_in_rulePackageDeclaration20732 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePackageDeclaration20751 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rulePackageDeclaration20771 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_96_in_rulePackageDeclaration20792 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePackageDeclaration20811 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rulePackageDeclaration20831 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rulePackageDeclaration20852 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleAbstractPojoEntity_in_rulePackageDeclaration20872 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rulePackageDeclaration20884 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleAbstractPojoEntity_in_entryRuleAbstractPojoEntity20929 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleAbstractPojoEntity20939 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePackageDeclaration_in_ruleAbstractPojoEntity20990 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoEntity_in_ruleAbstractPojoEntity21017 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImport_in_ruleAbstractPojoEntity21044 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImplements_in_ruleAbstractPojoEntity21071 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleExtends_in_ruleAbstractPojoEntity21098 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImport_in_entryRuleImport21143 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleImport21153 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_97_in_ruleImport21194 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedNameWithWildcard_in_ruleImport21215 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleImplements_in_entryRuleImplements21261 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleImplements21271 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_98_in_ruleImplements21312 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_ruleImplements21335 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleExtends_in_entryRuleExtends21381 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleExtends21391 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_99_in_ruleExtends21432 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_ruleExtends21455 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoEntityModifier1_in_entryRulePojoEntityModifier121495 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoEntityModifier121505 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_100_in_rulePojoEntityModifier121548 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_101_in_rulePojoEntityModifier121585 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoEntityModifier2_in_entryRulePojoEntityModifier221634 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoEntityModifier221644 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_99_in_rulePojoEntityModifier221682 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojoEntityModifier221702 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_102_in_rulePojoEntityModifier221722 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojoEntityModifier221741 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rulePojoEntityModifier221761 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_103_in_rulePojoEntityModifier221789 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rulePojoEntityModifier221806 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoEntity_in_entryRulePojoEntity21854 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoEntity21864 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoEntityModifier1_in_rulePojoEntity21914 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_74_in_rulePojoEntity21927 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojoEntity21944 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoEntityModifier2_in_rulePojoEntity21970 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rulePojoEntity21982 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoProperty_in_rulePojoEntity22002 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rulePojoEntity22014 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoPropertyModifier_in_entryRulePojoPropertyModifier22053 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoPropertyModifier22063 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_104_in_rulePojoPropertyModifier22106 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_102_in_rulePojoPropertyModifier22143 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_105_in_rulePojoPropertyModifier22180 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoProperty_in_entryRulePojoProperty22235 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoProperty22245 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojoProperty22291 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_86_in_rulePojoProperty22317 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_87_in_rulePojoProperty22346 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_88_in_rulePojoProperty22375 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_89_in_rulePojoProperty22404 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_90_in_rulePojoProperty22433 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_91_in_rulePojoProperty22462 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_92_in_rulePojoProperty22491 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_93_in_rulePojoProperty22520 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rulePojoProperty22555 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rulePojoProperty22567 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rulePojoProperty22579 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojoProperty22598 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojoProperty22626 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_rulePojoProperty22657 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rulePojoProperty22671 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rulePojoProperty22683 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rulePojoProperty22702 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_rulePojoProperty22732 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rulePojoProperty22744 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_94_in_rulePojoProperty22765 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoPropertyModifier_in_rulePojoProperty22800 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedNameWithWildcard_in_entryRuleQualifiedNameWithWildcard22842 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleQualifiedNameWithWildcard22853 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_ruleQualifiedNameWithWildcard22900 = new BitSet ( new long [ ] { <NUM_LIT> , <NUM_LIT> } ) ; public static final BitSet FOLLOW_106_in_ruleQualifiedNameWithWildcard22919 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName22962 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleQualifiedName22973 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_ruleQualifiedName23013 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_ruleQualifiedName23039 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_set_in_synpred1_InternalProcessorDsl6041 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_set_in_synpred2_InternalProcessorDsl10575 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_set_in_synpred3_InternalProcessorDsl13240 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_set_in_synpred4_InternalProcessorDsl16149 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_synpred5_InternalProcessorDsl17277 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_synpred6_InternalProcessorDsl17296 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_synpred7_InternalProcessorDsl17329 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_synpred8_InternalProcessorDsl17564 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_synpred9_InternalProcessorDsl17583 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_synpred10_InternalProcessorDsl17616 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_synpred11_InternalProcessorDsl17939 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_synpred12_InternalProcessorDsl17958 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_synpred13_InternalProcessorDsl17991 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; } </s> |
<s> package org . sqlproc . dsl . parser . antlr ; import java . io . InputStream ; import org . eclipse . xtext . parser . antlr . IAntlrTokenFileProvider ; public class ProcessorDslAntlrTokenFileProvider implements IAntlrTokenFileProvider { public InputStream getAntlrTokenFile ( ) { ClassLoader classLoader = getClass ( ) . getClassLoader ( ) ; return classLoader . getResourceAsStream ( "<STR_LIT>" ) ; } } </s> |
<s> package org . sqlproc . dsl . parser . antlr ; import com . google . inject . Inject ; import org . eclipse . xtext . parser . antlr . XtextTokenStream ; import org . sqlproc . dsl . services . ProcessorDslGrammarAccess ; public class ProcessorDslParser extends org . eclipse . xtext . parser . antlr . AbstractAntlrParser { @ Inject private ProcessorDslGrammarAccess grammarAccess ; @ Override protected void setInitialHiddenTokens ( XtextTokenStream tokenStream ) { tokenStream . setInitialHiddenTokens ( "<STR_LIT>" , "<STR_LIT>" ) ; } @ Override protected org . sqlproc . dsl . parser . antlr . internal . InternalProcessorDslParser createParser ( XtextTokenStream stream ) { return new org . sqlproc . dsl . parser . antlr . internal . InternalProcessorDslParser ( stream , getGrammarAccess ( ) ) ; } @ Override protected String getDefaultRuleName ( ) { return "<STR_LIT>" ; } public ProcessorDslGrammarAccess getGrammarAccess ( ) { return this . grammarAccess ; } public void setGrammarAccess ( ProcessorDslGrammarAccess grammarAccess ) { this . grammarAccess = grammarAccess ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EObject ; public interface Column extends EObject { String getName ( ) ; void setName ( String value ) ; String getType ( ) ; void setType ( String value ) ; EList < String > getVals ( ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EObject ; public interface IfSql extends EObject { EList < IfSqlFragment > getSqls ( ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface ShowColumnTypeAssignement extends EObject { String getDbColumn ( ) ; void setDbColumn ( String value ) ; String getType ( ) ; void setType ( String value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EObject ; public interface InheritanceAssignement extends EObject { String getDiscriminator ( ) ; void setDiscriminator ( String value ) ; String getDbTable ( ) ; void setDbTable ( String value ) ; EList < String > getDbColumns ( ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EObject ; public interface MappingRule extends EObject { String getName ( ) ; void setName ( String value ) ; String getType ( ) ; void setType ( String value ) ; EList < String > getFilters ( ) ; Mapping getMapping ( ) ; void setMapping ( Mapping value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; import org . eclipse . xtext . common . types . JvmType ; public interface PojoType extends EObject { String getNative ( ) ; void setNative ( String value ) ; PojoEntity getRef ( ) ; void setRef ( PojoEntity value ) ; JvmType getType ( ) ; void setType ( JvmType value ) ; PojoEntity getGref ( ) ; void setGref ( PojoEntity value ) ; JvmType getGtype ( ) ; void setGtype ( JvmType value ) ; boolean isArray ( ) ; void setArray ( boolean value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface PojoEntityModifier2 extends EObject { PojoEntity getSuperType ( ) ; void setSuperType ( PojoEntity value ) ; String getDiscriminator ( ) ; void setDiscriminator ( String value ) ; String getSernum ( ) ; void setSernum ( String value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface MappingItem extends EObject { String getCol ( ) ; void setCol ( String value ) ; String getType ( ) ; void setType ( String value ) ; MappingColumn getAttr ( ) ; void setAttr ( MappingColumn value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EObject ; public interface Constant extends EObject { String getCase ( ) ; void setCase ( String value ) ; String getName ( ) ; void setName ( String value ) ; String getType ( ) ; void setType ( String value ) ; EList < String > getVals ( ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EAttribute ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . EPackage ; import org . eclipse . emf . ecore . EReference ; public interface ProcessorDslPackage extends EPackage { String eNAME = "<STR_LIT>" ; String eNS_URI = "<STR_LIT>" ; String eNS_PREFIX = "<STR_LIT>" ; ProcessorDslPackage eINSTANCE = org . sqlproc . dsl . processorDsl . impl . ProcessorDslPackageImpl . init ( ) ; int ARTIFACTS = <NUM_LIT:0> ; int ARTIFACTS__FEATURES = <NUM_LIT:0> ; int ARTIFACTS__STATEMENTS = <NUM_LIT:1> ; int ARTIFACTS__MAPPINGS = <NUM_LIT:2> ; int ARTIFACTS__POJOS = <NUM_LIT:3> ; int ARTIFACTS__USAGES = <NUM_LIT:4> ; int ARTIFACTS__PROPERTIES = <NUM_LIT:5> ; int ARTIFACTS__TABLES = <NUM_LIT:6> ; int ARTIFACTS__TABLE_USAGES = <NUM_LIT:7> ; int ARTIFACTS__POJO_PACKAGES = <NUM_LIT:8> ; int ARTIFACTS__USAGES_EXT = <NUM_LIT:9> ; int ARTIFACTS_FEATURE_COUNT = <NUM_LIT:10> ; int SQL_TYPE_ASSIGNEMENT = <NUM_LIT:1> ; int SQL_TYPE_ASSIGNEMENT__TYPE_NAME = <NUM_LIT:0> ; int SQL_TYPE_ASSIGNEMENT__SIZE = <NUM_LIT:1> ; int SQL_TYPE_ASSIGNEMENT__TYPE = <NUM_LIT:2> ; int SQL_TYPE_ASSIGNEMENT_FEATURE_COUNT = <NUM_LIT:3> ; int COLUMN_TYPE_ASSIGNEMENT = <NUM_LIT:2> ; int COLUMN_TYPE_ASSIGNEMENT__DB_COLUMN = <NUM_LIT:0> ; int COLUMN_TYPE_ASSIGNEMENT__TYPE = <NUM_LIT:1> ; int COLUMN_TYPE_ASSIGNEMENT_FEATURE_COUNT = <NUM_LIT:2> ; int SHOW_COLUMN_TYPE_ASSIGNEMENT = <NUM_LIT:3> ; int SHOW_COLUMN_TYPE_ASSIGNEMENT__DB_COLUMN = <NUM_LIT:0> ; int SHOW_COLUMN_TYPE_ASSIGNEMENT__TYPE = <NUM_LIT:1> ; int SHOW_COLUMN_TYPE_ASSIGNEMENT_FEATURE_COUNT = <NUM_LIT:2> ; int TABLE_ASSIGNEMENT = <NUM_LIT:4> ; int TABLE_ASSIGNEMENT__DB_TABLE = <NUM_LIT:0> ; int TABLE_ASSIGNEMENT__NEW_NAME = <NUM_LIT:1> ; int TABLE_ASSIGNEMENT_FEATURE_COUNT = <NUM_LIT:2> ; int JOIN_TABLE_ASSIGNEMENT = <NUM_LIT:5> ; int JOIN_TABLE_ASSIGNEMENT__DB_TABLE = <NUM_LIT:0> ; int JOIN_TABLE_ASSIGNEMENT__DB_TABLES = <NUM_LIT:1> ; int JOIN_TABLE_ASSIGNEMENT_FEATURE_COUNT = <NUM_LIT:2> ; int COLUMN_ASSIGNEMENT = <NUM_LIT:6> ; int COLUMN_ASSIGNEMENT__DB_COLUMN = <NUM_LIT:0> ; int COLUMN_ASSIGNEMENT__NEW_NAME = <NUM_LIT:1> ; int COLUMN_ASSIGNEMENT_FEATURE_COUNT = <NUM_LIT:2> ; int IMPORT_ASSIGNEMENT = <NUM_LIT:7> ; int IMPORT_ASSIGNEMENT__DB_COLUMN = <NUM_LIT:0> ; int IMPORT_ASSIGNEMENT__PK_TABLE = <NUM_LIT:1> ; int IMPORT_ASSIGNEMENT__PK_COLUMN = <NUM_LIT:2> ; int IMPORT_ASSIGNEMENT_FEATURE_COUNT = <NUM_LIT:3> ; int EXPORT_ASSIGNEMENT = <NUM_LIT:8> ; int EXPORT_ASSIGNEMENT__DB_COLUMN = <NUM_LIT:0> ; int EXPORT_ASSIGNEMENT__FK_TABLE = <NUM_LIT:1> ; int EXPORT_ASSIGNEMENT__FK_COLUMN = <NUM_LIT:2> ; int EXPORT_ASSIGNEMENT_FEATURE_COUNT = <NUM_LIT:3> ; int INHERITANCE_ASSIGNEMENT = <NUM_LIT:9> ; int INHERITANCE_ASSIGNEMENT__DISCRIMINATOR = <NUM_LIT:0> ; int INHERITANCE_ASSIGNEMENT__DB_TABLE = <NUM_LIT:1> ; int INHERITANCE_ASSIGNEMENT__DB_COLUMNS = <NUM_LIT:2> ; int INHERITANCE_ASSIGNEMENT_FEATURE_COUNT = <NUM_LIT:3> ; int MANY_TO_MANY_ASSIGNEMENT = <NUM_LIT:10> ; int MANY_TO_MANY_ASSIGNEMENT__PK_COLUMN = <NUM_LIT:0> ; int MANY_TO_MANY_ASSIGNEMENT__PK_TABLE = <NUM_LIT:1> ; int MANY_TO_MANY_ASSIGNEMENT__FK_COLUMN = <NUM_LIT:2> ; int MANY_TO_MANY_ASSIGNEMENT_FEATURE_COUNT = <NUM_LIT:3> ; int PROPERTY = <NUM_LIT:11> ; int PROPERTY__NAME = <NUM_LIT:0> ; int PROPERTY__DATABASE = <NUM_LIT:1> ; int PROPERTY__POJOGEN = <NUM_LIT:2> ; int PROPERTY_FEATURE_COUNT = <NUM_LIT:3> ; int DATABASE_PROPERTY = <NUM_LIT:12> ; int DATABASE_PROPERTY__NAME = <NUM_LIT:0> ; int DATABASE_PROPERTY__DB_URL = <NUM_LIT:1> ; int DATABASE_PROPERTY__DB_USERNAME = <NUM_LIT:2> ; int DATABASE_PROPERTY__DB_PASSWORD = <NUM_LIT:3> ; int DATABASE_PROPERTY__DB_SCHEMA = <NUM_LIT:4> ; int DATABASE_PROPERTY__DB_DRIVER = <NUM_LIT:5> ; int DATABASE_PROPERTY_FEATURE_COUNT = <NUM_LIT:6> ; int POJOGEN_PROPERTY = <NUM_LIT> ; int POJOGEN_PROPERTY__NAME = <NUM_LIT:0> ; int POJOGEN_PROPERTY__SQL_TYPES = <NUM_LIT:1> ; int POJOGEN_PROPERTY__DB_TABLE = <NUM_LIT:2> ; int POJOGEN_PROPERTY__COLUMN_TYPES = <NUM_LIT:3> ; int POJOGEN_PROPERTY__COLUMN_TYPE = <NUM_LIT:4> ; int POJOGEN_PROPERTY__DB_TABLES = <NUM_LIT:5> ; int POJOGEN_PROPERTY__JOIN_TABLES = <NUM_LIT:6> ; int POJOGEN_PROPERTY__DB_COLUMNS = <NUM_LIT:7> ; int POJOGEN_PROPERTY__TABLES = <NUM_LIT:8> ; int POJOGEN_PROPERTY__COLUMNS = <NUM_LIT:9> ; int POJOGEN_PROPERTY__EXPORTS = <NUM_LIT:10> ; int POJOGEN_PROPERTY__IMPORTS = <NUM_LIT:11> ; int POJOGEN_PROPERTY__MANY2S = <NUM_LIT:12> ; int POJOGEN_PROPERTY__DB_COLUMN = <NUM_LIT> ; int POJOGEN_PROPERTY__INHERITANCE = <NUM_LIT> ; int POJOGEN_PROPERTY__METHODS = <NUM_LIT:15> ; int POJOGEN_PROPERTY__TO_IMPLEMENTS = <NUM_LIT:16> ; int POJOGEN_PROPERTY__TO_EXTENDS = <NUM_LIT> ; int POJOGEN_PROPERTY_FEATURE_COUNT = <NUM_LIT> ; int POJO_DEFINITION = <NUM_LIT> ; int POJO_DEFINITION__NAME = <NUM_LIT:0> ; int POJO_DEFINITION__CLASS = <NUM_LIT:1> ; int POJO_DEFINITION_FEATURE_COUNT = <NUM_LIT:2> ; int POJO_USAGE = <NUM_LIT:15> ; int POJO_USAGE__POJO = <NUM_LIT:0> ; int POJO_USAGE_FEATURE_COUNT = <NUM_LIT:1> ; int COLUMN_USAGE = <NUM_LIT:16> ; int COLUMN_USAGE__POJO = POJO_USAGE__POJO ; int COLUMN_USAGE__STATEMENT = POJO_USAGE_FEATURE_COUNT + <NUM_LIT:0> ; int COLUMN_USAGE_FEATURE_COUNT = POJO_USAGE_FEATURE_COUNT + <NUM_LIT:1> ; int IDENTIFIER_USAGE = <NUM_LIT> ; int IDENTIFIER_USAGE__POJO = POJO_USAGE__POJO ; int IDENTIFIER_USAGE__STATEMENT = POJO_USAGE_FEATURE_COUNT + <NUM_LIT:0> ; int IDENTIFIER_USAGE_FEATURE_COUNT = POJO_USAGE_FEATURE_COUNT + <NUM_LIT:1> ; int CONSTANT_USAGE = <NUM_LIT> ; int CONSTANT_USAGE__POJO = POJO_USAGE__POJO ; int CONSTANT_USAGE__STATEMENT = POJO_USAGE_FEATURE_COUNT + <NUM_LIT:0> ; int CONSTANT_USAGE_FEATURE_COUNT = POJO_USAGE_FEATURE_COUNT + <NUM_LIT:1> ; int MAPPING_USAGE = <NUM_LIT> ; int MAPPING_USAGE__POJO = POJO_USAGE__POJO ; int MAPPING_USAGE__STATEMENT = POJO_USAGE_FEATURE_COUNT + <NUM_LIT:0> ; int MAPPING_USAGE_FEATURE_COUNT = POJO_USAGE_FEATURE_COUNT + <NUM_LIT:1> ; int POJO_USAGE_EXT = <NUM_LIT:20> ; int POJO_USAGE_EXT__POJO = <NUM_LIT:0> ; int POJO_USAGE_EXT_FEATURE_COUNT = <NUM_LIT:1> ; int COLUMN_USAGE_EXT = <NUM_LIT> ; int COLUMN_USAGE_EXT__POJO = POJO_USAGE_EXT__POJO ; int COLUMN_USAGE_EXT__STATEMENT = POJO_USAGE_EXT_FEATURE_COUNT + <NUM_LIT:0> ; int COLUMN_USAGE_EXT_FEATURE_COUNT = POJO_USAGE_EXT_FEATURE_COUNT + <NUM_LIT:1> ; int IDENTIFIER_USAGE_EXT = <NUM_LIT> ; int IDENTIFIER_USAGE_EXT__POJO = POJO_USAGE_EXT__POJO ; int IDENTIFIER_USAGE_EXT__STATEMENT = POJO_USAGE_EXT_FEATURE_COUNT + <NUM_LIT:0> ; int IDENTIFIER_USAGE_EXT_FEATURE_COUNT = POJO_USAGE_EXT_FEATURE_COUNT + <NUM_LIT:1> ; int CONSTANT_USAGE_EXT = <NUM_LIT> ; int CONSTANT_USAGE_EXT__POJO = POJO_USAGE_EXT__POJO ; int CONSTANT_USAGE_EXT__STATEMENT = POJO_USAGE_EXT_FEATURE_COUNT + <NUM_LIT:0> ; int CONSTANT_USAGE_EXT_FEATURE_COUNT = POJO_USAGE_EXT_FEATURE_COUNT + <NUM_LIT:1> ; int MAPPING_USAGE_EXT = <NUM_LIT:24> ; int MAPPING_USAGE_EXT__POJO = POJO_USAGE_EXT__POJO ; int MAPPING_USAGE_EXT__STATEMENT = POJO_USAGE_EXT_FEATURE_COUNT + <NUM_LIT:0> ; int MAPPING_USAGE_EXT_FEATURE_COUNT = POJO_USAGE_EXT_FEATURE_COUNT + <NUM_LIT:1> ; int TABLE_DEFINITION = <NUM_LIT> ; int TABLE_DEFINITION__NAME = <NUM_LIT:0> ; int TABLE_DEFINITION__TABLE = <NUM_LIT:1> ; int TABLE_DEFINITION_FEATURE_COUNT = <NUM_LIT:2> ; int TABLE_USAGE = <NUM_LIT> ; int TABLE_USAGE__STATEMENT = <NUM_LIT:0> ; int TABLE_USAGE__TABLE = <NUM_LIT:1> ; int TABLE_USAGE__PREFIX = <NUM_LIT:2> ; int TABLE_USAGE_FEATURE_COUNT = <NUM_LIT:3> ; int META_STATEMENT = <NUM_LIT> ; int META_STATEMENT__NAME = <NUM_LIT:0> ; int META_STATEMENT__TYPE = <NUM_LIT:1> ; int META_STATEMENT__FILTERS = <NUM_LIT:2> ; int META_STATEMENT__STATEMENT = <NUM_LIT:3> ; int META_STATEMENT_FEATURE_COUNT = <NUM_LIT:4> ; int SQL = <NUM_LIT> ; int SQL__SQLS = <NUM_LIT:0> ; int SQL_FEATURE_COUNT = <NUM_LIT:1> ; int SQL_FRAGMENT = <NUM_LIT> ; int SQL_FRAGMENT__VALUE = <NUM_LIT:0> ; int SQL_FRAGMENT__COL = <NUM_LIT:1> ; int SQL_FRAGMENT__CNST = <NUM_LIT:2> ; int SQL_FRAGMENT__IDENT = <NUM_LIT:3> ; int SQL_FRAGMENT__META = <NUM_LIT:4> ; int SQL_FRAGMENT__DBTAB = <NUM_LIT:5> ; int SQL_FRAGMENT__DBCOL = <NUM_LIT:6> ; int SQL_FRAGMENT_FEATURE_COUNT = <NUM_LIT:7> ; int META_SQL = <NUM_LIT:30> ; int META_SQL__IFS = <NUM_LIT:0> ; int META_SQL__TYPE = <NUM_LIT:1> ; int META_SQL__COND = <NUM_LIT:2> ; int META_SQL__FTYPE = <NUM_LIT:3> ; int META_SQL__ORD = <NUM_LIT:4> ; int META_SQL_FEATURE_COUNT = <NUM_LIT:5> ; int IF_SQL = <NUM_LIT:31> ; int IF_SQL__SQLS = <NUM_LIT:0> ; int IF_SQL_FEATURE_COUNT = <NUM_LIT:1> ; int IF_SQL_FRAGMENT = <NUM_LIT:32> ; int IF_SQL_FRAGMENT__VALUE = <NUM_LIT:0> ; int IF_SQL_FRAGMENT__COL = <NUM_LIT:1> ; int IF_SQL_FRAGMENT__CNST = <NUM_LIT:2> ; int IF_SQL_FRAGMENT__IDENT = <NUM_LIT:3> ; int IF_SQL_FRAGMENT__DBTAB = <NUM_LIT:4> ; int IF_SQL_FRAGMENT__DBCOL = <NUM_LIT:5> ; int IF_SQL_FRAGMENT__META = <NUM_LIT:6> ; int IF_SQL_FRAGMENT_FEATURE_COUNT = <NUM_LIT:7> ; int IF_META_SQL = <NUM_LIT> ; int IF_META_SQL__IFS = <NUM_LIT:0> ; int IF_META_SQL__TYPE = <NUM_LIT:1> ; int IF_META_SQL__COND = <NUM_LIT:2> ; int IF_META_SQL_FEATURE_COUNT = <NUM_LIT:3> ; int IF_SQL_COND = <NUM_LIT> ; int IF_SQL_COND__BOOL1 = <NUM_LIT:0> ; int IF_SQL_COND__OPER = <NUM_LIT:1> ; int IF_SQL_COND__BOOL2 = <NUM_LIT:2> ; int IF_SQL_COND_FEATURE_COUNT = <NUM_LIT:3> ; int IF_SQL_BOOL = <NUM_LIT> ; int IF_SQL_BOOL__NOT = <NUM_LIT:0> ; int IF_SQL_BOOL__CNST = <NUM_LIT:1> ; int IF_SQL_BOOL__IDENT = <NUM_LIT:2> ; int IF_SQL_BOOL__COND = <NUM_LIT:3> ; int IF_SQL_BOOL_FEATURE_COUNT = <NUM_LIT:4> ; int ORD_SQL = <NUM_LIT> ; int ORD_SQL__SQLS = <NUM_LIT:0> ; int ORD_SQL_FEATURE_COUNT = <NUM_LIT:1> ; int ORD_SQL2 = <NUM_LIT> ; int ORD_SQL2__VALUE = <NUM_LIT:0> ; int ORD_SQL2__CNST = <NUM_LIT:1> ; int ORD_SQL2__IDENT = <NUM_LIT:2> ; int ORD_SQL2__DBCOL = <NUM_LIT:3> ; int ORD_SQL2_FEATURE_COUNT = <NUM_LIT:4> ; int COLUMN = <NUM_LIT> ; int COLUMN__NAME = <NUM_LIT:0> ; int COLUMN__TYPE = <NUM_LIT:1> ; int COLUMN__VALS = <NUM_LIT:2> ; int COLUMN_FEATURE_COUNT = <NUM_LIT:3> ; int CONSTANT = <NUM_LIT> ; int CONSTANT__CASE = <NUM_LIT:0> ; int CONSTANT__NAME = <NUM_LIT:1> ; int CONSTANT__TYPE = <NUM_LIT:2> ; int CONSTANT__VALS = <NUM_LIT:3> ; int CONSTANT_FEATURE_COUNT = <NUM_LIT:4> ; int IDENTIFIER = <NUM_LIT> ; int IDENTIFIER__MODE = <NUM_LIT:0> ; int IDENTIFIER__CASE = <NUM_LIT:1> ; int IDENTIFIER__NAME = <NUM_LIT:2> ; int IDENTIFIER__TYPE = <NUM_LIT:3> ; int IDENTIFIER__VALS = <NUM_LIT:4> ; int IDENTIFIER_FEATURE_COUNT = <NUM_LIT:5> ; int DATABASE_COLUMN = <NUM_LIT> ; int DATABASE_COLUMN__NAME = <NUM_LIT:0> ; int DATABASE_COLUMN_FEATURE_COUNT = <NUM_LIT:1> ; int DATABASE_TABLE = <NUM_LIT> ; int DATABASE_TABLE__NAME = <NUM_LIT:0> ; int DATABASE_TABLE_FEATURE_COUNT = <NUM_LIT:1> ; int MAPPING_RULE = <NUM_LIT> ; int MAPPING_RULE__NAME = <NUM_LIT:0> ; int MAPPING_RULE__TYPE = <NUM_LIT:1> ; int MAPPING_RULE__FILTERS = <NUM_LIT:2> ; int MAPPING_RULE__MAPPING = <NUM_LIT:3> ; int MAPPING_RULE_FEATURE_COUNT = <NUM_LIT:4> ; int MAPPING = <NUM_LIT> ; int MAPPING__MAPPING_ITEMS = <NUM_LIT:0> ; int MAPPING_FEATURE_COUNT = <NUM_LIT:1> ; int MAPPING_ITEM = <NUM_LIT> ; int MAPPING_ITEM__COL = <NUM_LIT:0> ; int MAPPING_ITEM__TYPE = <NUM_LIT:1> ; int MAPPING_ITEM__ATTR = <NUM_LIT:2> ; int MAPPING_ITEM_FEATURE_COUNT = <NUM_LIT:3> ; int MAPPING_COLUMN = <NUM_LIT> ; int MAPPING_COLUMN__NAME = <NUM_LIT:0> ; int MAPPING_COLUMN__VALS = <NUM_LIT:1> ; int MAPPING_COLUMN_FEATURE_COUNT = <NUM_LIT:2> ; int OPTIONAL_FEATURE = <NUM_LIT> ; int OPTIONAL_FEATURE__NAME = <NUM_LIT:0> ; int OPTIONAL_FEATURE__TYPE = <NUM_LIT:1> ; int OPTIONAL_FEATURE__FILTERS = <NUM_LIT:2> ; int OPTIONAL_FEATURE__OPTION = <NUM_LIT:3> ; int OPTIONAL_FEATURE_FEATURE_COUNT = <NUM_LIT:4> ; int POJO_TYPE = <NUM_LIT> ; int POJO_TYPE__NATIVE = <NUM_LIT:0> ; int POJO_TYPE__REF = <NUM_LIT:1> ; int POJO_TYPE__TYPE = <NUM_LIT:2> ; int POJO_TYPE__GREF = <NUM_LIT:3> ; int POJO_TYPE__GTYPE = <NUM_LIT:4> ; int POJO_TYPE__ARRAY = <NUM_LIT:5> ; int POJO_TYPE_FEATURE_COUNT = <NUM_LIT:6> ; int ABSTRACT_POJO_ENTITY = <NUM_LIT> ; int ABSTRACT_POJO_ENTITY_FEATURE_COUNT = <NUM_LIT:0> ; int PACKAGE_DECLARATION = <NUM_LIT> ; int PACKAGE_DECLARATION__NAME = ABSTRACT_POJO_ENTITY_FEATURE_COUNT + <NUM_LIT:0> ; int PACKAGE_DECLARATION__SUFFIX = ABSTRACT_POJO_ENTITY_FEATURE_COUNT + <NUM_LIT:1> ; int PACKAGE_DECLARATION__ELEMENTS = ABSTRACT_POJO_ENTITY_FEATURE_COUNT + <NUM_LIT:2> ; int PACKAGE_DECLARATION_FEATURE_COUNT = ABSTRACT_POJO_ENTITY_FEATURE_COUNT + <NUM_LIT:3> ; int IMPORT = <NUM_LIT> ; int IMPORT__IMPORTED_NAMESPACE = ABSTRACT_POJO_ENTITY_FEATURE_COUNT + <NUM_LIT:0> ; int IMPORT_FEATURE_COUNT = ABSTRACT_POJO_ENTITY_FEATURE_COUNT + <NUM_LIT:1> ; int IMPLEMENTS = <NUM_LIT> ; int IMPLEMENTS__IMPLEMENTS = ABSTRACT_POJO_ENTITY_FEATURE_COUNT + <NUM_LIT:0> ; int IMPLEMENTS_FEATURE_COUNT = ABSTRACT_POJO_ENTITY_FEATURE_COUNT + <NUM_LIT:1> ; int EXTENDS = <NUM_LIT> ; int EXTENDS__EXTENDS = ABSTRACT_POJO_ENTITY_FEATURE_COUNT + <NUM_LIT:0> ; int EXTENDS_FEATURE_COUNT = ABSTRACT_POJO_ENTITY_FEATURE_COUNT + <NUM_LIT:1> ; int POJO_ENTITY_MODIFIER1 = <NUM_LIT> ; int POJO_ENTITY_MODIFIER1__FINAL = <NUM_LIT:0> ; int POJO_ENTITY_MODIFIER1__ABSTRACT = <NUM_LIT:1> ; int POJO_ENTITY_MODIFIER1_FEATURE_COUNT = <NUM_LIT:2> ; int POJO_ENTITY_MODIFIER2 = <NUM_LIT> ; int POJO_ENTITY_MODIFIER2__SUPER_TYPE = <NUM_LIT:0> ; int POJO_ENTITY_MODIFIER2__DISCRIMINATOR = <NUM_LIT:1> ; int POJO_ENTITY_MODIFIER2__SERNUM = <NUM_LIT:2> ; int POJO_ENTITY_MODIFIER2_FEATURE_COUNT = <NUM_LIT:3> ; int POJO_ENTITY = <NUM_LIT> ; int POJO_ENTITY__MODIFIERS1 = ABSTRACT_POJO_ENTITY_FEATURE_COUNT + <NUM_LIT:0> ; int POJO_ENTITY__NAME = ABSTRACT_POJO_ENTITY_FEATURE_COUNT + <NUM_LIT:1> ; int POJO_ENTITY__MODIFIERS2 = ABSTRACT_POJO_ENTITY_FEATURE_COUNT + <NUM_LIT:2> ; int POJO_ENTITY__FEATURES = ABSTRACT_POJO_ENTITY_FEATURE_COUNT + <NUM_LIT:3> ; int POJO_ENTITY_FEATURE_COUNT = ABSTRACT_POJO_ENTITY_FEATURE_COUNT + <NUM_LIT:4> ; int POJO_PROPERTY_MODIFIER = <NUM_LIT> ; int POJO_PROPERTY_MODIFIER__REQUIRED = <NUM_LIT:0> ; int POJO_PROPERTY_MODIFIER__DISCRIMINATOR = <NUM_LIT:1> ; int POJO_PROPERTY_MODIFIER__PRIMARY_KEY = <NUM_LIT:2> ; int POJO_PROPERTY_MODIFIER_FEATURE_COUNT = <NUM_LIT:3> ; int POJO_PROPERTY = <NUM_LIT> ; int POJO_PROPERTY__NAME = <NUM_LIT:0> ; int POJO_PROPERTY__NATIVE = <NUM_LIT:1> ; int POJO_PROPERTY__ATTRS = <NUM_LIT:2> ; int POJO_PROPERTY__REF = <NUM_LIT:3> ; int POJO_PROPERTY__TYPE = <NUM_LIT:4> ; int POJO_PROPERTY__GREF = <NUM_LIT:5> ; int POJO_PROPERTY__GTYPE = <NUM_LIT:6> ; int POJO_PROPERTY__ARRAY = <NUM_LIT:7> ; int POJO_PROPERTY__MODIFIERS = <NUM_LIT:8> ; int POJO_PROPERTY_FEATURE_COUNT = <NUM_LIT:9> ; EClass getArtifacts ( ) ; EReference getArtifacts_Features ( ) ; EReference getArtifacts_Statements ( ) ; EReference getArtifacts_Mappings ( ) ; EReference getArtifacts_Pojos ( ) ; EReference getArtifacts_Usages ( ) ; EReference getArtifacts_Properties ( ) ; EReference getArtifacts_Tables ( ) ; EReference getArtifacts_TableUsages ( ) ; EReference getArtifacts_PojoPackages ( ) ; EReference getArtifacts_UsagesExt ( ) ; EClass getSqlTypeAssignement ( ) ; EAttribute getSqlTypeAssignement_TypeName ( ) ; EAttribute getSqlTypeAssignement_Size ( ) ; EReference getSqlTypeAssignement_Type ( ) ; EClass getColumnTypeAssignement ( ) ; EAttribute getColumnTypeAssignement_DbColumn ( ) ; EReference getColumnTypeAssignement_Type ( ) ; EClass getShowColumnTypeAssignement ( ) ; EAttribute getShowColumnTypeAssignement_DbColumn ( ) ; EAttribute getShowColumnTypeAssignement_Type ( ) ; EClass getTableAssignement ( ) ; EAttribute getTableAssignement_DbTable ( ) ; EAttribute getTableAssignement_NewName ( ) ; EClass getJoinTableAssignement ( ) ; EAttribute getJoinTableAssignement_DbTable ( ) ; EAttribute getJoinTableAssignement_DbTables ( ) ; EClass getColumnAssignement ( ) ; EAttribute getColumnAssignement_DbColumn ( ) ; EAttribute getColumnAssignement_NewName ( ) ; EClass getImportAssignement ( ) ; EAttribute getImportAssignement_DbColumn ( ) ; EAttribute getImportAssignement_PkTable ( ) ; EAttribute getImportAssignement_PkColumn ( ) ; EClass getExportAssignement ( ) ; EAttribute getExportAssignement_DbColumn ( ) ; EAttribute getExportAssignement_FkTable ( ) ; EAttribute getExportAssignement_FkColumn ( ) ; EClass getInheritanceAssignement ( ) ; EAttribute getInheritanceAssignement_Discriminator ( ) ; EAttribute getInheritanceAssignement_DbTable ( ) ; EAttribute getInheritanceAssignement_DbColumns ( ) ; EClass getManyToManyAssignement ( ) ; EAttribute getManyToManyAssignement_PkColumn ( ) ; EAttribute getManyToManyAssignement_PkTable ( ) ; EAttribute getManyToManyAssignement_FkColumn ( ) ; EClass getProperty ( ) ; EAttribute getProperty_Name ( ) ; EReference getProperty_Database ( ) ; EReference getProperty_Pojogen ( ) ; EClass getDatabaseProperty ( ) ; EAttribute getDatabaseProperty_Name ( ) ; EAttribute getDatabaseProperty_DbUrl ( ) ; EAttribute getDatabaseProperty_DbUsername ( ) ; EAttribute getDatabaseProperty_DbPassword ( ) ; EAttribute getDatabaseProperty_DbSchema ( ) ; EAttribute getDatabaseProperty_DbDriver ( ) ; EClass getPojogenProperty ( ) ; EAttribute getPojogenProperty_Name ( ) ; EReference getPojogenProperty_SqlTypes ( ) ; EAttribute getPojogenProperty_DbTable ( ) ; EReference getPojogenProperty_ColumnTypes ( ) ; EReference getPojogenProperty_ColumnType ( ) ; EAttribute getPojogenProperty_DbTables ( ) ; EReference getPojogenProperty_JoinTables ( ) ; EAttribute getPojogenProperty_DbColumns ( ) ; EReference getPojogenProperty_Tables ( ) ; EReference getPojogenProperty_Columns ( ) ; EReference getPojogenProperty_Exports ( ) ; EReference getPojogenProperty_Imports ( ) ; EReference getPojogenProperty_Many2s ( ) ; EAttribute getPojogenProperty_DbColumn ( ) ; EReference getPojogenProperty_Inheritance ( ) ; EAttribute getPojogenProperty_Methods ( ) ; EReference getPojogenProperty_ToImplements ( ) ; EReference getPojogenProperty_ToExtends ( ) ; EClass getPojoDefinition ( ) ; EAttribute getPojoDefinition_Name ( ) ; EAttribute getPojoDefinition_Class ( ) ; EClass getPojoUsage ( ) ; EReference getPojoUsage_Pojo ( ) ; EClass getColumnUsage ( ) ; EReference getColumnUsage_Statement ( ) ; EClass getIdentifierUsage ( ) ; EReference getIdentifierUsage_Statement ( ) ; EClass getConstantUsage ( ) ; EReference getConstantUsage_Statement ( ) ; EClass getMappingUsage ( ) ; EReference getMappingUsage_Statement ( ) ; EClass getPojoUsageExt ( ) ; EReference getPojoUsageExt_Pojo ( ) ; EClass getColumnUsageExt ( ) ; EReference getColumnUsageExt_Statement ( ) ; EClass getIdentifierUsageExt ( ) ; EReference getIdentifierUsageExt_Statement ( ) ; EClass getConstantUsageExt ( ) ; EReference getConstantUsageExt_Statement ( ) ; EClass getMappingUsageExt ( ) ; EReference getMappingUsageExt_Statement ( ) ; EClass getTableDefinition ( ) ; EAttribute getTableDefinition_Name ( ) ; EAttribute getTableDefinition_Table ( ) ; EClass getTableUsage ( ) ; EReference getTableUsage_Statement ( ) ; EReference getTableUsage_Table ( ) ; EAttribute getTableUsage_Prefix ( ) ; EClass getMetaStatement ( ) ; EAttribute getMetaStatement_Name ( ) ; EAttribute getMetaStatement_Type ( ) ; EAttribute getMetaStatement_Filters ( ) ; EReference getMetaStatement_Statement ( ) ; EClass getSql ( ) ; EReference getSql_Sqls ( ) ; EClass getSqlFragment ( ) ; EAttribute getSqlFragment_Value ( ) ; EReference getSqlFragment_Col ( ) ; EReference getSqlFragment_Cnst ( ) ; EReference getSqlFragment_Ident ( ) ; EReference getSqlFragment_Meta ( ) ; EReference getSqlFragment_Dbtab ( ) ; EReference getSqlFragment_Dbcol ( ) ; EClass getMetaSql ( ) ; EReference getMetaSql_Ifs ( ) ; EAttribute getMetaSql_Type ( ) ; EReference getMetaSql_Cond ( ) ; EAttribute getMetaSql_Ftype ( ) ; EReference getMetaSql_Ord ( ) ; EClass getIfSql ( ) ; EReference getIfSql_Sqls ( ) ; EClass getIfSqlFragment ( ) ; EAttribute getIfSqlFragment_Value ( ) ; EReference getIfSqlFragment_Col ( ) ; EReference getIfSqlFragment_Cnst ( ) ; EReference getIfSqlFragment_Ident ( ) ; EReference getIfSqlFragment_Dbtab ( ) ; EReference getIfSqlFragment_Dbcol ( ) ; EReference getIfSqlFragment_Meta ( ) ; EClass getIfMetaSql ( ) ; EReference getIfMetaSql_Ifs ( ) ; EAttribute getIfMetaSql_Type ( ) ; EReference getIfMetaSql_Cond ( ) ; EClass getIfSqlCond ( ) ; EReference getIfSqlCond_Bool1 ( ) ; EAttribute getIfSqlCond_Oper ( ) ; EReference getIfSqlCond_Bool2 ( ) ; EClass getIfSqlBool ( ) ; EAttribute getIfSqlBool_Not ( ) ; EReference getIfSqlBool_Cnst ( ) ; EReference getIfSqlBool_Ident ( ) ; EReference getIfSqlBool_Cond ( ) ; EClass getOrdSql ( ) ; EReference getOrdSql_Sqls ( ) ; EClass getOrdSql2 ( ) ; EAttribute getOrdSql2_Value ( ) ; EReference getOrdSql2_Cnst ( ) ; EReference getOrdSql2_Ident ( ) ; EReference getOrdSql2_Dbcol ( ) ; EClass getColumn ( ) ; EAttribute getColumn_Name ( ) ; EAttribute getColumn_Type ( ) ; EAttribute getColumn_Vals ( ) ; EClass getConstant ( ) ; EAttribute getConstant_Case ( ) ; EAttribute getConstant_Name ( ) ; EAttribute getConstant_Type ( ) ; EAttribute getConstant_Vals ( ) ; EClass getIdentifier ( ) ; EAttribute getIdentifier_Mode ( ) ; EAttribute getIdentifier_Case ( ) ; EAttribute getIdentifier_Name ( ) ; EAttribute getIdentifier_Type ( ) ; EAttribute getIdentifier_Vals ( ) ; EClass getDatabaseColumn ( ) ; EAttribute getDatabaseColumn_Name ( ) ; EClass getDatabaseTable ( ) ; EAttribute getDatabaseTable_Name ( ) ; EClass getMappingRule ( ) ; EAttribute getMappingRule_Name ( ) ; EAttribute getMappingRule_Type ( ) ; EAttribute getMappingRule_Filters ( ) ; EReference getMappingRule_Mapping ( ) ; EClass getMapping ( ) ; EReference getMapping_MappingItems ( ) ; EClass getMappingItem ( ) ; EAttribute getMappingItem_Col ( ) ; EAttribute getMappingItem_Type ( ) ; EReference getMappingItem_Attr ( ) ; EClass getMappingColumn ( ) ; EAttribute getMappingColumn_Name ( ) ; EAttribute getMappingColumn_Vals ( ) ; EClass getOptionalFeature ( ) ; EAttribute getOptionalFeature_Name ( ) ; EAttribute getOptionalFeature_Type ( ) ; EAttribute getOptionalFeature_Filters ( ) ; EAttribute getOptionalFeature_Option ( ) ; EClass getPojoType ( ) ; EAttribute getPojoType_Native ( ) ; EReference getPojoType_Ref ( ) ; EReference getPojoType_Type ( ) ; EReference getPojoType_Gref ( ) ; EReference getPojoType_Gtype ( ) ; EAttribute getPojoType_Array ( ) ; EClass getPackageDeclaration ( ) ; EAttribute getPackageDeclaration_Name ( ) ; EAttribute getPackageDeclaration_Suffix ( ) ; EReference getPackageDeclaration_Elements ( ) ; EClass getAbstractPojoEntity ( ) ; EClass getImport ( ) ; EAttribute getImport_ImportedNamespace ( ) ; EClass getImplements ( ) ; EReference getImplements_Implements ( ) ; EClass getExtends ( ) ; EReference getExtends_Extends ( ) ; EClass getPojoEntityModifier1 ( ) ; EAttribute getPojoEntityModifier1_Final ( ) ; EAttribute getPojoEntityModifier1_Abstract ( ) ; EClass getPojoEntityModifier2 ( ) ; EReference getPojoEntityModifier2_SuperType ( ) ; EAttribute getPojoEntityModifier2_Discriminator ( ) ; EAttribute getPojoEntityModifier2_Sernum ( ) ; EClass getPojoEntity ( ) ; EReference getPojoEntity_Modifiers1 ( ) ; EAttribute getPojoEntity_Name ( ) ; EReference getPojoEntity_Modifiers2 ( ) ; EReference getPojoEntity_Features ( ) ; EClass getPojoPropertyModifier ( ) ; EAttribute getPojoPropertyModifier_Required ( ) ; EAttribute getPojoPropertyModifier_Discriminator ( ) ; EAttribute getPojoPropertyModifier_PrimaryKey ( ) ; EClass getPojoProperty ( ) ; EAttribute getPojoProperty_Name ( ) ; EAttribute getPojoProperty_Native ( ) ; EReference getPojoProperty_Attrs ( ) ; EReference getPojoProperty_Ref ( ) ; EReference getPojoProperty_Type ( ) ; EReference getPojoProperty_Gref ( ) ; EReference getPojoProperty_Gtype ( ) ; EAttribute getPojoProperty_Array ( ) ; EReference getPojoProperty_Modifiers ( ) ; ProcessorDslFactory getProcessorDslFactory ( ) ; interface Literals { EClass ARTIFACTS = eINSTANCE . getArtifacts ( ) ; EReference ARTIFACTS__FEATURES = eINSTANCE . getArtifacts_Features ( ) ; EReference ARTIFACTS__STATEMENTS = eINSTANCE . getArtifacts_Statements ( ) ; EReference ARTIFACTS__MAPPINGS = eINSTANCE . getArtifacts_Mappings ( ) ; EReference ARTIFACTS__POJOS = eINSTANCE . getArtifacts_Pojos ( ) ; EReference ARTIFACTS__USAGES = eINSTANCE . getArtifacts_Usages ( ) ; EReference ARTIFACTS__PROPERTIES = eINSTANCE . getArtifacts_Properties ( ) ; EReference ARTIFACTS__TABLES = eINSTANCE . getArtifacts_Tables ( ) ; EReference ARTIFACTS__TABLE_USAGES = eINSTANCE . getArtifacts_TableUsages ( ) ; EReference ARTIFACTS__POJO_PACKAGES = eINSTANCE . getArtifacts_PojoPackages ( ) ; EReference ARTIFACTS__USAGES_EXT = eINSTANCE . getArtifacts_UsagesExt ( ) ; EClass SQL_TYPE_ASSIGNEMENT = eINSTANCE . getSqlTypeAssignement ( ) ; EAttribute SQL_TYPE_ASSIGNEMENT__TYPE_NAME = eINSTANCE . getSqlTypeAssignement_TypeName ( ) ; EAttribute SQL_TYPE_ASSIGNEMENT__SIZE = eINSTANCE . getSqlTypeAssignement_Size ( ) ; EReference SQL_TYPE_ASSIGNEMENT__TYPE = eINSTANCE . getSqlTypeAssignement_Type ( ) ; EClass COLUMN_TYPE_ASSIGNEMENT = eINSTANCE . getColumnTypeAssignement ( ) ; EAttribute COLUMN_TYPE_ASSIGNEMENT__DB_COLUMN = eINSTANCE . getColumnTypeAssignement_DbColumn ( ) ; EReference COLUMN_TYPE_ASSIGNEMENT__TYPE = eINSTANCE . getColumnTypeAssignement_Type ( ) ; EClass SHOW_COLUMN_TYPE_ASSIGNEMENT = eINSTANCE . getShowColumnTypeAssignement ( ) ; EAttribute SHOW_COLUMN_TYPE_ASSIGNEMENT__DB_COLUMN = eINSTANCE . getShowColumnTypeAssignement_DbColumn ( ) ; EAttribute SHOW_COLUMN_TYPE_ASSIGNEMENT__TYPE = eINSTANCE . getShowColumnTypeAssignement_Type ( ) ; EClass TABLE_ASSIGNEMENT = eINSTANCE . getTableAssignement ( ) ; EAttribute TABLE_ASSIGNEMENT__DB_TABLE = eINSTANCE . getTableAssignement_DbTable ( ) ; EAttribute TABLE_ASSIGNEMENT__NEW_NAME = eINSTANCE . getTableAssignement_NewName ( ) ; EClass JOIN_TABLE_ASSIGNEMENT = eINSTANCE . getJoinTableAssignement ( ) ; EAttribute JOIN_TABLE_ASSIGNEMENT__DB_TABLE = eINSTANCE . getJoinTableAssignement_DbTable ( ) ; EAttribute JOIN_TABLE_ASSIGNEMENT__DB_TABLES = eINSTANCE . getJoinTableAssignement_DbTables ( ) ; EClass COLUMN_ASSIGNEMENT = eINSTANCE . getColumnAssignement ( ) ; EAttribute COLUMN_ASSIGNEMENT__DB_COLUMN = eINSTANCE . getColumnAssignement_DbColumn ( ) ; EAttribute COLUMN_ASSIGNEMENT__NEW_NAME = eINSTANCE . getColumnAssignement_NewName ( ) ; EClass IMPORT_ASSIGNEMENT = eINSTANCE . getImportAssignement ( ) ; EAttribute IMPORT_ASSIGNEMENT__DB_COLUMN = eINSTANCE . getImportAssignement_DbColumn ( ) ; EAttribute IMPORT_ASSIGNEMENT__PK_TABLE = eINSTANCE . getImportAssignement_PkTable ( ) ; EAttribute IMPORT_ASSIGNEMENT__PK_COLUMN = eINSTANCE . getImportAssignement_PkColumn ( ) ; EClass EXPORT_ASSIGNEMENT = eINSTANCE . getExportAssignement ( ) ; EAttribute EXPORT_ASSIGNEMENT__DB_COLUMN = eINSTANCE . getExportAssignement_DbColumn ( ) ; EAttribute EXPORT_ASSIGNEMENT__FK_TABLE = eINSTANCE . getExportAssignement_FkTable ( ) ; EAttribute EXPORT_ASSIGNEMENT__FK_COLUMN = eINSTANCE . getExportAssignement_FkColumn ( ) ; EClass INHERITANCE_ASSIGNEMENT = eINSTANCE . getInheritanceAssignement ( ) ; EAttribute INHERITANCE_ASSIGNEMENT__DISCRIMINATOR = eINSTANCE . getInheritanceAssignement_Discriminator ( ) ; EAttribute INHERITANCE_ASSIGNEMENT__DB_TABLE = eINSTANCE . getInheritanceAssignement_DbTable ( ) ; EAttribute INHERITANCE_ASSIGNEMENT__DB_COLUMNS = eINSTANCE . getInheritanceAssignement_DbColumns ( ) ; EClass MANY_TO_MANY_ASSIGNEMENT = eINSTANCE . getManyToManyAssignement ( ) ; EAttribute MANY_TO_MANY_ASSIGNEMENT__PK_COLUMN = eINSTANCE . getManyToManyAssignement_PkColumn ( ) ; EAttribute MANY_TO_MANY_ASSIGNEMENT__PK_TABLE = eINSTANCE . getManyToManyAssignement_PkTable ( ) ; EAttribute MANY_TO_MANY_ASSIGNEMENT__FK_COLUMN = eINSTANCE . getManyToManyAssignement_FkColumn ( ) ; EClass PROPERTY = eINSTANCE . getProperty ( ) ; EAttribute PROPERTY__NAME = eINSTANCE . getProperty_Name ( ) ; EReference PROPERTY__DATABASE = eINSTANCE . getProperty_Database ( ) ; EReference PROPERTY__POJOGEN = eINSTANCE . getProperty_Pojogen ( ) ; EClass DATABASE_PROPERTY = eINSTANCE . getDatabaseProperty ( ) ; EAttribute DATABASE_PROPERTY__NAME = eINSTANCE . getDatabaseProperty_Name ( ) ; EAttribute DATABASE_PROPERTY__DB_URL = eINSTANCE . getDatabaseProperty_DbUrl ( ) ; EAttribute DATABASE_PROPERTY__DB_USERNAME = eINSTANCE . getDatabaseProperty_DbUsername ( ) ; EAttribute DATABASE_PROPERTY__DB_PASSWORD = eINSTANCE . getDatabaseProperty_DbPassword ( ) ; EAttribute DATABASE_PROPERTY__DB_SCHEMA = eINSTANCE . getDatabaseProperty_DbSchema ( ) ; EAttribute DATABASE_PROPERTY__DB_DRIVER = eINSTANCE . getDatabaseProperty_DbDriver ( ) ; EClass POJOGEN_PROPERTY = eINSTANCE . getPojogenProperty ( ) ; EAttribute POJOGEN_PROPERTY__NAME = eINSTANCE . getPojogenProperty_Name ( ) ; EReference POJOGEN_PROPERTY__SQL_TYPES = eINSTANCE . getPojogenProperty_SqlTypes ( ) ; EAttribute POJOGEN_PROPERTY__DB_TABLE = eINSTANCE . getPojogenProperty_DbTable ( ) ; EReference POJOGEN_PROPERTY__COLUMN_TYPES = eINSTANCE . getPojogenProperty_ColumnTypes ( ) ; EReference POJOGEN_PROPERTY__COLUMN_TYPE = eINSTANCE . getPojogenProperty_ColumnType ( ) ; EAttribute POJOGEN_PROPERTY__DB_TABLES = eINSTANCE . getPojogenProperty_DbTables ( ) ; EReference POJOGEN_PROPERTY__JOIN_TABLES = eINSTANCE . getPojogenProperty_JoinTables ( ) ; EAttribute POJOGEN_PROPERTY__DB_COLUMNS = eINSTANCE . getPojogenProperty_DbColumns ( ) ; EReference POJOGEN_PROPERTY__TABLES = eINSTANCE . getPojogenProperty_Tables ( ) ; EReference POJOGEN_PROPERTY__COLUMNS = eINSTANCE . getPojogenProperty_Columns ( ) ; EReference POJOGEN_PROPERTY__EXPORTS = eINSTANCE . getPojogenProperty_Exports ( ) ; EReference POJOGEN_PROPERTY__IMPORTS = eINSTANCE . getPojogenProperty_Imports ( ) ; EReference POJOGEN_PROPERTY__MANY2S = eINSTANCE . getPojogenProperty_Many2s ( ) ; EAttribute POJOGEN_PROPERTY__DB_COLUMN = eINSTANCE . getPojogenProperty_DbColumn ( ) ; EReference POJOGEN_PROPERTY__INHERITANCE = eINSTANCE . getPojogenProperty_Inheritance ( ) ; EAttribute POJOGEN_PROPERTY__METHODS = eINSTANCE . getPojogenProperty_Methods ( ) ; EReference POJOGEN_PROPERTY__TO_IMPLEMENTS = eINSTANCE . getPojogenProperty_ToImplements ( ) ; EReference POJOGEN_PROPERTY__TO_EXTENDS = eINSTANCE . getPojogenProperty_ToExtends ( ) ; EClass POJO_DEFINITION = eINSTANCE . getPojoDefinition ( ) ; EAttribute POJO_DEFINITION__NAME = eINSTANCE . getPojoDefinition_Name ( ) ; EAttribute POJO_DEFINITION__CLASS = eINSTANCE . getPojoDefinition_Class ( ) ; EClass POJO_USAGE = eINSTANCE . getPojoUsage ( ) ; EReference POJO_USAGE__POJO = eINSTANCE . getPojoUsage_Pojo ( ) ; EClass COLUMN_USAGE = eINSTANCE . getColumnUsage ( ) ; EReference COLUMN_USAGE__STATEMENT = eINSTANCE . getColumnUsage_Statement ( ) ; EClass IDENTIFIER_USAGE = eINSTANCE . getIdentifierUsage ( ) ; EReference IDENTIFIER_USAGE__STATEMENT = eINSTANCE . getIdentifierUsage_Statement ( ) ; EClass CONSTANT_USAGE = eINSTANCE . getConstantUsage ( ) ; EReference CONSTANT_USAGE__STATEMENT = eINSTANCE . getConstantUsage_Statement ( ) ; EClass MAPPING_USAGE = eINSTANCE . getMappingUsage ( ) ; EReference MAPPING_USAGE__STATEMENT = eINSTANCE . getMappingUsage_Statement ( ) ; EClass POJO_USAGE_EXT = eINSTANCE . getPojoUsageExt ( ) ; EReference POJO_USAGE_EXT__POJO = eINSTANCE . getPojoUsageExt_Pojo ( ) ; EClass COLUMN_USAGE_EXT = eINSTANCE . getColumnUsageExt ( ) ; EReference COLUMN_USAGE_EXT__STATEMENT = eINSTANCE . getColumnUsageExt_Statement ( ) ; EClass IDENTIFIER_USAGE_EXT = eINSTANCE . getIdentifierUsageExt ( ) ; EReference IDENTIFIER_USAGE_EXT__STATEMENT = eINSTANCE . getIdentifierUsageExt_Statement ( ) ; EClass CONSTANT_USAGE_EXT = eINSTANCE . getConstantUsageExt ( ) ; EReference CONSTANT_USAGE_EXT__STATEMENT = eINSTANCE . getConstantUsageExt_Statement ( ) ; EClass MAPPING_USAGE_EXT = eINSTANCE . getMappingUsageExt ( ) ; EReference MAPPING_USAGE_EXT__STATEMENT = eINSTANCE . getMappingUsageExt_Statement ( ) ; EClass TABLE_DEFINITION = eINSTANCE . getTableDefinition ( ) ; EAttribute TABLE_DEFINITION__NAME = eINSTANCE . getTableDefinition_Name ( ) ; EAttribute TABLE_DEFINITION__TABLE = eINSTANCE . getTableDefinition_Table ( ) ; EClass TABLE_USAGE = eINSTANCE . getTableUsage ( ) ; EReference TABLE_USAGE__STATEMENT = eINSTANCE . getTableUsage_Statement ( ) ; EReference TABLE_USAGE__TABLE = eINSTANCE . getTableUsage_Table ( ) ; EAttribute TABLE_USAGE__PREFIX = eINSTANCE . getTableUsage_Prefix ( ) ; EClass META_STATEMENT = eINSTANCE . getMetaStatement ( ) ; EAttribute META_STATEMENT__NAME = eINSTANCE . getMetaStatement_Name ( ) ; EAttribute META_STATEMENT__TYPE = eINSTANCE . getMetaStatement_Type ( ) ; EAttribute META_STATEMENT__FILTERS = eINSTANCE . getMetaStatement_Filters ( ) ; EReference META_STATEMENT__STATEMENT = eINSTANCE . getMetaStatement_Statement ( ) ; EClass SQL = eINSTANCE . getSql ( ) ; EReference SQL__SQLS = eINSTANCE . getSql_Sqls ( ) ; EClass SQL_FRAGMENT = eINSTANCE . getSqlFragment ( ) ; EAttribute SQL_FRAGMENT__VALUE = eINSTANCE . getSqlFragment_Value ( ) ; EReference SQL_FRAGMENT__COL = eINSTANCE . getSqlFragment_Col ( ) ; EReference SQL_FRAGMENT__CNST = eINSTANCE . getSqlFragment_Cnst ( ) ; EReference SQL_FRAGMENT__IDENT = eINSTANCE . getSqlFragment_Ident ( ) ; EReference SQL_FRAGMENT__META = eINSTANCE . getSqlFragment_Meta ( ) ; EReference SQL_FRAGMENT__DBTAB = eINSTANCE . getSqlFragment_Dbtab ( ) ; EReference SQL_FRAGMENT__DBCOL = eINSTANCE . getSqlFragment_Dbcol ( ) ; EClass META_SQL = eINSTANCE . getMetaSql ( ) ; EReference META_SQL__IFS = eINSTANCE . getMetaSql_Ifs ( ) ; EAttribute META_SQL__TYPE = eINSTANCE . getMetaSql_Type ( ) ; EReference META_SQL__COND = eINSTANCE . getMetaSql_Cond ( ) ; EAttribute META_SQL__FTYPE = eINSTANCE . getMetaSql_Ftype ( ) ; EReference META_SQL__ORD = eINSTANCE . getMetaSql_Ord ( ) ; EClass IF_SQL = eINSTANCE . getIfSql ( ) ; EReference IF_SQL__SQLS = eINSTANCE . getIfSql_Sqls ( ) ; EClass IF_SQL_FRAGMENT = eINSTANCE . getIfSqlFragment ( ) ; EAttribute IF_SQL_FRAGMENT__VALUE = eINSTANCE . getIfSqlFragment_Value ( ) ; EReference IF_SQL_FRAGMENT__COL = eINSTANCE . getIfSqlFragment_Col ( ) ; EReference IF_SQL_FRAGMENT__CNST = eINSTANCE . getIfSqlFragment_Cnst ( ) ; EReference IF_SQL_FRAGMENT__IDENT = eINSTANCE . getIfSqlFragment_Ident ( ) ; EReference IF_SQL_FRAGMENT__DBTAB = eINSTANCE . getIfSqlFragment_Dbtab ( ) ; EReference IF_SQL_FRAGMENT__DBCOL = eINSTANCE . getIfSqlFragment_Dbcol ( ) ; EReference IF_SQL_FRAGMENT__META = eINSTANCE . getIfSqlFragment_Meta ( ) ; EClass IF_META_SQL = eINSTANCE . getIfMetaSql ( ) ; EReference IF_META_SQL__IFS = eINSTANCE . getIfMetaSql_Ifs ( ) ; EAttribute IF_META_SQL__TYPE = eINSTANCE . getIfMetaSql_Type ( ) ; EReference IF_META_SQL__COND = eINSTANCE . getIfMetaSql_Cond ( ) ; EClass IF_SQL_COND = eINSTANCE . getIfSqlCond ( ) ; EReference IF_SQL_COND__BOOL1 = eINSTANCE . getIfSqlCond_Bool1 ( ) ; EAttribute IF_SQL_COND__OPER = eINSTANCE . getIfSqlCond_Oper ( ) ; EReference IF_SQL_COND__BOOL2 = eINSTANCE . getIfSqlCond_Bool2 ( ) ; EClass IF_SQL_BOOL = eINSTANCE . getIfSqlBool ( ) ; EAttribute IF_SQL_BOOL__NOT = eINSTANCE . getIfSqlBool_Not ( ) ; EReference IF_SQL_BOOL__CNST = eINSTANCE . getIfSqlBool_Cnst ( ) ; EReference IF_SQL_BOOL__IDENT = eINSTANCE . getIfSqlBool_Ident ( ) ; EReference IF_SQL_BOOL__COND = eINSTANCE . getIfSqlBool_Cond ( ) ; EClass ORD_SQL = eINSTANCE . getOrdSql ( ) ; EReference ORD_SQL__SQLS = eINSTANCE . getOrdSql_Sqls ( ) ; EClass ORD_SQL2 = eINSTANCE . getOrdSql2 ( ) ; EAttribute ORD_SQL2__VALUE = eINSTANCE . getOrdSql2_Value ( ) ; EReference ORD_SQL2__CNST = eINSTANCE . getOrdSql2_Cnst ( ) ; EReference ORD_SQL2__IDENT = eINSTANCE . getOrdSql2_Ident ( ) ; EReference ORD_SQL2__DBCOL = eINSTANCE . getOrdSql2_Dbcol ( ) ; EClass COLUMN = eINSTANCE . getColumn ( ) ; EAttribute COLUMN__NAME = eINSTANCE . getColumn_Name ( ) ; EAttribute COLUMN__TYPE = eINSTANCE . getColumn_Type ( ) ; EAttribute COLUMN__VALS = eINSTANCE . getColumn_Vals ( ) ; EClass CONSTANT = eINSTANCE . getConstant ( ) ; EAttribute CONSTANT__CASE = eINSTANCE . getConstant_Case ( ) ; EAttribute CONSTANT__NAME = eINSTANCE . getConstant_Name ( ) ; EAttribute CONSTANT__TYPE = eINSTANCE . getConstant_Type ( ) ; EAttribute CONSTANT__VALS = eINSTANCE . getConstant_Vals ( ) ; EClass IDENTIFIER = eINSTANCE . getIdentifier ( ) ; EAttribute IDENTIFIER__MODE = eINSTANCE . getIdentifier_Mode ( ) ; EAttribute IDENTIFIER__CASE = eINSTANCE . getIdentifier_Case ( ) ; EAttribute IDENTIFIER__NAME = eINSTANCE . getIdentifier_Name ( ) ; EAttribute IDENTIFIER__TYPE = eINSTANCE . getIdentifier_Type ( ) ; EAttribute IDENTIFIER__VALS = eINSTANCE . getIdentifier_Vals ( ) ; EClass DATABASE_COLUMN = eINSTANCE . getDatabaseColumn ( ) ; EAttribute DATABASE_COLUMN__NAME = eINSTANCE . getDatabaseColumn_Name ( ) ; EClass DATABASE_TABLE = eINSTANCE . getDatabaseTable ( ) ; EAttribute DATABASE_TABLE__NAME = eINSTANCE . getDatabaseTable_Name ( ) ; EClass MAPPING_RULE = eINSTANCE . getMappingRule ( ) ; EAttribute MAPPING_RULE__NAME = eINSTANCE . getMappingRule_Name ( ) ; EAttribute MAPPING_RULE__TYPE = eINSTANCE . getMappingRule_Type ( ) ; EAttribute MAPPING_RULE__FILTERS = eINSTANCE . getMappingRule_Filters ( ) ; EReference MAPPING_RULE__MAPPING = eINSTANCE . getMappingRule_Mapping ( ) ; EClass MAPPING = eINSTANCE . getMapping ( ) ; EReference MAPPING__MAPPING_ITEMS = eINSTANCE . getMapping_MappingItems ( ) ; EClass MAPPING_ITEM = eINSTANCE . getMappingItem ( ) ; EAttribute MAPPING_ITEM__COL = eINSTANCE . getMappingItem_Col ( ) ; EAttribute MAPPING_ITEM__TYPE = eINSTANCE . getMappingItem_Type ( ) ; EReference MAPPING_ITEM__ATTR = eINSTANCE . getMappingItem_Attr ( ) ; EClass MAPPING_COLUMN = eINSTANCE . getMappingColumn ( ) ; EAttribute MAPPING_COLUMN__NAME = eINSTANCE . getMappingColumn_Name ( ) ; EAttribute MAPPING_COLUMN__VALS = eINSTANCE . getMappingColumn_Vals ( ) ; EClass OPTIONAL_FEATURE = eINSTANCE . getOptionalFeature ( ) ; EAttribute OPTIONAL_FEATURE__NAME = eINSTANCE . getOptionalFeature_Name ( ) ; EAttribute OPTIONAL_FEATURE__TYPE = eINSTANCE . getOptionalFeature_Type ( ) ; EAttribute OPTIONAL_FEATURE__FILTERS = eINSTANCE . getOptionalFeature_Filters ( ) ; EAttribute OPTIONAL_FEATURE__OPTION = eINSTANCE . getOptionalFeature_Option ( ) ; EClass POJO_TYPE = eINSTANCE . getPojoType ( ) ; EAttribute POJO_TYPE__NATIVE = eINSTANCE . getPojoType_Native ( ) ; EReference POJO_TYPE__REF = eINSTANCE . getPojoType_Ref ( ) ; EReference POJO_TYPE__TYPE = eINSTANCE . getPojoType_Type ( ) ; EReference POJO_TYPE__GREF = eINSTANCE . getPojoType_Gref ( ) ; EReference POJO_TYPE__GTYPE = eINSTANCE . getPojoType_Gtype ( ) ; EAttribute POJO_TYPE__ARRAY = eINSTANCE . getPojoType_Array ( ) ; EClass PACKAGE_DECLARATION = eINSTANCE . getPackageDeclaration ( ) ; EAttribute PACKAGE_DECLARATION__NAME = eINSTANCE . getPackageDeclaration_Name ( ) ; EAttribute PACKAGE_DECLARATION__SUFFIX = eINSTANCE . getPackageDeclaration_Suffix ( ) ; EReference PACKAGE_DECLARATION__ELEMENTS = eINSTANCE . getPackageDeclaration_Elements ( ) ; EClass ABSTRACT_POJO_ENTITY = eINSTANCE . getAbstractPojoEntity ( ) ; EClass IMPORT = eINSTANCE . getImport ( ) ; EAttribute IMPORT__IMPORTED_NAMESPACE = eINSTANCE . getImport_ImportedNamespace ( ) ; EClass IMPLEMENTS = eINSTANCE . getImplements ( ) ; EReference IMPLEMENTS__IMPLEMENTS = eINSTANCE . getImplements_Implements ( ) ; EClass EXTENDS = eINSTANCE . getExtends ( ) ; EReference EXTENDS__EXTENDS = eINSTANCE . getExtends_Extends ( ) ; EClass POJO_ENTITY_MODIFIER1 = eINSTANCE . getPojoEntityModifier1 ( ) ; EAttribute POJO_ENTITY_MODIFIER1__FINAL = eINSTANCE . getPojoEntityModifier1_Final ( ) ; EAttribute POJO_ENTITY_MODIFIER1__ABSTRACT = eINSTANCE . getPojoEntityModifier1_Abstract ( ) ; EClass POJO_ENTITY_MODIFIER2 = eINSTANCE . getPojoEntityModifier2 ( ) ; EReference POJO_ENTITY_MODIFIER2__SUPER_TYPE = eINSTANCE . getPojoEntityModifier2_SuperType ( ) ; EAttribute POJO_ENTITY_MODIFIER2__DISCRIMINATOR = eINSTANCE . getPojoEntityModifier2_Discriminator ( ) ; EAttribute POJO_ENTITY_MODIFIER2__SERNUM = eINSTANCE . getPojoEntityModifier2_Sernum ( ) ; EClass POJO_ENTITY = eINSTANCE . getPojoEntity ( ) ; EReference POJO_ENTITY__MODIFIERS1 = eINSTANCE . getPojoEntity_Modifiers1 ( ) ; EAttribute POJO_ENTITY__NAME = eINSTANCE . getPojoEntity_Name ( ) ; EReference POJO_ENTITY__MODIFIERS2 = eINSTANCE . getPojoEntity_Modifiers2 ( ) ; EReference POJO_ENTITY__FEATURES = eINSTANCE . getPojoEntity_Features ( ) ; EClass POJO_PROPERTY_MODIFIER = eINSTANCE . getPojoPropertyModifier ( ) ; EAttribute POJO_PROPERTY_MODIFIER__REQUIRED = eINSTANCE . getPojoPropertyModifier_Required ( ) ; EAttribute POJO_PROPERTY_MODIFIER__DISCRIMINATOR = eINSTANCE . getPojoPropertyModifier_Discriminator ( ) ; EAttribute POJO_PROPERTY_MODIFIER__PRIMARY_KEY = eINSTANCE . getPojoPropertyModifier_PrimaryKey ( ) ; EClass POJO_PROPERTY = eINSTANCE . getPojoProperty ( ) ; EAttribute POJO_PROPERTY__NAME = eINSTANCE . getPojoProperty_Name ( ) ; EAttribute POJO_PROPERTY__NATIVE = eINSTANCE . getPojoProperty_Native ( ) ; EReference POJO_PROPERTY__ATTRS = eINSTANCE . getPojoProperty_Attrs ( ) ; EReference POJO_PROPERTY__REF = eINSTANCE . getPojoProperty_Ref ( ) ; EReference POJO_PROPERTY__TYPE = eINSTANCE . getPojoProperty_Type ( ) ; EReference POJO_PROPERTY__GREF = eINSTANCE . getPojoProperty_Gref ( ) ; EReference POJO_PROPERTY__GTYPE = eINSTANCE . getPojoProperty_Gtype ( ) ; EAttribute POJO_PROPERTY__ARRAY = eINSTANCE . getPojoProperty_Array ( ) ; EReference POJO_PROPERTY__MODIFIERS = eINSTANCE . getPojoProperty_Modifiers ( ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface SqlFragment extends EObject { String getValue ( ) ; void setValue ( String value ) ; Column getCol ( ) ; void setCol ( Column value ) ; Constant getCnst ( ) ; void setCnst ( Constant value ) ; Identifier getIdent ( ) ; void setIdent ( Identifier value ) ; MetaSql getMeta ( ) ; void setMeta ( MetaSql value ) ; DatabaseTable getDbtab ( ) ; void setDbtab ( DatabaseTable value ) ; DatabaseColumn getDbcol ( ) ; void setDbcol ( DatabaseColumn value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface OrdSql2 extends EObject { String getValue ( ) ; void setValue ( String value ) ; Constant getCnst ( ) ; void setCnst ( Constant value ) ; Identifier getIdent ( ) ; void setIdent ( Identifier value ) ; DatabaseColumn getDbcol ( ) ; void setDbcol ( DatabaseColumn value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EFactory ; public interface ProcessorDslFactory extends EFactory { ProcessorDslFactory eINSTANCE = org . sqlproc . dsl . processorDsl . impl . ProcessorDslFactoryImpl . init ( ) ; Artifacts createArtifacts ( ) ; SqlTypeAssignement createSqlTypeAssignement ( ) ; ColumnTypeAssignement createColumnTypeAssignement ( ) ; ShowColumnTypeAssignement createShowColumnTypeAssignement ( ) ; TableAssignement createTableAssignement ( ) ; JoinTableAssignement createJoinTableAssignement ( ) ; ColumnAssignement createColumnAssignement ( ) ; ImportAssignement createImportAssignement ( ) ; ExportAssignement createExportAssignement ( ) ; InheritanceAssignement createInheritanceAssignement ( ) ; ManyToManyAssignement createManyToManyAssignement ( ) ; Property createProperty ( ) ; DatabaseProperty createDatabaseProperty ( ) ; PojogenProperty createPojogenProperty ( ) ; PojoDefinition createPojoDefinition ( ) ; PojoUsage createPojoUsage ( ) ; ColumnUsage createColumnUsage ( ) ; IdentifierUsage createIdentifierUsage ( ) ; ConstantUsage createConstantUsage ( ) ; MappingUsage createMappingUsage ( ) ; PojoUsageExt createPojoUsageExt ( ) ; ColumnUsageExt createColumnUsageExt ( ) ; IdentifierUsageExt createIdentifierUsageExt ( ) ; ConstantUsageExt createConstantUsageExt ( ) ; MappingUsageExt createMappingUsageExt ( ) ; TableDefinition createTableDefinition ( ) ; TableUsage createTableUsage ( ) ; MetaStatement createMetaStatement ( ) ; Sql createSql ( ) ; SqlFragment createSqlFragment ( ) ; MetaSql createMetaSql ( ) ; IfSql createIfSql ( ) ; IfSqlFragment createIfSqlFragment ( ) ; IfMetaSql createIfMetaSql ( ) ; IfSqlCond createIfSqlCond ( ) ; IfSqlBool createIfSqlBool ( ) ; OrdSql createOrdSql ( ) ; OrdSql2 createOrdSql2 ( ) ; Column createColumn ( ) ; Constant createConstant ( ) ; Identifier createIdentifier ( ) ; DatabaseColumn createDatabaseColumn ( ) ; DatabaseTable createDatabaseTable ( ) ; MappingRule createMappingRule ( ) ; Mapping createMapping ( ) ; MappingItem createMappingItem ( ) ; MappingColumn createMappingColumn ( ) ; OptionalFeature createOptionalFeature ( ) ; PojoType createPojoType ( ) ; PackageDeclaration createPackageDeclaration ( ) ; AbstractPojoEntity createAbstractPojoEntity ( ) ; Import createImport ( ) ; Implements createImplements ( ) ; Extends createExtends ( ) ; PojoEntityModifier1 createPojoEntityModifier1 ( ) ; PojoEntityModifier2 createPojoEntityModifier2 ( ) ; PojoEntity createPojoEntity ( ) ; PojoPropertyModifier createPojoPropertyModifier ( ) ; PojoProperty createPojoProperty ( ) ; ProcessorDslPackage getProcessorDslPackage ( ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface ManyToManyAssignement extends EObject { String getPkColumn ( ) ; void setPkColumn ( String value ) ; String getPkTable ( ) ; void setPkTable ( String value ) ; String getFkColumn ( ) ; void setFkColumn ( String value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EObject ; public interface IfSqlCond extends EObject { IfSqlBool getBool1 ( ) ; void setBool1 ( IfSqlBool value ) ; EList < String > getOper ( ) ; EList < IfSqlBool > getBool2 ( ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EObject ; public interface OptionalFeature extends EObject { String getName ( ) ; void setName ( String value ) ; String getType ( ) ; void setType ( String value ) ; EList < String > getFilters ( ) ; String getOption ( ) ; void setOption ( String value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface IfSqlBool extends EObject { boolean isNot ( ) ; void setNot ( boolean value ) ; Constant getCnst ( ) ; void setCnst ( Constant value ) ; Identifier getIdent ( ) ; void setIdent ( Identifier value ) ; IfSqlCond getCond ( ) ; void setCond ( IfSqlCond value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . xtext . common . types . JvmType ; public interface Extends extends AbstractPojoEntity { JvmType getExtends ( ) ; void setExtends ( JvmType value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; public interface IdentifierUsageExt extends PojoUsageExt { MetaStatement getStatement ( ) ; void setStatement ( MetaStatement value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface PojoPropertyModifier extends EObject { boolean isRequired ( ) ; void setRequired ( boolean value ) ; boolean isDiscriminator ( ) ; void setDiscriminator ( boolean value ) ; boolean isPrimaryKey ( ) ; void setPrimaryKey ( boolean value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; public interface ColumnUsage extends PojoUsage { MetaStatement getStatement ( ) ; void setStatement ( MetaStatement value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface DatabaseProperty extends EObject { String getName ( ) ; void setName ( String value ) ; String getDbUrl ( ) ; void setDbUrl ( String value ) ; String getDbUsername ( ) ; void setDbUsername ( String value ) ; String getDbPassword ( ) ; void setDbPassword ( String value ) ; String getDbSchema ( ) ; void setDbSchema ( String value ) ; String getDbDriver ( ) ; void setDbDriver ( String value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; public interface PojoEntity extends AbstractPojoEntity { EList < PojoEntityModifier1 > getModifiers1 ( ) ; String getName ( ) ; void setName ( String value ) ; EList < PojoEntityModifier2 > getModifiers2 ( ) ; EList < PojoProperty > getFeatures ( ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EObject ; public interface MetaSql extends EObject { EList < IfSql > getIfs ( ) ; String getType ( ) ; void setType ( String value ) ; IfSqlCond getCond ( ) ; void setCond ( IfSqlCond value ) ; String getFtype ( ) ; void setFtype ( String value ) ; OrdSql getOrd ( ) ; void setOrd ( OrdSql value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface PojoUsageExt extends EObject { PojoEntity getPojo ( ) ; void setPojo ( PojoEntity value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; public interface MappingUsage extends PojoUsage { MappingRule getStatement ( ) ; void setStatement ( MappingRule value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EObject ; public interface JoinTableAssignement extends EObject { String getDbTable ( ) ; void setDbTable ( String value ) ; EList < String > getDbTables ( ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EObject ; public interface Mapping extends EObject { EList < MappingItem > getMappingItems ( ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface ColumnAssignement extends EObject { String getDbColumn ( ) ; void setDbColumn ( String value ) ; String getNewName ( ) ; void setNewName ( String value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; public interface PackageDeclaration extends AbstractPojoEntity { String getName ( ) ; void setName ( String value ) ; String getSuffix ( ) ; void setSuffix ( String value ) ; EList < AbstractPojoEntity > getElements ( ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EObject ; public interface MappingColumn extends EObject { String getName ( ) ; void setName ( String value ) ; EList < String > getVals ( ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface PojoEntityModifier1 extends EObject { boolean isFinal ( ) ; void setFinal ( boolean value ) ; boolean isAbstract ( ) ; void setAbstract ( boolean value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface TableDefinition extends EObject { String getName ( ) ; void setName ( String value ) ; String getTable ( ) ; void setTable ( String value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface DatabaseColumn extends EObject { String getName ( ) ; void setName ( String value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; public interface ColumnUsageExt extends PojoUsageExt { MetaStatement getStatement ( ) ; void setStatement ( MetaStatement value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EObject ; public interface Identifier extends EObject { String getMode ( ) ; void setMode ( String value ) ; String getCase ( ) ; void setCase ( String value ) ; String getName ( ) ; void setName ( String value ) ; String getType ( ) ; void setType ( String value ) ; EList < String > getVals ( ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl . util ; import org . eclipse . emf . common . notify . Adapter ; import org . eclipse . emf . common . notify . Notifier ; import org . eclipse . emf . common . notify . impl . AdapterFactoryImpl ; import org . eclipse . emf . ecore . EObject ; import org . sqlproc . dsl . processorDsl . * ; public class ProcessorDslAdapterFactory extends AdapterFactoryImpl { protected static ProcessorDslPackage modelPackage ; public ProcessorDslAdapterFactory ( ) { if ( modelPackage == null ) { modelPackage = ProcessorDslPackage . eINSTANCE ; } } @ Override public boolean isFactoryForType ( Object object ) { if ( object == modelPackage ) { return true ; } if ( object instanceof EObject ) { return ( ( EObject ) object ) . eClass ( ) . getEPackage ( ) == modelPackage ; } return false ; } protected ProcessorDslSwitch < Adapter > modelSwitch = new ProcessorDslSwitch < Adapter > ( ) { @ Override public Adapter caseArtifacts ( Artifacts object ) { return createArtifactsAdapter ( ) ; } @ Override public Adapter caseSqlTypeAssignement ( SqlTypeAssignement object ) { return createSqlTypeAssignementAdapter ( ) ; } @ Override public Adapter caseColumnTypeAssignement ( ColumnTypeAssignement object ) { return createColumnTypeAssignementAdapter ( ) ; } @ Override public Adapter caseShowColumnTypeAssignement ( ShowColumnTypeAssignement object ) { return createShowColumnTypeAssignementAdapter ( ) ; } @ Override public Adapter caseTableAssignement ( TableAssignement object ) { return createTableAssignementAdapter ( ) ; } @ Override public Adapter caseJoinTableAssignement ( JoinTableAssignement object ) { return createJoinTableAssignementAdapter ( ) ; } @ Override public Adapter caseColumnAssignement ( ColumnAssignement object ) { return createColumnAssignementAdapter ( ) ; } @ Override public Adapter caseImportAssignement ( ImportAssignement object ) { return createImportAssignementAdapter ( ) ; } @ Override public Adapter caseExportAssignement ( ExportAssignement object ) { return createExportAssignementAdapter ( ) ; } @ Override public Adapter caseInheritanceAssignement ( InheritanceAssignement object ) { return createInheritanceAssignementAdapter ( ) ; } @ Override public Adapter caseManyToManyAssignement ( ManyToManyAssignement object ) { return createManyToManyAssignementAdapter ( ) ; } @ Override public Adapter caseProperty ( Property object ) { return createPropertyAdapter ( ) ; } @ Override public Adapter caseDatabaseProperty ( DatabaseProperty object ) { return createDatabasePropertyAdapter ( ) ; } @ Override public Adapter casePojogenProperty ( PojogenProperty object ) { return createPojogenPropertyAdapter ( ) ; } @ Override public Adapter casePojoDefinition ( PojoDefinition object ) { return createPojoDefinitionAdapter ( ) ; } @ Override public Adapter casePojoUsage ( PojoUsage object ) { return createPojoUsageAdapter ( ) ; } @ Override public Adapter caseColumnUsage ( ColumnUsage object ) { return createColumnUsageAdapter ( ) ; } @ Override public Adapter caseIdentifierUsage ( IdentifierUsage object ) { return createIdentifierUsageAdapter ( ) ; } @ Override public Adapter caseConstantUsage ( ConstantUsage object ) { return createConstantUsageAdapter ( ) ; } @ Override public Adapter caseMappingUsage ( MappingUsage object ) { return createMappingUsageAdapter ( ) ; } @ Override public Adapter casePojoUsageExt ( PojoUsageExt object ) { return createPojoUsageExtAdapter ( ) ; } @ Override public Adapter caseColumnUsageExt ( ColumnUsageExt object ) { return createColumnUsageExtAdapter ( ) ; } @ Override public Adapter caseIdentifierUsageExt ( IdentifierUsageExt object ) { return createIdentifierUsageExtAdapter ( ) ; } @ Override public Adapter caseConstantUsageExt ( ConstantUsageExt object ) { return createConstantUsageExtAdapter ( ) ; } @ Override public Adapter caseMappingUsageExt ( MappingUsageExt object ) { return createMappingUsageExtAdapter ( ) ; } @ Override public Adapter caseTableDefinition ( TableDefinition object ) { return createTableDefinitionAdapter ( ) ; } @ Override public Adapter caseTableUsage ( TableUsage object ) { return createTableUsageAdapter ( ) ; } @ Override public Adapter caseMetaStatement ( MetaStatement object ) { return createMetaStatementAdapter ( ) ; } @ Override public Adapter caseSql ( Sql object ) { return createSqlAdapter ( ) ; } @ Override public Adapter caseSqlFragment ( SqlFragment object ) { return createSqlFragmentAdapter ( ) ; } @ Override public Adapter caseMetaSql ( MetaSql object ) { return createMetaSqlAdapter ( ) ; } @ Override public Adapter caseIfSql ( IfSql object ) { return createIfSqlAdapter ( ) ; } @ Override public Adapter caseIfSqlFragment ( IfSqlFragment object ) { return createIfSqlFragmentAdapter ( ) ; } @ Override public Adapter caseIfMetaSql ( IfMetaSql object ) { return createIfMetaSqlAdapter ( ) ; } @ Override public Adapter caseIfSqlCond ( IfSqlCond object ) { return createIfSqlCondAdapter ( ) ; } @ Override public Adapter caseIfSqlBool ( IfSqlBool object ) { return createIfSqlBoolAdapter ( ) ; } @ Override public Adapter caseOrdSql ( OrdSql object ) { return createOrdSqlAdapter ( ) ; } @ Override public Adapter caseOrdSql2 ( OrdSql2 object ) { return createOrdSql2Adapter ( ) ; } @ Override public Adapter caseColumn ( Column object ) { return createColumnAdapter ( ) ; } @ Override public Adapter caseConstant ( Constant object ) { return createConstantAdapter ( ) ; } @ Override public Adapter caseIdentifier ( Identifier object ) { return createIdentifierAdapter ( ) ; } @ Override public Adapter caseDatabaseColumn ( DatabaseColumn object ) { return createDatabaseColumnAdapter ( ) ; } @ Override public Adapter caseDatabaseTable ( DatabaseTable object ) { return createDatabaseTableAdapter ( ) ; } @ Override public Adapter caseMappingRule ( MappingRule object ) { return createMappingRuleAdapter ( ) ; } @ Override public Adapter caseMapping ( Mapping object ) { return createMappingAdapter ( ) ; } @ Override public Adapter caseMappingItem ( MappingItem object ) { return createMappingItemAdapter ( ) ; } @ Override public Adapter caseMappingColumn ( MappingColumn object ) { return createMappingColumnAdapter ( ) ; } @ Override public Adapter caseOptionalFeature ( OptionalFeature object ) { return createOptionalFeatureAdapter ( ) ; } @ Override public Adapter casePojoType ( PojoType object ) { return createPojoTypeAdapter ( ) ; } @ Override public Adapter casePackageDeclaration ( PackageDeclaration object ) { return createPackageDeclarationAdapter ( ) ; } @ Override public Adapter caseAbstractPojoEntity ( AbstractPojoEntity object ) { return createAbstractPojoEntityAdapter ( ) ; } @ Override public Adapter caseImport ( Import object ) { return createImportAdapter ( ) ; } @ Override public Adapter caseImplements ( Implements object ) { return createImplementsAdapter ( ) ; } @ Override public Adapter caseExtends ( Extends object ) { return createExtendsAdapter ( ) ; } @ Override public Adapter casePojoEntityModifier1 ( PojoEntityModifier1 object ) { return createPojoEntityModifier1Adapter ( ) ; } @ Override public Adapter casePojoEntityModifier2 ( PojoEntityModifier2 object ) { return createPojoEntityModifier2Adapter ( ) ; } @ Override public Adapter casePojoEntity ( PojoEntity object ) { return createPojoEntityAdapter ( ) ; } @ Override public Adapter casePojoPropertyModifier ( PojoPropertyModifier object ) { return createPojoPropertyModifierAdapter ( ) ; } @ Override public Adapter casePojoProperty ( PojoProperty object ) { return createPojoPropertyAdapter ( ) ; } @ Override public Adapter defaultCase ( EObject object ) { return createEObjectAdapter ( ) ; } } ; @ Override public Adapter createAdapter ( Notifier target ) { return modelSwitch . doSwitch ( ( EObject ) target ) ; } public Adapter createArtifactsAdapter ( ) { return null ; } public Adapter createSqlTypeAssignementAdapter ( ) { return null ; } public Adapter createColumnTypeAssignementAdapter ( ) { return null ; } public Adapter createShowColumnTypeAssignementAdapter ( ) { return null ; } public Adapter createTableAssignementAdapter ( ) { return null ; } public Adapter createJoinTableAssignementAdapter ( ) { return null ; } public Adapter createColumnAssignementAdapter ( ) { return null ; } public Adapter createImportAssignementAdapter ( ) { return null ; } public Adapter createExportAssignementAdapter ( ) { return null ; } public Adapter createInheritanceAssignementAdapter ( ) { return null ; } public Adapter createManyToManyAssignementAdapter ( ) { return null ; } public Adapter createPropertyAdapter ( ) { return null ; } public Adapter createDatabasePropertyAdapter ( ) { return null ; } public Adapter createPojogenPropertyAdapter ( ) { return null ; } public Adapter createPojoDefinitionAdapter ( ) { return null ; } public Adapter createPojoUsageAdapter ( ) { return null ; } public Adapter createColumnUsageAdapter ( ) { return null ; } public Adapter createIdentifierUsageAdapter ( ) { return null ; } public Adapter createConstantUsageAdapter ( ) { return null ; } public Adapter createMappingUsageAdapter ( ) { return null ; } public Adapter createPojoUsageExtAdapter ( ) { return null ; } public Adapter createColumnUsageExtAdapter ( ) { return null ; } public Adapter createIdentifierUsageExtAdapter ( ) { return null ; } public Adapter createConstantUsageExtAdapter ( ) { return null ; } public Adapter createMappingUsageExtAdapter ( ) { return null ; } public Adapter createTableDefinitionAdapter ( ) { return null ; } public Adapter createTableUsageAdapter ( ) { return null ; } public Adapter createMetaStatementAdapter ( ) { return null ; } public Adapter createSqlAdapter ( ) { return null ; } public Adapter createSqlFragmentAdapter ( ) { return null ; } public Adapter createMetaSqlAdapter ( ) { return null ; } public Adapter createIfSqlAdapter ( ) { return null ; } public Adapter createIfSqlFragmentAdapter ( ) { return null ; } public Adapter createIfMetaSqlAdapter ( ) { return null ; } public Adapter createIfSqlCondAdapter ( ) { return null ; } public Adapter createIfSqlBoolAdapter ( ) { return null ; } public Adapter createOrdSqlAdapter ( ) { return null ; } public Adapter createOrdSql2Adapter ( ) { return null ; } public Adapter createColumnAdapter ( ) { return null ; } public Adapter createConstantAdapter ( ) { return null ; } public Adapter createIdentifierAdapter ( ) { return null ; } public Adapter createDatabaseColumnAdapter ( ) { return null ; } public Adapter createDatabaseTableAdapter ( ) { return null ; } public Adapter createMappingRuleAdapter ( ) { return null ; } public Adapter createMappingAdapter ( ) { return null ; } public Adapter createMappingItemAdapter ( ) { return null ; } public Adapter createMappingColumnAdapter ( ) { return null ; } public Adapter createOptionalFeatureAdapter ( ) { return null ; } public Adapter createPojoTypeAdapter ( ) { return null ; } public Adapter createPackageDeclarationAdapter ( ) { return null ; } public Adapter createAbstractPojoEntityAdapter ( ) { return null ; } public Adapter createImportAdapter ( ) { return null ; } public Adapter createImplementsAdapter ( ) { return null ; } public Adapter createExtendsAdapter ( ) { return null ; } public Adapter createPojoEntityModifier1Adapter ( ) { return null ; } public Adapter createPojoEntityModifier2Adapter ( ) { return null ; } public Adapter createPojoEntityAdapter ( ) { return null ; } public Adapter createPojoPropertyModifierAdapter ( ) { return null ; } public Adapter createPojoPropertyAdapter ( ) { return null ; } public Adapter createEObjectAdapter ( ) { return null ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . util ; import org . eclipse . emf . ecore . EObject ; import org . eclipse . emf . ecore . EPackage ; import org . eclipse . emf . ecore . util . Switch ; import org . sqlproc . dsl . processorDsl . * ; public class ProcessorDslSwitch < T > extends Switch < T > { protected static ProcessorDslPackage modelPackage ; public ProcessorDslSwitch ( ) { if ( modelPackage == null ) { modelPackage = ProcessorDslPackage . eINSTANCE ; } } @ Override protected boolean isSwitchFor ( EPackage ePackage ) { return ePackage == modelPackage ; } @ Override protected T doSwitch ( int classifierID , EObject theEObject ) { switch ( classifierID ) { case ProcessorDslPackage . ARTIFACTS : { Artifacts artifacts = ( Artifacts ) theEObject ; T result = caseArtifacts ( artifacts ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . SQL_TYPE_ASSIGNEMENT : { SqlTypeAssignement sqlTypeAssignement = ( SqlTypeAssignement ) theEObject ; T result = caseSqlTypeAssignement ( sqlTypeAssignement ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . COLUMN_TYPE_ASSIGNEMENT : { ColumnTypeAssignement columnTypeAssignement = ( ColumnTypeAssignement ) theEObject ; T result = caseColumnTypeAssignement ( columnTypeAssignement ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . SHOW_COLUMN_TYPE_ASSIGNEMENT : { ShowColumnTypeAssignement showColumnTypeAssignement = ( ShowColumnTypeAssignement ) theEObject ; T result = caseShowColumnTypeAssignement ( showColumnTypeAssignement ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . TABLE_ASSIGNEMENT : { TableAssignement tableAssignement = ( TableAssignement ) theEObject ; T result = caseTableAssignement ( tableAssignement ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . JOIN_TABLE_ASSIGNEMENT : { JoinTableAssignement joinTableAssignement = ( JoinTableAssignement ) theEObject ; T result = caseJoinTableAssignement ( joinTableAssignement ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . COLUMN_ASSIGNEMENT : { ColumnAssignement columnAssignement = ( ColumnAssignement ) theEObject ; T result = caseColumnAssignement ( columnAssignement ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . IMPORT_ASSIGNEMENT : { ImportAssignement importAssignement = ( ImportAssignement ) theEObject ; T result = caseImportAssignement ( importAssignement ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . EXPORT_ASSIGNEMENT : { ExportAssignement exportAssignement = ( ExportAssignement ) theEObject ; T result = caseExportAssignement ( exportAssignement ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . INHERITANCE_ASSIGNEMENT : { InheritanceAssignement inheritanceAssignement = ( InheritanceAssignement ) theEObject ; T result = caseInheritanceAssignement ( inheritanceAssignement ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . MANY_TO_MANY_ASSIGNEMENT : { ManyToManyAssignement manyToManyAssignement = ( ManyToManyAssignement ) theEObject ; T result = caseManyToManyAssignement ( manyToManyAssignement ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . PROPERTY : { Property property = ( Property ) theEObject ; T result = caseProperty ( property ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . DATABASE_PROPERTY : { DatabaseProperty databaseProperty = ( DatabaseProperty ) theEObject ; T result = caseDatabaseProperty ( databaseProperty ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . POJOGEN_PROPERTY : { PojogenProperty pojogenProperty = ( PojogenProperty ) theEObject ; T result = casePojogenProperty ( pojogenProperty ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . POJO_DEFINITION : { PojoDefinition pojoDefinition = ( PojoDefinition ) theEObject ; T result = casePojoDefinition ( pojoDefinition ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . POJO_USAGE : { PojoUsage pojoUsage = ( PojoUsage ) theEObject ; T result = casePojoUsage ( pojoUsage ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . COLUMN_USAGE : { ColumnUsage columnUsage = ( ColumnUsage ) theEObject ; T result = caseColumnUsage ( columnUsage ) ; if ( result == null ) result = casePojoUsage ( columnUsage ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . IDENTIFIER_USAGE : { IdentifierUsage identifierUsage = ( IdentifierUsage ) theEObject ; T result = caseIdentifierUsage ( identifierUsage ) ; if ( result == null ) result = casePojoUsage ( identifierUsage ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . CONSTANT_USAGE : { ConstantUsage constantUsage = ( ConstantUsage ) theEObject ; T result = caseConstantUsage ( constantUsage ) ; if ( result == null ) result = casePojoUsage ( constantUsage ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . MAPPING_USAGE : { MappingUsage mappingUsage = ( MappingUsage ) theEObject ; T result = caseMappingUsage ( mappingUsage ) ; if ( result == null ) result = casePojoUsage ( mappingUsage ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . POJO_USAGE_EXT : { PojoUsageExt pojoUsageExt = ( PojoUsageExt ) theEObject ; T result = casePojoUsageExt ( pojoUsageExt ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . COLUMN_USAGE_EXT : { ColumnUsageExt columnUsageExt = ( ColumnUsageExt ) theEObject ; T result = caseColumnUsageExt ( columnUsageExt ) ; if ( result == null ) result = casePojoUsageExt ( columnUsageExt ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . IDENTIFIER_USAGE_EXT : { IdentifierUsageExt identifierUsageExt = ( IdentifierUsageExt ) theEObject ; T result = caseIdentifierUsageExt ( identifierUsageExt ) ; if ( result == null ) result = casePojoUsageExt ( identifierUsageExt ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . CONSTANT_USAGE_EXT : { ConstantUsageExt constantUsageExt = ( ConstantUsageExt ) theEObject ; T result = caseConstantUsageExt ( constantUsageExt ) ; if ( result == null ) result = casePojoUsageExt ( constantUsageExt ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . MAPPING_USAGE_EXT : { MappingUsageExt mappingUsageExt = ( MappingUsageExt ) theEObject ; T result = caseMappingUsageExt ( mappingUsageExt ) ; if ( result == null ) result = casePojoUsageExt ( mappingUsageExt ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . TABLE_DEFINITION : { TableDefinition tableDefinition = ( TableDefinition ) theEObject ; T result = caseTableDefinition ( tableDefinition ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . TABLE_USAGE : { TableUsage tableUsage = ( TableUsage ) theEObject ; T result = caseTableUsage ( tableUsage ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . META_STATEMENT : { MetaStatement metaStatement = ( MetaStatement ) theEObject ; T result = caseMetaStatement ( metaStatement ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . SQL : { Sql sql = ( Sql ) theEObject ; T result = caseSql ( sql ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . SQL_FRAGMENT : { SqlFragment sqlFragment = ( SqlFragment ) theEObject ; T result = caseSqlFragment ( sqlFragment ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . META_SQL : { MetaSql metaSql = ( MetaSql ) theEObject ; T result = caseMetaSql ( metaSql ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . IF_SQL : { IfSql ifSql = ( IfSql ) theEObject ; T result = caseIfSql ( ifSql ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . IF_SQL_FRAGMENT : { IfSqlFragment ifSqlFragment = ( IfSqlFragment ) theEObject ; T result = caseIfSqlFragment ( ifSqlFragment ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . IF_META_SQL : { IfMetaSql ifMetaSql = ( IfMetaSql ) theEObject ; T result = caseIfMetaSql ( ifMetaSql ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . IF_SQL_COND : { IfSqlCond ifSqlCond = ( IfSqlCond ) theEObject ; T result = caseIfSqlCond ( ifSqlCond ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . IF_SQL_BOOL : { IfSqlBool ifSqlBool = ( IfSqlBool ) theEObject ; T result = caseIfSqlBool ( ifSqlBool ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . ORD_SQL : { OrdSql ordSql = ( OrdSql ) theEObject ; T result = caseOrdSql ( ordSql ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . ORD_SQL2 : { OrdSql2 ordSql2 = ( OrdSql2 ) theEObject ; T result = caseOrdSql2 ( ordSql2 ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . COLUMN : { Column column = ( Column ) theEObject ; T result = caseColumn ( column ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . CONSTANT : { Constant constant = ( Constant ) theEObject ; T result = caseConstant ( constant ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . IDENTIFIER : { Identifier identifier = ( Identifier ) theEObject ; T result = caseIdentifier ( identifier ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . DATABASE_COLUMN : { DatabaseColumn databaseColumn = ( DatabaseColumn ) theEObject ; T result = caseDatabaseColumn ( databaseColumn ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . DATABASE_TABLE : { DatabaseTable databaseTable = ( DatabaseTable ) theEObject ; T result = caseDatabaseTable ( databaseTable ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . MAPPING_RULE : { MappingRule mappingRule = ( MappingRule ) theEObject ; T result = caseMappingRule ( mappingRule ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . MAPPING : { Mapping mapping = ( Mapping ) theEObject ; T result = caseMapping ( mapping ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . MAPPING_ITEM : { MappingItem mappingItem = ( MappingItem ) theEObject ; T result = caseMappingItem ( mappingItem ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . MAPPING_COLUMN : { MappingColumn mappingColumn = ( MappingColumn ) theEObject ; T result = caseMappingColumn ( mappingColumn ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . OPTIONAL_FEATURE : { OptionalFeature optionalFeature = ( OptionalFeature ) theEObject ; T result = caseOptionalFeature ( optionalFeature ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . POJO_TYPE : { PojoType pojoType = ( PojoType ) theEObject ; T result = casePojoType ( pojoType ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . PACKAGE_DECLARATION : { PackageDeclaration packageDeclaration = ( PackageDeclaration ) theEObject ; T result = casePackageDeclaration ( packageDeclaration ) ; if ( result == null ) result = caseAbstractPojoEntity ( packageDeclaration ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . ABSTRACT_POJO_ENTITY : { AbstractPojoEntity abstractPojoEntity = ( AbstractPojoEntity ) theEObject ; T result = caseAbstractPojoEntity ( abstractPojoEntity ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . IMPORT : { Import import_ = ( Import ) theEObject ; T result = caseImport ( import_ ) ; if ( result == null ) result = caseAbstractPojoEntity ( import_ ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . IMPLEMENTS : { Implements implements_ = ( Implements ) theEObject ; T result = caseImplements ( implements_ ) ; if ( result == null ) result = caseAbstractPojoEntity ( implements_ ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . EXTENDS : { Extends extends_ = ( Extends ) theEObject ; T result = caseExtends ( extends_ ) ; if ( result == null ) result = caseAbstractPojoEntity ( extends_ ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . POJO_ENTITY_MODIFIER1 : { PojoEntityModifier1 pojoEntityModifier1 = ( PojoEntityModifier1 ) theEObject ; T result = casePojoEntityModifier1 ( pojoEntityModifier1 ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . POJO_ENTITY_MODIFIER2 : { PojoEntityModifier2 pojoEntityModifier2 = ( PojoEntityModifier2 ) theEObject ; T result = casePojoEntityModifier2 ( pojoEntityModifier2 ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . POJO_ENTITY : { PojoEntity pojoEntity = ( PojoEntity ) theEObject ; T result = casePojoEntity ( pojoEntity ) ; if ( result == null ) result = caseAbstractPojoEntity ( pojoEntity ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . POJO_PROPERTY_MODIFIER : { PojoPropertyModifier pojoPropertyModifier = ( PojoPropertyModifier ) theEObject ; T result = casePojoPropertyModifier ( pojoPropertyModifier ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } case ProcessorDslPackage . POJO_PROPERTY : { PojoProperty pojoProperty = ( PojoProperty ) theEObject ; T result = casePojoProperty ( pojoProperty ) ; if ( result == null ) result = defaultCase ( theEObject ) ; return result ; } default : return defaultCase ( theEObject ) ; } } public T caseArtifacts ( Artifacts object ) { return null ; } public T caseSqlTypeAssignement ( SqlTypeAssignement object ) { return null ; } public T caseColumnTypeAssignement ( ColumnTypeAssignement object ) { return null ; } public T caseShowColumnTypeAssignement ( ShowColumnTypeAssignement object ) { return null ; } public T caseTableAssignement ( TableAssignement object ) { return null ; } public T caseJoinTableAssignement ( JoinTableAssignement object ) { return null ; } public T caseColumnAssignement ( ColumnAssignement object ) { return null ; } public T caseImportAssignement ( ImportAssignement object ) { return null ; } public T caseExportAssignement ( ExportAssignement object ) { return null ; } public T caseInheritanceAssignement ( InheritanceAssignement object ) { return null ; } public T caseManyToManyAssignement ( ManyToManyAssignement object ) { return null ; } public T caseProperty ( Property object ) { return null ; } public T caseDatabaseProperty ( DatabaseProperty object ) { return null ; } public T casePojogenProperty ( PojogenProperty object ) { return null ; } public T casePojoDefinition ( PojoDefinition object ) { return null ; } public T casePojoUsage ( PojoUsage object ) { return null ; } public T caseColumnUsage ( ColumnUsage object ) { return null ; } public T caseIdentifierUsage ( IdentifierUsage object ) { return null ; } public T caseConstantUsage ( ConstantUsage object ) { return null ; } public T caseMappingUsage ( MappingUsage object ) { return null ; } public T casePojoUsageExt ( PojoUsageExt object ) { return null ; } public T caseColumnUsageExt ( ColumnUsageExt object ) { return null ; } public T caseIdentifierUsageExt ( IdentifierUsageExt object ) { return null ; } public T caseConstantUsageExt ( ConstantUsageExt object ) { return null ; } public T caseMappingUsageExt ( MappingUsageExt object ) { return null ; } public T caseTableDefinition ( TableDefinition object ) { return null ; } public T caseTableUsage ( TableUsage object ) { return null ; } public T caseMetaStatement ( MetaStatement object ) { return null ; } public T caseSql ( Sql object ) { return null ; } public T caseSqlFragment ( SqlFragment object ) { return null ; } public T caseMetaSql ( MetaSql object ) { return null ; } public T caseIfSql ( IfSql object ) { return null ; } public T caseIfSqlFragment ( IfSqlFragment object ) { return null ; } public T caseIfMetaSql ( IfMetaSql object ) { return null ; } public T caseIfSqlCond ( IfSqlCond object ) { return null ; } public T caseIfSqlBool ( IfSqlBool object ) { return null ; } public T caseOrdSql ( OrdSql object ) { return null ; } public T caseOrdSql2 ( OrdSql2 object ) { return null ; } public T caseColumn ( Column object ) { return null ; } public T caseConstant ( Constant object ) { return null ; } public T caseIdentifier ( Identifier object ) { return null ; } public T caseDatabaseColumn ( DatabaseColumn object ) { return null ; } public T caseDatabaseTable ( DatabaseTable object ) { return null ; } public T caseMappingRule ( MappingRule object ) { return null ; } public T caseMapping ( Mapping object ) { return null ; } public T caseMappingItem ( MappingItem object ) { return null ; } public T caseMappingColumn ( MappingColumn object ) { return null ; } public T caseOptionalFeature ( OptionalFeature object ) { return null ; } public T casePojoType ( PojoType object ) { return null ; } public T casePackageDeclaration ( PackageDeclaration object ) { return null ; } public T caseAbstractPojoEntity ( AbstractPojoEntity object ) { return null ; } public T caseImport ( Import object ) { return null ; } public T caseImplements ( Implements object ) { return null ; } public T caseExtends ( Extends object ) { return null ; } public T casePojoEntityModifier1 ( PojoEntityModifier1 object ) { return null ; } public T casePojoEntityModifier2 ( PojoEntityModifier2 object ) { return null ; } public T casePojoEntity ( PojoEntity object ) { return null ; } public T casePojoPropertyModifier ( PojoPropertyModifier object ) { return null ; } public T casePojoProperty ( PojoProperty object ) { return null ; } @ Override public T defaultCase ( EObject object ) { return null ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface DatabaseTable extends EObject { String getName ( ) ; void setName ( String value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EObject ; import org . eclipse . xtext . common . types . JvmType ; public interface PojogenProperty extends EObject { String getName ( ) ; void setName ( String value ) ; EList < SqlTypeAssignement > getSqlTypes ( ) ; String getDbTable ( ) ; void setDbTable ( String value ) ; EList < ColumnTypeAssignement > getColumnTypes ( ) ; ShowColumnTypeAssignement getColumnType ( ) ; void setColumnType ( ShowColumnTypeAssignement value ) ; EList < String > getDbTables ( ) ; EList < JoinTableAssignement > getJoinTables ( ) ; EList < String > getDbColumns ( ) ; EList < TableAssignement > getTables ( ) ; EList < ColumnAssignement > getColumns ( ) ; EList < ExportAssignement > getExports ( ) ; EList < ImportAssignement > getImports ( ) ; EList < ManyToManyAssignement > getMany2s ( ) ; String getDbColumn ( ) ; void setDbColumn ( String value ) ; EList < InheritanceAssignement > getInheritance ( ) ; EList < String > getMethods ( ) ; EList < JvmType > getToImplements ( ) ; JvmType getToExtends ( ) ; void setToExtends ( JvmType value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface AbstractPojoEntity extends EObject { } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EObject ; public interface IfMetaSql extends EObject { EList < IfSql > getIfs ( ) ; String getType ( ) ; void setType ( String value ) ; IfSqlCond getCond ( ) ; void setCond ( IfSqlCond value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface PojoDefinition extends EObject { String getName ( ) ; void setName ( String value ) ; String getClass_ ( ) ; void setClass ( String value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; public interface MappingUsageExt extends PojoUsageExt { MappingRule getStatement ( ) ; void setStatement ( MappingRule value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; public interface ConstantUsage extends PojoUsage { MetaStatement getStatement ( ) ; void setStatement ( MetaStatement value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; import org . eclipse . emf . ecore . EObject ; public interface IfSqlFragment extends EObject { String getValue ( ) ; void setValue ( String value ) ; Column getCol ( ) ; void setCol ( Column value ) ; Constant getCnst ( ) ; void setCnst ( Constant value ) ; Identifier getIdent ( ) ; void setIdent ( Identifier value ) ; DatabaseTable getDbtab ( ) ; void setDbtab ( DatabaseTable value ) ; DatabaseColumn getDbcol ( ) ; void setDbcol ( DatabaseColumn value ) ; IfMetaSql getMeta ( ) ; void setMeta ( IfMetaSql value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl ; public interface IdentifierUsage extends PojoUsage { MetaStatement getStatement ( ) ; void setStatement ( MetaStatement value ) ; } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import java . util . Collection ; import org . eclipse . emf . common . notify . NotificationChain ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . InternalEObject ; import org . eclipse . emf . ecore . impl . MinimalEObjectImpl ; import org . eclipse . emf . ecore . util . EObjectContainmentEList ; import org . eclipse . emf . ecore . util . InternalEList ; import org . sqlproc . dsl . processorDsl . Mapping ; import org . sqlproc . dsl . processorDsl . MappingItem ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; public class MappingImpl extends MinimalEObjectImpl . Container implements Mapping { protected EList < MappingItem > mappingItems ; protected MappingImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . MAPPING ; } public EList < MappingItem > getMappingItems ( ) { if ( mappingItems == null ) { mappingItems = new EObjectContainmentEList < MappingItem > ( MappingItem . class , this , ProcessorDslPackage . MAPPING__MAPPING_ITEMS ) ; } return mappingItems ; } @ Override public NotificationChain eInverseRemove ( InternalEObject otherEnd , int featureID , NotificationChain msgs ) { switch ( featureID ) { case ProcessorDslPackage . MAPPING__MAPPING_ITEMS : return ( ( InternalEList < ? > ) getMappingItems ( ) ) . basicRemove ( otherEnd , msgs ) ; } return super . eInverseRemove ( otherEnd , featureID , msgs ) ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . MAPPING__MAPPING_ITEMS : return getMappingItems ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ SuppressWarnings ( "<STR_LIT:unchecked>" ) @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . MAPPING__MAPPING_ITEMS : getMappingItems ( ) . clear ( ) ; getMappingItems ( ) . addAll ( ( Collection < ? extends MappingItem > ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . MAPPING__MAPPING_ITEMS : getMappingItems ( ) . clear ( ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . MAPPING__MAPPING_ITEMS : return mappingItems != null && ! mappingItems . isEmpty ( ) ; } return super . eIsSet ( featureID ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import java . util . Collection ; import org . eclipse . emf . common . notify . NotificationChain ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . InternalEObject ; import org . eclipse . emf . ecore . impl . MinimalEObjectImpl ; import org . eclipse . emf . ecore . util . EObjectContainmentEList ; import org . eclipse . emf . ecore . util . InternalEList ; import org . sqlproc . dsl . processorDsl . OrdSql ; import org . sqlproc . dsl . processorDsl . OrdSql2 ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; public class OrdSqlImpl extends MinimalEObjectImpl . Container implements OrdSql { protected EList < OrdSql2 > sqls ; protected OrdSqlImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . ORD_SQL ; } public EList < OrdSql2 > getSqls ( ) { if ( sqls == null ) { sqls = new EObjectContainmentEList < OrdSql2 > ( OrdSql2 . class , this , ProcessorDslPackage . ORD_SQL__SQLS ) ; } return sqls ; } @ Override public NotificationChain eInverseRemove ( InternalEObject otherEnd , int featureID , NotificationChain msgs ) { switch ( featureID ) { case ProcessorDslPackage . ORD_SQL__SQLS : return ( ( InternalEList < ? > ) getSqls ( ) ) . basicRemove ( otherEnd , msgs ) ; } return super . eInverseRemove ( otherEnd , featureID , msgs ) ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . ORD_SQL__SQLS : return getSqls ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ SuppressWarnings ( "<STR_LIT:unchecked>" ) @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . ORD_SQL__SQLS : getSqls ( ) . clear ( ) ; getSqls ( ) . addAll ( ( Collection < ? extends OrdSql2 > ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . ORD_SQL__SQLS : getSqls ( ) . clear ( ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . ORD_SQL__SQLS : return sqls != null && ! sqls . isEmpty ( ) ; } return super . eIsSet ( featureID ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import java . util . Collection ; import org . eclipse . emf . common . notify . Notification ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . impl . ENotificationImpl ; import org . eclipse . emf . ecore . impl . MinimalEObjectImpl ; import org . eclipse . emf . ecore . util . EDataTypeEList ; import org . sqlproc . dsl . processorDsl . MappingColumn ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; public class MappingColumnImpl extends MinimalEObjectImpl . Container implements MappingColumn { protected static final String NAME_EDEFAULT = null ; protected String name = NAME_EDEFAULT ; protected EList < String > vals ; protected MappingColumnImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . MAPPING_COLUMN ; } public String getName ( ) { return name ; } public void setName ( String newName ) { String oldName = name ; name = newName ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . MAPPING_COLUMN__NAME , oldName , name ) ) ; } public EList < String > getVals ( ) { if ( vals == null ) { vals = new EDataTypeEList < String > ( String . class , this , ProcessorDslPackage . MAPPING_COLUMN__VALS ) ; } return vals ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . MAPPING_COLUMN__NAME : return getName ( ) ; case ProcessorDslPackage . MAPPING_COLUMN__VALS : return getVals ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ SuppressWarnings ( "<STR_LIT:unchecked>" ) @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . MAPPING_COLUMN__NAME : setName ( ( String ) newValue ) ; return ; case ProcessorDslPackage . MAPPING_COLUMN__VALS : getVals ( ) . clear ( ) ; getVals ( ) . addAll ( ( Collection < ? extends String > ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . MAPPING_COLUMN__NAME : setName ( NAME_EDEFAULT ) ; return ; case ProcessorDslPackage . MAPPING_COLUMN__VALS : getVals ( ) . clear ( ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . MAPPING_COLUMN__NAME : return NAME_EDEFAULT == null ? name != null : ! NAME_EDEFAULT . equals ( name ) ; case ProcessorDslPackage . MAPPING_COLUMN__VALS : return vals != null && ! vals . isEmpty ( ) ; } return super . eIsSet ( featureID ) ; } @ Override public String toString ( ) { if ( eIsProxy ( ) ) return super . toString ( ) ; StringBuffer result = new StringBuffer ( super . toString ( ) ) ; result . append ( "<STR_LIT>" ) ; result . append ( name ) ; result . append ( "<STR_LIT>" ) ; result . append ( vals ) ; result . append ( '<CHAR_LIT:)>' ) ; return result . toString ( ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import java . util . Collection ; import org . eclipse . emf . common . notify . Notification ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . impl . ENotificationImpl ; import org . eclipse . emf . ecore . impl . MinimalEObjectImpl ; import org . eclipse . emf . ecore . util . EDataTypeEList ; import org . sqlproc . dsl . processorDsl . Constant ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; public class ConstantImpl extends MinimalEObjectImpl . Container implements Constant { protected static final String CASE_EDEFAULT = null ; protected String case_ = CASE_EDEFAULT ; protected static final String NAME_EDEFAULT = null ; protected String name = NAME_EDEFAULT ; protected static final String TYPE_EDEFAULT = null ; protected String type = TYPE_EDEFAULT ; protected EList < String > vals ; protected ConstantImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . CONSTANT ; } public String getCase ( ) { return case_ ; } public void setCase ( String newCase ) { String oldCase = case_ ; case_ = newCase ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . CONSTANT__CASE , oldCase , case_ ) ) ; } public String getName ( ) { return name ; } public void setName ( String newName ) { String oldName = name ; name = newName ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . CONSTANT__NAME , oldName , name ) ) ; } public String getType ( ) { return type ; } public void setType ( String newType ) { String oldType = type ; type = newType ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . CONSTANT__TYPE , oldType , type ) ) ; } public EList < String > getVals ( ) { if ( vals == null ) { vals = new EDataTypeEList < String > ( String . class , this , ProcessorDslPackage . CONSTANT__VALS ) ; } return vals ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . CONSTANT__CASE : return getCase ( ) ; case ProcessorDslPackage . CONSTANT__NAME : return getName ( ) ; case ProcessorDslPackage . CONSTANT__TYPE : return getType ( ) ; case ProcessorDslPackage . CONSTANT__VALS : return getVals ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ SuppressWarnings ( "<STR_LIT:unchecked>" ) @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . CONSTANT__CASE : setCase ( ( String ) newValue ) ; return ; case ProcessorDslPackage . CONSTANT__NAME : setName ( ( String ) newValue ) ; return ; case ProcessorDslPackage . CONSTANT__TYPE : setType ( ( String ) newValue ) ; return ; case ProcessorDslPackage . CONSTANT__VALS : getVals ( ) . clear ( ) ; getVals ( ) . addAll ( ( Collection < ? extends String > ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . CONSTANT__CASE : setCase ( CASE_EDEFAULT ) ; return ; case ProcessorDslPackage . CONSTANT__NAME : setName ( NAME_EDEFAULT ) ; return ; case ProcessorDslPackage . CONSTANT__TYPE : setType ( TYPE_EDEFAULT ) ; return ; case ProcessorDslPackage . CONSTANT__VALS : getVals ( ) . clear ( ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . CONSTANT__CASE : return CASE_EDEFAULT == null ? case_ != null : ! CASE_EDEFAULT . equals ( case_ ) ; case ProcessorDslPackage . CONSTANT__NAME : return NAME_EDEFAULT == null ? name != null : ! NAME_EDEFAULT . equals ( name ) ; case ProcessorDslPackage . CONSTANT__TYPE : return TYPE_EDEFAULT == null ? type != null : ! TYPE_EDEFAULT . equals ( type ) ; case ProcessorDslPackage . CONSTANT__VALS : return vals != null && ! vals . isEmpty ( ) ; } return super . eIsSet ( featureID ) ; } @ Override public String toString ( ) { if ( eIsProxy ( ) ) return super . toString ( ) ; StringBuffer result = new StringBuffer ( super . toString ( ) ) ; result . append ( "<STR_LIT>" ) ; result . append ( case_ ) ; result . append ( "<STR_LIT>" ) ; result . append ( name ) ; result . append ( "<STR_LIT>" ) ; result . append ( type ) ; result . append ( "<STR_LIT>" ) ; result . append ( vals ) ; result . append ( '<CHAR_LIT:)>' ) ; return result . toString ( ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import org . eclipse . emf . common . notify . Notification ; import org . eclipse . emf . common . notify . NotificationChain ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . InternalEObject ; import org . eclipse . emf . ecore . impl . ENotificationImpl ; import org . eclipse . emf . ecore . impl . MinimalEObjectImpl ; import org . sqlproc . dsl . processorDsl . Column ; import org . sqlproc . dsl . processorDsl . Constant ; import org . sqlproc . dsl . processorDsl . DatabaseColumn ; import org . sqlproc . dsl . processorDsl . DatabaseTable ; import org . sqlproc . dsl . processorDsl . Identifier ; import org . sqlproc . dsl . processorDsl . IfMetaSql ; import org . sqlproc . dsl . processorDsl . IfSqlFragment ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; public class IfSqlFragmentImpl extends MinimalEObjectImpl . Container implements IfSqlFragment { protected static final String VALUE_EDEFAULT = null ; protected String value = VALUE_EDEFAULT ; protected Column col ; protected Constant cnst ; protected Identifier ident ; protected DatabaseTable dbtab ; protected DatabaseColumn dbcol ; protected IfMetaSql meta ; protected IfSqlFragmentImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . IF_SQL_FRAGMENT ; } public String getValue ( ) { return value ; } public void setValue ( String newValue ) { String oldValue = value ; value = newValue ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IF_SQL_FRAGMENT__VALUE , oldValue , value ) ) ; } public Column getCol ( ) { return col ; } public NotificationChain basicSetCol ( Column newCol , NotificationChain msgs ) { Column oldCol = col ; col = newCol ; if ( eNotificationRequired ( ) ) { ENotificationImpl notification = new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IF_SQL_FRAGMENT__COL , oldCol , newCol ) ; if ( msgs == null ) msgs = notification ; else msgs . add ( notification ) ; } return msgs ; } public void setCol ( Column newCol ) { if ( newCol != col ) { NotificationChain msgs = null ; if ( col != null ) msgs = ( ( InternalEObject ) col ) . eInverseRemove ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . IF_SQL_FRAGMENT__COL , null , msgs ) ; if ( newCol != null ) msgs = ( ( InternalEObject ) newCol ) . eInverseAdd ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . IF_SQL_FRAGMENT__COL , null , msgs ) ; msgs = basicSetCol ( newCol , msgs ) ; if ( msgs != null ) msgs . dispatch ( ) ; } else if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IF_SQL_FRAGMENT__COL , newCol , newCol ) ) ; } public Constant getCnst ( ) { return cnst ; } public NotificationChain basicSetCnst ( Constant newCnst , NotificationChain msgs ) { Constant oldCnst = cnst ; cnst = newCnst ; if ( eNotificationRequired ( ) ) { ENotificationImpl notification = new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IF_SQL_FRAGMENT__CNST , oldCnst , newCnst ) ; if ( msgs == null ) msgs = notification ; else msgs . add ( notification ) ; } return msgs ; } public void setCnst ( Constant newCnst ) { if ( newCnst != cnst ) { NotificationChain msgs = null ; if ( cnst != null ) msgs = ( ( InternalEObject ) cnst ) . eInverseRemove ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . IF_SQL_FRAGMENT__CNST , null , msgs ) ; if ( newCnst != null ) msgs = ( ( InternalEObject ) newCnst ) . eInverseAdd ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . IF_SQL_FRAGMENT__CNST , null , msgs ) ; msgs = basicSetCnst ( newCnst , msgs ) ; if ( msgs != null ) msgs . dispatch ( ) ; } else if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IF_SQL_FRAGMENT__CNST , newCnst , newCnst ) ) ; } public Identifier getIdent ( ) { return ident ; } public NotificationChain basicSetIdent ( Identifier newIdent , NotificationChain msgs ) { Identifier oldIdent = ident ; ident = newIdent ; if ( eNotificationRequired ( ) ) { ENotificationImpl notification = new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IF_SQL_FRAGMENT__IDENT , oldIdent , newIdent ) ; if ( msgs == null ) msgs = notification ; else msgs . add ( notification ) ; } return msgs ; } public void setIdent ( Identifier newIdent ) { if ( newIdent != ident ) { NotificationChain msgs = null ; if ( ident != null ) msgs = ( ( InternalEObject ) ident ) . eInverseRemove ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . IF_SQL_FRAGMENT__IDENT , null , msgs ) ; if ( newIdent != null ) msgs = ( ( InternalEObject ) newIdent ) . eInverseAdd ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . IF_SQL_FRAGMENT__IDENT , null , msgs ) ; msgs = basicSetIdent ( newIdent , msgs ) ; if ( msgs != null ) msgs . dispatch ( ) ; } else if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IF_SQL_FRAGMENT__IDENT , newIdent , newIdent ) ) ; } public DatabaseTable getDbtab ( ) { return dbtab ; } public NotificationChain basicSetDbtab ( DatabaseTable newDbtab , NotificationChain msgs ) { DatabaseTable oldDbtab = dbtab ; dbtab = newDbtab ; if ( eNotificationRequired ( ) ) { ENotificationImpl notification = new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IF_SQL_FRAGMENT__DBTAB , oldDbtab , newDbtab ) ; if ( msgs == null ) msgs = notification ; else msgs . add ( notification ) ; } return msgs ; } public void setDbtab ( DatabaseTable newDbtab ) { if ( newDbtab != dbtab ) { NotificationChain msgs = null ; if ( dbtab != null ) msgs = ( ( InternalEObject ) dbtab ) . eInverseRemove ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . IF_SQL_FRAGMENT__DBTAB , null , msgs ) ; if ( newDbtab != null ) msgs = ( ( InternalEObject ) newDbtab ) . eInverseAdd ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . IF_SQL_FRAGMENT__DBTAB , null , msgs ) ; msgs = basicSetDbtab ( newDbtab , msgs ) ; if ( msgs != null ) msgs . dispatch ( ) ; } else if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IF_SQL_FRAGMENT__DBTAB , newDbtab , newDbtab ) ) ; } public DatabaseColumn getDbcol ( ) { return dbcol ; } public NotificationChain basicSetDbcol ( DatabaseColumn newDbcol , NotificationChain msgs ) { DatabaseColumn oldDbcol = dbcol ; dbcol = newDbcol ; if ( eNotificationRequired ( ) ) { ENotificationImpl notification = new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IF_SQL_FRAGMENT__DBCOL , oldDbcol , newDbcol ) ; if ( msgs == null ) msgs = notification ; else msgs . add ( notification ) ; } return msgs ; } public void setDbcol ( DatabaseColumn newDbcol ) { if ( newDbcol != dbcol ) { NotificationChain msgs = null ; if ( dbcol != null ) msgs = ( ( InternalEObject ) dbcol ) . eInverseRemove ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . IF_SQL_FRAGMENT__DBCOL , null , msgs ) ; if ( newDbcol != null ) msgs = ( ( InternalEObject ) newDbcol ) . eInverseAdd ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . IF_SQL_FRAGMENT__DBCOL , null , msgs ) ; msgs = basicSetDbcol ( newDbcol , msgs ) ; if ( msgs != null ) msgs . dispatch ( ) ; } else if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IF_SQL_FRAGMENT__DBCOL , newDbcol , newDbcol ) ) ; } public IfMetaSql getMeta ( ) { return meta ; } public NotificationChain basicSetMeta ( IfMetaSql newMeta , NotificationChain msgs ) { IfMetaSql oldMeta = meta ; meta = newMeta ; if ( eNotificationRequired ( ) ) { ENotificationImpl notification = new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IF_SQL_FRAGMENT__META , oldMeta , newMeta ) ; if ( msgs == null ) msgs = notification ; else msgs . add ( notification ) ; } return msgs ; } public void setMeta ( IfMetaSql newMeta ) { if ( newMeta != meta ) { NotificationChain msgs = null ; if ( meta != null ) msgs = ( ( InternalEObject ) meta ) . eInverseRemove ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . IF_SQL_FRAGMENT__META , null , msgs ) ; if ( newMeta != null ) msgs = ( ( InternalEObject ) newMeta ) . eInverseAdd ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . IF_SQL_FRAGMENT__META , null , msgs ) ; msgs = basicSetMeta ( newMeta , msgs ) ; if ( msgs != null ) msgs . dispatch ( ) ; } else if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IF_SQL_FRAGMENT__META , newMeta , newMeta ) ) ; } @ Override public NotificationChain eInverseRemove ( InternalEObject otherEnd , int featureID , NotificationChain msgs ) { switch ( featureID ) { case ProcessorDslPackage . IF_SQL_FRAGMENT__COL : return basicSetCol ( null , msgs ) ; case ProcessorDslPackage . IF_SQL_FRAGMENT__CNST : return basicSetCnst ( null , msgs ) ; case ProcessorDslPackage . IF_SQL_FRAGMENT__IDENT : return basicSetIdent ( null , msgs ) ; case ProcessorDslPackage . IF_SQL_FRAGMENT__DBTAB : return basicSetDbtab ( null , msgs ) ; case ProcessorDslPackage . IF_SQL_FRAGMENT__DBCOL : return basicSetDbcol ( null , msgs ) ; case ProcessorDslPackage . IF_SQL_FRAGMENT__META : return basicSetMeta ( null , msgs ) ; } return super . eInverseRemove ( otherEnd , featureID , msgs ) ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . IF_SQL_FRAGMENT__VALUE : return getValue ( ) ; case ProcessorDslPackage . IF_SQL_FRAGMENT__COL : return getCol ( ) ; case ProcessorDslPackage . IF_SQL_FRAGMENT__CNST : return getCnst ( ) ; case ProcessorDslPackage . IF_SQL_FRAGMENT__IDENT : return getIdent ( ) ; case ProcessorDslPackage . IF_SQL_FRAGMENT__DBTAB : return getDbtab ( ) ; case ProcessorDslPackage . IF_SQL_FRAGMENT__DBCOL : return getDbcol ( ) ; case ProcessorDslPackage . IF_SQL_FRAGMENT__META : return getMeta ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . IF_SQL_FRAGMENT__VALUE : setValue ( ( String ) newValue ) ; return ; case ProcessorDslPackage . IF_SQL_FRAGMENT__COL : setCol ( ( Column ) newValue ) ; return ; case ProcessorDslPackage . IF_SQL_FRAGMENT__CNST : setCnst ( ( Constant ) newValue ) ; return ; case ProcessorDslPackage . IF_SQL_FRAGMENT__IDENT : setIdent ( ( Identifier ) newValue ) ; return ; case ProcessorDslPackage . IF_SQL_FRAGMENT__DBTAB : setDbtab ( ( DatabaseTable ) newValue ) ; return ; case ProcessorDslPackage . IF_SQL_FRAGMENT__DBCOL : setDbcol ( ( DatabaseColumn ) newValue ) ; return ; case ProcessorDslPackage . IF_SQL_FRAGMENT__META : setMeta ( ( IfMetaSql ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . IF_SQL_FRAGMENT__VALUE : setValue ( VALUE_EDEFAULT ) ; return ; case ProcessorDslPackage . IF_SQL_FRAGMENT__COL : setCol ( ( Column ) null ) ; return ; case ProcessorDslPackage . IF_SQL_FRAGMENT__CNST : setCnst ( ( Constant ) null ) ; return ; case ProcessorDslPackage . IF_SQL_FRAGMENT__IDENT : setIdent ( ( Identifier ) null ) ; return ; case ProcessorDslPackage . IF_SQL_FRAGMENT__DBTAB : setDbtab ( ( DatabaseTable ) null ) ; return ; case ProcessorDslPackage . IF_SQL_FRAGMENT__DBCOL : setDbcol ( ( DatabaseColumn ) null ) ; return ; case ProcessorDslPackage . IF_SQL_FRAGMENT__META : setMeta ( ( IfMetaSql ) null ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . IF_SQL_FRAGMENT__VALUE : return VALUE_EDEFAULT == null ? value != null : ! VALUE_EDEFAULT . equals ( value ) ; case ProcessorDslPackage . IF_SQL_FRAGMENT__COL : return col != null ; case ProcessorDslPackage . IF_SQL_FRAGMENT__CNST : return cnst != null ; case ProcessorDslPackage . IF_SQL_FRAGMENT__IDENT : return ident != null ; case ProcessorDslPackage . IF_SQL_FRAGMENT__DBTAB : return dbtab != null ; case ProcessorDslPackage . IF_SQL_FRAGMENT__DBCOL : return dbcol != null ; case ProcessorDslPackage . IF_SQL_FRAGMENT__META : return meta != null ; } return super . eIsSet ( featureID ) ; } @ Override public String toString ( ) { if ( eIsProxy ( ) ) return super . toString ( ) ; StringBuffer result = new StringBuffer ( super . toString ( ) ) ; result . append ( "<STR_LIT>" ) ; result . append ( value ) ; result . append ( '<CHAR_LIT:)>' ) ; return result . toString ( ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import java . util . Collection ; import org . eclipse . emf . common . notify . Notification ; import org . eclipse . emf . common . notify . NotificationChain ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . InternalEObject ; import org . eclipse . emf . ecore . impl . ENotificationImpl ; import org . eclipse . emf . ecore . impl . MinimalEObjectImpl ; import org . eclipse . emf . ecore . util . EDataTypeEList ; import org . eclipse . emf . ecore . util . EObjectContainmentEList ; import org . eclipse . emf . ecore . util . EObjectResolvingEList ; import org . eclipse . emf . ecore . util . InternalEList ; import org . eclipse . xtext . common . types . JvmType ; import org . sqlproc . dsl . processorDsl . ColumnAssignement ; import org . sqlproc . dsl . processorDsl . ColumnTypeAssignement ; import org . sqlproc . dsl . processorDsl . ExportAssignement ; import org . sqlproc . dsl . processorDsl . ImportAssignement ; import org . sqlproc . dsl . processorDsl . InheritanceAssignement ; import org . sqlproc . dsl . processorDsl . JoinTableAssignement ; import org . sqlproc . dsl . processorDsl . ManyToManyAssignement ; import org . sqlproc . dsl . processorDsl . PojogenProperty ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; import org . sqlproc . dsl . processorDsl . ShowColumnTypeAssignement ; import org . sqlproc . dsl . processorDsl . SqlTypeAssignement ; import org . sqlproc . dsl . processorDsl . TableAssignement ; public class PojogenPropertyImpl extends MinimalEObjectImpl . Container implements PojogenProperty { protected static final String NAME_EDEFAULT = null ; protected String name = NAME_EDEFAULT ; protected EList < SqlTypeAssignement > sqlTypes ; protected static final String DB_TABLE_EDEFAULT = null ; protected String dbTable = DB_TABLE_EDEFAULT ; protected EList < ColumnTypeAssignement > columnTypes ; protected ShowColumnTypeAssignement columnType ; protected EList < String > dbTables ; protected EList < JoinTableAssignement > joinTables ; protected EList < String > dbColumns ; protected EList < TableAssignement > tables ; protected EList < ColumnAssignement > columns ; protected EList < ExportAssignement > exports ; protected EList < ImportAssignement > imports ; protected EList < ManyToManyAssignement > many2s ; protected static final String DB_COLUMN_EDEFAULT = null ; protected String dbColumn = DB_COLUMN_EDEFAULT ; protected EList < InheritanceAssignement > inheritance ; protected EList < String > methods ; protected EList < JvmType > toImplements ; protected JvmType toExtends ; protected PojogenPropertyImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . POJOGEN_PROPERTY ; } public String getName ( ) { return name ; } public void setName ( String newName ) { String oldName = name ; name = newName ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . POJOGEN_PROPERTY__NAME , oldName , name ) ) ; } public EList < SqlTypeAssignement > getSqlTypes ( ) { if ( sqlTypes == null ) { sqlTypes = new EObjectContainmentEList < SqlTypeAssignement > ( SqlTypeAssignement . class , this , ProcessorDslPackage . POJOGEN_PROPERTY__SQL_TYPES ) ; } return sqlTypes ; } public String getDbTable ( ) { return dbTable ; } public void setDbTable ( String newDbTable ) { String oldDbTable = dbTable ; dbTable = newDbTable ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . POJOGEN_PROPERTY__DB_TABLE , oldDbTable , dbTable ) ) ; } public EList < ColumnTypeAssignement > getColumnTypes ( ) { if ( columnTypes == null ) { columnTypes = new EObjectContainmentEList < ColumnTypeAssignement > ( ColumnTypeAssignement . class , this , ProcessorDslPackage . POJOGEN_PROPERTY__COLUMN_TYPES ) ; } return columnTypes ; } public ShowColumnTypeAssignement getColumnType ( ) { return columnType ; } public NotificationChain basicSetColumnType ( ShowColumnTypeAssignement newColumnType , NotificationChain msgs ) { ShowColumnTypeAssignement oldColumnType = columnType ; columnType = newColumnType ; if ( eNotificationRequired ( ) ) { ENotificationImpl notification = new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . POJOGEN_PROPERTY__COLUMN_TYPE , oldColumnType , newColumnType ) ; if ( msgs == null ) msgs = notification ; else msgs . add ( notification ) ; } return msgs ; } public void setColumnType ( ShowColumnTypeAssignement newColumnType ) { if ( newColumnType != columnType ) { NotificationChain msgs = null ; if ( columnType != null ) msgs = ( ( InternalEObject ) columnType ) . eInverseRemove ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . POJOGEN_PROPERTY__COLUMN_TYPE , null , msgs ) ; if ( newColumnType != null ) msgs = ( ( InternalEObject ) newColumnType ) . eInverseAdd ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . POJOGEN_PROPERTY__COLUMN_TYPE , null , msgs ) ; msgs = basicSetColumnType ( newColumnType , msgs ) ; if ( msgs != null ) msgs . dispatch ( ) ; } else if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . POJOGEN_PROPERTY__COLUMN_TYPE , newColumnType , newColumnType ) ) ; } public EList < String > getDbTables ( ) { if ( dbTables == null ) { dbTables = new EDataTypeEList < String > ( String . class , this , ProcessorDslPackage . POJOGEN_PROPERTY__DB_TABLES ) ; } return dbTables ; } public EList < JoinTableAssignement > getJoinTables ( ) { if ( joinTables == null ) { joinTables = new EObjectContainmentEList < JoinTableAssignement > ( JoinTableAssignement . class , this , ProcessorDslPackage . POJOGEN_PROPERTY__JOIN_TABLES ) ; } return joinTables ; } public EList < String > getDbColumns ( ) { if ( dbColumns == null ) { dbColumns = new EDataTypeEList < String > ( String . class , this , ProcessorDslPackage . POJOGEN_PROPERTY__DB_COLUMNS ) ; } return dbColumns ; } public EList < TableAssignement > getTables ( ) { if ( tables == null ) { tables = new EObjectContainmentEList < TableAssignement > ( TableAssignement . class , this , ProcessorDslPackage . POJOGEN_PROPERTY__TABLES ) ; } return tables ; } public EList < ColumnAssignement > getColumns ( ) { if ( columns == null ) { columns = new EObjectContainmentEList < ColumnAssignement > ( ColumnAssignement . class , this , ProcessorDslPackage . POJOGEN_PROPERTY__COLUMNS ) ; } return columns ; } public EList < ExportAssignement > getExports ( ) { if ( exports == null ) { exports = new EObjectContainmentEList < ExportAssignement > ( ExportAssignement . class , this , ProcessorDslPackage . POJOGEN_PROPERTY__EXPORTS ) ; } return exports ; } public EList < ImportAssignement > getImports ( ) { if ( imports == null ) { imports = new EObjectContainmentEList < ImportAssignement > ( ImportAssignement . class , this , ProcessorDslPackage . POJOGEN_PROPERTY__IMPORTS ) ; } return imports ; } public EList < ManyToManyAssignement > getMany2s ( ) { if ( many2s == null ) { many2s = new EObjectContainmentEList < ManyToManyAssignement > ( ManyToManyAssignement . class , this , ProcessorDslPackage . POJOGEN_PROPERTY__MANY2S ) ; } return many2s ; } public String getDbColumn ( ) { return dbColumn ; } public void setDbColumn ( String newDbColumn ) { String oldDbColumn = dbColumn ; dbColumn = newDbColumn ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . POJOGEN_PROPERTY__DB_COLUMN , oldDbColumn , dbColumn ) ) ; } public EList < InheritanceAssignement > getInheritance ( ) { if ( inheritance == null ) { inheritance = new EObjectContainmentEList < InheritanceAssignement > ( InheritanceAssignement . class , this , ProcessorDslPackage . POJOGEN_PROPERTY__INHERITANCE ) ; } return inheritance ; } public EList < String > getMethods ( ) { if ( methods == null ) { methods = new EDataTypeEList < String > ( String . class , this , ProcessorDslPackage . POJOGEN_PROPERTY__METHODS ) ; } return methods ; } public EList < JvmType > getToImplements ( ) { if ( toImplements == null ) { toImplements = new EObjectResolvingEList < JvmType > ( JvmType . class , this , ProcessorDslPackage . POJOGEN_PROPERTY__TO_IMPLEMENTS ) ; } return toImplements ; } public JvmType getToExtends ( ) { if ( toExtends != null && toExtends . eIsProxy ( ) ) { InternalEObject oldToExtends = ( InternalEObject ) toExtends ; toExtends = ( JvmType ) eResolveProxy ( oldToExtends ) ; if ( toExtends != oldToExtends ) { if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . RESOLVE , ProcessorDslPackage . POJOGEN_PROPERTY__TO_EXTENDS , oldToExtends , toExtends ) ) ; } } return toExtends ; } public JvmType basicGetToExtends ( ) { return toExtends ; } public void setToExtends ( JvmType newToExtends ) { JvmType oldToExtends = toExtends ; toExtends = newToExtends ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . POJOGEN_PROPERTY__TO_EXTENDS , oldToExtends , toExtends ) ) ; } @ Override public NotificationChain eInverseRemove ( InternalEObject otherEnd , int featureID , NotificationChain msgs ) { switch ( featureID ) { case ProcessorDslPackage . POJOGEN_PROPERTY__SQL_TYPES : return ( ( InternalEList < ? > ) getSqlTypes ( ) ) . basicRemove ( otherEnd , msgs ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__COLUMN_TYPES : return ( ( InternalEList < ? > ) getColumnTypes ( ) ) . basicRemove ( otherEnd , msgs ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__COLUMN_TYPE : return basicSetColumnType ( null , msgs ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__JOIN_TABLES : return ( ( InternalEList < ? > ) getJoinTables ( ) ) . basicRemove ( otherEnd , msgs ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__TABLES : return ( ( InternalEList < ? > ) getTables ( ) ) . basicRemove ( otherEnd , msgs ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__COLUMNS : return ( ( InternalEList < ? > ) getColumns ( ) ) . basicRemove ( otherEnd , msgs ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__EXPORTS : return ( ( InternalEList < ? > ) getExports ( ) ) . basicRemove ( otherEnd , msgs ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__IMPORTS : return ( ( InternalEList < ? > ) getImports ( ) ) . basicRemove ( otherEnd , msgs ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__MANY2S : return ( ( InternalEList < ? > ) getMany2s ( ) ) . basicRemove ( otherEnd , msgs ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__INHERITANCE : return ( ( InternalEList < ? > ) getInheritance ( ) ) . basicRemove ( otherEnd , msgs ) ; } return super . eInverseRemove ( otherEnd , featureID , msgs ) ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . POJOGEN_PROPERTY__NAME : return getName ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__SQL_TYPES : return getSqlTypes ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_TABLE : return getDbTable ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__COLUMN_TYPES : return getColumnTypes ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__COLUMN_TYPE : return getColumnType ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_TABLES : return getDbTables ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__JOIN_TABLES : return getJoinTables ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_COLUMNS : return getDbColumns ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__TABLES : return getTables ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__COLUMNS : return getColumns ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__EXPORTS : return getExports ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__IMPORTS : return getImports ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__MANY2S : return getMany2s ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_COLUMN : return getDbColumn ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__INHERITANCE : return getInheritance ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__METHODS : return getMethods ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__TO_IMPLEMENTS : return getToImplements ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__TO_EXTENDS : if ( resolve ) return getToExtends ( ) ; return basicGetToExtends ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ SuppressWarnings ( "<STR_LIT:unchecked>" ) @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . POJOGEN_PROPERTY__NAME : setName ( ( String ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__SQL_TYPES : getSqlTypes ( ) . clear ( ) ; getSqlTypes ( ) . addAll ( ( Collection < ? extends SqlTypeAssignement > ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_TABLE : setDbTable ( ( String ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__COLUMN_TYPES : getColumnTypes ( ) . clear ( ) ; getColumnTypes ( ) . addAll ( ( Collection < ? extends ColumnTypeAssignement > ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__COLUMN_TYPE : setColumnType ( ( ShowColumnTypeAssignement ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_TABLES : getDbTables ( ) . clear ( ) ; getDbTables ( ) . addAll ( ( Collection < ? extends String > ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__JOIN_TABLES : getJoinTables ( ) . clear ( ) ; getJoinTables ( ) . addAll ( ( Collection < ? extends JoinTableAssignement > ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_COLUMNS : getDbColumns ( ) . clear ( ) ; getDbColumns ( ) . addAll ( ( Collection < ? extends String > ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__TABLES : getTables ( ) . clear ( ) ; getTables ( ) . addAll ( ( Collection < ? extends TableAssignement > ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__COLUMNS : getColumns ( ) . clear ( ) ; getColumns ( ) . addAll ( ( Collection < ? extends ColumnAssignement > ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__EXPORTS : getExports ( ) . clear ( ) ; getExports ( ) . addAll ( ( Collection < ? extends ExportAssignement > ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__IMPORTS : getImports ( ) . clear ( ) ; getImports ( ) . addAll ( ( Collection < ? extends ImportAssignement > ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__MANY2S : getMany2s ( ) . clear ( ) ; getMany2s ( ) . addAll ( ( Collection < ? extends ManyToManyAssignement > ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_COLUMN : setDbColumn ( ( String ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__INHERITANCE : getInheritance ( ) . clear ( ) ; getInheritance ( ) . addAll ( ( Collection < ? extends InheritanceAssignement > ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__METHODS : getMethods ( ) . clear ( ) ; getMethods ( ) . addAll ( ( Collection < ? extends String > ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__TO_IMPLEMENTS : getToImplements ( ) . clear ( ) ; getToImplements ( ) . addAll ( ( Collection < ? extends JvmType > ) newValue ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__TO_EXTENDS : setToExtends ( ( JvmType ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . POJOGEN_PROPERTY__NAME : setName ( NAME_EDEFAULT ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__SQL_TYPES : getSqlTypes ( ) . clear ( ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_TABLE : setDbTable ( DB_TABLE_EDEFAULT ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__COLUMN_TYPES : getColumnTypes ( ) . clear ( ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__COLUMN_TYPE : setColumnType ( ( ShowColumnTypeAssignement ) null ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_TABLES : getDbTables ( ) . clear ( ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__JOIN_TABLES : getJoinTables ( ) . clear ( ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_COLUMNS : getDbColumns ( ) . clear ( ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__TABLES : getTables ( ) . clear ( ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__COLUMNS : getColumns ( ) . clear ( ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__EXPORTS : getExports ( ) . clear ( ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__IMPORTS : getImports ( ) . clear ( ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__MANY2S : getMany2s ( ) . clear ( ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_COLUMN : setDbColumn ( DB_COLUMN_EDEFAULT ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__INHERITANCE : getInheritance ( ) . clear ( ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__METHODS : getMethods ( ) . clear ( ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__TO_IMPLEMENTS : getToImplements ( ) . clear ( ) ; return ; case ProcessorDslPackage . POJOGEN_PROPERTY__TO_EXTENDS : setToExtends ( ( JvmType ) null ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . POJOGEN_PROPERTY__NAME : return NAME_EDEFAULT == null ? name != null : ! NAME_EDEFAULT . equals ( name ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__SQL_TYPES : return sqlTypes != null && ! sqlTypes . isEmpty ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_TABLE : return DB_TABLE_EDEFAULT == null ? dbTable != null : ! DB_TABLE_EDEFAULT . equals ( dbTable ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__COLUMN_TYPES : return columnTypes != null && ! columnTypes . isEmpty ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__COLUMN_TYPE : return columnType != null ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_TABLES : return dbTables != null && ! dbTables . isEmpty ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__JOIN_TABLES : return joinTables != null && ! joinTables . isEmpty ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_COLUMNS : return dbColumns != null && ! dbColumns . isEmpty ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__TABLES : return tables != null && ! tables . isEmpty ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__COLUMNS : return columns != null && ! columns . isEmpty ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__EXPORTS : return exports != null && ! exports . isEmpty ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__IMPORTS : return imports != null && ! imports . isEmpty ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__MANY2S : return many2s != null && ! many2s . isEmpty ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__DB_COLUMN : return DB_COLUMN_EDEFAULT == null ? dbColumn != null : ! DB_COLUMN_EDEFAULT . equals ( dbColumn ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__INHERITANCE : return inheritance != null && ! inheritance . isEmpty ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__METHODS : return methods != null && ! methods . isEmpty ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__TO_IMPLEMENTS : return toImplements != null && ! toImplements . isEmpty ( ) ; case ProcessorDslPackage . POJOGEN_PROPERTY__TO_EXTENDS : return toExtends != null ; } return super . eIsSet ( featureID ) ; } @ Override public String toString ( ) { if ( eIsProxy ( ) ) return super . toString ( ) ; StringBuffer result = new StringBuffer ( super . toString ( ) ) ; result . append ( "<STR_LIT>" ) ; result . append ( name ) ; result . append ( "<STR_LIT>" ) ; result . append ( dbTable ) ; result . append ( "<STR_LIT>" ) ; result . append ( dbTables ) ; result . append ( "<STR_LIT>" ) ; result . append ( dbColumns ) ; result . append ( "<STR_LIT>" ) ; result . append ( dbColumn ) ; result . append ( "<STR_LIT>" ) ; result . append ( methods ) ; result . append ( '<CHAR_LIT:)>' ) ; return result . toString ( ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import org . eclipse . emf . common . notify . Notification ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . impl . ENotificationImpl ; import org . eclipse . emf . ecore . impl . MinimalEObjectImpl ; import org . sqlproc . dsl . processorDsl . ColumnAssignement ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; public class ColumnAssignementImpl extends MinimalEObjectImpl . Container implements ColumnAssignement { protected static final String DB_COLUMN_EDEFAULT = null ; protected String dbColumn = DB_COLUMN_EDEFAULT ; protected static final String NEW_NAME_EDEFAULT = null ; protected String newName = NEW_NAME_EDEFAULT ; protected ColumnAssignementImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . COLUMN_ASSIGNEMENT ; } public String getDbColumn ( ) { return dbColumn ; } public void setDbColumn ( String newDbColumn ) { String oldDbColumn = dbColumn ; dbColumn = newDbColumn ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . COLUMN_ASSIGNEMENT__DB_COLUMN , oldDbColumn , dbColumn ) ) ; } public String getNewName ( ) { return newName ; } public void setNewName ( String newNewName ) { String oldNewName = newName ; newName = newNewName ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . COLUMN_ASSIGNEMENT__NEW_NAME , oldNewName , newName ) ) ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . COLUMN_ASSIGNEMENT__DB_COLUMN : return getDbColumn ( ) ; case ProcessorDslPackage . COLUMN_ASSIGNEMENT__NEW_NAME : return getNewName ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . COLUMN_ASSIGNEMENT__DB_COLUMN : setDbColumn ( ( String ) newValue ) ; return ; case ProcessorDslPackage . COLUMN_ASSIGNEMENT__NEW_NAME : setNewName ( ( String ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . COLUMN_ASSIGNEMENT__DB_COLUMN : setDbColumn ( DB_COLUMN_EDEFAULT ) ; return ; case ProcessorDslPackage . COLUMN_ASSIGNEMENT__NEW_NAME : setNewName ( NEW_NAME_EDEFAULT ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . COLUMN_ASSIGNEMENT__DB_COLUMN : return DB_COLUMN_EDEFAULT == null ? dbColumn != null : ! DB_COLUMN_EDEFAULT . equals ( dbColumn ) ; case ProcessorDslPackage . COLUMN_ASSIGNEMENT__NEW_NAME : return NEW_NAME_EDEFAULT == null ? newName != null : ! NEW_NAME_EDEFAULT . equals ( newName ) ; } return super . eIsSet ( featureID ) ; } @ Override public String toString ( ) { if ( eIsProxy ( ) ) return super . toString ( ) ; StringBuffer result = new StringBuffer ( super . toString ( ) ) ; result . append ( "<STR_LIT>" ) ; result . append ( dbColumn ) ; result . append ( "<STR_LIT>" ) ; result . append ( newName ) ; result . append ( '<CHAR_LIT:)>' ) ; return result . toString ( ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import java . util . Collection ; import org . eclipse . emf . common . notify . NotificationChain ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . InternalEObject ; import org . eclipse . emf . ecore . impl . MinimalEObjectImpl ; import org . eclipse . emf . ecore . util . EObjectContainmentEList ; import org . eclipse . emf . ecore . util . InternalEList ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; import org . sqlproc . dsl . processorDsl . Sql ; import org . sqlproc . dsl . processorDsl . SqlFragment ; public class SqlImpl extends MinimalEObjectImpl . Container implements Sql { protected EList < SqlFragment > sqls ; protected SqlImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . SQL ; } public EList < SqlFragment > getSqls ( ) { if ( sqls == null ) { sqls = new EObjectContainmentEList < SqlFragment > ( SqlFragment . class , this , ProcessorDslPackage . SQL__SQLS ) ; } return sqls ; } @ Override public NotificationChain eInverseRemove ( InternalEObject otherEnd , int featureID , NotificationChain msgs ) { switch ( featureID ) { case ProcessorDslPackage . SQL__SQLS : return ( ( InternalEList < ? > ) getSqls ( ) ) . basicRemove ( otherEnd , msgs ) ; } return super . eInverseRemove ( otherEnd , featureID , msgs ) ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . SQL__SQLS : return getSqls ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ SuppressWarnings ( "<STR_LIT:unchecked>" ) @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . SQL__SQLS : getSqls ( ) . clear ( ) ; getSqls ( ) . addAll ( ( Collection < ? extends SqlFragment > ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . SQL__SQLS : getSqls ( ) . clear ( ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . SQL__SQLS : return sqls != null && ! sqls . isEmpty ( ) ; } return super . eIsSet ( featureID ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import org . eclipse . emf . common . notify . Notification ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . impl . ENotificationImpl ; import org . eclipse . emf . ecore . impl . MinimalEObjectImpl ; import org . sqlproc . dsl . processorDsl . PojoPropertyModifier ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; public class PojoPropertyModifierImpl extends MinimalEObjectImpl . Container implements PojoPropertyModifier { protected static final boolean REQUIRED_EDEFAULT = false ; protected boolean required = REQUIRED_EDEFAULT ; protected static final boolean DISCRIMINATOR_EDEFAULT = false ; protected boolean discriminator = DISCRIMINATOR_EDEFAULT ; protected static final boolean PRIMARY_KEY_EDEFAULT = false ; protected boolean primaryKey = PRIMARY_KEY_EDEFAULT ; protected PojoPropertyModifierImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . POJO_PROPERTY_MODIFIER ; } public boolean isRequired ( ) { return required ; } public void setRequired ( boolean newRequired ) { boolean oldRequired = required ; required = newRequired ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . POJO_PROPERTY_MODIFIER__REQUIRED , oldRequired , required ) ) ; } public boolean isDiscriminator ( ) { return discriminator ; } public void setDiscriminator ( boolean newDiscriminator ) { boolean oldDiscriminator = discriminator ; discriminator = newDiscriminator ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . POJO_PROPERTY_MODIFIER__DISCRIMINATOR , oldDiscriminator , discriminator ) ) ; } public boolean isPrimaryKey ( ) { return primaryKey ; } public void setPrimaryKey ( boolean newPrimaryKey ) { boolean oldPrimaryKey = primaryKey ; primaryKey = newPrimaryKey ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . POJO_PROPERTY_MODIFIER__PRIMARY_KEY , oldPrimaryKey , primaryKey ) ) ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . POJO_PROPERTY_MODIFIER__REQUIRED : return isRequired ( ) ; case ProcessorDslPackage . POJO_PROPERTY_MODIFIER__DISCRIMINATOR : return isDiscriminator ( ) ; case ProcessorDslPackage . POJO_PROPERTY_MODIFIER__PRIMARY_KEY : return isPrimaryKey ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . POJO_PROPERTY_MODIFIER__REQUIRED : setRequired ( ( Boolean ) newValue ) ; return ; case ProcessorDslPackage . POJO_PROPERTY_MODIFIER__DISCRIMINATOR : setDiscriminator ( ( Boolean ) newValue ) ; return ; case ProcessorDslPackage . POJO_PROPERTY_MODIFIER__PRIMARY_KEY : setPrimaryKey ( ( Boolean ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . POJO_PROPERTY_MODIFIER__REQUIRED : setRequired ( REQUIRED_EDEFAULT ) ; return ; case ProcessorDslPackage . POJO_PROPERTY_MODIFIER__DISCRIMINATOR : setDiscriminator ( DISCRIMINATOR_EDEFAULT ) ; return ; case ProcessorDslPackage . POJO_PROPERTY_MODIFIER__PRIMARY_KEY : setPrimaryKey ( PRIMARY_KEY_EDEFAULT ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . POJO_PROPERTY_MODIFIER__REQUIRED : return required != REQUIRED_EDEFAULT ; case ProcessorDslPackage . POJO_PROPERTY_MODIFIER__DISCRIMINATOR : return discriminator != DISCRIMINATOR_EDEFAULT ; case ProcessorDslPackage . POJO_PROPERTY_MODIFIER__PRIMARY_KEY : return primaryKey != PRIMARY_KEY_EDEFAULT ; } return super . eIsSet ( featureID ) ; } @ Override public String toString ( ) { if ( eIsProxy ( ) ) return super . toString ( ) ; StringBuffer result = new StringBuffer ( super . toString ( ) ) ; result . append ( "<STR_LIT>" ) ; result . append ( required ) ; result . append ( "<STR_LIT>" ) ; result . append ( discriminator ) ; result . append ( "<STR_LIT>" ) ; result . append ( primaryKey ) ; result . append ( '<CHAR_LIT:)>' ) ; return result . toString ( ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import org . eclipse . emf . common . notify . Notification ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . InternalEObject ; import org . eclipse . emf . ecore . impl . ENotificationImpl ; import org . sqlproc . dsl . processorDsl . MappingRule ; import org . sqlproc . dsl . processorDsl . MappingUsageExt ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; public class MappingUsageExtImpl extends PojoUsageExtImpl implements MappingUsageExt { protected MappingRule statement ; protected MappingUsageExtImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . MAPPING_USAGE_EXT ; } public MappingRule getStatement ( ) { if ( statement != null && statement . eIsProxy ( ) ) { InternalEObject oldStatement = ( InternalEObject ) statement ; statement = ( MappingRule ) eResolveProxy ( oldStatement ) ; if ( statement != oldStatement ) { if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . RESOLVE , ProcessorDslPackage . MAPPING_USAGE_EXT__STATEMENT , oldStatement , statement ) ) ; } } return statement ; } public MappingRule basicGetStatement ( ) { return statement ; } public void setStatement ( MappingRule newStatement ) { MappingRule oldStatement = statement ; statement = newStatement ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . MAPPING_USAGE_EXT__STATEMENT , oldStatement , statement ) ) ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . MAPPING_USAGE_EXT__STATEMENT : if ( resolve ) return getStatement ( ) ; return basicGetStatement ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . MAPPING_USAGE_EXT__STATEMENT : setStatement ( ( MappingRule ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . MAPPING_USAGE_EXT__STATEMENT : setStatement ( ( MappingRule ) null ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . MAPPING_USAGE_EXT__STATEMENT : return statement != null ; } return super . eIsSet ( featureID ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import org . eclipse . emf . common . notify . Notification ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . impl . ENotificationImpl ; import org . eclipse . emf . ecore . impl . MinimalEObjectImpl ; import org . sqlproc . dsl . processorDsl . DatabaseColumn ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; public class DatabaseColumnImpl extends MinimalEObjectImpl . Container implements DatabaseColumn { protected static final String NAME_EDEFAULT = null ; protected String name = NAME_EDEFAULT ; protected DatabaseColumnImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . DATABASE_COLUMN ; } public String getName ( ) { return name ; } public void setName ( String newName ) { String oldName = name ; name = newName ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . DATABASE_COLUMN__NAME , oldName , name ) ) ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . DATABASE_COLUMN__NAME : return getName ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . DATABASE_COLUMN__NAME : setName ( ( String ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . DATABASE_COLUMN__NAME : setName ( NAME_EDEFAULT ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . DATABASE_COLUMN__NAME : return NAME_EDEFAULT == null ? name != null : ! NAME_EDEFAULT . equals ( name ) ; } return super . eIsSet ( featureID ) ; } @ Override public String toString ( ) { if ( eIsProxy ( ) ) return super . toString ( ) ; StringBuffer result = new StringBuffer ( super . toString ( ) ) ; result . append ( "<STR_LIT>" ) ; result . append ( name ) ; result . append ( '<CHAR_LIT:)>' ) ; return result . toString ( ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import java . util . Collection ; import org . eclipse . emf . common . notify . Notification ; import org . eclipse . emf . common . notify . NotificationChain ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . InternalEObject ; import org . eclipse . emf . ecore . impl . ENotificationImpl ; import org . eclipse . emf . ecore . impl . MinimalEObjectImpl ; import org . eclipse . emf . ecore . util . EDataTypeEList ; import org . sqlproc . dsl . processorDsl . MetaStatement ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; import org . sqlproc . dsl . processorDsl . Sql ; public class MetaStatementImpl extends MinimalEObjectImpl . Container implements MetaStatement { protected static final String NAME_EDEFAULT = null ; protected String name = NAME_EDEFAULT ; protected static final String TYPE_EDEFAULT = null ; protected String type = TYPE_EDEFAULT ; protected EList < String > filters ; protected Sql statement ; protected MetaStatementImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . META_STATEMENT ; } public String getName ( ) { return name ; } public void setName ( String newName ) { String oldName = name ; name = newName ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . META_STATEMENT__NAME , oldName , name ) ) ; } public String getType ( ) { return type ; } public void setType ( String newType ) { String oldType = type ; type = newType ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . META_STATEMENT__TYPE , oldType , type ) ) ; } public EList < String > getFilters ( ) { if ( filters == null ) { filters = new EDataTypeEList < String > ( String . class , this , ProcessorDslPackage . META_STATEMENT__FILTERS ) ; } return filters ; } public Sql getStatement ( ) { return statement ; } public NotificationChain basicSetStatement ( Sql newStatement , NotificationChain msgs ) { Sql oldStatement = statement ; statement = newStatement ; if ( eNotificationRequired ( ) ) { ENotificationImpl notification = new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . META_STATEMENT__STATEMENT , oldStatement , newStatement ) ; if ( msgs == null ) msgs = notification ; else msgs . add ( notification ) ; } return msgs ; } public void setStatement ( Sql newStatement ) { if ( newStatement != statement ) { NotificationChain msgs = null ; if ( statement != null ) msgs = ( ( InternalEObject ) statement ) . eInverseRemove ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . META_STATEMENT__STATEMENT , null , msgs ) ; if ( newStatement != null ) msgs = ( ( InternalEObject ) newStatement ) . eInverseAdd ( this , EOPPOSITE_FEATURE_BASE - ProcessorDslPackage . META_STATEMENT__STATEMENT , null , msgs ) ; msgs = basicSetStatement ( newStatement , msgs ) ; if ( msgs != null ) msgs . dispatch ( ) ; } else if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . META_STATEMENT__STATEMENT , newStatement , newStatement ) ) ; } @ Override public NotificationChain eInverseRemove ( InternalEObject otherEnd , int featureID , NotificationChain msgs ) { switch ( featureID ) { case ProcessorDslPackage . META_STATEMENT__STATEMENT : return basicSetStatement ( null , msgs ) ; } return super . eInverseRemove ( otherEnd , featureID , msgs ) ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . META_STATEMENT__NAME : return getName ( ) ; case ProcessorDslPackage . META_STATEMENT__TYPE : return getType ( ) ; case ProcessorDslPackage . META_STATEMENT__FILTERS : return getFilters ( ) ; case ProcessorDslPackage . META_STATEMENT__STATEMENT : return getStatement ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ SuppressWarnings ( "<STR_LIT:unchecked>" ) @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . META_STATEMENT__NAME : setName ( ( String ) newValue ) ; return ; case ProcessorDslPackage . META_STATEMENT__TYPE : setType ( ( String ) newValue ) ; return ; case ProcessorDslPackage . META_STATEMENT__FILTERS : getFilters ( ) . clear ( ) ; getFilters ( ) . addAll ( ( Collection < ? extends String > ) newValue ) ; return ; case ProcessorDslPackage . META_STATEMENT__STATEMENT : setStatement ( ( Sql ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . META_STATEMENT__NAME : setName ( NAME_EDEFAULT ) ; return ; case ProcessorDslPackage . META_STATEMENT__TYPE : setType ( TYPE_EDEFAULT ) ; return ; case ProcessorDslPackage . META_STATEMENT__FILTERS : getFilters ( ) . clear ( ) ; return ; case ProcessorDslPackage . META_STATEMENT__STATEMENT : setStatement ( ( Sql ) null ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . META_STATEMENT__NAME : return NAME_EDEFAULT == null ? name != null : ! NAME_EDEFAULT . equals ( name ) ; case ProcessorDslPackage . META_STATEMENT__TYPE : return TYPE_EDEFAULT == null ? type != null : ! TYPE_EDEFAULT . equals ( type ) ; case ProcessorDslPackage . META_STATEMENT__FILTERS : return filters != null && ! filters . isEmpty ( ) ; case ProcessorDslPackage . META_STATEMENT__STATEMENT : return statement != null ; } return super . eIsSet ( featureID ) ; } @ Override public String toString ( ) { if ( eIsProxy ( ) ) return super . toString ( ) ; StringBuffer result = new StringBuffer ( super . toString ( ) ) ; result . append ( "<STR_LIT>" ) ; result . append ( name ) ; result . append ( "<STR_LIT>" ) ; result . append ( type ) ; result . append ( "<STR_LIT>" ) ; result . append ( filters ) ; result . append ( '<CHAR_LIT:)>' ) ; return result . toString ( ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import org . eclipse . emf . common . notify . Notification ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . impl . ENotificationImpl ; import org . eclipse . emf . ecore . impl . MinimalEObjectImpl ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; import org . sqlproc . dsl . processorDsl . TableAssignement ; public class TableAssignementImpl extends MinimalEObjectImpl . Container implements TableAssignement { protected static final String DB_TABLE_EDEFAULT = null ; protected String dbTable = DB_TABLE_EDEFAULT ; protected static final String NEW_NAME_EDEFAULT = null ; protected String newName = NEW_NAME_EDEFAULT ; protected TableAssignementImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . TABLE_ASSIGNEMENT ; } public String getDbTable ( ) { return dbTable ; } public void setDbTable ( String newDbTable ) { String oldDbTable = dbTable ; dbTable = newDbTable ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . TABLE_ASSIGNEMENT__DB_TABLE , oldDbTable , dbTable ) ) ; } public String getNewName ( ) { return newName ; } public void setNewName ( String newNewName ) { String oldNewName = newName ; newName = newNewName ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . TABLE_ASSIGNEMENT__NEW_NAME , oldNewName , newName ) ) ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . TABLE_ASSIGNEMENT__DB_TABLE : return getDbTable ( ) ; case ProcessorDslPackage . TABLE_ASSIGNEMENT__NEW_NAME : return getNewName ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . TABLE_ASSIGNEMENT__DB_TABLE : setDbTable ( ( String ) newValue ) ; return ; case ProcessorDslPackage . TABLE_ASSIGNEMENT__NEW_NAME : setNewName ( ( String ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . TABLE_ASSIGNEMENT__DB_TABLE : setDbTable ( DB_TABLE_EDEFAULT ) ; return ; case ProcessorDslPackage . TABLE_ASSIGNEMENT__NEW_NAME : setNewName ( NEW_NAME_EDEFAULT ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . TABLE_ASSIGNEMENT__DB_TABLE : return DB_TABLE_EDEFAULT == null ? dbTable != null : ! DB_TABLE_EDEFAULT . equals ( dbTable ) ; case ProcessorDslPackage . TABLE_ASSIGNEMENT__NEW_NAME : return NEW_NAME_EDEFAULT == null ? newName != null : ! NEW_NAME_EDEFAULT . equals ( newName ) ; } return super . eIsSet ( featureID ) ; } @ Override public String toString ( ) { if ( eIsProxy ( ) ) return super . toString ( ) ; StringBuffer result = new StringBuffer ( super . toString ( ) ) ; result . append ( "<STR_LIT>" ) ; result . append ( dbTable ) ; result . append ( "<STR_LIT>" ) ; result . append ( newName ) ; result . append ( '<CHAR_LIT:)>' ) ; return result . toString ( ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import org . eclipse . emf . common . notify . Notification ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . impl . ENotificationImpl ; import org . eclipse . emf . ecore . impl . MinimalEObjectImpl ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; import org . sqlproc . dsl . processorDsl . TableDefinition ; public class TableDefinitionImpl extends MinimalEObjectImpl . Container implements TableDefinition { protected static final String NAME_EDEFAULT = null ; protected String name = NAME_EDEFAULT ; protected static final String TABLE_EDEFAULT = null ; protected String table = TABLE_EDEFAULT ; protected TableDefinitionImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . TABLE_DEFINITION ; } public String getName ( ) { return name ; } public void setName ( String newName ) { String oldName = name ; name = newName ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . TABLE_DEFINITION__NAME , oldName , name ) ) ; } public String getTable ( ) { return table ; } public void setTable ( String newTable ) { String oldTable = table ; table = newTable ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . TABLE_DEFINITION__TABLE , oldTable , table ) ) ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . TABLE_DEFINITION__NAME : return getName ( ) ; case ProcessorDslPackage . TABLE_DEFINITION__TABLE : return getTable ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . TABLE_DEFINITION__NAME : setName ( ( String ) newValue ) ; return ; case ProcessorDslPackage . TABLE_DEFINITION__TABLE : setTable ( ( String ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . TABLE_DEFINITION__NAME : setName ( NAME_EDEFAULT ) ; return ; case ProcessorDslPackage . TABLE_DEFINITION__TABLE : setTable ( TABLE_EDEFAULT ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . TABLE_DEFINITION__NAME : return NAME_EDEFAULT == null ? name != null : ! NAME_EDEFAULT . equals ( name ) ; case ProcessorDslPackage . TABLE_DEFINITION__TABLE : return TABLE_EDEFAULT == null ? table != null : ! TABLE_EDEFAULT . equals ( table ) ; } return super . eIsSet ( featureID ) ; } @ Override public String toString ( ) { if ( eIsProxy ( ) ) return super . toString ( ) ; StringBuffer result = new StringBuffer ( super . toString ( ) ) ; result . append ( "<STR_LIT>" ) ; result . append ( name ) ; result . append ( "<STR_LIT>" ) ; result . append ( table ) ; result . append ( '<CHAR_LIT:)>' ) ; return result . toString ( ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import java . util . Collection ; import org . eclipse . emf . common . notify . Notification ; import org . eclipse . emf . common . util . EList ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . impl . ENotificationImpl ; import org . eclipse . emf . ecore . impl . MinimalEObjectImpl ; import org . eclipse . emf . ecore . util . EDataTypeEList ; import org . sqlproc . dsl . processorDsl . Identifier ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; public class IdentifierImpl extends MinimalEObjectImpl . Container implements Identifier { protected static final String MODE_EDEFAULT = null ; protected String mode = MODE_EDEFAULT ; protected static final String CASE_EDEFAULT = null ; protected String case_ = CASE_EDEFAULT ; protected static final String NAME_EDEFAULT = null ; protected String name = NAME_EDEFAULT ; protected static final String TYPE_EDEFAULT = null ; protected String type = TYPE_EDEFAULT ; protected EList < String > vals ; protected IdentifierImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . IDENTIFIER ; } public String getMode ( ) { return mode ; } public void setMode ( String newMode ) { String oldMode = mode ; mode = newMode ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IDENTIFIER__MODE , oldMode , mode ) ) ; } public String getCase ( ) { return case_ ; } public void setCase ( String newCase ) { String oldCase = case_ ; case_ = newCase ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IDENTIFIER__CASE , oldCase , case_ ) ) ; } public String getName ( ) { return name ; } public void setName ( String newName ) { String oldName = name ; name = newName ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IDENTIFIER__NAME , oldName , name ) ) ; } public String getType ( ) { return type ; } public void setType ( String newType ) { String oldType = type ; type = newType ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . IDENTIFIER__TYPE , oldType , type ) ) ; } public EList < String > getVals ( ) { if ( vals == null ) { vals = new EDataTypeEList < String > ( String . class , this , ProcessorDslPackage . IDENTIFIER__VALS ) ; } return vals ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . IDENTIFIER__MODE : return getMode ( ) ; case ProcessorDslPackage . IDENTIFIER__CASE : return getCase ( ) ; case ProcessorDslPackage . IDENTIFIER__NAME : return getName ( ) ; case ProcessorDslPackage . IDENTIFIER__TYPE : return getType ( ) ; case ProcessorDslPackage . IDENTIFIER__VALS : return getVals ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ SuppressWarnings ( "<STR_LIT:unchecked>" ) @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . IDENTIFIER__MODE : setMode ( ( String ) newValue ) ; return ; case ProcessorDslPackage . IDENTIFIER__CASE : setCase ( ( String ) newValue ) ; return ; case ProcessorDslPackage . IDENTIFIER__NAME : setName ( ( String ) newValue ) ; return ; case ProcessorDslPackage . IDENTIFIER__TYPE : setType ( ( String ) newValue ) ; return ; case ProcessorDslPackage . IDENTIFIER__VALS : getVals ( ) . clear ( ) ; getVals ( ) . addAll ( ( Collection < ? extends String > ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . IDENTIFIER__MODE : setMode ( MODE_EDEFAULT ) ; return ; case ProcessorDslPackage . IDENTIFIER__CASE : setCase ( CASE_EDEFAULT ) ; return ; case ProcessorDslPackage . IDENTIFIER__NAME : setName ( NAME_EDEFAULT ) ; return ; case ProcessorDslPackage . IDENTIFIER__TYPE : setType ( TYPE_EDEFAULT ) ; return ; case ProcessorDslPackage . IDENTIFIER__VALS : getVals ( ) . clear ( ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . IDENTIFIER__MODE : return MODE_EDEFAULT == null ? mode != null : ! MODE_EDEFAULT . equals ( mode ) ; case ProcessorDslPackage . IDENTIFIER__CASE : return CASE_EDEFAULT == null ? case_ != null : ! CASE_EDEFAULT . equals ( case_ ) ; case ProcessorDslPackage . IDENTIFIER__NAME : return NAME_EDEFAULT == null ? name != null : ! NAME_EDEFAULT . equals ( name ) ; case ProcessorDslPackage . IDENTIFIER__TYPE : return TYPE_EDEFAULT == null ? type != null : ! TYPE_EDEFAULT . equals ( type ) ; case ProcessorDslPackage . IDENTIFIER__VALS : return vals != null && ! vals . isEmpty ( ) ; } return super . eIsSet ( featureID ) ; } @ Override public String toString ( ) { if ( eIsProxy ( ) ) return super . toString ( ) ; StringBuffer result = new StringBuffer ( super . toString ( ) ) ; result . append ( "<STR_LIT>" ) ; result . append ( mode ) ; result . append ( "<STR_LIT>" ) ; result . append ( case_ ) ; result . append ( "<STR_LIT>" ) ; result . append ( name ) ; result . append ( "<STR_LIT>" ) ; result . append ( type ) ; result . append ( "<STR_LIT>" ) ; result . append ( vals ) ; result . append ( '<CHAR_LIT:)>' ) ; return result . toString ( ) ; } } </s> |
<s> package org . sqlproc . dsl . processorDsl . impl ; import org . eclipse . emf . common . notify . Notification ; import org . eclipse . emf . ecore . EClass ; import org . eclipse . emf . ecore . impl . ENotificationImpl ; import org . eclipse . emf . ecore . impl . MinimalEObjectImpl ; import org . sqlproc . dsl . processorDsl . PojoDefinition ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; public class PojoDefinitionImpl extends MinimalEObjectImpl . Container implements PojoDefinition { protected static final String NAME_EDEFAULT = null ; protected String name = NAME_EDEFAULT ; protected static final String CLASS_EDEFAULT = null ; protected String class_ = CLASS_EDEFAULT ; protected PojoDefinitionImpl ( ) { super ( ) ; } @ Override protected EClass eStaticClass ( ) { return ProcessorDslPackage . Literals . POJO_DEFINITION ; } public String getName ( ) { return name ; } public void setName ( String newName ) { String oldName = name ; name = newName ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . POJO_DEFINITION__NAME , oldName , name ) ) ; } public String getClass_ ( ) { return class_ ; } public void setClass ( String newClass ) { String oldClass = class_ ; class_ = newClass ; if ( eNotificationRequired ( ) ) eNotify ( new ENotificationImpl ( this , Notification . SET , ProcessorDslPackage . POJO_DEFINITION__CLASS , oldClass , class_ ) ) ; } @ Override public Object eGet ( int featureID , boolean resolve , boolean coreType ) { switch ( featureID ) { case ProcessorDslPackage . POJO_DEFINITION__NAME : return getName ( ) ; case ProcessorDslPackage . POJO_DEFINITION__CLASS : return getClass_ ( ) ; } return super . eGet ( featureID , resolve , coreType ) ; } @ Override public void eSet ( int featureID , Object newValue ) { switch ( featureID ) { case ProcessorDslPackage . POJO_DEFINITION__NAME : setName ( ( String ) newValue ) ; return ; case ProcessorDslPackage . POJO_DEFINITION__CLASS : setClass ( ( String ) newValue ) ; return ; } super . eSet ( featureID , newValue ) ; } @ Override public void eUnset ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . POJO_DEFINITION__NAME : setName ( NAME_EDEFAULT ) ; return ; case ProcessorDslPackage . POJO_DEFINITION__CLASS : setClass ( CLASS_EDEFAULT ) ; return ; } super . eUnset ( featureID ) ; } @ Override public boolean eIsSet ( int featureID ) { switch ( featureID ) { case ProcessorDslPackage . POJO_DEFINITION__NAME : return NAME_EDEFAULT == null ? name != null : ! NAME_EDEFAULT . equals ( name ) ; case ProcessorDslPackage . POJO_DEFINITION__CLASS : return CLASS_EDEFAULT == null ? class_ != null : ! CLASS_EDEFAULT . equals ( class_ ) ; } return super . eIsSet ( featureID ) ; } @ Override public String toString ( ) { if ( eIsProxy ( ) ) return super . toString ( ) ; StringBuffer result = new StringBuffer ( super . toString ( ) ) ; result . append ( "<STR_LIT>" ) ; result . append ( name ) ; result . append ( "<STR_LIT>" ) ; result . append ( class_ ) ; result . append ( '<CHAR_LIT:)>' ) ; return result . toString ( ) ; } } </s> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.