text
stringlengths
30
1.67M
<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 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 . 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 . 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 . ConstantUsage ; import org . sqlproc . dsl . processorDsl . IdentifierUsage ; import org . sqlproc . dsl . processorDsl . MappingRule ; import org . sqlproc . dsl . processorDsl . MappingUsage ; import org . sqlproc . dsl . processorDsl . MetaStatement ; import org . sqlproc . dsl . processorDsl . PojoDefinition ; import org . sqlproc . dsl . processorDsl . PojoUsage ; import org . sqlproc . dsl . processorDsl . ProcessorDslPackage ; import org . sqlproc . dsl . processorDsl . TableDefinition ; import org . sqlproc . dsl . processorDsl . TableUsage ; import org . sqlproc . dsl . resolver . DbResolver ; import org . sqlproc . dsl . resolver . PojoResolver ; 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 completeProperty_DoResolvePojo ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { addProposalList ( ON_OFF , "<STR_LIT>" , context , acceptor ) ; } @ Override public void completeProperty_DoResolveDb ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { addProposalList ( ON_OFF , "<STR_LIT>" , context , acceptor ) ; } @ 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 ( ) ) ) 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 ( ) ) ) 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 ( ) ) ) super . completeIdentifier_Name ( model , assignment , context , acceptor ) ; } public boolean completeUsage ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor , String name ) { if ( ! isResolvePojo ( model ) ) return false ; MetaStatement metaStatement = EcoreUtil2 . getContainerOfType ( model , MetaStatement . class ) ; Artifacts artifacts = EcoreUtil2 . getContainerOfType ( metaStatement , Artifacts . class ) ; IScope scope = getScopeProvider ( ) . getScope ( artifacts , ProcessorDslPackage . Literals . ARTIFACTS__USAGES ) ; PojoDefinition pojoDefinition = findPojo ( artifacts . eResource ( ) . getResourceSet ( ) , scope , name , metaStatement . getName ( ) ) ; if ( pojoDefinition == 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>" ; } 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 ; } } @ 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 ) ; IScope scope = getScopeProvider ( ) . getScope ( artifacts , ProcessorDslPackage . Literals . ARTIFACTS__USAGES ) ; PojoDefinition pojoDefinition = findPojo ( artifacts . eResource ( ) . getResourceSet ( ) , scope , ProcessorDslPackage . Literals . MAPPING_USAGE . getName ( ) , mappingRule . getName ( ) ) ; if ( pojoDefinition == 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>" ; } 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 ) ; } } } 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 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 ( ) ; 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 ) ; } } } } } </s>
<s> package org . sqlproc . dsl . ui . internal ; import static com . google . inject . util . Modules . override ; import static com . google . inject . Guice . createInjector ; import org . apache . log4j . Logger ; import org . eclipse . ui . plugin . AbstractUIPlugin ; import org . osgi . framework . BundleContext ; import com . google . inject . Injector ; import com . google . inject . Module ; import java . util . Map ; import java . util . HashMap ; public class ProcessorDslActivator extends AbstractUIPlugin { private Map < String , Injector > injectors = new HashMap < String , Injector > ( ) ; private static ProcessorDslActivator INSTANCE ; public Injector getInjector ( String languageName ) { return injectors . get ( languageName ) ; } @ Override public void start ( BundleContext context ) throws Exception { super . start ( context ) ; INSTANCE = this ; try { registerInjectorFor ( "<STR_LIT>" ) ; } catch ( Exception e ) { Logger . getLogger ( getClass ( ) ) . error ( e . getMessage ( ) , e ) ; throw e ; } } protected void registerInjectorFor ( String language ) throws Exception { injectors . put ( language , createInjector ( override ( override ( getRuntimeModule ( language ) ) . with ( getSharedStateModule ( ) ) ) . with ( getUiModule ( language ) ) ) ) ; } @ Override public void stop ( BundleContext context ) throws Exception { injectors . clear ( ) ; INSTANCE = null ; super . stop ( context ) ; } public static ProcessorDslActivator getInstance ( ) { return INSTANCE ; } protected Module getRuntimeModule ( String grammar ) { if ( "<STR_LIT>" . equals ( grammar ) ) { return new org . sqlproc . dsl . ProcessorDslRuntimeModule ( ) ; } throw new IllegalArgumentException ( grammar ) ; } protected Module getUiModule ( String grammar ) { if ( "<STR_LIT>" . equals ( grammar ) ) { return new org . sqlproc . dsl . ui . ProcessorDslUiModule ( this ) ; } throw new IllegalArgumentException ( grammar ) ; } protected Module getSharedStateModule ( ) { return new org . eclipse . xtext . ui . shared . SharedStateModule ( ) ; } } </s>
<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 . JavaProjectBasedBuilderParticipant . class ; } public org . eclipse . core . resources . IWorkspaceRoot bindIWorkspaceRootToInstance ( ) { return org . eclipse . core . resources . ResourcesPlugin . getWorkspace ( ) . getRoot ( ) ; } 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 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 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 ; 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 . 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 . 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 . 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 . getPropertyAccess ( ) . getGroup ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getGroup_0_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getGroup_0_1 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getGroup_0_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getGroup_0_3 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getGroup_0_4 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getGroup_0_5 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getGroup_0_6 ( ) , "<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 . 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 . 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 . getPropertyAccess ( ) . getNameAssignment_0_0_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getDoResolvePojoAssignment_0_0_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_1_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getDoResolveDbAssignment_0_1_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_2_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getDbUrlAssignment_0_2_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_3_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getDbUsernameAssignment_0_3_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_4_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getDbPasswordAssignment_0_4_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_5_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getDbSchemaAssignment_0_5_2 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_6_0 ( ) , "<STR_LIT>" ) ; put ( grammarAccess . getPropertyAccess ( ) . getDbDriverAssignment_0_6_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 . 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>" ) ; } } ; } 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 . 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>" } ; public static final int RULE_SEMICOLON = <NUM_LIT> ; public static final int RULE_OR = <NUM_LIT> ; public static final int RULE_PERCENT = <NUM_LIT> ; public static final int RULE_OPTION_TYPE = <NUM_LIT> ; public static final int RULE_AND = <NUM_LIT> ; public static final int EOF = - <NUM_LIT:1> ; public static final int RULE_NOT = <NUM_LIT> ; public static final int RULE_REST = <NUM_LIT:4> ; 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 RULE_NUMBER = <NUM_LIT:7> ; public static final int RULE_LPAREN = <NUM_LIT> ; public static final int RULE_LBRACE = <NUM_LIT:15> ; public static final int RULE_BOR = <NUM_LIT:20> ; public static final int RULE_IDENT_DOT = <NUM_LIT:5> ; 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 RULE_BAND = <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 RULE_RBRACE = <NUM_LIT:16> ; 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_STATEMEN_TYPE = <NUM_LIT:32> ; public static final int RULE_PLUS = <NUM_LIT:12> ; public static final int RULE_COMMA = <NUM_LIT:10> ; public static final int RULE_HASH = <NUM_LIT> ; public static final int RULE_SL_COMMENT = <NUM_LIT> ; public static final int RULE_QUESTI = <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_COLON = <NUM_LIT:8> ; public static final int RULE_MINUS = <NUM_LIT:11> ; public static final int RULE_STRING = <NUM_LIT:9> ; public static final int RULE_ESC_CHAR = <NUM_LIT:30> ; public static final int RULE_IDENT = <NUM_LIT:6> ; public static final int T__39 = <NUM_LIT> ; public static final int RULE_EQUALS = <NUM_LIT:24> ; public static final int RULE_RPAREN = <NUM_LIT> ; 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 static final int RULE_AT = <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 entryRuleProperty ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyRule ( ) ) ; } pushFollow ( FOLLOW_ruleProperty_in_entryRuleProperty127 ) ; ruleProperty ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleProperty134 ) ; 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_ruleProperty160 ) ; 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 entryRulePropertyValue ( ) throws RecognitionException { try { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyValueRule ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_entryRulePropertyValue187 ) ; rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyValueRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePropertyValue194 ) ; 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_rulePropertyValue220 ) ; 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_entryRulePojoDefinition252 ) ; rulePojoDefinition ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoDefinitionRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoDefinition259 ) ; 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_rulePojoDefinition289 ) ; 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_entryRulePojoUsage316 ) ; rulePojoUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPojoUsageRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRulePojoUsage323 ) ; 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_rulePojoUsage349 ) ; 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_entryRuleColumnUsage381 ) ; ruleColumnUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnUsageRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleColumnUsage388 ) ; 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_ruleColumnUsage418 ) ; 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_entryRuleIdentifierUsage450 ) ; ruleIdentifierUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierUsageRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIdentifierUsage457 ) ; 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_ruleIdentifierUsage487 ) ; 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_entryRuleConstantUsage519 ) ; ruleConstantUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantUsageRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleConstantUsage526 ) ; 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_ruleConstantUsage556 ) ; 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_entryRuleMappingUsage588 ) ; ruleMappingUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingUsageRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMappingUsage595 ) ; 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_ruleMappingUsage625 ) ; 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 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_entryRuleTableDefinition657 ) ; ruleTableDefinition ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableDefinitionRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleTableDefinition664 ) ; 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_ruleTableDefinition694 ) ; 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_entryRuleTableUsage726 ) ; ruleTableUsage ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getTableUsageRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleTableUsage733 ) ; 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_ruleTableUsage763 ) ; 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_entryRuleMetaStatement790 ) ; ruleMetaStatement ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaStatementRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMetaStatement797 ) ; 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_ruleMetaStatement823 ) ; 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_entryRuleSql850 ) ; ruleSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleSql857 ) ; 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_ruleSql885 ) ; 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_ruleSql897 ) ; 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_entryRuleSqlFragment927 ) ; ruleSqlFragment ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlFragmentRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleSqlFragment934 ) ; 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_ruleSqlFragment960 ) ; 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_entryRuleSqlValue987 ) ; ruleSqlValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getSqlValueRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleSqlValue994 ) ; 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_ruleSqlValue1020 ) ; 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_entryRuleMetaSql1047 ) ; ruleMetaSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMetaSqlRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMetaSql1054 ) ; 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_ruleMetaSql1080 ) ; 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_entryRuleIfSql1107 ) ; ruleIfSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfSql1114 ) ; 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_ruleIfSql1142 ) ; 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_ruleIfSql1154 ) ; 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_entryRuleIfSqlFragment1184 ) ; ruleIfSqlFragment ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlFragmentRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfSqlFragment1191 ) ; 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_ruleIfSqlFragment1217 ) ; 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_entryRuleIfSqlValue1244 ) ; ruleIfSqlValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlValueRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfSqlValue1251 ) ; 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_ruleIfSqlValue1277 ) ; 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_entryRuleIfMetaSql1304 ) ; ruleIfMetaSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfMetaSqlRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfMetaSql1311 ) ; 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_ruleIfMetaSql1337 ) ; 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_entryRuleIfSqlCond1364 ) ; ruleIfSqlCond ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlCondRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfSqlCond1371 ) ; 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_ruleIfSqlCond1397 ) ; 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_entryRuleIfSqlBool1424 ) ; ruleIfSqlBool ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIfSqlBoolRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIfSqlBool1431 ) ; 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_ruleIfSqlBool1457 ) ; 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_entryRuleOrdSql1484 ) ; ruleOrdSql ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleOrdSql1491 ) ; 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_ruleOrdSql1519 ) ; 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_ruleOrdSql1531 ) ; 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_entryRuleOrdSql21561 ) ; ruleOrdSql2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSql2Rule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleOrdSql21568 ) ; 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_ruleOrdSql21594 ) ; 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_entryRuleOrdSqlValue1621 ) ; ruleOrdSqlValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOrdSqlValueRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleOrdSqlValue1628 ) ; 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_ruleOrdSqlValue1654 ) ; 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_entryRuleColumn1681 ) ; ruleColumn ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getColumnRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleColumn1688 ) ; 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_ruleColumn1714 ) ; 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_entryRuleConstant1741 ) ; ruleConstant ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getConstantRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleConstant1748 ) ; 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_ruleConstant1774 ) ; 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_entryRuleIdentifier1801 ) ; ruleIdentifier ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getIdentifierRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleIdentifier1808 ) ; 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_ruleIdentifier1834 ) ; 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_entryRuleDatabaseColumn1861 ) ; ruleDatabaseColumn ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabaseColumnRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleDatabaseColumn1868 ) ; 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_ruleDatabaseColumn1894 ) ; 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_entryRuleDatabaseTable1921 ) ; ruleDatabaseTable ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getDatabaseTableRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleDatabaseTable1928 ) ; 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_ruleDatabaseTable1954 ) ; 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_entryRuleMappingRule1981 ) ; ruleMappingRule ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRuleRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMappingRule1988 ) ; 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_ruleMappingRule2014 ) ; 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_entryRuleMapping2041 ) ; ruleMapping ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMapping2048 ) ; 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_ruleMapping2074 ) ; 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_entryRuleMappingItem2101 ) ; ruleMappingItem ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingItemRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMappingItem2108 ) ; 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_ruleMappingItem2134 ) ; 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_entryRuleMappingColumn2161 ) ; ruleMappingColumn ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getMappingColumnRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleMappingColumn2168 ) ; 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_ruleMappingColumn2194 ) ; 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_entryRuleOptionalFeature2221 ) ; ruleOptionalFeature ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getOptionalFeatureRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleOptionalFeature2228 ) ; 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_ruleOptionalFeature2254 ) ; 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_entryRuleFeatureValue2281 ) ; ruleFeatureValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getFeatureValueRule ( ) ) ; } match ( input , EOF , FOLLOW_EOF_in_entryRuleFeatureValue2288 ) ; 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_ruleFeatureValue2316 ) ; 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_ruleFeatureValue2328 ) ; 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 rule__Artifacts__Alternatives_1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt5 = <NUM_LIT:8> ; 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_12367 ) ; 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_12385 ) ; 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_12403 ) ; 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_12421 ) ; 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_12439 ) ; 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_12457 ) ; 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_12475 ) ; 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_12493 ) ; 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 ; } } 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:7> ; 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 ; case <NUM_LIT> : { alt6 = <NUM_LIT:5> ; } break ; case <NUM_LIT> : { alt6 = <NUM_LIT:6> ; } break ; case <NUM_LIT> : { alt6 = <NUM_LIT:7> ; } 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 ( ) . getGroup_0_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__Group_0_0__0_in_rule__Property__Alternatives_02526 ) ; rule__Property__Group_0_0__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getGroup_0_0 ( ) ) ; } } } break ; case <NUM_LIT:2> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getGroup_0_1 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__Group_0_1__0_in_rule__Property__Alternatives_02544 ) ; rule__Property__Group_0_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getGroup_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_02562 ) ; 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_02580 ) ; 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 ; case <NUM_LIT:5> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getGroup_0_4 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__Group_0_4__0_in_rule__Property__Alternatives_02598 ) ; rule__Property__Group_0_4__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getGroup_0_4 ( ) ) ; } } } break ; case <NUM_LIT:6> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getGroup_0_5 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__Group_0_5__0_in_rule__Property__Alternatives_02616 ) ; rule__Property__Group_0_5__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getGroup_0_5 ( ) ) ; } } } break ; case <NUM_LIT:7> : { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getGroup_0_6 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__Group_0_6__0_in_rule__Property__Alternatives_02634 ) ; rule__Property__Group_0_6__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getGroup_0_6 ( ) ) ; } } } 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 alt7 = <NUM_LIT:31> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt7 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt7 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt7 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt7 = <NUM_LIT:4> ; } break ; case RULE_COLON : { alt7 = <NUM_LIT:5> ; } break ; case RULE_STRING : { alt7 = <NUM_LIT:6> ; } break ; case RULE_COMMA : { alt7 = <NUM_LIT:7> ; } break ; case RULE_MINUS : { alt7 = <NUM_LIT:8> ; } break ; case RULE_PLUS : { alt7 = <NUM_LIT:9> ; } break ; case RULE_LPAREN : { alt7 = <NUM_LIT:10> ; } break ; case RULE_RPAREN : { alt7 = <NUM_LIT:11> ; } break ; case RULE_LBRACE : { alt7 = <NUM_LIT:12> ; } break ; case RULE_RBRACE : { alt7 = <NUM_LIT> ; } break ; case RULE_QUESTI : { alt7 = <NUM_LIT> ; } break ; case RULE_NOT : { alt7 = <NUM_LIT:15> ; } break ; case RULE_BAND : { alt7 = <NUM_LIT:16> ; } break ; case RULE_BOR : { alt7 = <NUM_LIT> ; } break ; case RULE_HASH : { alt7 = <NUM_LIT> ; } break ; case RULE_AT : { alt7 = <NUM_LIT> ; } break ; case RULE_CARET : { alt7 = <NUM_LIT:20> ; } break ; case RULE_EQUALS : { alt7 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt7 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt7 = <NUM_LIT> ; } break ; case RULE_PERCENT : { alt7 = <NUM_LIT:24> ; } break ; case RULE_AND : { alt7 = <NUM_LIT> ; } break ; case RULE_OR : { alt7 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt7 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt7 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt7 = <NUM_LIT> ; } break ; case RULE_MAPPING_TYPE : { alt7 = <NUM_LIT:30> ; } break ; case RULE_OPTION_TYPE : { alt7 = <NUM_LIT:31> ; } 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 . getPropertyValueAccess ( ) . getRESTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_REST , FOLLOW_RULE_REST_in_rule__PropertyValue__Alternatives_02667 ) ; 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_02684 ) ; 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_02701 ) ; 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_02718 ) ; 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_02735 ) ; 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_02752 ) ; 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_02769 ) ; 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_02786 ) ; 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_02803 ) ; 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_02820 ) ; 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_02837 ) ; 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_02854 ) ; 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_02871 ) ; 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_02888 ) ; 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_02905 ) ; 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_02922 ) ; 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_02939 ) ; 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_02956 ) ; 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_02973 ) ; 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_02990 ) ; 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_03007 ) ; 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_03024 ) ; 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_03041 ) ; 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_03058 ) ; 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_03075 ) ; 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_03092 ) ; 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_03109 ) ; 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_03126 ) ; 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_03143 ) ; 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_03160 ) ; 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_03177 ) ; 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 alt8 = <NUM_LIT:32> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt8 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt8 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt8 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt8 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt8 = <NUM_LIT:5> ; } break ; case RULE_COLON : { alt8 = <NUM_LIT:6> ; } break ; case RULE_STRING : { alt8 = <NUM_LIT:7> ; } break ; case RULE_COMMA : { alt8 = <NUM_LIT:8> ; } break ; case RULE_MINUS : { alt8 = <NUM_LIT:9> ; } break ; case RULE_PLUS : { alt8 = <NUM_LIT:10> ; } break ; case RULE_LPAREN : { alt8 = <NUM_LIT:11> ; } break ; case RULE_RPAREN : { alt8 = <NUM_LIT:12> ; } break ; case RULE_LBRACE : { alt8 = <NUM_LIT> ; } break ; case RULE_RBRACE : { alt8 = <NUM_LIT> ; } break ; case RULE_QUESTI : { alt8 = <NUM_LIT:15> ; } break ; case RULE_NOT : { alt8 = <NUM_LIT:16> ; } break ; case RULE_BAND : { alt8 = <NUM_LIT> ; } break ; case RULE_BOR : { alt8 = <NUM_LIT> ; } break ; case RULE_HASH : { alt8 = <NUM_LIT> ; } break ; case RULE_AT : { alt8 = <NUM_LIT:20> ; } break ; case RULE_CARET : { alt8 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt8 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt8 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt8 = <NUM_LIT:24> ; } break ; case RULE_PERCENT : { alt8 = <NUM_LIT> ; } break ; case RULE_AND : { alt8 = <NUM_LIT> ; } break ; case RULE_OR : { alt8 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt8 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt8 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt8 = <NUM_LIT:30> ; } break ; case RULE_MAPPING_TYPE : { alt8 = <NUM_LIT:31> ; } break ; case RULE_OPTION_TYPE : { alt8 = <NUM_LIT:32> ; } 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 . getPropertyValueAccess ( ) . getRESTTerminalRuleCall_1_0_0 ( ) ) ; } match ( input , RULE_REST , FOLLOW_RULE_REST_in_rule__PropertyValue__Alternatives_1_03209 ) ; 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_03226 ) ; 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_03243 ) ; 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_03260 ) ; 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_03277 ) ; 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_03294 ) ; 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_03311 ) ; 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_03328 ) ; 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_03345 ) ; 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_03362 ) ; 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_03379 ) ; 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_03396 ) ; 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_03413 ) ; 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_03430 ) ; 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_03447 ) ; 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_03464 ) ; 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_03481 ) ; 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_03498 ) ; 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_03515 ) ; 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_03532 ) ; 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_03549 ) ; 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_03566 ) ; 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_03583 ) ; 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_03600 ) ; 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_03617 ) ; 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_03634 ) ; 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_03651 ) ; 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_03668 ) ; 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_03685 ) ; 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_03702 ) ; 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_03719 ) ; 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_03736 ) ; 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 alt9 = <NUM_LIT:2> ; int LA9_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA9_0 == RULE_IDENT ) ) { alt9 = <NUM_LIT:1> ; } else if ( ( LA9_0 == RULE_IDENT_DOT ) ) { alt9 = <NUM_LIT:2> ; } else { 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 . getPojoDefinitionAccess ( ) . getClassIDENTTerminalRuleCall_2_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__PojoDefinition__ClassAlternatives_2_03768 ) ; 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_03785 ) ; 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 alt10 = <NUM_LIT:4> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case <NUM_LIT> : { alt10 = <NUM_LIT:1> ; } break ; case <NUM_LIT> : { alt10 = <NUM_LIT:2> ; } break ; case <NUM_LIT> : { alt10 = <NUM_LIT:3> ; } break ; case <NUM_LIT> : { alt10 = <NUM_LIT:4> ; } 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 . getPojoUsageAccess ( ) . getColumnUsageParserRuleCall_0 ( ) ) ; } pushFollow ( FOLLOW_ruleColumnUsage_in_rule__PojoUsage__Alternatives3817 ) ; 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__Alternatives3834 ) ; 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__Alternatives3851 ) ; 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__Alternatives3868 ) ; 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__SqlFragment__Alternatives ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { int alt11 = <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 : { alt11 = <NUM_LIT:1> ; } break ; case RULE_AT : { alt11 = <NUM_LIT:2> ; } break ; case RULE_STRING : { alt11 = <NUM_LIT:3> ; } break ; case RULE_COLON : { alt11 = <NUM_LIT:4> ; } break ; case RULE_LBRACE : { alt11 = <NUM_LIT:5> ; } break ; case RULE_PERCENT : { alt11 = <NUM_LIT:6> ; } break ; default : 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 . getSqlFragmentAccess ( ) . getValueAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__ValueAssignment_0_in_rule__SqlFragment__Alternatives3900 ) ; 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__Alternatives3918 ) ; 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__Alternatives3936 ) ; 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__Alternatives3954 ) ; 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__Alternatives3972 ) ; 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__Alternatives3990 ) ; 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 alt12 = <NUM_LIT:2> ; int LA12_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA12_0 == RULE_PERCENT ) ) { alt12 = <NUM_LIT:1> ; } else if ( ( ( LA12_0 >= RULE_IDENT_DOT && LA12_0 <= RULE_IDENT ) ) ) { alt12 = <NUM_LIT:2> ; } else { 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 . getSqlFragmentAccess ( ) . getGroup_5_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__SqlFragment__Group_5_1_0__0_in_rule__SqlFragment__Alternatives_5_14023 ) ; 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_14041 ) ; 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 alt13 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt13 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt13 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt13 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt13 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt13 = <NUM_LIT:5> ; } break ; case RULE_COMMA : { alt13 = <NUM_LIT:6> ; } break ; case RULE_MINUS : { alt13 = <NUM_LIT:7> ; } break ; case RULE_PLUS : { alt13 = <NUM_LIT:8> ; } break ; case RULE_LPAREN : { alt13 = <NUM_LIT:9> ; } break ; case RULE_RPAREN : { alt13 = <NUM_LIT:10> ; } break ; case RULE_RBRACE : { alt13 = <NUM_LIT:11> ; } break ; case RULE_QUESTI : { alt13 = <NUM_LIT:12> ; } break ; case RULE_NOT : { alt13 = <NUM_LIT> ; } break ; case RULE_BAND : { alt13 = <NUM_LIT> ; } break ; case RULE_BOR : { alt13 = <NUM_LIT:15> ; } break ; case RULE_HASH : { alt13 = <NUM_LIT:16> ; } break ; case RULE_CARET : { alt13 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt13 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt13 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt13 = <NUM_LIT:20> ; } break ; case RULE_AND : { alt13 = <NUM_LIT> ; } break ; case RULE_OR : { alt13 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt13 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt13 = <NUM_LIT:24> ; } break ; case RULE_STATEMEN_TYPE : { alt13 = <NUM_LIT> ; } break ; case RULE_MAPPING_TYPE : { alt13 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt13 = <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 ( alt13 ) { 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_04074 ) ; 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_04091 ) ; 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_04108 ) ; 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_04125 ) ; 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_04142 ) ; 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_04159 ) ; 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_04176 ) ; 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_04193 ) ; 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_04210 ) ; 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_04227 ) ; 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_04244 ) ; 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_04261 ) ; 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_04278 ) ; 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_04295 ) ; 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_04312 ) ; 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_04329 ) ; 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_04346 ) ; 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_04363 ) ; 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_04380 ) ; 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_04397 ) ; 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_04414 ) ; 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_04431 ) ; 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_04448 ) ; 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_04465 ) ; 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_04482 ) ; 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_04499 ) ; 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_04516 ) ; 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 alt14 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt14 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt14 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt14 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt14 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt14 = <NUM_LIT:5> ; } break ; case RULE_COMMA : { alt14 = <NUM_LIT:6> ; } break ; case RULE_MINUS : { alt14 = <NUM_LIT:7> ; } break ; case RULE_PLUS : { alt14 = <NUM_LIT:8> ; } break ; case RULE_LPAREN : { alt14 = <NUM_LIT:9> ; } break ; case RULE_RPAREN : { alt14 = <NUM_LIT:10> ; } break ; case RULE_RBRACE : { alt14 = <NUM_LIT:11> ; } break ; case RULE_QUESTI : { alt14 = <NUM_LIT:12> ; } break ; case RULE_NOT : { alt14 = <NUM_LIT> ; } break ; case RULE_BAND : { alt14 = <NUM_LIT> ; } break ; case RULE_BOR : { alt14 = <NUM_LIT:15> ; } break ; case RULE_HASH : { alt14 = <NUM_LIT:16> ; } break ; case RULE_CARET : { alt14 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt14 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt14 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt14 = <NUM_LIT:20> ; } break ; case RULE_AND : { alt14 = <NUM_LIT> ; } break ; case RULE_OR : { alt14 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt14 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt14 = <NUM_LIT:24> ; } break ; case RULE_STATEMEN_TYPE : { alt14 = <NUM_LIT> ; } break ; case RULE_MAPPING_TYPE : { alt14 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt14 = <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 ( alt14 ) { 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_04548 ) ; 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_04565 ) ; 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_04582 ) ; 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_04599 ) ; 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_04616 ) ; 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_04633 ) ; 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_04650 ) ; 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_04667 ) ; 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_04684 ) ; 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_04701 ) ; 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_04718 ) ; 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_04735 ) ; 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_04752 ) ; 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_04769 ) ; 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_04786 ) ; 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_04803 ) ; 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_04820 ) ; 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_04837 ) ; 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_04854 ) ; 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_04871 ) ; 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_04888 ) ; 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_04905 ) ; 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_04922 ) ; 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_04939 ) ; 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_04956 ) ; 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_04973 ) ; 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_04990 ) ; 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 alt15 = <NUM_LIT:6> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_WS : { alt15 = <NUM_LIT:1> ; } break ; case RULE_QUESTI : { alt15 = <NUM_LIT:2> ; } break ; case RULE_BAND : { alt15 = <NUM_LIT:3> ; } break ; case RULE_BOR : { alt15 = <NUM_LIT:4> ; } break ; case RULE_EQUALS : { alt15 = <NUM_LIT:5> ; } break ; case RULE_HASH : { alt15 = <NUM_LIT:6> ; } break ; default : 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 . getMetaSqlAccess ( ) . getGroup_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__MetaSql__Group_0__0_in_rule__MetaSql__Alternatives5022 ) ; 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__Alternatives5040 ) ; 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__Alternatives5058 ) ; 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__Alternatives5076 ) ; 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__Alternatives5094 ) ; 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__Alternatives5112 ) ; 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 alt16 = <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 : { alt16 = <NUM_LIT:1> ; } break ; case RULE_AT : { alt16 = <NUM_LIT:2> ; } break ; case RULE_STRING : { alt16 = <NUM_LIT:3> ; } break ; case RULE_COLON : { alt16 = <NUM_LIT:4> ; } break ; case RULE_PERCENT : { alt16 = <NUM_LIT:5> ; } break ; case RULE_LBRACE : { alt16 = <NUM_LIT:6> ; } 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 . getIfSqlFragmentAccess ( ) . getValueAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfSqlFragment__ValueAssignment_0_in_rule__IfSqlFragment__Alternatives5145 ) ; 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__Alternatives5163 ) ; 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__Alternatives5181 ) ; 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__Alternatives5199 ) ; 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__Alternatives5217 ) ; 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__Alternatives5235 ) ; 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 alt17 = <NUM_LIT:2> ; int LA17_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA17_0 == RULE_PERCENT ) ) { alt17 = <NUM_LIT:1> ; } else if ( ( ( LA17_0 >= RULE_IDENT_DOT && LA17_0 <= RULE_IDENT ) ) ) { alt17 = <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 ( alt17 ) { 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_15268 ) ; 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_15286 ) ; 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 alt18 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt18 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt18 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt18 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt18 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt18 = <NUM_LIT:5> ; } break ; case RULE_SEMICOLON : { alt18 = <NUM_LIT:6> ; } break ; case RULE_COMMA : { alt18 = <NUM_LIT:7> ; } break ; case RULE_MINUS : { alt18 = <NUM_LIT:8> ; } break ; case RULE_PLUS : { alt18 = <NUM_LIT:9> ; } break ; case RULE_LPAREN : { alt18 = <NUM_LIT:10> ; } break ; case RULE_RPAREN : { alt18 = <NUM_LIT:11> ; } break ; case RULE_QUESTI : { alt18 = <NUM_LIT:12> ; } break ; case RULE_NOT : { alt18 = <NUM_LIT> ; } break ; case RULE_BAND : { alt18 = <NUM_LIT> ; } break ; case RULE_HASH : { alt18 = <NUM_LIT:15> ; } break ; case RULE_CARET : { alt18 = <NUM_LIT:16> ; } break ; case RULE_EQUALS : { alt18 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt18 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt18 = <NUM_LIT> ; } break ; case RULE_AND : { alt18 = <NUM_LIT:20> ; } break ; case RULE_OR : { alt18 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt18 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt18 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt18 = <NUM_LIT:24> ; } break ; case RULE_MAPPING_TYPE : { alt18 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt18 = <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 ( alt18 ) { 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_05319 ) ; 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_05336 ) ; 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_05353 ) ; 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_05370 ) ; 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_05387 ) ; 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_05404 ) ; 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_05421 ) ; 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_05438 ) ; 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_05455 ) ; 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_05472 ) ; 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_05489 ) ; 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_05506 ) ; 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_05523 ) ; 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_05540 ) ; 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_05557 ) ; 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_05574 ) ; 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_05591 ) ; 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_05608 ) ; 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_05625 ) ; 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_05642 ) ; 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_05659 ) ; 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_05676 ) ; 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_05693 ) ; 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_05710 ) ; 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_05727 ) ; 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_05744 ) ; 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 alt19 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt19 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt19 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt19 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt19 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt19 = <NUM_LIT:5> ; } break ; case RULE_SEMICOLON : { alt19 = <NUM_LIT:6> ; } break ; case RULE_COMMA : { alt19 = <NUM_LIT:7> ; } break ; case RULE_MINUS : { alt19 = <NUM_LIT:8> ; } break ; case RULE_PLUS : { alt19 = <NUM_LIT:9> ; } break ; case RULE_LPAREN : { alt19 = <NUM_LIT:10> ; } break ; case RULE_RPAREN : { alt19 = <NUM_LIT:11> ; } break ; case RULE_QUESTI : { alt19 = <NUM_LIT:12> ; } break ; case RULE_NOT : { alt19 = <NUM_LIT> ; } break ; case RULE_BAND : { alt19 = <NUM_LIT> ; } break ; case RULE_HASH : { alt19 = <NUM_LIT:15> ; } break ; case RULE_CARET : { alt19 = <NUM_LIT:16> ; } break ; case RULE_EQUALS : { alt19 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt19 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt19 = <NUM_LIT> ; } break ; case RULE_AND : { alt19 = <NUM_LIT:20> ; } break ; case RULE_OR : { alt19 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt19 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt19 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt19 = <NUM_LIT:24> ; } break ; case RULE_MAPPING_TYPE : { alt19 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt19 = <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 ( alt19 ) { 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_05776 ) ; 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_05793 ) ; 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_05810 ) ; 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_05827 ) ; 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_05844 ) ; 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_05861 ) ; 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_05878 ) ; 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_05895 ) ; 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_05912 ) ; 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_05929 ) ; 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_05946 ) ; 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_05963 ) ; 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_05980 ) ; 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_05997 ) ; 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_06014 ) ; 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_06031 ) ; 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_06048 ) ; 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_06065 ) ; 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_06082 ) ; 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_06099 ) ; 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_06116 ) ; 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_06133 ) ; 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_06150 ) ; 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_06167 ) ; 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_06184 ) ; 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_06201 ) ; 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 alt20 = <NUM_LIT:4> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_WS : { alt20 = <NUM_LIT:1> ; } break ; case RULE_QUESTI : { alt20 = <NUM_LIT:2> ; } break ; case RULE_BAND : { alt20 = <NUM_LIT:3> ; } break ; case RULE_BOR : { alt20 = <NUM_LIT:4> ; } break ; default : 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 . getIfMetaSqlAccess ( ) . getGroup_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__IfMetaSql__Group_0__0_in_rule__IfMetaSql__Alternatives6233 ) ; 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__Alternatives6251 ) ; 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__Alternatives6269 ) ; 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__Alternatives6287 ) ; 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 alt21 = <NUM_LIT:2> ; int LA21_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA21_0 == RULE_AND ) ) { alt21 = <NUM_LIT:1> ; } else if ( ( LA21_0 == RULE_OR ) ) { alt21 = <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 ( alt21 ) { 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_06320 ) ; 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_06337 ) ; 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 alt22 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_NOT : { switch ( input . LA ( <NUM_LIT:2> ) ) { case RULE_LPAREN : { alt22 = <NUM_LIT:3> ; } break ; case RULE_STRING : { alt22 = <NUM_LIT:1> ; } break ; case RULE_COLON : { alt22 = <NUM_LIT:2> ; } 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 : { alt22 = <NUM_LIT:1> ; } break ; case RULE_COLON : { alt22 = <NUM_LIT:2> ; } break ; case RULE_LPAREN : { alt22 = <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 ( alt22 ) { 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__Alternatives6369 ) ; 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__Alternatives6387 ) ; 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__Alternatives6405 ) ; 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 alt23 = <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 : { alt23 = <NUM_LIT:1> ; } break ; case RULE_STRING : { alt23 = <NUM_LIT:2> ; } break ; case RULE_COLON : { alt23 = <NUM_LIT:3> ; } break ; case RULE_PERCENT : { 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 . getOrdSql2Access ( ) . getValueAssignment_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__OrdSql2__ValueAssignment_0_in_rule__OrdSql2__Alternatives6438 ) ; 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__Alternatives6456 ) ; 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__Alternatives6474 ) ; 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__Alternatives6492 ) ; 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 alt24 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt24 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt24 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt24 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt24 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt24 = <NUM_LIT:5> ; } break ; case RULE_SEMICOLON : { alt24 = <NUM_LIT:6> ; } break ; case RULE_COMMA : { alt24 = <NUM_LIT:7> ; } break ; case RULE_MINUS : { alt24 = <NUM_LIT:8> ; } break ; case RULE_PLUS : { alt24 = <NUM_LIT:9> ; } break ; case RULE_LPAREN : { alt24 = <NUM_LIT:10> ; } break ; case RULE_RPAREN : { alt24 = <NUM_LIT:11> ; } break ; case RULE_LBRACE : { alt24 = <NUM_LIT:12> ; } break ; case RULE_QUESTI : { alt24 = <NUM_LIT> ; } break ; case RULE_NOT : { alt24 = <NUM_LIT> ; } break ; case RULE_BAND : { alt24 = <NUM_LIT:15> ; } break ; case RULE_BOR : { alt24 = <NUM_LIT:16> ; } break ; case RULE_HASH : { alt24 = <NUM_LIT> ; } break ; case RULE_AT : { alt24 = <NUM_LIT> ; } break ; case RULE_CARET : { alt24 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt24 = <NUM_LIT:20> ; } break ; case RULE_LESS_THAN : { alt24 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt24 = <NUM_LIT> ; } break ; case RULE_AND : { alt24 = <NUM_LIT> ; } break ; case RULE_OR : { alt24 = <NUM_LIT:24> ; } break ; case RULE_ESC_CHAR : { alt24 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt24 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt24 = <NUM_LIT> ; } break ; case RULE_MAPPING_TYPE : { alt24 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt24 = <NUM_LIT> ; } break ; default : 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 . getOrdSqlValueAccess ( ) . getRESTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_REST , FOLLOW_RULE_REST_in_rule__OrdSqlValue__Alternatives_06525 ) ; 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_06542 ) ; 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_06559 ) ; 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_06576 ) ; 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_06593 ) ; 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_06610 ) ; 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_06627 ) ; 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_06644 ) ; 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_06661 ) ; 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_06678 ) ; 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_06695 ) ; 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_06712 ) ; 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_06729 ) ; 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_06746 ) ; 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_06763 ) ; 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_06780 ) ; 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_06797 ) ; 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_06814 ) ; 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_06831 ) ; 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_06848 ) ; 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_06865 ) ; 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_06882 ) ; 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_06899 ) ; 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_06916 ) ; 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_06933 ) ; 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_06950 ) ; 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_06967 ) ; 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_06984 ) ; 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_07001 ) ; 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 alt25 = <NUM_LIT> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt25 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt25 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt25 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt25 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt25 = <NUM_LIT:5> ; } break ; case RULE_SEMICOLON : { alt25 = <NUM_LIT:6> ; } break ; case RULE_COMMA : { alt25 = <NUM_LIT:7> ; } break ; case RULE_MINUS : { alt25 = <NUM_LIT:8> ; } break ; case RULE_PLUS : { alt25 = <NUM_LIT:9> ; } break ; case RULE_LPAREN : { alt25 = <NUM_LIT:10> ; } break ; case RULE_RPAREN : { alt25 = <NUM_LIT:11> ; } break ; case RULE_LBRACE : { alt25 = <NUM_LIT:12> ; } break ; case RULE_QUESTI : { alt25 = <NUM_LIT> ; } break ; case RULE_NOT : { alt25 = <NUM_LIT> ; } break ; case RULE_BAND : { alt25 = <NUM_LIT:15> ; } break ; case RULE_BOR : { alt25 = <NUM_LIT:16> ; } break ; case RULE_HASH : { alt25 = <NUM_LIT> ; } break ; case RULE_AT : { alt25 = <NUM_LIT> ; } break ; case RULE_CARET : { alt25 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt25 = <NUM_LIT:20> ; } break ; case RULE_LESS_THAN : { alt25 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt25 = <NUM_LIT> ; } break ; case RULE_AND : { alt25 = <NUM_LIT> ; } break ; case RULE_OR : { alt25 = <NUM_LIT:24> ; } break ; case RULE_ESC_CHAR : { alt25 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt25 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt25 = <NUM_LIT> ; } break ; case RULE_MAPPING_TYPE : { alt25 = <NUM_LIT> ; } break ; case RULE_OPTION_TYPE : { alt25 = <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 ( alt25 ) { 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_07033 ) ; 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_07050 ) ; 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_07067 ) ; 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_07084 ) ; 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_07101 ) ; 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_07118 ) ; 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_07135 ) ; 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_07152 ) ; 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_07169 ) ; 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_07186 ) ; 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_07203 ) ; 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_07220 ) ; 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_07237 ) ; 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_07254 ) ; 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_07271 ) ; 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_07288 ) ; 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_07305 ) ; 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_07322 ) ; 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_07339 ) ; 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_07356 ) ; 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_07373 ) ; 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_07390 ) ; 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_07407 ) ; 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_07424 ) ; 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_07441 ) ; 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_07458 ) ; 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_07475 ) ; 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_07492 ) ; 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_07509 ) ; 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 alt26 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_IDENT : { alt26 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt26 = <NUM_LIT:2> ; } break ; case RULE_NUMBER : { alt26 = <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 ( alt26 ) { 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_07541 ) ; 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_07558 ) ; 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_07575 ) ; 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 alt27 = <NUM_LIT:2> ; int LA27_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA27_0 == RULE_IDENT ) ) { alt27 = <NUM_LIT:1> ; } else if ( ( LA27_0 == RULE_NUMBER ) ) { alt27 = <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 ( alt27 ) { 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_07607 ) ; 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_07624 ) ; 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 alt28 = <NUM_LIT:2> ; int LA28_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA28_0 == RULE_PLUS ) ) { alt28 = <NUM_LIT:1> ; } else if ( ( LA28_0 == RULE_MINUS ) ) { alt28 = <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 ( alt28 ) { 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_07656 ) ; 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_07673 ) ; 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 alt29 = <NUM_LIT:2> ; int LA29_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA29_0 == RULE_IDENT ) ) { alt29 = <NUM_LIT:1> ; } else if ( ( LA29_0 == RULE_IDENT_DOT ) ) { alt29 = <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 ( alt29 ) { 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_07705 ) ; 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_07722 ) ; 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 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 . getConstantAccess ( ) . getValsIDENTTerminalRuleCall_2_2_1_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__Constant__ValsAlternatives_2_2_1_07754 ) ; 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_07771 ) ; 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 alt31 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_EQUALS : { alt31 = <NUM_LIT:1> ; } break ; case RULE_LESS_THAN : { alt31 = <NUM_LIT:2> ; } break ; case RULE_MORE_THAN : { alt31 = <NUM_LIT:3> ; } break ; default : 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 . getIdentifierAccess ( ) . getModeEQUALSTerminalRuleCall_0_0_0 ( ) ) ; } match ( input , RULE_EQUALS , FOLLOW_RULE_EQUALS_in_rule__Identifier__ModeAlternatives_0_07803 ) ; 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_07820 ) ; 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_07837 ) ; 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 alt32 = <NUM_LIT:2> ; int LA32_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA32_0 == RULE_PLUS ) ) { alt32 = <NUM_LIT:1> ; } else if ( ( LA32_0 == RULE_MINUS ) ) { 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 . getIdentifierAccess ( ) . getCasePLUSTerminalRuleCall_1_0_0 ( ) ) ; } match ( input , RULE_PLUS , FOLLOW_RULE_PLUS_in_rule__Identifier__CaseAlternatives_1_07869 ) ; 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_07886 ) ; 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 alt33 = <NUM_LIT:3> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_IDENT : { alt33 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt33 = <NUM_LIT:2> ; } break ; case RULE_NUMBER : { alt33 = <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 ( alt33 ) { 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_07918 ) ; 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_07935 ) ; 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_07952 ) ; 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 alt34 = <NUM_LIT:2> ; int LA34_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA34_0 == RULE_IDENT ) ) { alt34 = <NUM_LIT:1> ; } else if ( ( LA34_0 == RULE_NUMBER ) ) { alt34 = <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 ( alt34 ) { 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_07984 ) ; 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_08001 ) ; 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 alt35 = <NUM_LIT:2> ; int LA35_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA35_0 == RULE_IDENT ) ) { alt35 = <NUM_LIT:1> ; } else if ( ( LA35_0 == RULE_IDENT_DOT ) ) { 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 . getDatabaseColumnAccess ( ) . getNameIDENTTerminalRuleCall_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__DatabaseColumn__NameAlternatives_08033 ) ; 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_08050 ) ; 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 alt36 = <NUM_LIT:2> ; int LA36_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA36_0 == RULE_IDENT ) ) { alt36 = <NUM_LIT:1> ; } else if ( ( LA36_0 == RULE_IDENT_DOT ) ) { alt36 = <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 ( alt36 ) { 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_08082 ) ; 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_08099 ) ; 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 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 . getMappingItemAccess ( ) . getColIDENTTerminalRuleCall_0_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MappingItem__ColAlternatives_0_08131 ) ; 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_08148 ) ; 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 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 . getMappingColumnAccess ( ) . getNameIDENTTerminalRuleCall_0_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MappingColumn__NameAlternatives_0_08180 ) ; 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_08197 ) ; 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 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_NUMBER ) ) { 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 . getMappingColumnAccess ( ) . getValsIDENTTerminalRuleCall_1_1_0_0 ( ) ) ; } match ( input , RULE_IDENT , FOLLOW_RULE_IDENT_in_rule__MappingColumn__ValsAlternatives_1_1_08229 ) ; 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_08246 ) ; 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 alt40 = <NUM_LIT:32> ; switch ( input . LA ( <NUM_LIT:1> ) ) { case RULE_REST : { alt40 = <NUM_LIT:1> ; } break ; case RULE_IDENT_DOT : { alt40 = <NUM_LIT:2> ; } break ; case RULE_IDENT : { alt40 = <NUM_LIT:3> ; } break ; case RULE_NUMBER : { alt40 = <NUM_LIT:4> ; } break ; case RULE_WS : { alt40 = <NUM_LIT:5> ; } break ; case RULE_COLON : { alt40 = <NUM_LIT:6> ; } break ; case RULE_STRING : { alt40 = <NUM_LIT:7> ; } break ; case RULE_COMMA : { alt40 = <NUM_LIT:8> ; } break ; case RULE_MINUS : { alt40 = <NUM_LIT:9> ; } break ; case RULE_PLUS : { alt40 = <NUM_LIT:10> ; } break ; case RULE_LPAREN : { alt40 = <NUM_LIT:11> ; } break ; case RULE_RPAREN : { alt40 = <NUM_LIT:12> ; } break ; case RULE_LBRACE : { alt40 = <NUM_LIT> ; } break ; case RULE_RBRACE : { alt40 = <NUM_LIT> ; } break ; case RULE_QUESTI : { alt40 = <NUM_LIT:15> ; } break ; case RULE_NOT : { alt40 = <NUM_LIT:16> ; } break ; case RULE_BAND : { alt40 = <NUM_LIT> ; } break ; case RULE_BOR : { alt40 = <NUM_LIT> ; } break ; case RULE_HASH : { alt40 = <NUM_LIT> ; } break ; case RULE_AT : { alt40 = <NUM_LIT:20> ; } break ; case RULE_CARET : { alt40 = <NUM_LIT> ; } break ; case RULE_EQUALS : { alt40 = <NUM_LIT> ; } break ; case RULE_LESS_THAN : { alt40 = <NUM_LIT> ; } break ; case RULE_MORE_THAN : { alt40 = <NUM_LIT:24> ; } break ; case RULE_PERCENT : { alt40 = <NUM_LIT> ; } break ; case RULE_AND : { alt40 = <NUM_LIT> ; } break ; case RULE_OR : { alt40 = <NUM_LIT> ; } break ; case RULE_ESC_CHAR : { alt40 = <NUM_LIT> ; } break ; case RULE_ON_OFF : { alt40 = <NUM_LIT> ; } break ; case RULE_STATEMEN_TYPE : { alt40 = <NUM_LIT:30> ; } break ; case RULE_MAPPING_TYPE : { alt40 = <NUM_LIT:31> ; } break ; case RULE_OPTION_TYPE : { alt40 = <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 ( alt40 ) { 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__Alternatives8278 ) ; 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__Alternatives8295 ) ; 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__Alternatives8312 ) ; 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__Alternatives8329 ) ; 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__Alternatives8346 ) ; 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__Alternatives8363 ) ; 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__Alternatives8380 ) ; 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__Alternatives8397 ) ; 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__Alternatives8414 ) ; 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__Alternatives8431 ) ; 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__Alternatives8448 ) ; 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__Alternatives8465 ) ; 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__Alternatives8482 ) ; 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__Alternatives8499 ) ; 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__Alternatives8516 ) ; 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__Alternatives8533 ) ; 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__Alternatives8550 ) ; 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__Alternatives8567 ) ; 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__Alternatives8584 ) ; 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__Alternatives8601 ) ; 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__Alternatives8618 ) ; 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__Alternatives8635 ) ; 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__Alternatives8652 ) ; 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__Alternatives8669 ) ; 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__Alternatives8686 ) ; 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__Alternatives8703 ) ; 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__Alternatives8720 ) ; 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__Alternatives8737 ) ; 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__Alternatives8754 ) ; 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__Alternatives8771 ) ; 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__Alternatives8788 ) ; 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__Alternatives8805 ) ; 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__Artifacts__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Artifacts__Group__0__Impl_in_rule__Artifacts__Group__08835 ) ; rule__Artifacts__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Artifacts__Group__1_in_rule__Artifacts__Group__08838 ) ; 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 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group__0__Impl8866 ) ; if ( state . failed ) return ; } break ; default : break loop41 ; } } 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__18897 ) ; 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__Impl8926 ) ; 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 ( ) ) ; } loop42 : do { int alt42 = <NUM_LIT:2> ; int LA42_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA42_0 == RULE_IDENT || ( LA42_0 >= <NUM_LIT> && LA42_0 <= <NUM_LIT> ) || ( LA42_0 >= <NUM_LIT> && LA42_0 <= <NUM_LIT> ) ) ) { alt42 = <NUM_LIT:1> ; } switch ( alt42 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Artifacts__Alternatives_1_in_rule__Artifacts__Group__1__Impl8938 ) ; rule__Artifacts__Alternatives_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop42 ; } } 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__08975 ) ; 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__08978 ) ; 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__Impl9005 ) ; 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__19035 ) ; 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 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_0__1__Impl9063 ) ; if ( state . failed ) return ; } break ; default : break loop43 ; } } 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__09098 ) ; 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__09101 ) ; 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__Impl9128 ) ; 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__19158 ) ; 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 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_1__1__Impl9186 ) ; if ( state . failed ) return ; } break ; default : break loop44 ; } } 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__09221 ) ; 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__09224 ) ; 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__Impl9251 ) ; 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__19281 ) ; 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 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_2__1__Impl9309 ) ; if ( state . failed ) return ; } break ; default : break loop45 ; } } 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__09344 ) ; 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__09347 ) ; 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__Impl9374 ) ; 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__19404 ) ; 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 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_3__1__Impl9432 ) ; if ( state . failed ) return ; } break ; default : break loop46 ; } } 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__09467 ) ; 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__09470 ) ; 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__Impl9497 ) ; 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__19527 ) ; 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 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_4__1__Impl9555 ) ; if ( state . failed ) return ; } break ; default : break loop47 ; } } 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__09590 ) ; 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__09593 ) ; 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__Impl9620 ) ; 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__19650 ) ; 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 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_5__1__Impl9678 ) ; if ( state . failed ) return ; } break ; default : break loop48 ; } } 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__09713 ) ; 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__09716 ) ; 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__Impl9743 ) ; 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__19773 ) ; 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 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_6__1__Impl9801 ) ; if ( state . failed ) return ; } break ; default : break loop49 ; } } 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__09836 ) ; 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__09839 ) ; 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__Impl9866 ) ; 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__19896 ) ; 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 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_7__1__Impl9924 ) ; if ( state . failed ) return ; } break ; default : break loop50 ; } } 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__Property__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group__0__Impl_in_rule__Property__Group__09959 ) ; rule__Property__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group__1_in_rule__Property__Group__09962 ) ; 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__Impl9989 ) ; 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__110019 ) ; 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__Impl10046 ) ; 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_0__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_0__0__Impl_in_rule__Property__Group_0_0__010079 ) ; rule__Property__Group_0_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group_0_0__1_in_rule__Property__Group_0_0__010082 ) ; rule__Property__Group_0_0__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_0__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_0_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__NameAssignment_0_0_0_in_rule__Property__Group_0_0__0__Impl10109 ) ; rule__Property__NameAssignment_0_0_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_0__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_0__1__Impl_in_rule__Property__Group_0_0__110139 ) ; rule__Property__Group_0_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group_0_0__2_in_rule__Property__Group_0_0__110142 ) ; rule__Property__Group_0_0__2 ( ) ; 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_0__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_0_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Property__Group_0_0__1__Impl10172 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_0_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_0_1 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Property__Group_0_0__1__Impl10185 ) ; if ( state . failed ) return ; } break ; default : break loop51 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_0_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_0__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_0__2__Impl_in_rule__Property__Group_0_0__210218 ) ; rule__Property__Group_0_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__Property__Group_0_0__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDoResolvePojoAssignment_0_0_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__DoResolvePojoAssignment_0_0_2_in_rule__Property__Group_0_0__2__Impl10245 ) ; rule__Property__DoResolvePojoAssignment_0_0_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDoResolvePojoAssignment_0_0_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_1__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_1__0__Impl_in_rule__Property__Group_0_1__010281 ) ; rule__Property__Group_0_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group_0_1__1_in_rule__Property__Group_0_1__010284 ) ; rule__Property__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__Property__Group_0_1__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_1_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__NameAssignment_0_1_0_in_rule__Property__Group_0_1__0__Impl10311 ) ; rule__Property__NameAssignment_0_1_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_1_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_1__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_1__1__Impl_in_rule__Property__Group_0_1__110341 ) ; rule__Property__Group_0_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group_0_1__2_in_rule__Property__Group_0_1__110344 ) ; rule__Property__Group_0_1__2 ( ) ; 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_1__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_1_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Property__Group_0_1__1__Impl10374 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_1_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_1_1 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Property__Group_0_1__1__Impl10387 ) ; if ( state . failed ) return ; } break ; default : break loop52 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_1_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_1__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_1__2__Impl_in_rule__Property__Group_0_1__210420 ) ; rule__Property__Group_0_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__Property__Group_0_1__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDoResolveDbAssignment_0_1_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__DoResolveDbAssignment_0_1_2_in_rule__Property__Group_0_1__2__Impl10447 ) ; rule__Property__DoResolveDbAssignment_0_1_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDoResolveDbAssignment_0_1_2 ( ) ) ; } } } } 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__010483 ) ; 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__010486 ) ; 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__Impl10513 ) ; 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__110543 ) ; rule__Property__Group_0_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group_0_2__2_in_rule__Property__Group_0_2__110546 ) ; rule__Property__Group_0_2__2 ( ) ; 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 ( ) . getWSTerminalRuleCall_0_2_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Property__Group_0_2__1__Impl10576 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_2_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_2_1 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Property__Group_0_2__1__Impl10589 ) ; if ( state . failed ) return ; } break ; default : break loop53 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_2_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_2__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_2__2__Impl_in_rule__Property__Group_0_2__210622 ) ; rule__Property__Group_0_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__Property__Group_0_2__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDbUrlAssignment_0_2_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__DbUrlAssignment_0_2_2_in_rule__Property__Group_0_2__2__Impl10649 ) ; rule__Property__DbUrlAssignment_0_2_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDbUrlAssignment_0_2_2 ( ) ) ; } } } } 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__010685 ) ; 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__010688 ) ; 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__Impl10715 ) ; 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__110745 ) ; rule__Property__Group_0_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group_0_3__2_in_rule__Property__Group_0_3__110748 ) ; rule__Property__Group_0_3__2 ( ) ; 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 ( ) . getWSTerminalRuleCall_0_3_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Property__Group_0_3__1__Impl10778 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_3_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_3_1 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Property__Group_0_3__1__Impl10791 ) ; if ( state . failed ) return ; } break ; default : break loop54 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_3_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_3__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_3__2__Impl_in_rule__Property__Group_0_3__210824 ) ; rule__Property__Group_0_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__Property__Group_0_3__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDbUsernameAssignment_0_3_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__DbUsernameAssignment_0_3_2_in_rule__Property__Group_0_3__2__Impl10851 ) ; rule__Property__DbUsernameAssignment_0_3_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDbUsernameAssignment_0_3_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_4__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_4__0__Impl_in_rule__Property__Group_0_4__010887 ) ; rule__Property__Group_0_4__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group_0_4__1_in_rule__Property__Group_0_4__010890 ) ; rule__Property__Group_0_4__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_4__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_4_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__NameAssignment_0_4_0_in_rule__Property__Group_0_4__0__Impl10917 ) ; rule__Property__NameAssignment_0_4_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_4_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_4__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_4__1__Impl_in_rule__Property__Group_0_4__110947 ) ; rule__Property__Group_0_4__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group_0_4__2_in_rule__Property__Group_0_4__110950 ) ; rule__Property__Group_0_4__2 ( ) ; 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_4__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_4_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Property__Group_0_4__1__Impl10980 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_4_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_4_1 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Property__Group_0_4__1__Impl10993 ) ; if ( state . failed ) return ; } break ; default : break loop55 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_4_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_4__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_4__2__Impl_in_rule__Property__Group_0_4__211026 ) ; rule__Property__Group_0_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__Property__Group_0_4__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDbPasswordAssignment_0_4_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__DbPasswordAssignment_0_4_2_in_rule__Property__Group_0_4__2__Impl11053 ) ; rule__Property__DbPasswordAssignment_0_4_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDbPasswordAssignment_0_4_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_5__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_5__0__Impl_in_rule__Property__Group_0_5__011089 ) ; rule__Property__Group_0_5__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group_0_5__1_in_rule__Property__Group_0_5__011092 ) ; rule__Property__Group_0_5__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_5__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_5_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__NameAssignment_0_5_0_in_rule__Property__Group_0_5__0__Impl11119 ) ; rule__Property__NameAssignment_0_5_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_5_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_5__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_5__1__Impl_in_rule__Property__Group_0_5__111149 ) ; rule__Property__Group_0_5__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group_0_5__2_in_rule__Property__Group_0_5__111152 ) ; rule__Property__Group_0_5__2 ( ) ; 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_5__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_5_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Property__Group_0_5__1__Impl11182 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_5_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_5_1 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Property__Group_0_5__1__Impl11195 ) ; if ( state . failed ) return ; } break ; default : break loop56 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_5_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_5__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_5__2__Impl_in_rule__Property__Group_0_5__211228 ) ; rule__Property__Group_0_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__Property__Group_0_5__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDbSchemaAssignment_0_5_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__DbSchemaAssignment_0_5_2_in_rule__Property__Group_0_5__2__Impl11255 ) ; rule__Property__DbSchemaAssignment_0_5_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDbSchemaAssignment_0_5_2 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_6__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_6__0__Impl_in_rule__Property__Group_0_6__011291 ) ; rule__Property__Group_0_6__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group_0_6__1_in_rule__Property__Group_0_6__011294 ) ; rule__Property__Group_0_6__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_6__0__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_6_0 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__NameAssignment_0_6_0_in_rule__Property__Group_0_6__0__Impl11321 ) ; rule__Property__NameAssignment_0_6_0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameAssignment_0_6_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_6__1 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_6__1__Impl_in_rule__Property__Group_0_6__111351 ) ; rule__Property__Group_0_6__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Property__Group_0_6__2_in_rule__Property__Group_0_6__111354 ) ; rule__Property__Group_0_6__2 ( ) ; 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_6__1__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_6_1 ( ) ) ; } { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Property__Group_0_6__1__Impl11384 ) ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_6_1 ( ) ) ; } } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_6_1 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Property__Group_0_6__1__Impl11397 ) ; if ( state . failed ) return ; } break ; default : break loop57 ; } } while ( true ) ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getWSTerminalRuleCall_0_6_1 ( ) ) ; } } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__Group_0_6__2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__Property__Group_0_6__2__Impl_in_rule__Property__Group_0_6__211430 ) ; rule__Property__Group_0_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__Property__Group_0_6__2__Impl ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDbDriverAssignment_0_6_2 ( ) ) ; } { pushFollow ( FOLLOW_rule__Property__DbDriverAssignment_0_6_2_in_rule__Property__Group_0_6__2__Impl11457 ) ; rule__Property__DbDriverAssignment_0_6_2 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDbDriverAssignment_0_6_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__011493 ) ; rule__PropertyValue__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PropertyValue__Group__1_in_rule__PropertyValue__Group__011496 ) ; 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__Impl11523 ) ; 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__111553 ) ; 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 ( ) ) ; } loop58 : do { int alt58 = <NUM_LIT:2> ; int LA58_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA58_0 >= RULE_REST && LA58_0 <= RULE_WS ) ) ) { alt58 = <NUM_LIT:1> ; } switch ( alt58 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__PropertyValue__Group_1__0_in_rule__PropertyValue__Group__1__Impl11580 ) ; rule__PropertyValue__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop58 ; } } 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__011615 ) ; 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__Impl11642 ) ; 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__011674 ) ; rule__PojoDefinition__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoDefinition__Group__1_in_rule__PojoDefinition__Group__011677 ) ; 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_39_in_rule__PojoDefinition__Group__0__Impl11705 ) ; 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__111736 ) ; rule__PojoDefinition__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoDefinition__Group__2_in_rule__PojoDefinition__Group__111739 ) ; 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__Impl11766 ) ; 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__211796 ) ; rule__PojoDefinition__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__PojoDefinition__Group__3_in_rule__PojoDefinition__Group__211799 ) ; 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__Impl11826 ) ; 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__311856 ) ; 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__Impl11883 ) ; 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__011920 ) ; rule__ColumnUsage__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ColumnUsage__Group__1_in_rule__ColumnUsage__Group__011923 ) ; 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_40_in_rule__ColumnUsage__Group__0__Impl11951 ) ; 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__111982 ) ; rule__ColumnUsage__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ColumnUsage__Group__2_in_rule__ColumnUsage__Group__111985 ) ; 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__Impl12012 ) ; 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__212042 ) ; rule__ColumnUsage__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ColumnUsage__Group__3_in_rule__ColumnUsage__Group__212045 ) ; 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__Impl12072 ) ; 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__312102 ) ; 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__Impl12129 ) ; 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__012166 ) ; rule__IdentifierUsage__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IdentifierUsage__Group__1_in_rule__IdentifierUsage__Group__012169 ) ; 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_41_in_rule__IdentifierUsage__Group__0__Impl12197 ) ; 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__112228 ) ; rule__IdentifierUsage__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IdentifierUsage__Group__2_in_rule__IdentifierUsage__Group__112231 ) ; 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__Impl12258 ) ; 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__212288 ) ; rule__IdentifierUsage__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IdentifierUsage__Group__3_in_rule__IdentifierUsage__Group__212291 ) ; 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__Impl12318 ) ; 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__312348 ) ; 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__Impl12375 ) ; 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__012412 ) ; rule__ConstantUsage__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ConstantUsage__Group__1_in_rule__ConstantUsage__Group__012415 ) ; 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_42_in_rule__ConstantUsage__Group__0__Impl12443 ) ; 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__112474 ) ; rule__ConstantUsage__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ConstantUsage__Group__2_in_rule__ConstantUsage__Group__112477 ) ; 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__Impl12504 ) ; 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__212534 ) ; rule__ConstantUsage__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__ConstantUsage__Group__3_in_rule__ConstantUsage__Group__212537 ) ; 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__Impl12564 ) ; 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__312594 ) ; 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__Impl12621 ) ; 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__012658 ) ; rule__MappingUsage__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingUsage__Group__1_in_rule__MappingUsage__Group__012661 ) ; 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_43_in_rule__MappingUsage__Group__0__Impl12689 ) ; 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__112720 ) ; rule__MappingUsage__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingUsage__Group__2_in_rule__MappingUsage__Group__112723 ) ; 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__Impl12750 ) ; 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__212780 ) ; rule__MappingUsage__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingUsage__Group__3_in_rule__MappingUsage__Group__212783 ) ; 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__Impl12810 ) ; 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__312840 ) ; 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__Impl12867 ) ; 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__TableDefinition__Group__0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { pushFollow ( FOLLOW_rule__TableDefinition__Group__0__Impl_in_rule__TableDefinition__Group__012904 ) ; rule__TableDefinition__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableDefinition__Group__1_in_rule__TableDefinition__Group__012907 ) ; 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_44_in_rule__TableDefinition__Group__0__Impl12935 ) ; 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__112966 ) ; rule__TableDefinition__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableDefinition__Group__2_in_rule__TableDefinition__Group__112969 ) ; 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__Impl12996 ) ; 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__213026 ) ; rule__TableDefinition__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableDefinition__Group__3_in_rule__TableDefinition__Group__213029 ) ; 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__Impl13056 ) ; 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__313086 ) ; 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__Impl13113 ) ; 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__013150 ) ; rule__TableUsage__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableUsage__Group__1_in_rule__TableUsage__Group__013153 ) ; 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_45_in_rule__TableUsage__Group__0__Impl13181 ) ; 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__113212 ) ; rule__TableUsage__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableUsage__Group__2_in_rule__TableUsage__Group__113215 ) ; 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__Impl13242 ) ; 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__213272 ) ; rule__TableUsage__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableUsage__Group__3_in_rule__TableUsage__Group__213275 ) ; 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__Impl13302 ) ; 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__313332 ) ; rule__TableUsage__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableUsage__Group__4_in_rule__TableUsage__Group__313335 ) ; 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 alt59 = <NUM_LIT:2> ; int LA59_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA59_0 == <NUM_LIT> ) ) { alt59 = <NUM_LIT:1> ; } switch ( alt59 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__TableUsage__Group_3__0_in_rule__TableUsage__Group__3__Impl13362 ) ; 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__413393 ) ; 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__Impl13420 ) ; 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__013459 ) ; rule__TableUsage__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__TableUsage__Group_3__1_in_rule__TableUsage__Group_3__013462 ) ; 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_46_in_rule__TableUsage__Group_3__0__Impl13490 ) ; 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__113521 ) ; 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__Impl13548 ) ; 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__013582 ) ; rule__MetaStatement__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group__1_in_rule__MetaStatement__Group__013585 ) ; 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__Impl13612 ) ; 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__113642 ) ; rule__MetaStatement__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group__2_in_rule__MetaStatement__Group__113645 ) ; 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__Impl13672 ) ; 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__213701 ) ; rule__MetaStatement__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group__3_in_rule__MetaStatement__Group__213704 ) ; 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__Impl13731 ) ; 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__313761 ) ; rule__MetaStatement__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group__4_in_rule__MetaStatement__Group__313764 ) ; 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 ( ) ) ; } loop60 : do { int alt60 = <NUM_LIT:2> ; int LA60_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA60_0 == RULE_COMMA ) ) { alt60 = <NUM_LIT:1> ; } switch ( alt60 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MetaStatement__Group_3__0_in_rule__MetaStatement__Group__3__Impl13791 ) ; rule__MetaStatement__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop60 ; } } 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__413822 ) ; rule__MetaStatement__Group__4__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group__5_in_rule__MetaStatement__Group__413825 ) ; 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__Impl13852 ) ; 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__513881 ) ; rule__MetaStatement__Group__5__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group__6_in_rule__MetaStatement__Group__513884 ) ; 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__Impl13911 ) ; 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__613940 ) ; rule__MetaStatement__Group__6__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group__7_in_rule__MetaStatement__Group__613943 ) ; 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__Impl13970 ) ; 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__714000 ) ; 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__Impl14027 ) ; 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__014072 ) ; rule__MetaStatement__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaStatement__Group_3__1_in_rule__MetaStatement__Group_3__014075 ) ; 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__Impl14102 ) ; 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__114131 ) ; 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__Impl14158 ) ; 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__014192 ) ; rule__SqlFragment__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlFragment__Group_1__1_in_rule__SqlFragment__Group_1__014195 ) ; 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__Impl14222 ) ; 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__114251 ) ; 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__Impl14278 ) ; 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__014312 ) ; rule__SqlFragment__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlFragment__Group_2__1_in_rule__SqlFragment__Group_2__014315 ) ; 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__Impl14342 ) ; 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__114371 ) ; 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__Impl14398 ) ; 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__014432 ) ; rule__SqlFragment__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlFragment__Group_3__1_in_rule__SqlFragment__Group_3__014435 ) ; 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__Impl14462 ) ; 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__114491 ) ; 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__Impl14518 ) ; 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__014552 ) ; rule__SqlFragment__Group_4__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlFragment__Group_4__1_in_rule__SqlFragment__Group_4__014555 ) ; 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__Impl14582 ) ; 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__114611 ) ; rule__SqlFragment__Group_4__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlFragment__Group_4__2_in_rule__SqlFragment__Group_4__114614 ) ; 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__Impl14641 ) ; 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__214671 ) ; 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__Impl14698 ) ; 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__014733 ) ; rule__SqlFragment__Group_5__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlFragment__Group_5__1_in_rule__SqlFragment__Group_5__014736 ) ; 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__Impl14763 ) ; 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__114792 ) ; 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__Impl14819 ) ; 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__014853 ) ; 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__014856 ) ; 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__Impl14883 ) ; 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__114912 ) ; 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__Impl14939 ) ; 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__014973 ) ; rule__SqlValue__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__SqlValue__Group__1_in_rule__SqlValue__Group__014976 ) ; 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__Impl15003 ) ; 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__115033 ) ; 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 ( ) ) ; } loop61 : do { int alt61 = <NUM_LIT:2> ; alt61 = dfa61 . predict ( input ) ; switch ( alt61 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__SqlValue__Group_1__0_in_rule__SqlValue__Group__1__Impl15060 ) ; rule__SqlValue__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop61 ; } } 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__015095 ) ; 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__Impl15122 ) ; 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__015154 ) ; rule__MetaSql__Group_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_0__1_in_rule__MetaSql__Group_0__015157 ) ; 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__Impl15184 ) ; 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__115213 ) ; rule__MetaSql__Group_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_0__2_in_rule__MetaSql__Group_0__115216 ) ; 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__Impl15243 ) ; 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__215273 ) ; 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 ( ) ) ; } loop62 : do { int alt62 = <NUM_LIT:2> ; int LA62_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA62_0 == RULE_BOR ) ) { alt62 = <NUM_LIT:1> ; } switch ( alt62 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MetaSql__Group_0_2__0_in_rule__MetaSql__Group_0__2__Impl15300 ) ; rule__MetaSql__Group_0_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop62 ; } } 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__015337 ) ; 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__015340 ) ; 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__Impl15367 ) ; 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__115396 ) ; 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__Impl15423 ) ; 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__015457 ) ; rule__MetaSql__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_1__1_in_rule__MetaSql__Group_1__015460 ) ; 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__Impl15487 ) ; 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__115517 ) ; rule__MetaSql__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_1__2_in_rule__MetaSql__Group_1__115520 ) ; 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__Impl15547 ) ; 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__215577 ) ; rule__MetaSql__Group_1__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_1__3_in_rule__MetaSql__Group_1__215580 ) ; 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__Impl15607 ) ; 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__315636 ) ; rule__MetaSql__Group_1__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_1__4_in_rule__MetaSql__Group_1__315639 ) ; 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__Impl15666 ) ; 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__415696 ) ; 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 ( ) ) ; } loop63 : do { int alt63 = <NUM_LIT:2> ; int LA63_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA63_0 == RULE_BOR ) ) { alt63 = <NUM_LIT:1> ; } switch ( alt63 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MetaSql__Group_1_4__0_in_rule__MetaSql__Group_1__4__Impl15723 ) ; rule__MetaSql__Group_1_4__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop63 ; } } 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__015764 ) ; 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__015767 ) ; 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__Impl15794 ) ; 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__115823 ) ; 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__Impl15850 ) ; 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__015884 ) ; rule__MetaSql__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_2__1_in_rule__MetaSql__Group_2__015887 ) ; 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__Impl15914 ) ; 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__115944 ) ; rule__MetaSql__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_2__2_in_rule__MetaSql__Group_2__115947 ) ; 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__Impl15974 ) ; 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__216004 ) ; 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 ( ) ) ; } loop64 : do { int alt64 = <NUM_LIT:2> ; int LA64_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA64_0 == RULE_BOR ) ) { alt64 = <NUM_LIT:1> ; } switch ( alt64 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MetaSql__Group_2_2__0_in_rule__MetaSql__Group_2__2__Impl16031 ) ; rule__MetaSql__Group_2_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop64 ; } } 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__016068 ) ; 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__016071 ) ; 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__Impl16098 ) ; 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__116127 ) ; 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__Impl16154 ) ; 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__016188 ) ; rule__MetaSql__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_3__1_in_rule__MetaSql__Group_3__016191 ) ; 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__Impl16218 ) ; 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__116248 ) ; rule__MetaSql__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_3__2_in_rule__MetaSql__Group_3__116251 ) ; 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__Impl16278 ) ; 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__216308 ) ; 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 ( ) ) ; } loop65 : do { int alt65 = <NUM_LIT:2> ; int LA65_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA65_0 == RULE_BOR ) ) { alt65 = <NUM_LIT:1> ; } switch ( alt65 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MetaSql__Group_3_2__0_in_rule__MetaSql__Group_3__2__Impl16335 ) ; rule__MetaSql__Group_3_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop65 ; } } 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__016372 ) ; 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__016375 ) ; 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__Impl16402 ) ; 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__116431 ) ; 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__Impl16458 ) ; 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__016492 ) ; rule__MetaSql__Group_4__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_4__1_in_rule__MetaSql__Group_4__016495 ) ; 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__Impl16522 ) ; 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__116552 ) ; rule__MetaSql__Group_4__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_4__2_in_rule__MetaSql__Group_4__116555 ) ; 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 ( ) ) ; } 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__MetaSql__Group_4__1__Impl16583 ) ; if ( state . failed ) return ; } break ; default : break loop66 ; } } 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__216614 ) ; rule__MetaSql__Group_4__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_4__3_in_rule__MetaSql__Group_4__216617 ) ; 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__Impl16644 ) ; 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__316674 ) ; 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__Impl16701 ) ; 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__016739 ) ; rule__MetaSql__Group_5__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_5__1_in_rule__MetaSql__Group_5__016742 ) ; 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__Impl16769 ) ; 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__116799 ) ; rule__MetaSql__Group_5__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MetaSql__Group_5__2_in_rule__MetaSql__Group_5__116802 ) ; 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__Impl16829 ) ; 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__216858 ) ; 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__Impl16885 ) ; 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__016921 ) ; rule__IfSqlFragment__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlFragment__Group_1__1_in_rule__IfSqlFragment__Group_1__016924 ) ; 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__Impl16951 ) ; 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__116980 ) ; 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__Impl17007 ) ; 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__017041 ) ; rule__IfSqlFragment__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlFragment__Group_2__1_in_rule__IfSqlFragment__Group_2__017044 ) ; 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__Impl17071 ) ; 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__117100 ) ; 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__Impl17127 ) ; 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__017161 ) ; rule__IfSqlFragment__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlFragment__Group_3__1_in_rule__IfSqlFragment__Group_3__017164 ) ; 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__Impl17191 ) ; 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__117220 ) ; 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__Impl17247 ) ; 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__017281 ) ; rule__IfSqlFragment__Group_4__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlFragment__Group_4__1_in_rule__IfSqlFragment__Group_4__017284 ) ; 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__Impl17311 ) ; 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__117340 ) ; 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__Impl17367 ) ; 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__017401 ) ; 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__017404 ) ; 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__Impl17431 ) ; 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__117460 ) ; 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__Impl17487 ) ; 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__017521 ) ; rule__IfSqlFragment__Group_5__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlFragment__Group_5__1_in_rule__IfSqlFragment__Group_5__017524 ) ; 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__Impl17551 ) ; 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__117580 ) ; rule__IfSqlFragment__Group_5__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlFragment__Group_5__2_in_rule__IfSqlFragment__Group_5__117583 ) ; 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__Impl17610 ) ; 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__217640 ) ; 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__Impl17667 ) ; 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__017702 ) ; rule__IfSqlValue__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlValue__Group__1_in_rule__IfSqlValue__Group__017705 ) ; 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__Impl17732 ) ; 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__117762 ) ; 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 ( ) ) ; } loop67 : do { int alt67 = <NUM_LIT:2> ; alt67 = dfa67 . predict ( input ) ; switch ( alt67 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfSqlValue__Group_1__0_in_rule__IfSqlValue__Group__1__Impl17789 ) ; rule__IfSqlValue__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop67 ; } } 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__017824 ) ; 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__Impl17851 ) ; 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__017883 ) ; rule__IfMetaSql__Group_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_0__1_in_rule__IfMetaSql__Group_0__017886 ) ; 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__Impl17913 ) ; 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__117942 ) ; rule__IfMetaSql__Group_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_0__2_in_rule__IfMetaSql__Group_0__117945 ) ; 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__Impl17972 ) ; 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__218002 ) ; 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 ( ) ) ; } loop68 : do { int alt68 = <NUM_LIT:2> ; int LA68_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA68_0 == RULE_BOR ) ) { alt68 = <NUM_LIT:1> ; } switch ( alt68 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfMetaSql__Group_0_2__0_in_rule__IfMetaSql__Group_0__2__Impl18029 ) ; rule__IfMetaSql__Group_0_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop68 ; } } 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__018066 ) ; 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__018069 ) ; 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__Impl18096 ) ; 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__118125 ) ; 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__Impl18152 ) ; 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__018186 ) ; rule__IfMetaSql__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_1__1_in_rule__IfMetaSql__Group_1__018189 ) ; 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__Impl18216 ) ; 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__118246 ) ; rule__IfMetaSql__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_1__2_in_rule__IfMetaSql__Group_1__118249 ) ; 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__Impl18276 ) ; 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__218306 ) ; rule__IfMetaSql__Group_1__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_1__3_in_rule__IfMetaSql__Group_1__218309 ) ; 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__Impl18336 ) ; 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__318365 ) ; rule__IfMetaSql__Group_1__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_1__4_in_rule__IfMetaSql__Group_1__318368 ) ; 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__Impl18395 ) ; 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__418425 ) ; 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 ( ) ) ; } loop69 : do { int alt69 = <NUM_LIT:2> ; int LA69_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA69_0 == RULE_BOR ) ) { alt69 = <NUM_LIT:1> ; } switch ( alt69 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfMetaSql__Group_1_4__0_in_rule__IfMetaSql__Group_1__4__Impl18452 ) ; rule__IfMetaSql__Group_1_4__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop69 ; } } 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__018493 ) ; 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__018496 ) ; 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__Impl18523 ) ; 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__118552 ) ; 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__Impl18579 ) ; 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__018613 ) ; rule__IfMetaSql__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_2__1_in_rule__IfMetaSql__Group_2__018616 ) ; 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__Impl18643 ) ; 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__118673 ) ; rule__IfMetaSql__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_2__2_in_rule__IfMetaSql__Group_2__118676 ) ; 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__Impl18703 ) ; 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__218733 ) ; 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 ( ) ) ; } loop70 : do { int alt70 = <NUM_LIT:2> ; int LA70_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA70_0 == RULE_BOR ) ) { alt70 = <NUM_LIT:1> ; } switch ( alt70 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfMetaSql__Group_2_2__0_in_rule__IfMetaSql__Group_2__2__Impl18760 ) ; rule__IfMetaSql__Group_2_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop70 ; } } 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__018797 ) ; 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__018800 ) ; 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__Impl18827 ) ; 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__118856 ) ; 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__Impl18883 ) ; 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__018917 ) ; rule__IfMetaSql__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_3__1_in_rule__IfMetaSql__Group_3__018920 ) ; 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__Impl18947 ) ; 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__118977 ) ; rule__IfMetaSql__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfMetaSql__Group_3__2_in_rule__IfMetaSql__Group_3__118980 ) ; 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__Impl19007 ) ; 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__219037 ) ; 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 ( ) ) ; } loop71 : do { int alt71 = <NUM_LIT:2> ; int LA71_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA71_0 == RULE_BOR ) ) { alt71 = <NUM_LIT:1> ; } switch ( alt71 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfMetaSql__Group_3_2__0_in_rule__IfMetaSql__Group_3__2__Impl19064 ) ; rule__IfMetaSql__Group_3_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop71 ; } } 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__019101 ) ; 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__019104 ) ; 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__Impl19131 ) ; 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__119160 ) ; 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__Impl19187 ) ; 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__019221 ) ; rule__IfSqlCond__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlCond__Group__1_in_rule__IfSqlCond__Group__019224 ) ; 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 ( ) ) ; } 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__IfSqlCond__Group__0__Impl19252 ) ; if ( state . failed ) return ; } break ; default : break loop72 ; } } 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__119283 ) ; rule__IfSqlCond__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlCond__Group__2_in_rule__IfSqlCond__Group__119286 ) ; 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__Impl19313 ) ; 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__219343 ) ; rule__IfSqlCond__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlCond__Group__3_in_rule__IfSqlCond__Group__219346 ) ; 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 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__IfSqlCond__Group__2__Impl19374 ) ; if ( state . failed ) return ; } break ; default : break loop73 ; } } 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__319405 ) ; 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 ( ) ) ; } loop74 : do { int alt74 = <NUM_LIT:2> ; int LA74_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA74_0 >= RULE_AND && LA74_0 <= RULE_OR ) ) ) { alt74 = <NUM_LIT:1> ; } switch ( alt74 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfSqlCond__Group_3__0_in_rule__IfSqlCond__Group__3__Impl19432 ) ; rule__IfSqlCond__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop74 ; } } 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__019471 ) ; rule__IfSqlCond__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlCond__Group_3__1_in_rule__IfSqlCond__Group_3__019474 ) ; 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__Impl19501 ) ; 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__119531 ) ; rule__IfSqlCond__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlCond__Group_3__2_in_rule__IfSqlCond__Group_3__119534 ) ; 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 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__IfSqlCond__Group_3__1__Impl19562 ) ; if ( state . failed ) return ; } break ; default : break loop75 ; } } 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__219593 ) ; rule__IfSqlCond__Group_3__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlCond__Group_3__3_in_rule__IfSqlCond__Group_3__219596 ) ; 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__Impl19623 ) ; 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__319653 ) ; 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 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__IfSqlCond__Group_3__3__Impl19681 ) ; if ( state . failed ) return ; } break ; default : break loop76 ; } } 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__019720 ) ; rule__IfSqlBool__Group_0__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlBool__Group_0__1_in_rule__IfSqlBool__Group_0__019723 ) ; 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 alt77 = <NUM_LIT:2> ; int LA77_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA77_0 == RULE_NOT ) ) { alt77 = <NUM_LIT:1> ; } switch ( alt77 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfSqlBool__NotAssignment_0_0_in_rule__IfSqlBool__Group_0__0__Impl19750 ) ; 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__119781 ) ; rule__IfSqlBool__Group_0__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlBool__Group_0__2_in_rule__IfSqlBool__Group_0__119784 ) ; 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__Impl19811 ) ; 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__219840 ) ; 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__Impl19867 ) ; 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__019903 ) ; rule__IfSqlBool__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlBool__Group_1__1_in_rule__IfSqlBool__Group_1__019906 ) ; 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 alt78 = <NUM_LIT:2> ; int LA78_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA78_0 == RULE_NOT ) ) { alt78 = <NUM_LIT:1> ; } switch ( alt78 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfSqlBool__NotAssignment_1_0_in_rule__IfSqlBool__Group_1__0__Impl19933 ) ; 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__119964 ) ; rule__IfSqlBool__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlBool__Group_1__2_in_rule__IfSqlBool__Group_1__119967 ) ; 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__Impl19994 ) ; 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__220023 ) ; 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__Impl20050 ) ; 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__020086 ) ; rule__IfSqlBool__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlBool__Group_2__1_in_rule__IfSqlBool__Group_2__020089 ) ; 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 alt79 = <NUM_LIT:2> ; int LA79_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA79_0 == RULE_NOT ) ) { alt79 = <NUM_LIT:1> ; } switch ( alt79 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__IfSqlBool__NotAssignment_2_0_in_rule__IfSqlBool__Group_2__0__Impl20116 ) ; 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__120147 ) ; rule__IfSqlBool__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlBool__Group_2__2_in_rule__IfSqlBool__Group_2__120150 ) ; 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__Impl20177 ) ; 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__220206 ) ; rule__IfSqlBool__Group_2__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__IfSqlBool__Group_2__3_in_rule__IfSqlBool__Group_2__220209 ) ; 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__Impl20236 ) ; 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__320266 ) ; 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__Impl20293 ) ; 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__020330 ) ; rule__OrdSql2__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OrdSql2__Group_1__1_in_rule__OrdSql2__Group_1__020333 ) ; 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__Impl20360 ) ; 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__120389 ) ; 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__Impl20416 ) ; 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__020450 ) ; rule__OrdSql2__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OrdSql2__Group_2__1_in_rule__OrdSql2__Group_2__020453 ) ; 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__Impl20480 ) ; 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__120509 ) ; 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__Impl20536 ) ; 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__020570 ) ; rule__OrdSql2__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OrdSql2__Group_3__1_in_rule__OrdSql2__Group_3__020573 ) ; 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__Impl20600 ) ; 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__120629 ) ; 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__Impl20656 ) ; 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__020690 ) ; rule__OrdSqlValue__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OrdSqlValue__Group__1_in_rule__OrdSqlValue__Group__020693 ) ; 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__Impl20720 ) ; 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__120750 ) ; 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 ( ) ) ; } loop80 : do { int alt80 = <NUM_LIT:2> ; alt80 = dfa80 . predict ( input ) ; switch ( alt80 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__OrdSqlValue__Group_1__0_in_rule__OrdSqlValue__Group__1__Impl20777 ) ; rule__OrdSqlValue__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop80 ; } } 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__020812 ) ; 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__Impl20839 ) ; 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__020871 ) ; rule__Column__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Column__Group__1_in_rule__Column__Group__020874 ) ; 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__Impl20901 ) ; 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__120931 ) ; 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 alt81 = <NUM_LIT:2> ; int LA81_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA81_0 == RULE_CARET ) ) { int LA81_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred355_InternalProcessorDsl ( ) ) ) { alt81 = <NUM_LIT:1> ; } } switch ( alt81 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Column__Group_1__0_in_rule__Column__Group__1__Impl20958 ) ; 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__020993 ) ; rule__Column__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Column__Group_1__1_in_rule__Column__Group_1__020996 ) ; 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__Impl21024 ) ; 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__121054 ) ; rule__Column__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Column__Group_1__2_in_rule__Column__Group_1__121057 ) ; 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 alt82 = <NUM_LIT:2> ; int LA82_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA82_0 == RULE_IDENT ) ) { int LA82_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred356_InternalProcessorDsl ( ) ) ) { alt82 = <NUM_LIT:1> ; } } switch ( alt82 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Column__TypeAssignment_1_1_in_rule__Column__Group_1__1__Impl21084 ) ; 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__221115 ) ; 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 ( ) ) ; } loop83 : do { int alt83 = <NUM_LIT:2> ; int LA83_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA83_0 == RULE_CARET ) ) { int LA83_2 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA83_2 == RULE_IDENT ) ) { int LA83_3 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred357_InternalProcessorDsl ( ) ) ) { alt83 = <NUM_LIT:1> ; } } else if ( ( LA83_2 == RULE_NUMBER ) ) { int LA83_4 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred357_InternalProcessorDsl ( ) ) ) { alt83 = <NUM_LIT:1> ; } } } switch ( alt83 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Column__Group_1_2__0_in_rule__Column__Group_1__2__Impl21142 ) ; rule__Column__Group_1_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop83 ; } } 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__021179 ) ; 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__021182 ) ; 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__Impl21210 ) ; 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__121240 ) ; 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__Impl21267 ) ; 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__021301 ) ; rule__Constant__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Constant__Group__1_in_rule__Constant__Group__021304 ) ; 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 alt84 = <NUM_LIT:2> ; int LA84_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA84_0 >= RULE_MINUS && LA84_0 <= RULE_PLUS ) ) ) { alt84 = <NUM_LIT:1> ; } switch ( alt84 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Constant__CaseAssignment_0_in_rule__Constant__Group__0__Impl21331 ) ; 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__121362 ) ; rule__Constant__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Constant__Group__2_in_rule__Constant__Group__121365 ) ; 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__Impl21392 ) ; 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__221422 ) ; 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 alt85 = <NUM_LIT:2> ; int LA85_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA85_0 == RULE_CARET ) ) { int LA85_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred359_InternalProcessorDsl ( ) ) ) { alt85 = <NUM_LIT:1> ; } } switch ( alt85 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Constant__Group_2__0_in_rule__Constant__Group__2__Impl21449 ) ; 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__021486 ) ; rule__Constant__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Constant__Group_2__1_in_rule__Constant__Group_2__021489 ) ; 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__Impl21517 ) ; 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__121547 ) ; rule__Constant__Group_2__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Constant__Group_2__2_in_rule__Constant__Group_2__121550 ) ; 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 alt86 = <NUM_LIT:2> ; int LA86_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA86_0 == RULE_IDENT ) ) { int LA86_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred360_InternalProcessorDsl ( ) ) ) { alt86 = <NUM_LIT:1> ; } } switch ( alt86 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Constant__TypeAssignment_2_1_in_rule__Constant__Group_2__1__Impl21577 ) ; 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__221608 ) ; 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 ( ) ) ; } loop87 : do { int alt87 = <NUM_LIT:2> ; int LA87_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA87_0 == RULE_CARET ) ) { int LA87_2 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA87_2 == RULE_IDENT ) ) { int LA87_3 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred361_InternalProcessorDsl ( ) ) ) { alt87 = <NUM_LIT:1> ; } } else if ( ( LA87_2 == RULE_NUMBER ) ) { int LA87_4 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred361_InternalProcessorDsl ( ) ) ) { alt87 = <NUM_LIT:1> ; } } } switch ( alt87 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Constant__Group_2_2__0_in_rule__Constant__Group_2__2__Impl21635 ) ; rule__Constant__Group_2_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop87 ; } } 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__021672 ) ; 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__021675 ) ; 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__Impl21703 ) ; 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__121733 ) ; 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__Impl21760 ) ; 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__021794 ) ; rule__Identifier__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Identifier__Group__1_in_rule__Identifier__Group__021797 ) ; 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 alt88 = <NUM_LIT:2> ; int LA88_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA88_0 >= RULE_EQUALS && LA88_0 <= RULE_MORE_THAN ) ) ) { alt88 = <NUM_LIT:1> ; } switch ( alt88 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Identifier__ModeAssignment_0_in_rule__Identifier__Group__0__Impl21824 ) ; 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__121855 ) ; rule__Identifier__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Identifier__Group__2_in_rule__Identifier__Group__121858 ) ; 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 alt89 = <NUM_LIT:2> ; int LA89_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( ( LA89_0 >= RULE_MINUS && LA89_0 <= RULE_PLUS ) ) ) { alt89 = <NUM_LIT:1> ; } switch ( alt89 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Identifier__CaseAssignment_1_in_rule__Identifier__Group__1__Impl21885 ) ; 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__221916 ) ; rule__Identifier__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Identifier__Group__3_in_rule__Identifier__Group__221919 ) ; 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__Impl21946 ) ; 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__321976 ) ; 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 alt90 = <NUM_LIT:2> ; int LA90_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA90_0 == RULE_CARET ) ) { int LA90_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred364_InternalProcessorDsl ( ) ) ) { alt90 = <NUM_LIT:1> ; } } switch ( alt90 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Identifier__Group_3__0_in_rule__Identifier__Group__3__Impl22003 ) ; 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__022042 ) ; rule__Identifier__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Identifier__Group_3__1_in_rule__Identifier__Group_3__022045 ) ; 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__Impl22073 ) ; 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__122103 ) ; rule__Identifier__Group_3__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Identifier__Group_3__2_in_rule__Identifier__Group_3__122106 ) ; 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 alt91 = <NUM_LIT:2> ; int LA91_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA91_0 == RULE_IDENT ) ) { int LA91_1 = input . LA ( <NUM_LIT:2> ) ; if ( ( synpred365_InternalProcessorDsl ( ) ) ) { alt91 = <NUM_LIT:1> ; } } switch ( alt91 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Identifier__TypeAssignment_3_1_in_rule__Identifier__Group_3__1__Impl22133 ) ; 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__222164 ) ; 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 ( ) ) ; } loop92 : do { int alt92 = <NUM_LIT:2> ; int LA92_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA92_0 == RULE_CARET ) ) { int LA92_2 = input . LA ( <NUM_LIT:2> ) ; if ( ( LA92_2 == RULE_IDENT ) ) { int LA92_3 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred366_InternalProcessorDsl ( ) ) ) { alt92 = <NUM_LIT:1> ; } } else if ( ( LA92_2 == RULE_NUMBER ) ) { int LA92_4 = input . LA ( <NUM_LIT:3> ) ; if ( ( synpred366_InternalProcessorDsl ( ) ) ) { alt92 = <NUM_LIT:1> ; } } } switch ( alt92 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Identifier__Group_3_2__0_in_rule__Identifier__Group_3__2__Impl22191 ) ; rule__Identifier__Group_3_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop92 ; } } 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__022228 ) ; 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__022231 ) ; 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__Impl22259 ) ; 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__122289 ) ; 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__Impl22316 ) ; 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__022350 ) ; rule__MappingRule__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group__1_in_rule__MappingRule__Group__022353 ) ; 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__Impl22380 ) ; 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__122410 ) ; rule__MappingRule__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group__2_in_rule__MappingRule__Group__122413 ) ; 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__Impl22440 ) ; 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__222469 ) ; rule__MappingRule__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group__3_in_rule__MappingRule__Group__222472 ) ; 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__Impl22499 ) ; 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__322529 ) ; rule__MappingRule__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group__4_in_rule__MappingRule__Group__322532 ) ; 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 ( ) ) ; } loop93 : do { int alt93 = <NUM_LIT:2> ; int LA93_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA93_0 == RULE_COMMA ) ) { alt93 = <NUM_LIT:1> ; } switch ( alt93 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MappingRule__Group_3__0_in_rule__MappingRule__Group__3__Impl22559 ) ; rule__MappingRule__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop93 ; } } 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__422590 ) ; rule__MappingRule__Group__4__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group__5_in_rule__MappingRule__Group__422593 ) ; 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__Impl22620 ) ; 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__522649 ) ; rule__MappingRule__Group__5__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group__6_in_rule__MappingRule__Group__522652 ) ; 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__Impl22679 ) ; 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__622708 ) ; rule__MappingRule__Group__6__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group__7_in_rule__MappingRule__Group__622711 ) ; 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__Impl22738 ) ; 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__722768 ) ; 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__Impl22795 ) ; 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__022840 ) ; rule__MappingRule__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingRule__Group_3__1_in_rule__MappingRule__Group_3__022843 ) ; 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__Impl22870 ) ; 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__122899 ) ; 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__Impl22926 ) ; 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__022960 ) ; rule__Mapping__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Mapping__Group__1_in_rule__Mapping__Group__022963 ) ; 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 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Mapping__Group__0__Impl22991 ) ; if ( state . failed ) return ; } break ; default : break loop94 ; } } 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__123022 ) ; rule__Mapping__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Mapping__Group__2_in_rule__Mapping__Group__123025 ) ; 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__Impl23052 ) ; 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__223082 ) ; rule__Mapping__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Mapping__Group__3_in_rule__Mapping__Group__223085 ) ; 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 ( ) ) ; } loop95 : do { int alt95 = <NUM_LIT:2> ; alt95 = dfa95 . predict ( input ) ; switch ( alt95 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__Mapping__Group_2__0_in_rule__Mapping__Group__2__Impl23112 ) ; rule__Mapping__Group_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop95 ; } } 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__323143 ) ; 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 ( ) ) ; } 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> : { match ( input , RULE_WS , FOLLOW_RULE_WS_in_rule__Mapping__Group__3__Impl23171 ) ; if ( state . failed ) return ; } break ; default : break loop96 ; } } 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__023210 ) ; rule__Mapping__Group_2__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__Mapping__Group_2__1_in_rule__Mapping__Group_2__023213 ) ; 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__Impl23243 ) ; 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 ( ) ) ; } 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__Mapping__Group_2__0__Impl23256 ) ; if ( state . failed ) return ; } break ; default : break loop97 ; } } 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__123289 ) ; 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__Impl23316 ) ; 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__023350 ) ; rule__MappingItem__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingItem__Group__1_in_rule__MappingItem__Group__023353 ) ; 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__Impl23380 ) ; 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__123410 ) ; 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 alt98 = <NUM_LIT:2> ; int LA98_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA98_0 == RULE_STRING ) ) { alt98 = <NUM_LIT:1> ; } switch ( alt98 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MappingItem__Group_1__0_in_rule__MappingItem__Group__1__Impl23437 ) ; 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__023472 ) ; rule__MappingItem__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingItem__Group_1__1_in_rule__MappingItem__Group_1__023475 ) ; 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__Impl23502 ) ; 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__123531 ) ; rule__MappingItem__Group_1__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingItem__Group_1__2_in_rule__MappingItem__Group_1__123534 ) ; 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 alt99 = <NUM_LIT:2> ; int LA99_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA99_0 == RULE_IDENT ) ) { alt99 = <NUM_LIT:1> ; } switch ( alt99 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MappingItem__TypeAssignment_1_1_in_rule__MappingItem__Group_1__1__Impl23561 ) ; 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__223592 ) ; 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 alt100 = <NUM_LIT:2> ; int LA100_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA100_0 == RULE_STRING ) ) { alt100 = <NUM_LIT:1> ; } switch ( alt100 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MappingItem__Group_1_2__0_in_rule__MappingItem__Group_1__2__Impl23619 ) ; 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__023656 ) ; 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__023659 ) ; 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__Impl23686 ) ; 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__123715 ) ; 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__Impl23742 ) ; 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__023776 ) ; rule__MappingColumn__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingColumn__Group__1_in_rule__MappingColumn__Group__023779 ) ; 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__Impl23806 ) ; 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__123836 ) ; 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 ( ) ) ; } loop101 : do { int alt101 = <NUM_LIT:2> ; int LA101_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA101_0 == RULE_CARET ) ) { alt101 = <NUM_LIT:1> ; } switch ( alt101 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__MappingColumn__Group_1__0_in_rule__MappingColumn__Group__1__Impl23863 ) ; rule__MappingColumn__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop101 ; } } 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__023898 ) ; rule__MappingColumn__Group_1__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__MappingColumn__Group_1__1_in_rule__MappingColumn__Group_1__023901 ) ; 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__Impl23928 ) ; 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__123957 ) ; 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__Impl23984 ) ; 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__024018 ) ; rule__OptionalFeature__Group__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group__1_in_rule__OptionalFeature__Group__024021 ) ; 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__Impl24048 ) ; 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__124078 ) ; rule__OptionalFeature__Group__1__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group__2_in_rule__OptionalFeature__Group__124081 ) ; 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__Impl24108 ) ; 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__224137 ) ; rule__OptionalFeature__Group__2__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group__3_in_rule__OptionalFeature__Group__224140 ) ; 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__Impl24167 ) ; 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__324197 ) ; rule__OptionalFeature__Group__3__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group__4_in_rule__OptionalFeature__Group__324200 ) ; 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 ( ) ) ; } loop102 : do { int alt102 = <NUM_LIT:2> ; int LA102_0 = input . LA ( <NUM_LIT:1> ) ; if ( ( LA102_0 == RULE_COMMA ) ) { alt102 = <NUM_LIT:1> ; } switch ( alt102 ) { case <NUM_LIT:1> : { pushFollow ( FOLLOW_rule__OptionalFeature__Group_3__0_in_rule__OptionalFeature__Group__3__Impl24227 ) ; rule__OptionalFeature__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } break ; default : break loop102 ; } } 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__424258 ) ; rule__OptionalFeature__Group__4__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group__5_in_rule__OptionalFeature__Group__424261 ) ; 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__Impl24288 ) ; 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__524317 ) ; rule__OptionalFeature__Group__5__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group__6_in_rule__OptionalFeature__Group__524320 ) ; 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__Impl24347 ) ; 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__624376 ) ; rule__OptionalFeature__Group__6__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group__7_in_rule__OptionalFeature__Group__624379 ) ; 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__Impl24406 ) ; 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__724436 ) ; 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__Impl24463 ) ; 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__024508 ) ; rule__OptionalFeature__Group_3__0__Impl ( ) ; state . _fsp -- ; if ( state . failed ) return ; pushFollow ( FOLLOW_rule__OptionalFeature__Group_3__1_in_rule__OptionalFeature__Group_3__024511 ) ; 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__Impl24538 ) ; 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__124567 ) ; 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__Impl24594 ) ; 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__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_024633 ) ; 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_024664 ) ; 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_024695 ) ; 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_024726 ) ; 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_024757 ) ; 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_024788 ) ; 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_024819 ) ; 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_024850 ) ; 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__Property__NameAssignment_0_0_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameResolveReferencesKeyword_0_0_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameResolveReferencesKeyword_0_0_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_47_in_rule__Property__NameAssignment_0_0_024886 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameResolveReferencesKeyword_0_0_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameResolveReferencesKeyword_0_0_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__DoResolvePojoAssignment_0_0_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDoResolvePojoON_OFFTerminalRuleCall_0_0_2_0 ( ) ) ; } match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_rule__Property__DoResolvePojoAssignment_0_0_224925 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDoResolvePojoON_OFFTerminalRuleCall_0_0_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__NameAssignment_0_1_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseOnlineKeyword_0_1_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseOnlineKeyword_0_1_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_48_in_rule__Property__NameAssignment_0_1_024961 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseOnlineKeyword_0_1_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseOnlineKeyword_0_1_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__DoResolveDbAssignment_0_1_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDoResolveDbON_OFFTerminalRuleCall_0_1_2_0 ( ) ) ; } match ( input , RULE_ON_OFF , FOLLOW_RULE_ON_OFF_in_rule__Property__DoResolveDbAssignment_0_1_225000 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDoResolveDbON_OFFTerminalRuleCall_0_1_2_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 ( ) . getNameDatabaseUrlKeyword_0_2_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseUrlKeyword_0_2_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_49_in_rule__Property__NameAssignment_0_2_025036 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseUrlKeyword_0_2_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseUrlKeyword_0_2_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__DbUrlAssignment_0_2_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDbUrlPropertyValueParserRuleCall_0_2_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_rule__Property__DbUrlAssignment_0_2_225075 ) ; rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDbUrlPropertyValueParserRuleCall_0_2_2_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 ( ) . getNameDatabaseUsernameKeyword_0_3_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseUsernameKeyword_0_3_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_50_in_rule__Property__NameAssignment_0_3_025111 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseUsernameKeyword_0_3_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseUsernameKeyword_0_3_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__DbUsernameAssignment_0_3_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDbUsernamePropertyValueParserRuleCall_0_3_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_rule__Property__DbUsernameAssignment_0_3_225150 ) ; rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDbUsernamePropertyValueParserRuleCall_0_3_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__NameAssignment_0_4_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameDatabasePasswordKeyword_0_4_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameDatabasePasswordKeyword_0_4_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_51_in_rule__Property__NameAssignment_0_4_025186 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameDatabasePasswordKeyword_0_4_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameDatabasePasswordKeyword_0_4_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__DbPasswordAssignment_0_4_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDbPasswordPropertyValueParserRuleCall_0_4_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_rule__Property__DbPasswordAssignment_0_4_225225 ) ; rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDbPasswordPropertyValueParserRuleCall_0_4_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__NameAssignment_0_5_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseSchemaKeyword_0_5_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseSchemaKeyword_0_5_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_52_in_rule__Property__NameAssignment_0_5_025261 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseSchemaKeyword_0_5_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseSchemaKeyword_0_5_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__DbSchemaAssignment_0_5_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDbSchemaPropertyValueParserRuleCall_0_5_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_rule__Property__DbSchemaAssignment_0_5_225300 ) ; rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDbSchemaPropertyValueParserRuleCall_0_5_2_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__NameAssignment_0_6_0 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseDriverKeyword_0_6_0_0 ( ) ) ; } { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseDriverKeyword_0_6_0_0 ( ) ) ; } match ( input , <NUM_LIT> , FOLLOW_53_in_rule__Property__NameAssignment_0_6_025336 ) ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseDriverKeyword_0_6_0_0 ( ) ) ; } } if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getNameDatabaseDriverKeyword_0_6_0_0 ( ) ) ; } } } } catch ( RecognitionException re ) { reportError ( re ) ; recover ( input , re ) ; } finally { restoreStackSize ( stackSize ) ; } return ; } public final void rule__Property__DbDriverAssignment_0_6_2 ( ) throws RecognitionException { int stackSize = keepStackSize ( ) ; try { { { if ( state . backtracking == <NUM_LIT:0> ) { before ( grammarAccess . getPropertyAccess ( ) . getDbDriverPropertyValueParserRuleCall_0_6_2_0 ( ) ) ; } pushFollow ( FOLLOW_rulePropertyValue_in_rule__Property__DbDriverAssignment_0_6_225375 ) ; rulePropertyValue ( ) ; state . _fsp -- ; if ( state . failed ) return ; if ( state . backtracking == <NUM_LIT:0> ) { after ( grammarAccess . getPropertyAccess ( ) . getDbDriverPropertyValueParserRuleCall_0_6_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_125406 ) ; 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_225437 ) ; 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_125474 ) ; 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_225513 ) ; 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_125552 ) ; 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_225591 ) ; 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_125630 ) ; 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_225669 ) ; 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_125708 ) ; 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_225747 ) ; 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__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_125782 ) ; 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_225813 ) ; 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_125848 ) ; 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_225887 ) ; 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_125922 ) ; 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_025953 ) ; 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_225984 ) ; 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_126015 ) ; 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_626046 ) ; 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__SqlsAssignment26077 ) ; 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_026108 ) ; 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_126139 ) ; 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_126170 ) ; 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_126201 ) ; 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_126232 ) ; 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_126263 ) ; 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_126294 ) ; 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_126325 ) ; 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_126356 ) ; 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_026387 ) ; 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_126418 ) ; 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_326449 ) ; 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_126480 ) ; 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_026511 ) ; 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_126542 ) ; 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_126573 ) ; 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_026604 ) ; 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_126635 ) ; 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_126666 ) ; 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_026697 ) ; 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_226728 ) ; 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_326759 ) ; 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_026790 ) ; 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_226821 ) ; 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__SqlsAssignment26852 ) ; 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_026883 ) ; 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_126914 ) ; 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_126945 ) ; 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_126976 ) ; 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_127007 ) ; 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_127038 ) ; 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_127069 ) ; 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_127100 ) ; 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_127131 ) ; 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_027162 ) ; 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_127193 ) ; 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_327224 ) ; 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_127255 ) ; 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_027286 ) ; 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_127317 ) ; 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_127348 ) ; 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_027379 ) ; 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_127410 ) ; 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_127441 ) ; 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_127472 ) ; 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_027503 ) ; 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_227536 ) ; 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_027567 ) ; 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_227598 ) ; 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_027629 ) ; 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_227660 ) ; 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_027691 ) ; 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_227722 ) ; 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__SqlsAssignment27753 ) ; 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_027784 ) ; 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_127815 ) ; 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_127846 ) ; 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_127877 ) ; 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_027908 ) ; 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_127941 ) ; 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_127972 ) ; 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_028005 ) ; 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_128038 ) ; 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_128071 ) ; 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_128102 ) ; 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_028135 ) ; 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_128168 ) ; 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_228201 ) ; 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_128234 ) ; 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_128265 ) ; 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__NameAssignment28298 ) ; 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__NameAssignment28331 ) ; 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_028364 ) ; 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_228395 ) ; 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_128426 ) ; 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_628457 ) ; 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_128488 ) ; 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_128519 ) ; 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_028550 ) ; 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_128583 ) ; 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_128614 ) ; 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_028645 ) ; 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_128678 ) ; 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_028711 ) ; 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_228742 ) ; 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_128773 ) ; 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_628804 ) ; 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 synpred335_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__SqlValue__Group_1__0_in_synpred335_InternalProcessorDsl15060 ) ; rule__SqlValue__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred341_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__IfSqlValue__Group_1__0_in_synpred341_InternalProcessorDsl17789 ) ; rule__IfSqlValue__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred354_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__OrdSqlValue__Group_1__0_in_synpred354_InternalProcessorDsl20777 ) ; rule__OrdSqlValue__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred355_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Column__Group_1__0_in_synpred355_InternalProcessorDsl20958 ) ; rule__Column__Group_1__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred356_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Column__TypeAssignment_1_1_in_synpred356_InternalProcessorDsl21084 ) ; rule__Column__TypeAssignment_1_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred357_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Column__Group_1_2__0_in_synpred357_InternalProcessorDsl21142 ) ; rule__Column__Group_1_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred359_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Constant__Group_2__0_in_synpred359_InternalProcessorDsl21449 ) ; rule__Constant__Group_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred360_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Constant__TypeAssignment_2_1_in_synpred360_InternalProcessorDsl21577 ) ; rule__Constant__TypeAssignment_2_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred361_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Constant__Group_2_2__0_in_synpred361_InternalProcessorDsl21635 ) ; rule__Constant__Group_2_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred364_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Identifier__Group_3__0_in_synpred364_InternalProcessorDsl22003 ) ; rule__Identifier__Group_3__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred365_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Identifier__TypeAssignment_3_1_in_synpred365_InternalProcessorDsl22133 ) ; rule__Identifier__TypeAssignment_3_1 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final void synpred366_InternalProcessorDsl_fragment ( ) throws RecognitionException { { pushFollow ( FOLLOW_rule__Identifier__Group_3_2__0_in_synpred366_InternalProcessorDsl22191 ) ; rule__Identifier__Group_3_2__0 ( ) ; state . _fsp -- ; if ( state . failed ) return ; } } public final boolean synpred361_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred361_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 synpred356_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred356_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 synpred341_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred341_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 synpred359_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred359_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 synpred357_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred357_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 synpred360_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred360_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 synpred354_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred354_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 synpred364_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred364_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 synpred335_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred335_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 synpred355_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred355_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 synpred366_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred366_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 synpred365_InternalProcessorDsl ( ) { state . backtracking ++ ; int start = input . mark ( ) ; try { synpred365_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 DFA61 dfa61 = new DFA61 ( this ) ; protected DFA67 dfa67 = new DFA67 ( this ) ; protected DFA80 dfa80 = new DFA80 ( this ) ; protected DFA95 dfa95 = new DFA95 ( 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>" } ; 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 DFA61_eotS = "<STR_LIT>" ; static final String DFA61_eofS = "<STR_LIT>" ; static final String DFA61_minS = "<STR_LIT>" ; static final String DFA61_maxS = "<STR_LIT>" ; static final String DFA61_acceptS = "<STR_LIT>" ; static final String DFA61_specialS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String [ ] DFA61_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 [ ] DFA61_eot = DFA . unpackEncodedString ( DFA61_eotS ) ; static final short [ ] DFA61_eof = DFA . unpackEncodedString ( DFA61_eofS ) ; static final char [ ] DFA61_min = DFA . unpackEncodedStringToUnsignedChars ( DFA61_minS ) ; static final char [ ] DFA61_max = DFA . unpackEncodedStringToUnsignedChars ( DFA61_maxS ) ; static final short [ ] DFA61_accept = DFA . unpackEncodedString ( DFA61_acceptS ) ; static final short [ ] DFA61_special = DFA . unpackEncodedString ( DFA61_specialS ) ; static final short [ ] [ ] DFA61_transition ; static { int numStates = DFA61_transitionS . length ; DFA61_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA61_transition [ i ] = DFA . unpackEncodedString ( DFA61_transitionS [ i ] ) ; } } class DFA61 extends DFA { public DFA61 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT> ; this . eot = DFA61_eot ; this . eof = DFA61_eof ; this . min = DFA61_min ; this . max = DFA61_max ; this . accept = DFA61_accept ; this . special = DFA61_special ; this . transition = DFA61_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 LA61_7 = input . LA ( <NUM_LIT:1> ) ; int index61_7 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_7 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:1> : int LA61_3 = input . LA ( <NUM_LIT:1> ) ; int index61_3 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_3 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:2> : int LA61_13 = input . LA ( <NUM_LIT:1> ) ; int index61_13 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_13 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:3> : int LA61_11 = input . LA ( <NUM_LIT:1> ) ; int index61_11 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_11 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:4> : int LA61_24 = input . LA ( <NUM_LIT:1> ) ; int index61_24 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_24 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:5> : int LA61_9 = input . LA ( <NUM_LIT:1> ) ; int index61_9 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_9 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:6> : int LA61_16 = input . LA ( <NUM_LIT:1> ) ; int index61_16 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_16 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:7> : int LA61_6 = input . LA ( <NUM_LIT:1> ) ; int index61_6 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_6 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:8> : int LA61_19 = input . LA ( <NUM_LIT:1> ) ; int index61_19 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_19 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:9> : int LA61_21 = input . LA ( <NUM_LIT:1> ) ; int index61_21 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_21 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:10> : int LA61_26 = input . LA ( <NUM_LIT:1> ) ; int index61_26 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_26 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:11> : int LA61_4 = input . LA ( <NUM_LIT:1> ) ; int index61_4 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_4 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:12> : int LA61_28 = input . LA ( <NUM_LIT:1> ) ; int index61_28 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_28 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA61_27 = input . LA ( <NUM_LIT:1> ) ; int index61_27 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_27 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA61_14 = input . LA ( <NUM_LIT:1> ) ; int index61_14 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_14 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:15> : int LA61_8 = input . LA ( <NUM_LIT:1> ) ; int index61_8 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_8 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:16> : int LA61_10 = input . LA ( <NUM_LIT:1> ) ; int index61_10 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_10 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA61_23 = input . LA ( <NUM_LIT:1> ) ; int index61_23 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_23 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA61_18 = input . LA ( <NUM_LIT:1> ) ; int index61_18 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_18 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA61_12 = input . LA ( <NUM_LIT:1> ) ; int index61_12 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_12 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:20> : int LA61_5 = input . LA ( <NUM_LIT:1> ) ; int index61_5 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_5 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA61_15 = input . LA ( <NUM_LIT:1> ) ; int index61_15 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_15 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA61_22 = input . LA ( <NUM_LIT:1> ) ; int index61_22 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_22 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA61_20 = input . LA ( <NUM_LIT:1> ) ; int index61_20 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_20 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:24> : int LA61_2 = input . LA ( <NUM_LIT:1> ) ; int index61_2 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_2 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA61_25 = input . LA ( <NUM_LIT:1> ) ; int index61_25 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_25 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA61_17 = input . LA ( <NUM_LIT:1> ) ; int index61_17 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred335_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index61_17 ) ; 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 DFA67_eotS = "<STR_LIT>" ; static final String DFA67_eofS = "<STR_LIT>" ; static final String DFA67_minS = "<STR_LIT>" ; static final String DFA67_maxS = "<STR_LIT>" ; static final String DFA67_acceptS = "<STR_LIT>" ; static final String DFA67_specialS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String [ ] DFA67_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 [ ] DFA67_eot = DFA . unpackEncodedString ( DFA67_eotS ) ; static final short [ ] DFA67_eof = DFA . unpackEncodedString ( DFA67_eofS ) ; static final char [ ] DFA67_min = DFA . unpackEncodedStringToUnsignedChars ( DFA67_minS ) ; static final char [ ] DFA67_max = DFA . unpackEncodedStringToUnsignedChars ( DFA67_maxS ) ; static final short [ ] DFA67_accept = DFA . unpackEncodedString ( DFA67_acceptS ) ; static final short [ ] DFA67_special = DFA . unpackEncodedString ( DFA67_specialS ) ; static final short [ ] [ ] DFA67_transition ; static { int numStates = DFA67_transitionS . length ; DFA67_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA67_transition [ i ] = DFA . unpackEncodedString ( DFA67_transitionS [ i ] ) ; } } class DFA67 extends DFA { public DFA67 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT> ; this . eot = DFA67_eot ; this . eof = DFA67_eof ; this . min = DFA67_min ; this . max = DFA67_max ; this . accept = DFA67_accept ; this . special = DFA67_special ; this . transition = DFA67_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 LA67_11 = input . LA ( <NUM_LIT:1> ) ; int index67_11 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_11 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:1> : int LA67_23 = input . LA ( <NUM_LIT:1> ) ; int index67_23 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_23 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:2> : int LA67_9 = input . LA ( <NUM_LIT:1> ) ; int index67_9 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_9 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:3> : int LA67_5 = input . LA ( <NUM_LIT:1> ) ; int index67_5 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_5 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:4> : int LA67_20 = input . LA ( <NUM_LIT:1> ) ; int index67_20 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_20 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:5> : int LA67_15 = input . LA ( <NUM_LIT:1> ) ; int index67_15 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_15 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:6> : int LA67_21 = input . LA ( <NUM_LIT:1> ) ; int index67_21 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_21 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:7> : int LA67_16 = input . LA ( <NUM_LIT:1> ) ; int index67_16 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_16 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:8> : int LA67_24 = input . LA ( <NUM_LIT:1> ) ; int index67_24 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_24 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:9> : int LA67_3 = input . LA ( <NUM_LIT:1> ) ; int index67_3 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_3 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:10> : int LA67_18 = input . LA ( <NUM_LIT:1> ) ; int index67_18 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_18 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:11> : int LA67_13 = input . LA ( <NUM_LIT:1> ) ; int index67_13 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_13 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:12> : int LA67_26 = input . LA ( <NUM_LIT:1> ) ; int index67_26 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_26 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA67_22 = input . LA ( <NUM_LIT:1> ) ; int index67_22 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_22 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA67_8 = input . LA ( <NUM_LIT:1> ) ; int index67_8 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_8 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:15> : int LA67_6 = input . LA ( <NUM_LIT:1> ) ; int index67_6 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_6 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:16> : int LA67_10 = input . LA ( <NUM_LIT:1> ) ; int index67_10 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_10 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA67_4 = input . LA ( <NUM_LIT:1> ) ; int index67_4 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_4 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA67_14 = input . LA ( <NUM_LIT:1> ) ; int index67_14 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_14 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA67_27 = input . LA ( <NUM_LIT:1> ) ; int index67_27 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_27 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:20> : int LA67_25 = input . LA ( <NUM_LIT:1> ) ; int index67_25 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_25 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA67_19 = input . LA ( <NUM_LIT:1> ) ; int index67_19 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_19 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA67_17 = input . LA ( <NUM_LIT:1> ) ; int index67_17 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_17 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA67_12 = input . LA ( <NUM_LIT:1> ) ; int index67_12 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_12 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:24> : int LA67_7 = input . LA ( <NUM_LIT:1> ) ; int index67_7 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_7 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA67_2 = input . LA ( <NUM_LIT:1> ) ; int index67_2 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred341_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index67_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 DFA80_eotS = "<STR_LIT>" ; static final String DFA80_eofS = "<STR_LIT>" ; static final String DFA80_minS = "<STR_LIT>" ; static final String DFA80_maxS = "<STR_LIT>" ; static final String DFA80_acceptS = "<STR_LIT>" ; static final String DFA80_specialS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String [ ] DFA80_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 [ ] DFA80_eot = DFA . unpackEncodedString ( DFA80_eotS ) ; static final short [ ] DFA80_eof = DFA . unpackEncodedString ( DFA80_eofS ) ; static final char [ ] DFA80_min = DFA . unpackEncodedStringToUnsignedChars ( DFA80_minS ) ; static final char [ ] DFA80_max = DFA . unpackEncodedStringToUnsignedChars ( DFA80_maxS ) ; static final short [ ] DFA80_accept = DFA . unpackEncodedString ( DFA80_acceptS ) ; static final short [ ] DFA80_special = DFA . unpackEncodedString ( DFA80_specialS ) ; static final short [ ] [ ] DFA80_transition ; static { int numStates = DFA80_transitionS . length ; DFA80_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA80_transition [ i ] = DFA . unpackEncodedString ( DFA80_transitionS [ i ] ) ; } } class DFA80 extends DFA { public DFA80 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT> ; this . eot = DFA80_eot ; this . eof = DFA80_eof ; this . min = DFA80_min ; this . max = DFA80_max ; this . accept = DFA80_accept ; this . special = DFA80_special ; this . transition = DFA80_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 LA80_17 = input . LA ( <NUM_LIT:1> ) ; int index80_17 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_17 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:1> : int LA80_6 = input . LA ( <NUM_LIT:1> ) ; int index80_6 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_6 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:2> : int LA80_29 = input . LA ( <NUM_LIT:1> ) ; int index80_29 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_29 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:3> : int LA80_21 = input . LA ( <NUM_LIT:1> ) ; int index80_21 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_21 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:4> : int LA80_2 = input . LA ( <NUM_LIT:1> ) ; int index80_2 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_2 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:5> : int LA80_23 = input . LA ( <NUM_LIT:1> ) ; int index80_23 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_23 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:6> : int LA80_9 = input . LA ( <NUM_LIT:1> ) ; int index80_9 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_9 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:7> : int LA80_4 = input . LA ( <NUM_LIT:1> ) ; int index80_4 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_4 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:8> : int LA80_14 = input . LA ( <NUM_LIT:1> ) ; int index80_14 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_14 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:9> : int LA80_24 = input . LA ( <NUM_LIT:1> ) ; int index80_24 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_24 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:10> : int LA80_19 = input . LA ( <NUM_LIT:1> ) ; int index80_19 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_19 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:11> : int LA80_12 = input . LA ( <NUM_LIT:1> ) ; int index80_12 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_12 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:12> : int LA80_27 = input . LA ( <NUM_LIT:1> ) ; int index80_27 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_27 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA80_11 = input . LA ( <NUM_LIT:1> ) ; int index80_11 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_11 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA80_28 = input . LA ( <NUM_LIT:1> ) ; int index80_28 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_28 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:15> : int LA80_16 = input . LA ( <NUM_LIT:1> ) ; int index80_16 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_16 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:16> : int LA80_22 = input . LA ( <NUM_LIT:1> ) ; int index80_22 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_22 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA80_7 = input . LA ( <NUM_LIT:1> ) ; int index80_7 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_7 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA80_20 = input . LA ( <NUM_LIT:1> ) ; int index80_20 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_20 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA80_5 = input . LA ( <NUM_LIT:1> ) ; int index80_5 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_5 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:20> : int LA80_3 = input . LA ( <NUM_LIT:1> ) ; int index80_3 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_3 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA80_30 = input . LA ( <NUM_LIT:1> ) ; int index80_30 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_30 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA80_18 = input . LA ( <NUM_LIT:1> ) ; int index80_18 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_18 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA80_25 = input . LA ( <NUM_LIT:1> ) ; int index80_25 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_25 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT:24> : int LA80_15 = input . LA ( <NUM_LIT:1> ) ; int index80_15 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_15 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA80_8 = input . LA ( <NUM_LIT:1> ) ; int index80_8 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_8 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA80_10 = input . LA ( <NUM_LIT:1> ) ; int index80_10 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_10 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA80_26 = input . LA ( <NUM_LIT:1> ) ; int index80_26 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_26 ) ; if ( s >= <NUM_LIT:0> ) return s ; break ; case <NUM_LIT> : int LA80_13 = input . LA ( <NUM_LIT:1> ) ; int index80_13 = input . index ( ) ; input . rewind ( ) ; s = - <NUM_LIT:1> ; if ( ( synpred354_InternalProcessorDsl ( ) ) ) { s = <NUM_LIT:31> ; } else if ( ( true ) ) { s = <NUM_LIT:1> ; } input . seek ( index80_13 ) ; 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 DFA95_eotS = "<STR_LIT>" ; static final String DFA95_eofS = "<STR_LIT>" ; static final String DFA95_minS = "<STR_LIT>" ; static final String DFA95_maxS = "<STR_LIT>" ; static final String DFA95_acceptS = "<STR_LIT>" ; static final String DFA95_specialS = "<STR_LIT>" ; static final String [ ] DFA95_transitionS = { "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" , "<STR_LIT>" } ; static final short [ ] DFA95_eot = DFA . unpackEncodedString ( DFA95_eotS ) ; static final short [ ] DFA95_eof = DFA . unpackEncodedString ( DFA95_eofS ) ; static final char [ ] DFA95_min = DFA . unpackEncodedStringToUnsignedChars ( DFA95_minS ) ; static final char [ ] DFA95_max = DFA . unpackEncodedStringToUnsignedChars ( DFA95_maxS ) ; static final short [ ] DFA95_accept = DFA . unpackEncodedString ( DFA95_acceptS ) ; static final short [ ] DFA95_special = DFA . unpackEncodedString ( DFA95_specialS ) ; static final short [ ] [ ] DFA95_transition ; static { int numStates = DFA95_transitionS . length ; DFA95_transition = new short [ numStates ] [ ] ; for ( int i = <NUM_LIT:0> ; i < numStates ; i ++ ) { DFA95_transition [ i ] = DFA . unpackEncodedString ( DFA95_transitionS [ i ] ) ; } } class DFA95 extends DFA { public DFA95 ( BaseRecognizer recognizer ) { this . recognizer = recognizer ; this . decisionNumber = <NUM_LIT> ; this . eot = DFA95_eot ; this . eof = DFA95_eof ; this . min = DFA95_min ; this . max = DFA95_max ; this . accept = DFA95_accept ; this . special = DFA95_special ; this . transition = DFA95_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_ruleProperty_in_entryRuleProperty127 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleProperty134 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group__0_in_ruleProperty160 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_entryRulePropertyValue187 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePropertyValue194 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Group__0_in_rulePropertyValue220 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoDefinition_in_entryRulePojoDefinition252 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoDefinition259 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__0_in_rulePojoDefinition289 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoUsage_in_entryRulePojoUsage316 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRulePojoUsage323 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoUsage__Alternatives_in_rulePojoUsage349 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnUsage_in_entryRuleColumnUsage381 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleColumnUsage388 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__0_in_ruleColumnUsage418 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifierUsage_in_entryRuleIdentifierUsage450 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIdentifierUsage457 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__0_in_ruleIdentifierUsage487 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstantUsage_in_entryRuleConstantUsage519 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleConstantUsage526 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__0_in_ruleConstantUsage556 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingUsage_in_entryRuleMappingUsage588 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMappingUsage595 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__0_in_ruleMappingUsage625 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableDefinition_in_entryRuleTableDefinition657 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleTableDefinition664 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__0_in_ruleTableDefinition694 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableUsage_in_entryRuleTableUsage726 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleTableUsage733 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__0_in_ruleTableUsage763 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMetaStatement_in_entryRuleMetaStatement790 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMetaStatement797 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__0_in_ruleMetaStatement823 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSql_in_entryRuleSql850 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleSql857 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Sql__SqlsAssignment_in_ruleSql885 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Sql__SqlsAssignment_in_ruleSql897 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlFragment_in_entryRuleSqlFragment927 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleSqlFragment934 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Alternatives_in_ruleSqlFragment960 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlValue_in_entryRuleSqlValue987 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleSqlValue994 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Group__0_in_ruleSqlValue1020 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMetaSql_in_entryRuleMetaSql1047 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMetaSql1054 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Alternatives_in_ruleMetaSql1080 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_entryRuleIfSql1107 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfSql1114 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSql__SqlsAssignment_in_ruleIfSql1142 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSql__SqlsAssignment_in_ruleIfSql1154 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlFragment_in_entryRuleIfSqlFragment1184 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfSqlFragment1191 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Alternatives_in_ruleIfSqlFragment1217 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlValue_in_entryRuleIfSqlValue1244 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfSqlValue1251 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Group__0_in_ruleIfSqlValue1277 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfMetaSql_in_entryRuleIfMetaSql1304 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfMetaSql1311 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Alternatives_in_ruleIfMetaSql1337 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlCond_in_entryRuleIfSqlCond1364 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfSqlCond1371 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__0_in_ruleIfSqlCond1397 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlBool_in_entryRuleIfSqlBool1424 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIfSqlBool1431 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Alternatives_in_ruleIfSqlBool1457 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSql_in_entryRuleOrdSql1484 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleOrdSql1491 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql__SqlsAssignment_in_ruleOrdSql1519 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql__SqlsAssignment_in_ruleOrdSql1531 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSql2_in_entryRuleOrdSql21561 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleOrdSql21568 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Alternatives_in_ruleOrdSql21594 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSqlValue_in_entryRuleOrdSqlValue1621 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleOrdSqlValue1628 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Group__0_in_ruleOrdSqlValue1654 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumn_in_entryRuleColumn1681 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleColumn1688 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group__0_in_ruleColumn1714 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstant_in_entryRuleConstant1741 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleConstant1748 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group__0_in_ruleConstant1774 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifier_in_entryRuleIdentifier1801 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleIdentifier1808 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__0_in_ruleIdentifier1834 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseColumn_in_entryRuleDatabaseColumn1861 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleDatabaseColumn1868 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseColumn__NameAssignment_in_ruleDatabaseColumn1894 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseTable_in_entryRuleDatabaseTable1921 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleDatabaseTable1928 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseTable__NameAssignment_in_ruleDatabaseTable1954 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingRule_in_entryRuleMappingRule1981 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMappingRule1988 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__0_in_ruleMappingRule2014 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMapping_in_entryRuleMapping2041 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMapping2048 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__0_in_ruleMapping2074 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingItem_in_entryRuleMappingItem2101 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMappingItem2108 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group__0_in_ruleMappingItem2134 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingColumn_in_entryRuleMappingColumn2161 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleMappingColumn2168 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group__0_in_ruleMappingColumn2194 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOptionalFeature_in_entryRuleOptionalFeature2221 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleOptionalFeature2228 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__0_in_ruleOptionalFeature2254 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleFeatureValue_in_entryRuleFeatureValue2281 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_EOF_in_entryRuleFeatureValue2288 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__FeatureValue__Alternatives_in_ruleFeatureValue2316 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__FeatureValue__Alternatives_in_ruleFeatureValue2328 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_0__0_in_rule__Artifacts__Alternatives_12367 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_1__0_in_rule__Artifacts__Alternatives_12385 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_2__0_in_rule__Artifacts__Alternatives_12403 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_3__0_in_rule__Artifacts__Alternatives_12421 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_4__0_in_rule__Artifacts__Alternatives_12439 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_5__0_in_rule__Artifacts__Alternatives_12457 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_6__0_in_rule__Artifacts__Alternatives_12475 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_7__0_in_rule__Artifacts__Alternatives_12493 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_0__0_in_rule__Property__Alternatives_02526 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_1__0_in_rule__Property__Alternatives_02544 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_2__0_in_rule__Property__Alternatives_02562 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_3__0_in_rule__Property__Alternatives_02580 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_4__0_in_rule__Property__Alternatives_02598 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_5__0_in_rule__Property__Alternatives_02616 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_6__0_in_rule__Property__Alternatives_02634 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__PropertyValue__Alternatives_02667 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__PropertyValue__Alternatives_02684 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PropertyValue__Alternatives_02701 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__PropertyValue__Alternatives_02718 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__PropertyValue__Alternatives_02735 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__PropertyValue__Alternatives_02752 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__PropertyValue__Alternatives_02769 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__PropertyValue__Alternatives_02786 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__PropertyValue__Alternatives_02803 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__PropertyValue__Alternatives_02820 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__PropertyValue__Alternatives_02837 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__PropertyValue__Alternatives_02854 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__PropertyValue__Alternatives_02871 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__PropertyValue__Alternatives_02888 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__PropertyValue__Alternatives_02905 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__PropertyValue__Alternatives_02922 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__PropertyValue__Alternatives_02939 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__PropertyValue__Alternatives_02956 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rule__PropertyValue__Alternatives_02973 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__PropertyValue__Alternatives_02990 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__PropertyValue__Alternatives_03007 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__PropertyValue__Alternatives_03024 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__PropertyValue__Alternatives_03041 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__PropertyValue__Alternatives_03058 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__PropertyValue__Alternatives_03075 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__PropertyValue__Alternatives_03092 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__PropertyValue__Alternatives_03109 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__PropertyValue__Alternatives_03126 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__PropertyValue__Alternatives_03143 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__PropertyValue__Alternatives_03160 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__PropertyValue__Alternatives_03177 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__PropertyValue__Alternatives_1_03209 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__PropertyValue__Alternatives_1_03226 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PropertyValue__Alternatives_1_03243 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__PropertyValue__Alternatives_1_03260 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__PropertyValue__Alternatives_1_03277 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__PropertyValue__Alternatives_1_03294 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__PropertyValue__Alternatives_1_03311 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__PropertyValue__Alternatives_1_03328 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__PropertyValue__Alternatives_1_03345 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__PropertyValue__Alternatives_1_03362 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__PropertyValue__Alternatives_1_03379 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__PropertyValue__Alternatives_1_03396 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__PropertyValue__Alternatives_1_03413 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__PropertyValue__Alternatives_1_03430 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__PropertyValue__Alternatives_1_03447 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__PropertyValue__Alternatives_1_03464 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__PropertyValue__Alternatives_1_03481 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__PropertyValue__Alternatives_1_03498 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__PropertyValue__Alternatives_1_03515 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rule__PropertyValue__Alternatives_1_03532 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__PropertyValue__Alternatives_1_03549 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__PropertyValue__Alternatives_1_03566 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__PropertyValue__Alternatives_1_03583 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__PropertyValue__Alternatives_1_03600 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__PropertyValue__Alternatives_1_03617 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__PropertyValue__Alternatives_1_03634 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__PropertyValue__Alternatives_1_03651 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__PropertyValue__Alternatives_1_03668 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__PropertyValue__Alternatives_1_03685 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__PropertyValue__Alternatives_1_03702 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__PropertyValue__Alternatives_1_03719 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__PropertyValue__Alternatives_1_03736 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojoDefinition__ClassAlternatives_2_03768 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__PojoDefinition__ClassAlternatives_2_03785 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumnUsage_in_rule__PojoUsage__Alternatives3817 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifierUsage_in_rule__PojoUsage__Alternatives3834 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstantUsage_in_rule__PojoUsage__Alternatives3851 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingUsage_in_rule__PojoUsage__Alternatives3868 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__ValueAssignment_0_in_rule__SqlFragment__Alternatives3900 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_1__0_in_rule__SqlFragment__Alternatives3918 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_2__0_in_rule__SqlFragment__Alternatives3936 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_3__0_in_rule__SqlFragment__Alternatives3954 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_4__0_in_rule__SqlFragment__Alternatives3972 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_5__0_in_rule__SqlFragment__Alternatives3990 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_5_1_0__0_in_rule__SqlFragment__Alternatives_5_14023 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__DbcolAssignment_5_1_1_in_rule__SqlFragment__Alternatives_5_14041 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__SqlValue__Alternatives_04074 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__SqlValue__Alternatives_04091 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__SqlValue__Alternatives_04108 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__SqlValue__Alternatives_04125 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__SqlValue__Alternatives_04142 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__SqlValue__Alternatives_04159 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__SqlValue__Alternatives_04176 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__SqlValue__Alternatives_04193 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__SqlValue__Alternatives_04210 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__SqlValue__Alternatives_04227 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__SqlValue__Alternatives_04244 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__SqlValue__Alternatives_04261 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__SqlValue__Alternatives_04278 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__SqlValue__Alternatives_04295 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__SqlValue__Alternatives_04312 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__SqlValue__Alternatives_04329 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__SqlValue__Alternatives_04346 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__SqlValue__Alternatives_04363 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__SqlValue__Alternatives_04380 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__SqlValue__Alternatives_04397 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__SqlValue__Alternatives_04414 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__SqlValue__Alternatives_04431 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__SqlValue__Alternatives_04448 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__SqlValue__Alternatives_04465 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__SqlValue__Alternatives_04482 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__SqlValue__Alternatives_04499 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__SqlValue__Alternatives_04516 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__SqlValue__Alternatives_1_04548 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__SqlValue__Alternatives_1_04565 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__SqlValue__Alternatives_1_04582 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__SqlValue__Alternatives_1_04599 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__SqlValue__Alternatives_1_04616 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__SqlValue__Alternatives_1_04633 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__SqlValue__Alternatives_1_04650 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__SqlValue__Alternatives_1_04667 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__SqlValue__Alternatives_1_04684 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__SqlValue__Alternatives_1_04701 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__SqlValue__Alternatives_1_04718 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__SqlValue__Alternatives_1_04735 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__SqlValue__Alternatives_1_04752 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__SqlValue__Alternatives_1_04769 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__SqlValue__Alternatives_1_04786 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__SqlValue__Alternatives_1_04803 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__SqlValue__Alternatives_1_04820 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__SqlValue__Alternatives_1_04837 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__SqlValue__Alternatives_1_04854 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__SqlValue__Alternatives_1_04871 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__SqlValue__Alternatives_1_04888 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__SqlValue__Alternatives_1_04905 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__SqlValue__Alternatives_1_04922 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__SqlValue__Alternatives_1_04939 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__SqlValue__Alternatives_1_04956 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__SqlValue__Alternatives_1_04973 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__SqlValue__Alternatives_1_04990 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0__0_in_rule__MetaSql__Alternatives5022 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__0_in_rule__MetaSql__Alternatives5040 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2__0_in_rule__MetaSql__Alternatives5058 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3__0_in_rule__MetaSql__Alternatives5076 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__0_in_rule__MetaSql__Alternatives5094 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_5__0_in_rule__MetaSql__Alternatives5112 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__ValueAssignment_0_in_rule__IfSqlFragment__Alternatives5145 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_1__0_in_rule__IfSqlFragment__Alternatives5163 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_2__0_in_rule__IfSqlFragment__Alternatives5181 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_3__0_in_rule__IfSqlFragment__Alternatives5199 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_4__0_in_rule__IfSqlFragment__Alternatives5217 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_5__0_in_rule__IfSqlFragment__Alternatives5235 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_4_1_0__0_in_rule__IfSqlFragment__Alternatives_4_15268 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__DbcolAssignment_4_1_1_in_rule__IfSqlFragment__Alternatives_4_15286 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__IfSqlValue__Alternatives_05319 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__IfSqlValue__Alternatives_05336 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__IfSqlValue__Alternatives_05353 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__IfSqlValue__Alternatives_05370 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__IfSqlValue__Alternatives_05387 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__IfSqlValue__Alternatives_05404 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__IfSqlValue__Alternatives_05421 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__IfSqlValue__Alternatives_05438 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__IfSqlValue__Alternatives_05455 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__IfSqlValue__Alternatives_05472 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__IfSqlValue__Alternatives_05489 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__IfSqlValue__Alternatives_05506 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__IfSqlValue__Alternatives_05523 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__IfSqlValue__Alternatives_05540 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__IfSqlValue__Alternatives_05557 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__IfSqlValue__Alternatives_05574 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__IfSqlValue__Alternatives_05591 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__IfSqlValue__Alternatives_05608 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__IfSqlValue__Alternatives_05625 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__IfSqlValue__Alternatives_05642 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__IfSqlValue__Alternatives_05659 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__IfSqlValue__Alternatives_05676 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__IfSqlValue__Alternatives_05693 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__IfSqlValue__Alternatives_05710 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__IfSqlValue__Alternatives_05727 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__IfSqlValue__Alternatives_05744 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__IfSqlValue__Alternatives_1_05776 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__IfSqlValue__Alternatives_1_05793 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__IfSqlValue__Alternatives_1_05810 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__IfSqlValue__Alternatives_1_05827 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__IfSqlValue__Alternatives_1_05844 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__IfSqlValue__Alternatives_1_05861 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__IfSqlValue__Alternatives_1_05878 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__IfSqlValue__Alternatives_1_05895 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__IfSqlValue__Alternatives_1_05912 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__IfSqlValue__Alternatives_1_05929 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__IfSqlValue__Alternatives_1_05946 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__IfSqlValue__Alternatives_1_05963 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__IfSqlValue__Alternatives_1_05980 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__IfSqlValue__Alternatives_1_05997 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__IfSqlValue__Alternatives_1_06014 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__IfSqlValue__Alternatives_1_06031 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__IfSqlValue__Alternatives_1_06048 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__IfSqlValue__Alternatives_1_06065 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__IfSqlValue__Alternatives_1_06082 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__IfSqlValue__Alternatives_1_06099 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__IfSqlValue__Alternatives_1_06116 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__IfSqlValue__Alternatives_1_06133 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__IfSqlValue__Alternatives_1_06150 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__IfSqlValue__Alternatives_1_06167 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__IfSqlValue__Alternatives_1_06184 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__IfSqlValue__Alternatives_1_06201 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0__0_in_rule__IfMetaSql__Alternatives6233 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__0_in_rule__IfMetaSql__Alternatives6251 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2__0_in_rule__IfMetaSql__Alternatives6269 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3__0_in_rule__IfMetaSql__Alternatives6287 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__IfSqlCond__OperAlternatives_3_0_06320 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__IfSqlCond__OperAlternatives_3_0_06337 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_0__0_in_rule__IfSqlBool__Alternatives6369 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_1__0_in_rule__IfSqlBool__Alternatives6387 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__0_in_rule__IfSqlBool__Alternatives6405 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__ValueAssignment_0_in_rule__OrdSql2__Alternatives6438 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_1__0_in_rule__OrdSql2__Alternatives6456 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_2__0_in_rule__OrdSql2__Alternatives6474 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_3__0_in_rule__OrdSql2__Alternatives6492 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__OrdSqlValue__Alternatives_06525 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__OrdSqlValue__Alternatives_06542 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__OrdSqlValue__Alternatives_06559 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__OrdSqlValue__Alternatives_06576 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__OrdSqlValue__Alternatives_06593 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__OrdSqlValue__Alternatives_06610 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__OrdSqlValue__Alternatives_06627 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__OrdSqlValue__Alternatives_06644 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__OrdSqlValue__Alternatives_06661 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__OrdSqlValue__Alternatives_06678 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__OrdSqlValue__Alternatives_06695 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__OrdSqlValue__Alternatives_06712 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__OrdSqlValue__Alternatives_06729 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__OrdSqlValue__Alternatives_06746 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__OrdSqlValue__Alternatives_06763 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__OrdSqlValue__Alternatives_06780 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__OrdSqlValue__Alternatives_06797 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rule__OrdSqlValue__Alternatives_06814 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__OrdSqlValue__Alternatives_06831 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__OrdSqlValue__Alternatives_06848 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__OrdSqlValue__Alternatives_06865 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__OrdSqlValue__Alternatives_06882 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__OrdSqlValue__Alternatives_06899 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__OrdSqlValue__Alternatives_06916 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__OrdSqlValue__Alternatives_06933 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__OrdSqlValue__Alternatives_06950 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__OrdSqlValue__Alternatives_06967 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__OrdSqlValue__Alternatives_06984 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__OrdSqlValue__Alternatives_07001 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__OrdSqlValue__Alternatives_1_07033 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__OrdSqlValue__Alternatives_1_07050 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__OrdSqlValue__Alternatives_1_07067 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__OrdSqlValue__Alternatives_1_07084 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__OrdSqlValue__Alternatives_1_07101 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__OrdSqlValue__Alternatives_1_07118 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__OrdSqlValue__Alternatives_1_07135 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__OrdSqlValue__Alternatives_1_07152 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__OrdSqlValue__Alternatives_1_07169 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__OrdSqlValue__Alternatives_1_07186 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__OrdSqlValue__Alternatives_1_07203 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__OrdSqlValue__Alternatives_1_07220 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__OrdSqlValue__Alternatives_1_07237 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__OrdSqlValue__Alternatives_1_07254 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__OrdSqlValue__Alternatives_1_07271 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__OrdSqlValue__Alternatives_1_07288 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__OrdSqlValue__Alternatives_1_07305 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rule__OrdSqlValue__Alternatives_1_07322 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__OrdSqlValue__Alternatives_1_07339 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__OrdSqlValue__Alternatives_1_07356 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__OrdSqlValue__Alternatives_1_07373 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__OrdSqlValue__Alternatives_1_07390 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__OrdSqlValue__Alternatives_1_07407 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__OrdSqlValue__Alternatives_1_07424 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__OrdSqlValue__Alternatives_1_07441 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__OrdSqlValue__Alternatives_1_07458 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__OrdSqlValue__Alternatives_1_07475 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__OrdSqlValue__Alternatives_1_07492 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__OrdSqlValue__Alternatives_1_07509 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Column__NameAlternatives_0_07541 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__Column__NameAlternatives_0_07558 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__Column__NameAlternatives_0_07575 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Column__ValsAlternatives_1_2_1_07607 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__Column__ValsAlternatives_1_2_1_07624 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__Constant__CaseAlternatives_0_07656 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__Constant__CaseAlternatives_0_07673 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Constant__NameAlternatives_1_07705 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__Constant__NameAlternatives_1_07722 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Constant__ValsAlternatives_2_2_1_07754 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__Constant__ValsAlternatives_2_2_1_07771 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__Identifier__ModeAlternatives_0_07803 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__Identifier__ModeAlternatives_0_07820 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__Identifier__ModeAlternatives_0_07837 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__Identifier__CaseAlternatives_1_07869 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__Identifier__CaseAlternatives_1_07886 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Identifier__NameAlternatives_2_07918 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__Identifier__NameAlternatives_2_07935 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__Identifier__NameAlternatives_2_07952 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Identifier__ValsAlternatives_3_2_1_07984 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__Identifier__ValsAlternatives_3_2_1_08001 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__DatabaseColumn__NameAlternatives_08033 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__DatabaseColumn__NameAlternatives_08050 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__DatabaseTable__NameAlternatives_08082 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__DatabaseTable__NameAlternatives_08099 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingItem__ColAlternatives_0_08131 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__MappingItem__ColAlternatives_0_08148 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingColumn__NameAlternatives_0_08180 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__MappingColumn__NameAlternatives_0_08197 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingColumn__ValsAlternatives_1_1_08229 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__MappingColumn__ValsAlternatives_1_1_08246 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_REST_in_rule__FeatureValue__Alternatives8278 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_DOT_in_rule__FeatureValue__Alternatives8295 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__FeatureValue__Alternatives8312 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__FeatureValue__Alternatives8329 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__FeatureValue__Alternatives8346 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__FeatureValue__Alternatives8363 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__FeatureValue__Alternatives8380 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__FeatureValue__Alternatives8397 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MINUS_in_rule__FeatureValue__Alternatives8414 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PLUS_in_rule__FeatureValue__Alternatives8431 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__FeatureValue__Alternatives8448 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__FeatureValue__Alternatives8465 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__FeatureValue__Alternatives8482 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__FeatureValue__Alternatives8499 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__FeatureValue__Alternatives8516 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__FeatureValue__Alternatives8533 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__FeatureValue__Alternatives8550 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__FeatureValue__Alternatives8567 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__FeatureValue__Alternatives8584 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rule__FeatureValue__Alternatives8601 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__FeatureValue__Alternatives8618 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__FeatureValue__Alternatives8635 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LESS_THAN_in_rule__FeatureValue__Alternatives8652 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MORE_THAN_in_rule__FeatureValue__Alternatives8669 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__FeatureValue__Alternatives8686 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AND_in_rule__FeatureValue__Alternatives8703 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OR_in_rule__FeatureValue__Alternatives8720 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ESC_CHAR_in_rule__FeatureValue__Alternatives8737 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__FeatureValue__Alternatives8754 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__FeatureValue__Alternatives8771 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__FeatureValue__Alternatives8788 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__FeatureValue__Alternatives8805 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group__0__Impl_in_rule__Artifacts__Group__08835 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group__1_in_rule__Artifacts__Group__08838 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group__0__Impl8866 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group__1__Impl_in_rule__Artifacts__Group__18897 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Alternatives_1_in_rule__Artifacts__Group__1__Impl8926 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Alternatives_1_in_rule__Artifacts__Group__1__Impl8938 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_0__0__Impl_in_rule__Artifacts__Group_1_0__08975 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_0__1_in_rule__Artifacts__Group_1_0__08978 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__FeaturesAssignment_1_0_0_in_rule__Artifacts__Group_1_0__0__Impl9005 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_0__1__Impl_in_rule__Artifacts__Group_1_0__19035 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_0__1__Impl9063 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_1__0__Impl_in_rule__Artifacts__Group_1_1__09098 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_1__1_in_rule__Artifacts__Group_1_1__09101 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__StatementsAssignment_1_1_0_in_rule__Artifacts__Group_1_1__0__Impl9128 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_1__1__Impl_in_rule__Artifacts__Group_1_1__19158 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_1__1__Impl9186 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_2__0__Impl_in_rule__Artifacts__Group_1_2__09221 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_2__1_in_rule__Artifacts__Group_1_2__09224 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__MappingsAssignment_1_2_0_in_rule__Artifacts__Group_1_2__0__Impl9251 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_2__1__Impl_in_rule__Artifacts__Group_1_2__19281 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_2__1__Impl9309 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_3__0__Impl_in_rule__Artifacts__Group_1_3__09344 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_3__1_in_rule__Artifacts__Group_1_3__09347 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__PojosAssignment_1_3_0_in_rule__Artifacts__Group_1_3__0__Impl9374 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_3__1__Impl_in_rule__Artifacts__Group_1_3__19404 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_3__1__Impl9432 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_4__0__Impl_in_rule__Artifacts__Group_1_4__09467 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_4__1_in_rule__Artifacts__Group_1_4__09470 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__UsagesAssignment_1_4_0_in_rule__Artifacts__Group_1_4__0__Impl9497 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_4__1__Impl_in_rule__Artifacts__Group_1_4__19527 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_4__1__Impl9555 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_5__0__Impl_in_rule__Artifacts__Group_1_5__09590 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_5__1_in_rule__Artifacts__Group_1_5__09593 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__PropertiesAssignment_1_5_0_in_rule__Artifacts__Group_1_5__0__Impl9620 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_5__1__Impl_in_rule__Artifacts__Group_1_5__19650 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_5__1__Impl9678 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_6__0__Impl_in_rule__Artifacts__Group_1_6__09713 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_6__1_in_rule__Artifacts__Group_1_6__09716 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__TablesAssignment_1_6_0_in_rule__Artifacts__Group_1_6__0__Impl9743 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_6__1__Impl_in_rule__Artifacts__Group_1_6__19773 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_6__1__Impl9801 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_7__0__Impl_in_rule__Artifacts__Group_1_7__09836 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_7__1_in_rule__Artifacts__Group_1_7__09839 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__TableUsagesAssignment_1_7_0_in_rule__Artifacts__Group_1_7__0__Impl9866 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Artifacts__Group_1_7__1__Impl_in_rule__Artifacts__Group_1_7__19896 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Artifacts__Group_1_7__1__Impl9924 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group__0__Impl_in_rule__Property__Group__09959 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group__1_in_rule__Property__Group__09962 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Alternatives_0_in_rule__Property__Group__0__Impl9989 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group__1__Impl_in_rule__Property__Group__110019 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__Property__Group__1__Impl10046 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_0__0__Impl_in_rule__Property__Group_0_0__010079 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_0__1_in_rule__Property__Group_0_0__010082 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__NameAssignment_0_0_0_in_rule__Property__Group_0_0__0__Impl10109 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_0__1__Impl_in_rule__Property__Group_0_0__110139 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_0__2_in_rule__Property__Group_0_0__110142 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Property__Group_0_0__1__Impl10172 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Property__Group_0_0__1__Impl10185 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_0__2__Impl_in_rule__Property__Group_0_0__210218 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__DoResolvePojoAssignment_0_0_2_in_rule__Property__Group_0_0__2__Impl10245 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_1__0__Impl_in_rule__Property__Group_0_1__010281 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_1__1_in_rule__Property__Group_0_1__010284 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__NameAssignment_0_1_0_in_rule__Property__Group_0_1__0__Impl10311 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_1__1__Impl_in_rule__Property__Group_0_1__110341 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_1__2_in_rule__Property__Group_0_1__110344 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Property__Group_0_1__1__Impl10374 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Property__Group_0_1__1__Impl10387 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_1__2__Impl_in_rule__Property__Group_0_1__210420 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__DoResolveDbAssignment_0_1_2_in_rule__Property__Group_0_1__2__Impl10447 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_2__0__Impl_in_rule__Property__Group_0_2__010483 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_2__1_in_rule__Property__Group_0_2__010486 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__NameAssignment_0_2_0_in_rule__Property__Group_0_2__0__Impl10513 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_2__1__Impl_in_rule__Property__Group_0_2__110543 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_2__2_in_rule__Property__Group_0_2__110546 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Property__Group_0_2__1__Impl10576 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Property__Group_0_2__1__Impl10589 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_2__2__Impl_in_rule__Property__Group_0_2__210622 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__DbUrlAssignment_0_2_2_in_rule__Property__Group_0_2__2__Impl10649 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_3__0__Impl_in_rule__Property__Group_0_3__010685 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_3__1_in_rule__Property__Group_0_3__010688 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__NameAssignment_0_3_0_in_rule__Property__Group_0_3__0__Impl10715 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_3__1__Impl_in_rule__Property__Group_0_3__110745 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_3__2_in_rule__Property__Group_0_3__110748 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Property__Group_0_3__1__Impl10778 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Property__Group_0_3__1__Impl10791 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_3__2__Impl_in_rule__Property__Group_0_3__210824 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__DbUsernameAssignment_0_3_2_in_rule__Property__Group_0_3__2__Impl10851 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_4__0__Impl_in_rule__Property__Group_0_4__010887 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_4__1_in_rule__Property__Group_0_4__010890 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__NameAssignment_0_4_0_in_rule__Property__Group_0_4__0__Impl10917 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_4__1__Impl_in_rule__Property__Group_0_4__110947 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_4__2_in_rule__Property__Group_0_4__110950 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Property__Group_0_4__1__Impl10980 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Property__Group_0_4__1__Impl10993 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_4__2__Impl_in_rule__Property__Group_0_4__211026 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__DbPasswordAssignment_0_4_2_in_rule__Property__Group_0_4__2__Impl11053 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_5__0__Impl_in_rule__Property__Group_0_5__011089 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_5__1_in_rule__Property__Group_0_5__011092 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__NameAssignment_0_5_0_in_rule__Property__Group_0_5__0__Impl11119 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_5__1__Impl_in_rule__Property__Group_0_5__111149 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_5__2_in_rule__Property__Group_0_5__111152 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Property__Group_0_5__1__Impl11182 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Property__Group_0_5__1__Impl11195 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_5__2__Impl_in_rule__Property__Group_0_5__211228 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__DbSchemaAssignment_0_5_2_in_rule__Property__Group_0_5__2__Impl11255 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_6__0__Impl_in_rule__Property__Group_0_6__011291 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_6__1_in_rule__Property__Group_0_6__011294 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__NameAssignment_0_6_0_in_rule__Property__Group_0_6__0__Impl11321 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_6__1__Impl_in_rule__Property__Group_0_6__111351 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_6__2_in_rule__Property__Group_0_6__111354 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Property__Group_0_6__1__Impl11384 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Property__Group_0_6__1__Impl11397 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__Group_0_6__2__Impl_in_rule__Property__Group_0_6__211430 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Property__DbDriverAssignment_0_6_2_in_rule__Property__Group_0_6__2__Impl11457 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Group__0__Impl_in_rule__PropertyValue__Group__011493 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Group__1_in_rule__PropertyValue__Group__011496 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Alternatives_0_in_rule__PropertyValue__Group__0__Impl11523 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Group__1__Impl_in_rule__PropertyValue__Group__111553 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Group_1__0_in_rule__PropertyValue__Group__1__Impl11580 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Group_1__0__Impl_in_rule__PropertyValue__Group_1__011615 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PropertyValue__Alternatives_1_0_in_rule__PropertyValue__Group_1__0__Impl11642 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__0__Impl_in_rule__PojoDefinition__Group__011674 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__1_in_rule__PojoDefinition__Group__011677 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_39_in_rule__PojoDefinition__Group__0__Impl11705 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__1__Impl_in_rule__PojoDefinition__Group__111736 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__2_in_rule__PojoDefinition__Group__111739 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__NameAssignment_1_in_rule__PojoDefinition__Group__1__Impl11766 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__2__Impl_in_rule__PojoDefinition__Group__211796 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__3_in_rule__PojoDefinition__Group__211799 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__ClassAssignment_2_in_rule__PojoDefinition__Group__2__Impl11826 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__Group__3__Impl_in_rule__PojoDefinition__Group__311856 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__PojoDefinition__Group__3__Impl11883 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__0__Impl_in_rule__ColumnUsage__Group__011920 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__1_in_rule__ColumnUsage__Group__011923 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_40_in_rule__ColumnUsage__Group__0__Impl11951 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__1__Impl_in_rule__ColumnUsage__Group__111982 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__2_in_rule__ColumnUsage__Group__111985 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__StatementAssignment_1_in_rule__ColumnUsage__Group__1__Impl12012 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__2__Impl_in_rule__ColumnUsage__Group__212042 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__3_in_rule__ColumnUsage__Group__212045 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__PojoAssignment_2_in_rule__ColumnUsage__Group__2__Impl12072 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ColumnUsage__Group__3__Impl_in_rule__ColumnUsage__Group__312102 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__ColumnUsage__Group__3__Impl12129 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__0__Impl_in_rule__IdentifierUsage__Group__012166 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__1_in_rule__IdentifierUsage__Group__012169 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_41_in_rule__IdentifierUsage__Group__0__Impl12197 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__1__Impl_in_rule__IdentifierUsage__Group__112228 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__2_in_rule__IdentifierUsage__Group__112231 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__StatementAssignment_1_in_rule__IdentifierUsage__Group__1__Impl12258 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__2__Impl_in_rule__IdentifierUsage__Group__212288 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__3_in_rule__IdentifierUsage__Group__212291 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__PojoAssignment_2_in_rule__IdentifierUsage__Group__2__Impl12318 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IdentifierUsage__Group__3__Impl_in_rule__IdentifierUsage__Group__312348 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__IdentifierUsage__Group__3__Impl12375 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__0__Impl_in_rule__ConstantUsage__Group__012412 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__1_in_rule__ConstantUsage__Group__012415 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_42_in_rule__ConstantUsage__Group__0__Impl12443 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__1__Impl_in_rule__ConstantUsage__Group__112474 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__2_in_rule__ConstantUsage__Group__112477 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__StatementAssignment_1_in_rule__ConstantUsage__Group__1__Impl12504 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__2__Impl_in_rule__ConstantUsage__Group__212534 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__3_in_rule__ConstantUsage__Group__212537 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__PojoAssignment_2_in_rule__ConstantUsage__Group__2__Impl12564 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__ConstantUsage__Group__3__Impl_in_rule__ConstantUsage__Group__312594 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__ConstantUsage__Group__3__Impl12621 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__0__Impl_in_rule__MappingUsage__Group__012658 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__1_in_rule__MappingUsage__Group__012661 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_43_in_rule__MappingUsage__Group__0__Impl12689 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__1__Impl_in_rule__MappingUsage__Group__112720 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__2_in_rule__MappingUsage__Group__112723 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__StatementAssignment_1_in_rule__MappingUsage__Group__1__Impl12750 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__2__Impl_in_rule__MappingUsage__Group__212780 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__3_in_rule__MappingUsage__Group__212783 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__PojoAssignment_2_in_rule__MappingUsage__Group__2__Impl12810 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingUsage__Group__3__Impl_in_rule__MappingUsage__Group__312840 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__MappingUsage__Group__3__Impl12867 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__0__Impl_in_rule__TableDefinition__Group__012904 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__1_in_rule__TableDefinition__Group__012907 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_44_in_rule__TableDefinition__Group__0__Impl12935 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__1__Impl_in_rule__TableDefinition__Group__112966 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__2_in_rule__TableDefinition__Group__112969 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__NameAssignment_1_in_rule__TableDefinition__Group__1__Impl12996 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__2__Impl_in_rule__TableDefinition__Group__213026 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__3_in_rule__TableDefinition__Group__213029 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__TableAssignment_2_in_rule__TableDefinition__Group__2__Impl13056 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableDefinition__Group__3__Impl_in_rule__TableDefinition__Group__313086 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__TableDefinition__Group__3__Impl13113 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__0__Impl_in_rule__TableUsage__Group__013150 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__1_in_rule__TableUsage__Group__013153 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_45_in_rule__TableUsage__Group__0__Impl13181 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__1__Impl_in_rule__TableUsage__Group__113212 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__2_in_rule__TableUsage__Group__113215 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__StatementAssignment_1_in_rule__TableUsage__Group__1__Impl13242 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__2__Impl_in_rule__TableUsage__Group__213272 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__3_in_rule__TableUsage__Group__213275 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__TableAssignment_2_in_rule__TableUsage__Group__2__Impl13302 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__3__Impl_in_rule__TableUsage__Group__313332 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__4_in_rule__TableUsage__Group__313335 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group_3__0_in_rule__TableUsage__Group__3__Impl13362 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group__4__Impl_in_rule__TableUsage__Group__413393 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__TableUsage__Group__4__Impl13420 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group_3__0__Impl_in_rule__TableUsage__Group_3__013459 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group_3__1_in_rule__TableUsage__Group_3__013462 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_46_in_rule__TableUsage__Group_3__0__Impl13490 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__Group_3__1__Impl_in_rule__TableUsage__Group_3__113521 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__TableUsage__PrefixAssignment_3_1_in_rule__TableUsage__Group_3__1__Impl13548 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__0__Impl_in_rule__MetaStatement__Group__013582 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__1_in_rule__MetaStatement__Group__013585 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__NameAssignment_0_in_rule__MetaStatement__Group__0__Impl13612 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__1__Impl_in_rule__MetaStatement__Group__113642 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__2_in_rule__MetaStatement__Group__113645 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__MetaStatement__Group__1__Impl13672 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__2__Impl_in_rule__MetaStatement__Group__213701 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__3_in_rule__MetaStatement__Group__213704 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__TypeAssignment_2_in_rule__MetaStatement__Group__2__Impl13731 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__3__Impl_in_rule__MetaStatement__Group__313761 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__4_in_rule__MetaStatement__Group__313764 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group_3__0_in_rule__MetaStatement__Group__3__Impl13791 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__4__Impl_in_rule__MetaStatement__Group__413822 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__5_in_rule__MetaStatement__Group__413825 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__MetaStatement__Group__4__Impl13852 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__5__Impl_in_rule__MetaStatement__Group__513881 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__6_in_rule__MetaStatement__Group__513884 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__MetaStatement__Group__5__Impl13911 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__6__Impl_in_rule__MetaStatement__Group__613940 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__7_in_rule__MetaStatement__Group__613943 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__StatementAssignment_6_in_rule__MetaStatement__Group__6__Impl13970 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group__7__Impl_in_rule__MetaStatement__Group__714000 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__MetaStatement__Group__7__Impl14027 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group_3__0__Impl_in_rule__MetaStatement__Group_3__014072 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group_3__1_in_rule__MetaStatement__Group_3__014075 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__MetaStatement__Group_3__0__Impl14102 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__Group_3__1__Impl_in_rule__MetaStatement__Group_3__114131 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaStatement__FiltersAssignment_3_1_in_rule__MetaStatement__Group_3__1__Impl14158 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_1__0__Impl_in_rule__SqlFragment__Group_1__014192 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_1__1_in_rule__SqlFragment__Group_1__014195 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rule__SqlFragment__Group_1__0__Impl14222 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_1__1__Impl_in_rule__SqlFragment__Group_1__114251 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__ColAssignment_1_1_in_rule__SqlFragment__Group_1__1__Impl14278 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_2__0__Impl_in_rule__SqlFragment__Group_2__014312 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_2__1_in_rule__SqlFragment__Group_2__014315 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__SqlFragment__Group_2__0__Impl14342 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_2__1__Impl_in_rule__SqlFragment__Group_2__114371 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__CnstAssignment_2_1_in_rule__SqlFragment__Group_2__1__Impl14398 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_3__0__Impl_in_rule__SqlFragment__Group_3__014432 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_3__1_in_rule__SqlFragment__Group_3__014435 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__SqlFragment__Group_3__0__Impl14462 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_3__1__Impl_in_rule__SqlFragment__Group_3__114491 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__IdentAssignment_3_1_in_rule__SqlFragment__Group_3__1__Impl14518 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_4__0__Impl_in_rule__SqlFragment__Group_4__014552 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_4__1_in_rule__SqlFragment__Group_4__014555 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__SqlFragment__Group_4__0__Impl14582 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_4__1__Impl_in_rule__SqlFragment__Group_4__114611 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_4__2_in_rule__SqlFragment__Group_4__114614 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__MetaAssignment_4_1_in_rule__SqlFragment__Group_4__1__Impl14641 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_4__2__Impl_in_rule__SqlFragment__Group_4__214671 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__SqlFragment__Group_4__2__Impl14698 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_5__0__Impl_in_rule__SqlFragment__Group_5__014733 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_5__1_in_rule__SqlFragment__Group_5__014736 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__SqlFragment__Group_5__0__Impl14763 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Group_5__1__Impl_in_rule__SqlFragment__Group_5__114792 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlFragment__Alternatives_5_1_in_rule__SqlFragment__Group_5__1__Impl14819 = 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__014853 = 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__014856 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__SqlFragment__Group_5_1_0__0__Impl14883 = 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__114912 = 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__Impl14939 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Group__0__Impl_in_rule__SqlValue__Group__014973 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Group__1_in_rule__SqlValue__Group__014976 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Alternatives_0_in_rule__SqlValue__Group__0__Impl15003 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Group__1__Impl_in_rule__SqlValue__Group__115033 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Group_1__0_in_rule__SqlValue__Group__1__Impl15060 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Group_1__0__Impl_in_rule__SqlValue__Group_1__015095 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Alternatives_1_0_in_rule__SqlValue__Group_1__0__Impl15122 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0__0__Impl_in_rule__MetaSql__Group_0__015154 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0__1_in_rule__MetaSql__Group_0__015157 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__MetaSql__Group_0__0__Impl15184 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0__1__Impl_in_rule__MetaSql__Group_0__115213 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0__2_in_rule__MetaSql__Group_0__115216 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_0_1_in_rule__MetaSql__Group_0__1__Impl15243 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0__2__Impl_in_rule__MetaSql__Group_0__215273 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0_2__0_in_rule__MetaSql__Group_0__2__Impl15300 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0_2__0__Impl_in_rule__MetaSql__Group_0_2__015337 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0_2__1_in_rule__MetaSql__Group_0_2__015340 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__MetaSql__Group_0_2__0__Impl15367 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_0_2__1__Impl_in_rule__MetaSql__Group_0_2__115396 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_0_2_1_in_rule__MetaSql__Group_0_2__1__Impl15423 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__0__Impl_in_rule__MetaSql__Group_1__015457 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__1_in_rule__MetaSql__Group_1__015460 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__TypeAssignment_1_0_in_rule__MetaSql__Group_1__0__Impl15487 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__1__Impl_in_rule__MetaSql__Group_1__115517 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__2_in_rule__MetaSql__Group_1__115520 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__CondAssignment_1_1_in_rule__MetaSql__Group_1__1__Impl15547 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__2__Impl_in_rule__MetaSql__Group_1__215577 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__3_in_rule__MetaSql__Group_1__215580 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__MetaSql__Group_1__2__Impl15607 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__3__Impl_in_rule__MetaSql__Group_1__315636 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__4_in_rule__MetaSql__Group_1__315639 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_1_3_in_rule__MetaSql__Group_1__3__Impl15666 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1__4__Impl_in_rule__MetaSql__Group_1__415696 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1_4__0_in_rule__MetaSql__Group_1__4__Impl15723 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1_4__0__Impl_in_rule__MetaSql__Group_1_4__015764 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1_4__1_in_rule__MetaSql__Group_1_4__015767 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__MetaSql__Group_1_4__0__Impl15794 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_1_4__1__Impl_in_rule__MetaSql__Group_1_4__115823 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_1_4_1_in_rule__MetaSql__Group_1_4__1__Impl15850 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2__0__Impl_in_rule__MetaSql__Group_2__015884 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2__1_in_rule__MetaSql__Group_2__015887 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__TypeAssignment_2_0_in_rule__MetaSql__Group_2__0__Impl15914 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2__1__Impl_in_rule__MetaSql__Group_2__115944 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2__2_in_rule__MetaSql__Group_2__115947 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_2_1_in_rule__MetaSql__Group_2__1__Impl15974 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2__2__Impl_in_rule__MetaSql__Group_2__216004 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2_2__0_in_rule__MetaSql__Group_2__2__Impl16031 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2_2__0__Impl_in_rule__MetaSql__Group_2_2__016068 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2_2__1_in_rule__MetaSql__Group_2_2__016071 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__MetaSql__Group_2_2__0__Impl16098 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_2_2__1__Impl_in_rule__MetaSql__Group_2_2__116127 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_2_2_1_in_rule__MetaSql__Group_2_2__1__Impl16154 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3__0__Impl_in_rule__MetaSql__Group_3__016188 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3__1_in_rule__MetaSql__Group_3__016191 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__TypeAssignment_3_0_in_rule__MetaSql__Group_3__0__Impl16218 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3__1__Impl_in_rule__MetaSql__Group_3__116248 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3__2_in_rule__MetaSql__Group_3__116251 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_3_1_in_rule__MetaSql__Group_3__1__Impl16278 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3__2__Impl_in_rule__MetaSql__Group_3__216308 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3_2__0_in_rule__MetaSql__Group_3__2__Impl16335 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3_2__0__Impl_in_rule__MetaSql__Group_3_2__016372 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3_2__1_in_rule__MetaSql__Group_3_2__016375 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__MetaSql__Group_3_2__0__Impl16402 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_3_2__1__Impl_in_rule__MetaSql__Group_3_2__116431 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_3_2_1_in_rule__MetaSql__Group_3_2__1__Impl16458 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__0__Impl_in_rule__MetaSql__Group_4__016492 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__1_in_rule__MetaSql__Group_4__016495 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__TypeAssignment_4_0_in_rule__MetaSql__Group_4__0__Impl16522 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__1__Impl_in_rule__MetaSql__Group_4__116552 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__2_in_rule__MetaSql__Group_4__116555 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__MetaSql__Group_4__1__Impl16583 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__2__Impl_in_rule__MetaSql__Group_4__216614 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__3_in_rule__MetaSql__Group_4__216617 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__FtypeAssignment_4_2_in_rule__MetaSql__Group_4__2__Impl16644 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_4__3__Impl_in_rule__MetaSql__Group_4__316674 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__IfsAssignment_4_3_in_rule__MetaSql__Group_4__3__Impl16701 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_5__0__Impl_in_rule__MetaSql__Group_5__016739 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_5__1_in_rule__MetaSql__Group_5__016742 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__TypeAssignment_5_0_in_rule__MetaSql__Group_5__0__Impl16769 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_5__1__Impl_in_rule__MetaSql__Group_5__116799 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_5__2_in_rule__MetaSql__Group_5__116802 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NUMBER_in_rule__MetaSql__Group_5__1__Impl16829 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__Group_5__2__Impl_in_rule__MetaSql__Group_5__216858 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MetaSql__OrdAssignment_5_2_in_rule__MetaSql__Group_5__2__Impl16885 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_1__0__Impl_in_rule__IfSqlFragment__Group_1__016921 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_1__1_in_rule__IfSqlFragment__Group_1__016924 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_AT_in_rule__IfSqlFragment__Group_1__0__Impl16951 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_1__1__Impl_in_rule__IfSqlFragment__Group_1__116980 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__ColAssignment_1_1_in_rule__IfSqlFragment__Group_1__1__Impl17007 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_2__0__Impl_in_rule__IfSqlFragment__Group_2__017041 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_2__1_in_rule__IfSqlFragment__Group_2__017044 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__IfSqlFragment__Group_2__0__Impl17071 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_2__1__Impl_in_rule__IfSqlFragment__Group_2__117100 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__CnstAssignment_2_1_in_rule__IfSqlFragment__Group_2__1__Impl17127 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_3__0__Impl_in_rule__IfSqlFragment__Group_3__017161 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_3__1_in_rule__IfSqlFragment__Group_3__017164 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__IfSqlFragment__Group_3__0__Impl17191 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_3__1__Impl_in_rule__IfSqlFragment__Group_3__117220 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__IdentAssignment_3_1_in_rule__IfSqlFragment__Group_3__1__Impl17247 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_4__0__Impl_in_rule__IfSqlFragment__Group_4__017281 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_4__1_in_rule__IfSqlFragment__Group_4__017284 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__IfSqlFragment__Group_4__0__Impl17311 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_4__1__Impl_in_rule__IfSqlFragment__Group_4__117340 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Alternatives_4_1_in_rule__IfSqlFragment__Group_4__1__Impl17367 = 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__017401 = 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__017404 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__IfSqlFragment__Group_4_1_0__0__Impl17431 = 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__117460 = 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__Impl17487 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_5__0__Impl_in_rule__IfSqlFragment__Group_5__017521 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_5__1_in_rule__IfSqlFragment__Group_5__017524 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LBRACE_in_rule__IfSqlFragment__Group_5__0__Impl17551 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_5__1__Impl_in_rule__IfSqlFragment__Group_5__117580 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_5__2_in_rule__IfSqlFragment__Group_5__117583 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__MetaAssignment_5_1_in_rule__IfSqlFragment__Group_5__1__Impl17610 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlFragment__Group_5__2__Impl_in_rule__IfSqlFragment__Group_5__217640 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RBRACE_in_rule__IfSqlFragment__Group_5__2__Impl17667 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Group__0__Impl_in_rule__IfSqlValue__Group__017702 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Group__1_in_rule__IfSqlValue__Group__017705 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Alternatives_0_in_rule__IfSqlValue__Group__0__Impl17732 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Group__1__Impl_in_rule__IfSqlValue__Group__117762 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Group_1__0_in_rule__IfSqlValue__Group__1__Impl17789 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Group_1__0__Impl_in_rule__IfSqlValue__Group_1__017824 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Alternatives_1_0_in_rule__IfSqlValue__Group_1__0__Impl17851 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0__0__Impl_in_rule__IfMetaSql__Group_0__017883 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0__1_in_rule__IfMetaSql__Group_0__017886 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__IfMetaSql__Group_0__0__Impl17913 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0__1__Impl_in_rule__IfMetaSql__Group_0__117942 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0__2_in_rule__IfMetaSql__Group_0__117945 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_0_1_in_rule__IfMetaSql__Group_0__1__Impl17972 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0__2__Impl_in_rule__IfMetaSql__Group_0__218002 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0_2__0_in_rule__IfMetaSql__Group_0__2__Impl18029 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0_2__0__Impl_in_rule__IfMetaSql__Group_0_2__018066 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0_2__1_in_rule__IfMetaSql__Group_0_2__018069 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__IfMetaSql__Group_0_2__0__Impl18096 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_0_2__1__Impl_in_rule__IfMetaSql__Group_0_2__118125 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_0_2_1_in_rule__IfMetaSql__Group_0_2__1__Impl18152 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__0__Impl_in_rule__IfMetaSql__Group_1__018186 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__1_in_rule__IfMetaSql__Group_1__018189 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__TypeAssignment_1_0_in_rule__IfMetaSql__Group_1__0__Impl18216 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__1__Impl_in_rule__IfMetaSql__Group_1__118246 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__2_in_rule__IfMetaSql__Group_1__118249 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__CondAssignment_1_1_in_rule__IfMetaSql__Group_1__1__Impl18276 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__2__Impl_in_rule__IfMetaSql__Group_1__218306 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__3_in_rule__IfMetaSql__Group_1__218309 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__IfMetaSql__Group_1__2__Impl18336 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__3__Impl_in_rule__IfMetaSql__Group_1__318365 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__4_in_rule__IfMetaSql__Group_1__318368 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_1_3_in_rule__IfMetaSql__Group_1__3__Impl18395 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1__4__Impl_in_rule__IfMetaSql__Group_1__418425 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1_4__0_in_rule__IfMetaSql__Group_1__4__Impl18452 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1_4__0__Impl_in_rule__IfMetaSql__Group_1_4__018493 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1_4__1_in_rule__IfMetaSql__Group_1_4__018496 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__IfMetaSql__Group_1_4__0__Impl18523 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_1_4__1__Impl_in_rule__IfMetaSql__Group_1_4__118552 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_1_4_1_in_rule__IfMetaSql__Group_1_4__1__Impl18579 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2__0__Impl_in_rule__IfMetaSql__Group_2__018613 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2__1_in_rule__IfMetaSql__Group_2__018616 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__TypeAssignment_2_0_in_rule__IfMetaSql__Group_2__0__Impl18643 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2__1__Impl_in_rule__IfMetaSql__Group_2__118673 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2__2_in_rule__IfMetaSql__Group_2__118676 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_2_1_in_rule__IfMetaSql__Group_2__1__Impl18703 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2__2__Impl_in_rule__IfMetaSql__Group_2__218733 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2_2__0_in_rule__IfMetaSql__Group_2__2__Impl18760 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2_2__0__Impl_in_rule__IfMetaSql__Group_2_2__018797 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2_2__1_in_rule__IfMetaSql__Group_2_2__018800 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__IfMetaSql__Group_2_2__0__Impl18827 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_2_2__1__Impl_in_rule__IfMetaSql__Group_2_2__118856 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_2_2_1_in_rule__IfMetaSql__Group_2_2__1__Impl18883 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3__0__Impl_in_rule__IfMetaSql__Group_3__018917 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3__1_in_rule__IfMetaSql__Group_3__018920 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__TypeAssignment_3_0_in_rule__IfMetaSql__Group_3__0__Impl18947 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3__1__Impl_in_rule__IfMetaSql__Group_3__118977 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3__2_in_rule__IfMetaSql__Group_3__118980 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_3_1_in_rule__IfMetaSql__Group_3__1__Impl19007 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3__2__Impl_in_rule__IfMetaSql__Group_3__219037 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3_2__0_in_rule__IfMetaSql__Group_3__2__Impl19064 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3_2__0__Impl_in_rule__IfMetaSql__Group_3_2__019101 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3_2__1_in_rule__IfMetaSql__Group_3_2__019104 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__IfMetaSql__Group_3_2__0__Impl19131 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__Group_3_2__1__Impl_in_rule__IfMetaSql__Group_3_2__119160 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfMetaSql__IfsAssignment_3_2_1_in_rule__IfMetaSql__Group_3_2__1__Impl19187 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__0__Impl_in_rule__IfSqlCond__Group__019221 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__1_in_rule__IfSqlCond__Group__019224 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__IfSqlCond__Group__0__Impl19252 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__1__Impl_in_rule__IfSqlCond__Group__119283 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__2_in_rule__IfSqlCond__Group__119286 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Bool1Assignment_1_in_rule__IfSqlCond__Group__1__Impl19313 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__2__Impl_in_rule__IfSqlCond__Group__219343 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__3_in_rule__IfSqlCond__Group__219346 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__IfSqlCond__Group__2__Impl19374 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group__3__Impl_in_rule__IfSqlCond__Group__319405 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__0_in_rule__IfSqlCond__Group__3__Impl19432 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__0__Impl_in_rule__IfSqlCond__Group_3__019471 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__1_in_rule__IfSqlCond__Group_3__019474 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__OperAssignment_3_0_in_rule__IfSqlCond__Group_3__0__Impl19501 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__1__Impl_in_rule__IfSqlCond__Group_3__119531 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__2_in_rule__IfSqlCond__Group_3__119534 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__IfSqlCond__Group_3__1__Impl19562 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__2__Impl_in_rule__IfSqlCond__Group_3__219593 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__3_in_rule__IfSqlCond__Group_3__219596 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Bool2Assignment_3_2_in_rule__IfSqlCond__Group_3__2__Impl19623 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__Group_3__3__Impl_in_rule__IfSqlCond__Group_3__319653 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__IfSqlCond__Group_3__3__Impl19681 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_0__0__Impl_in_rule__IfSqlBool__Group_0__019720 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_0__1_in_rule__IfSqlBool__Group_0__019723 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__NotAssignment_0_0_in_rule__IfSqlBool__Group_0__0__Impl19750 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_0__1__Impl_in_rule__IfSqlBool__Group_0__119781 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_0__2_in_rule__IfSqlBool__Group_0__119784 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__IfSqlBool__Group_0__1__Impl19811 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_0__2__Impl_in_rule__IfSqlBool__Group_0__219840 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__CnstAssignment_0_2_in_rule__IfSqlBool__Group_0__2__Impl19867 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_1__0__Impl_in_rule__IfSqlBool__Group_1__019903 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_1__1_in_rule__IfSqlBool__Group_1__019906 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__NotAssignment_1_0_in_rule__IfSqlBool__Group_1__0__Impl19933 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_1__1__Impl_in_rule__IfSqlBool__Group_1__119964 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_1__2_in_rule__IfSqlBool__Group_1__119967 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__IfSqlBool__Group_1__1__Impl19994 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_1__2__Impl_in_rule__IfSqlBool__Group_1__220023 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__IdentAssignment_1_2_in_rule__IfSqlBool__Group_1__2__Impl20050 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__0__Impl_in_rule__IfSqlBool__Group_2__020086 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__1_in_rule__IfSqlBool__Group_2__020089 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__NotAssignment_2_0_in_rule__IfSqlBool__Group_2__0__Impl20116 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__1__Impl_in_rule__IfSqlBool__Group_2__120147 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__2_in_rule__IfSqlBool__Group_2__120150 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__IfSqlBool__Group_2__1__Impl20177 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__2__Impl_in_rule__IfSqlBool__Group_2__220206 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__3_in_rule__IfSqlBool__Group_2__220209 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__CondAssignment_2_2_in_rule__IfSqlBool__Group_2__2__Impl20236 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlBool__Group_2__3__Impl_in_rule__IfSqlBool__Group_2__320266 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__IfSqlBool__Group_2__3__Impl20293 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_1__0__Impl_in_rule__OrdSql2__Group_1__020330 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_1__1_in_rule__OrdSql2__Group_1__020333 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__OrdSql2__Group_1__0__Impl20360 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_1__1__Impl_in_rule__OrdSql2__Group_1__120389 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__CnstAssignment_1_1_in_rule__OrdSql2__Group_1__1__Impl20416 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_2__0__Impl_in_rule__OrdSql2__Group_2__020450 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_2__1_in_rule__OrdSql2__Group_2__020453 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COLON_in_rule__OrdSql2__Group_2__0__Impl20480 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_2__1__Impl_in_rule__OrdSql2__Group_2__120509 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__IdentAssignment_2_1_in_rule__OrdSql2__Group_2__1__Impl20536 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_3__0__Impl_in_rule__OrdSql2__Group_3__020570 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_3__1_in_rule__OrdSql2__Group_3__020573 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_PERCENT_in_rule__OrdSql2__Group_3__0__Impl20600 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__Group_3__1__Impl_in_rule__OrdSql2__Group_3__120629 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSql2__DbcolAssignment_3_1_in_rule__OrdSql2__Group_3__1__Impl20656 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Group__0__Impl_in_rule__OrdSqlValue__Group__020690 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Group__1_in_rule__OrdSqlValue__Group__020693 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Alternatives_0_in_rule__OrdSqlValue__Group__0__Impl20720 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Group__1__Impl_in_rule__OrdSqlValue__Group__120750 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Group_1__0_in_rule__OrdSqlValue__Group__1__Impl20777 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Group_1__0__Impl_in_rule__OrdSqlValue__Group_1__020812 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Alternatives_1_0_in_rule__OrdSqlValue__Group_1__0__Impl20839 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group__0__Impl_in_rule__Column__Group__020871 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group__1_in_rule__Column__Group__020874 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__NameAssignment_0_in_rule__Column__Group__0__Impl20901 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group__1__Impl_in_rule__Column__Group__120931 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1__0_in_rule__Column__Group__1__Impl20958 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1__0__Impl_in_rule__Column__Group_1__020993 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1__1_in_rule__Column__Group_1__020996 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__Column__Group_1__0__Impl21024 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1__1__Impl_in_rule__Column__Group_1__121054 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1__2_in_rule__Column__Group_1__121057 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__TypeAssignment_1_1_in_rule__Column__Group_1__1__Impl21084 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1__2__Impl_in_rule__Column__Group_1__221115 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1_2__0_in_rule__Column__Group_1__2__Impl21142 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1_2__0__Impl_in_rule__Column__Group_1_2__021179 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1_2__1_in_rule__Column__Group_1_2__021182 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__Column__Group_1_2__0__Impl21210 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1_2__1__Impl_in_rule__Column__Group_1_2__121240 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__ValsAssignment_1_2_1_in_rule__Column__Group_1_2__1__Impl21267 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group__0__Impl_in_rule__Constant__Group__021301 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group__1_in_rule__Constant__Group__021304 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__CaseAssignment_0_in_rule__Constant__Group__0__Impl21331 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group__1__Impl_in_rule__Constant__Group__121362 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group__2_in_rule__Constant__Group__121365 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__NameAssignment_1_in_rule__Constant__Group__1__Impl21392 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group__2__Impl_in_rule__Constant__Group__221422 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2__0_in_rule__Constant__Group__2__Impl21449 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2__0__Impl_in_rule__Constant__Group_2__021486 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2__1_in_rule__Constant__Group_2__021489 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__Constant__Group_2__0__Impl21517 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2__1__Impl_in_rule__Constant__Group_2__121547 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2__2_in_rule__Constant__Group_2__121550 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__TypeAssignment_2_1_in_rule__Constant__Group_2__1__Impl21577 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2__2__Impl_in_rule__Constant__Group_2__221608 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2_2__0_in_rule__Constant__Group_2__2__Impl21635 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2_2__0__Impl_in_rule__Constant__Group_2_2__021672 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2_2__1_in_rule__Constant__Group_2_2__021675 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__Constant__Group_2_2__0__Impl21703 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2_2__1__Impl_in_rule__Constant__Group_2_2__121733 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__ValsAssignment_2_2_1_in_rule__Constant__Group_2_2__1__Impl21760 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__0__Impl_in_rule__Identifier__Group__021794 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__1_in_rule__Identifier__Group__021797 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__ModeAssignment_0_in_rule__Identifier__Group__0__Impl21824 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__1__Impl_in_rule__Identifier__Group__121855 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__2_in_rule__Identifier__Group__121858 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__CaseAssignment_1_in_rule__Identifier__Group__1__Impl21885 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__2__Impl_in_rule__Identifier__Group__221916 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__3_in_rule__Identifier__Group__221919 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__NameAssignment_2_in_rule__Identifier__Group__2__Impl21946 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group__3__Impl_in_rule__Identifier__Group__321976 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3__0_in_rule__Identifier__Group__3__Impl22003 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3__0__Impl_in_rule__Identifier__Group_3__022042 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3__1_in_rule__Identifier__Group_3__022045 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__Identifier__Group_3__0__Impl22073 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3__1__Impl_in_rule__Identifier__Group_3__122103 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3__2_in_rule__Identifier__Group_3__122106 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__TypeAssignment_3_1_in_rule__Identifier__Group_3__1__Impl22133 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3__2__Impl_in_rule__Identifier__Group_3__222164 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3_2__0_in_rule__Identifier__Group_3__2__Impl22191 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3_2__0__Impl_in_rule__Identifier__Group_3_2__022228 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3_2__1_in_rule__Identifier__Group_3_2__022231 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__Identifier__Group_3_2__0__Impl22259 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3_2__1__Impl_in_rule__Identifier__Group_3_2__122289 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__ValsAssignment_3_2_1_in_rule__Identifier__Group_3_2__1__Impl22316 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__0__Impl_in_rule__MappingRule__Group__022350 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__1_in_rule__MappingRule__Group__022353 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__NameAssignment_0_in_rule__MappingRule__Group__0__Impl22380 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__1__Impl_in_rule__MappingRule__Group__122410 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__2_in_rule__MappingRule__Group__122413 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__MappingRule__Group__1__Impl22440 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__2__Impl_in_rule__MappingRule__Group__222469 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__3_in_rule__MappingRule__Group__222472 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__TypeAssignment_2_in_rule__MappingRule__Group__2__Impl22499 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__3__Impl_in_rule__MappingRule__Group__322529 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__4_in_rule__MappingRule__Group__322532 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group_3__0_in_rule__MappingRule__Group__3__Impl22559 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__4__Impl_in_rule__MappingRule__Group__422590 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__5_in_rule__MappingRule__Group__422593 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__MappingRule__Group__4__Impl22620 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__5__Impl_in_rule__MappingRule__Group__522649 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__6_in_rule__MappingRule__Group__522652 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__MappingRule__Group__5__Impl22679 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__6__Impl_in_rule__MappingRule__Group__622708 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__7_in_rule__MappingRule__Group__622711 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__MappingAssignment_6_in_rule__MappingRule__Group__6__Impl22738 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group__7__Impl_in_rule__MappingRule__Group__722768 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__MappingRule__Group__7__Impl22795 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group_3__0__Impl_in_rule__MappingRule__Group_3__022840 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group_3__1_in_rule__MappingRule__Group_3__022843 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__MappingRule__Group_3__0__Impl22870 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__Group_3__1__Impl_in_rule__MappingRule__Group_3__122899 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingRule__FiltersAssignment_3_1_in_rule__MappingRule__Group_3__1__Impl22926 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__0__Impl_in_rule__Mapping__Group__022960 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__1_in_rule__Mapping__Group__022963 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Mapping__Group__0__Impl22991 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__1__Impl_in_rule__Mapping__Group__123022 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__2_in_rule__Mapping__Group__123025 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__MappingItemsAssignment_1_in_rule__Mapping__Group__1__Impl23052 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__2__Impl_in_rule__Mapping__Group__223082 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__3_in_rule__Mapping__Group__223085 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group_2__0_in_rule__Mapping__Group__2__Impl23112 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group__3__Impl_in_rule__Mapping__Group__323143 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Mapping__Group__3__Impl23171 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group_2__0__Impl_in_rule__Mapping__Group_2__023210 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group_2__1_in_rule__Mapping__Group_2__023213 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Mapping__Group_2__0__Impl23243 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_WS_in_rule__Mapping__Group_2__0__Impl23256 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__Group_2__1__Impl_in_rule__Mapping__Group_2__123289 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Mapping__MappingItemsAssignment_2_1_in_rule__Mapping__Group_2__1__Impl23316 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group__0__Impl_in_rule__MappingItem__Group__023350 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group__1_in_rule__MappingItem__Group__023353 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__ColAssignment_0_in_rule__MappingItem__Group__0__Impl23380 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group__1__Impl_in_rule__MappingItem__Group__123410 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1__0_in_rule__MappingItem__Group__1__Impl23437 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1__0__Impl_in_rule__MappingItem__Group_1__023472 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1__1_in_rule__MappingItem__Group_1__023475 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__MappingItem__Group_1__0__Impl23502 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1__1__Impl_in_rule__MappingItem__Group_1__123531 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1__2_in_rule__MappingItem__Group_1__123534 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__TypeAssignment_1_1_in_rule__MappingItem__Group_1__1__Impl23561 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1__2__Impl_in_rule__MappingItem__Group_1__223592 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1_2__0_in_rule__MappingItem__Group_1__2__Impl23619 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1_2__0__Impl_in_rule__MappingItem__Group_1_2__023656 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1_2__1_in_rule__MappingItem__Group_1_2__023659 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STRING_in_rule__MappingItem__Group_1_2__0__Impl23686 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__Group_1_2__1__Impl_in_rule__MappingItem__Group_1_2__123715 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__AttrAssignment_1_2_1_in_rule__MappingItem__Group_1_2__1__Impl23742 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group__0__Impl_in_rule__MappingColumn__Group__023776 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group__1_in_rule__MappingColumn__Group__023779 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__NameAssignment_0_in_rule__MappingColumn__Group__0__Impl23806 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group__1__Impl_in_rule__MappingColumn__Group__123836 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group_1__0_in_rule__MappingColumn__Group__1__Impl23863 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group_1__0__Impl_in_rule__MappingColumn__Group_1__023898 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group_1__1_in_rule__MappingColumn__Group_1__023901 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_CARET_in_rule__MappingColumn__Group_1__0__Impl23928 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__Group_1__1__Impl_in_rule__MappingColumn__Group_1__123957 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__ValsAssignment_1_1_in_rule__MappingColumn__Group_1__1__Impl23984 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__0__Impl_in_rule__OptionalFeature__Group__024018 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__1_in_rule__OptionalFeature__Group__024021 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__NameAssignment_0_in_rule__OptionalFeature__Group__0__Impl24048 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__1__Impl_in_rule__OptionalFeature__Group__124078 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__2_in_rule__OptionalFeature__Group__124081 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_LPAREN_in_rule__OptionalFeature__Group__1__Impl24108 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__2__Impl_in_rule__OptionalFeature__Group__224137 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__3_in_rule__OptionalFeature__Group__224140 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__TypeAssignment_2_in_rule__OptionalFeature__Group__2__Impl24167 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__3__Impl_in_rule__OptionalFeature__Group__324197 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__4_in_rule__OptionalFeature__Group__324200 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group_3__0_in_rule__OptionalFeature__Group__3__Impl24227 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__4__Impl_in_rule__OptionalFeature__Group__424258 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__5_in_rule__OptionalFeature__Group__424261 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_RPAREN_in_rule__OptionalFeature__Group__4__Impl24288 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__5__Impl_in_rule__OptionalFeature__Group__524317 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__6_in_rule__OptionalFeature__Group__524320 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__OptionalFeature__Group__5__Impl24347 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__6__Impl_in_rule__OptionalFeature__Group__624376 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__7_in_rule__OptionalFeature__Group__624379 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__OptionAssignment_6_in_rule__OptionalFeature__Group__6__Impl24406 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group__7__Impl_in_rule__OptionalFeature__Group__724436 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_SEMICOLON_in_rule__OptionalFeature__Group__7__Impl24463 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group_3__0__Impl_in_rule__OptionalFeature__Group_3__024508 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group_3__1_in_rule__OptionalFeature__Group_3__024511 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_COMMA_in_rule__OptionalFeature__Group_3__0__Impl24538 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__Group_3__1__Impl_in_rule__OptionalFeature__Group_3__124567 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OptionalFeature__FiltersAssignment_3_1_in_rule__OptionalFeature__Group_3__1__Impl24594 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOptionalFeature_in_rule__Artifacts__FeaturesAssignment_1_0_024633 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMetaStatement_in_rule__Artifacts__StatementsAssignment_1_1_024664 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingRule_in_rule__Artifacts__MappingsAssignment_1_2_024695 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoDefinition_in_rule__Artifacts__PojosAssignment_1_3_024726 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePojoUsage_in_rule__Artifacts__UsagesAssignment_1_4_024757 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleProperty_in_rule__Artifacts__PropertiesAssignment_1_5_024788 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableDefinition_in_rule__Artifacts__TablesAssignment_1_6_024819 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleTableUsage_in_rule__Artifacts__TableUsagesAssignment_1_7_024850 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_47_in_rule__Property__NameAssignment_0_0_024886 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__Property__DoResolvePojoAssignment_0_0_224925 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_48_in_rule__Property__NameAssignment_0_1_024961 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_ON_OFF_in_rule__Property__DoResolveDbAssignment_0_1_225000 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_49_in_rule__Property__NameAssignment_0_2_025036 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_rule__Property__DbUrlAssignment_0_2_225075 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_50_in_rule__Property__NameAssignment_0_3_025111 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_rule__Property__DbUsernameAssignment_0_3_225150 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_51_in_rule__Property__NameAssignment_0_4_025186 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_rule__Property__DbPasswordAssignment_0_4_225225 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_52_in_rule__Property__NameAssignment_0_5_025261 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_rule__Property__DbSchemaAssignment_0_5_225300 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_53_in_rule__Property__NameAssignment_0_6_025336 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rulePropertyValue_in_rule__Property__DbDriverAssignment_0_6_225375 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__PojoDefinition__NameAssignment_125406 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__PojoDefinition__ClassAlternatives_2_0_in_rule__PojoDefinition__ClassAssignment_225437 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ColumnUsage__StatementAssignment_125474 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ColumnUsage__PojoAssignment_225513 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__IdentifierUsage__StatementAssignment_125552 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__IdentifierUsage__PojoAssignment_225591 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ConstantUsage__StatementAssignment_125630 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__ConstantUsage__PojoAssignment_225669 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingUsage__StatementAssignment_125708 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingUsage__PojoAssignment_225747 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__TableDefinition__NameAssignment_125782 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__TableDefinition__TableAssignment_225813 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__TableUsage__StatementAssignment_125848 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__TableUsage__TableAssignment_225887 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__TableUsage__PrefixAssignment_3_125922 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MetaStatement__NameAssignment_025953 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_STATEMEN_TYPE_in_rule__MetaStatement__TypeAssignment_225984 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MetaStatement__FiltersAssignment_3_126015 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSql_in_rule__MetaStatement__StatementAssignment_626046 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlFragment_in_rule__Sql__SqlsAssignment26077 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleSqlValue_in_rule__SqlFragment__ValueAssignment_026108 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumn_in_rule__SqlFragment__ColAssignment_1_126139 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstant_in_rule__SqlFragment__CnstAssignment_2_126170 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifier_in_rule__SqlFragment__IdentAssignment_3_126201 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMetaSql_in_rule__SqlFragment__MetaAssignment_4_126232 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseTable_in_rule__SqlFragment__DbtabAssignment_5_1_0_126263 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseColumn_in_rule__SqlFragment__DbcolAssignment_5_1_126294 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_0_126325 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_0_2_126356 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__MetaSql__TypeAssignment_1_026387 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlCond_in_rule__MetaSql__CondAssignment_1_126418 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_1_326449 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_1_4_126480 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__MetaSql__TypeAssignment_2_026511 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_2_126542 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_2_2_126573 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__MetaSql__TypeAssignment_3_026604 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_3_126635 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_3_2_126666 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_EQUALS_in_rule__MetaSql__TypeAssignment_4_026697 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MetaSql__FtypeAssignment_4_226728 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__MetaSql__IfsAssignment_4_326759 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_HASH_in_rule__MetaSql__TypeAssignment_5_026790 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSql_in_rule__MetaSql__OrdAssignment_5_226821 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlFragment_in_rule__IfSql__SqlsAssignment26852 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlValue_in_rule__IfSqlFragment__ValueAssignment_026883 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleColumn_in_rule__IfSqlFragment__ColAssignment_1_126914 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstant_in_rule__IfSqlFragment__CnstAssignment_2_126945 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifier_in_rule__IfSqlFragment__IdentAssignment_3_126976 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseTable_in_rule__IfSqlFragment__DbtabAssignment_4_1_0_127007 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseColumn_in_rule__IfSqlFragment__DbcolAssignment_4_1_127038 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfMetaSql_in_rule__IfSqlFragment__MetaAssignment_5_127069 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_0_127100 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_0_2_127131 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_QUESTI_in_rule__IfMetaSql__TypeAssignment_1_027162 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlCond_in_rule__IfMetaSql__CondAssignment_1_127193 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_1_327224 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_1_4_127255 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BAND_in_rule__IfMetaSql__TypeAssignment_2_027286 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_2_127317 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_2_2_127348 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_BOR_in_rule__IfMetaSql__TypeAssignment_3_027379 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_3_127410 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSql_in_rule__IfMetaSql__IfsAssignment_3_2_127441 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlBool_in_rule__IfSqlCond__Bool1Assignment_127472 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlCond__OperAlternatives_3_0_0_in_rule__IfSqlCond__OperAssignment_3_027503 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlBool_in_rule__IfSqlCond__Bool2Assignment_3_227536 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__IfSqlBool__NotAssignment_0_027567 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstant_in_rule__IfSqlBool__CnstAssignment_0_227598 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__IfSqlBool__NotAssignment_1_027629 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifier_in_rule__IfSqlBool__IdentAssignment_1_227660 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_NOT_in_rule__IfSqlBool__NotAssignment_2_027691 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIfSqlCond_in_rule__IfSqlBool__CondAssignment_2_227722 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSql2_in_rule__OrdSql__SqlsAssignment27753 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleOrdSqlValue_in_rule__OrdSql2__ValueAssignment_027784 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleConstant_in_rule__OrdSql2__CnstAssignment_1_127815 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleIdentifier_in_rule__OrdSql2__IdentAssignment_2_127846 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleDatabaseColumn_in_rule__OrdSql2__DbcolAssignment_3_127877 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__NameAlternatives_0_0_in_rule__Column__NameAssignment_027908 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Column__TypeAssignment_1_127941 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__ValsAlternatives_1_2_1_0_in_rule__Column__ValsAssignment_1_2_127972 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__CaseAlternatives_0_0_in_rule__Constant__CaseAssignment_028005 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__NameAlternatives_1_0_in_rule__Constant__NameAssignment_128038 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Constant__TypeAssignment_2_128071 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__ValsAlternatives_2_2_1_0_in_rule__Constant__ValsAssignment_2_2_128102 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__ModeAlternatives_0_0_in_rule__Identifier__ModeAssignment_028135 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__CaseAlternatives_1_0_in_rule__Identifier__CaseAssignment_128168 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__NameAlternatives_2_0_in_rule__Identifier__NameAssignment_228201 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__Identifier__TypeAssignment_3_128234 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__ValsAlternatives_3_2_1_0_in_rule__Identifier__ValsAssignment_3_2_128265 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseColumn__NameAlternatives_0_in_rule__DatabaseColumn__NameAssignment28298 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__DatabaseTable__NameAlternatives_0_in_rule__DatabaseTable__NameAssignment28331 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingRule__NameAssignment_028364 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_MAPPING_TYPE_in_rule__MappingRule__TypeAssignment_228395 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingRule__FiltersAssignment_3_128426 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMapping_in_rule__MappingRule__MappingAssignment_628457 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingItem_in_rule__Mapping__MappingItemsAssignment_128488 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingItem_in_rule__Mapping__MappingItemsAssignment_2_128519 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingItem__ColAlternatives_0_0_in_rule__MappingItem__ColAssignment_028550 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__MappingItem__TypeAssignment_1_128583 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleMappingColumn_in_rule__MappingItem__AttrAssignment_1_2_128614 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__NameAlternatives_0_0_in_rule__MappingColumn__NameAssignment_028645 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__MappingColumn__ValsAlternatives_1_1_0_in_rule__MappingColumn__ValsAssignment_1_128678 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__OptionalFeature__NameAssignment_028711 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_OPTION_TYPE_in_rule__OptionalFeature__TypeAssignment_228742 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_RULE_IDENT_in_rule__OptionalFeature__FiltersAssignment_3_128773 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_ruleFeatureValue_in_rule__OptionalFeature__OptionAssignment_628804 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__SqlValue__Group_1__0_in_synpred335_InternalProcessorDsl15060 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__IfSqlValue__Group_1__0_in_synpred341_InternalProcessorDsl17789 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__OrdSqlValue__Group_1__0_in_synpred354_InternalProcessorDsl20777 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1__0_in_synpred355_InternalProcessorDsl20958 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__TypeAssignment_1_1_in_synpred356_InternalProcessorDsl21084 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Column__Group_1_2__0_in_synpred357_InternalProcessorDsl21142 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2__0_in_synpred359_InternalProcessorDsl21449 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__TypeAssignment_2_1_in_synpred360_InternalProcessorDsl21577 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Constant__Group_2_2__0_in_synpred361_InternalProcessorDsl21635 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3__0_in_synpred364_InternalProcessorDsl22003 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__TypeAssignment_3_1_in_synpred365_InternalProcessorDsl22133 = new BitSet ( new long [ ] { <NUM_LIT> } ) ; public static final BitSet FOLLOW_rule__Identifier__Group_3_2__0_in_synpred366_InternalProcessorDsl22191 = 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_SEMICOLON = <NUM_LIT> ; public static final int RULE_OR = <NUM_LIT> ; public static final int RULE_PERCENT = <NUM_LIT> ; public static final int RULE_OPTION_TYPE = <NUM_LIT> ; public static final int RULE_AND = <NUM_LIT> ; public static final int EOF = - <NUM_LIT:1> ; public static final int RULE_NOT = <NUM_LIT> ; public static final int T__51 = <NUM_LIT> ; public static final int RULE_REST = <NUM_LIT:4> ; public static final int T__52 = <NUM_LIT> ; public static final int T__53 = <NUM_LIT> ; public static final int RULE_NUMBER = <NUM_LIT:7> ; public static final int RULE_LPAREN = <NUM_LIT> ; public static final int RULE_LBRACE = <NUM_LIT:15> ; public static final int RULE_BOR = <NUM_LIT:20> ; public static final int RULE_IDENT_DOT = <NUM_LIT:5> ; 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 RULE_BAND = <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 RULE_RBRACE = <NUM_LIT:16> ; 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_STATEMEN_TYPE = <NUM_LIT:32> ; public static final int RULE_PLUS = <NUM_LIT:12> ; public static final int RULE_COMMA = <NUM_LIT:10> ; public static final int RULE_HASH = <NUM_LIT> ; public static final int RULE_SL_COMMENT = <NUM_LIT> ; public static final int RULE_QUESTI = <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_COLON = <NUM_LIT:8> ; public static final int RULE_MINUS = <NUM_LIT:11> ; public static final int RULE_STRING = <NUM_LIT:9> ; public static final int RULE_ESC_CHAR = <NUM_LIT:30> ; public static final int RULE_IDENT = <NUM_LIT:6> ; public static final int T__39 = <NUM_LIT> ; public static final int RULE_EQUALS = <NUM_LIT:24> ; public static final int RULE_RPAREN = <NUM_LIT> ; 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 static final int RULE_AT = <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 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 . 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> : { 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:20> : { 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:24> : { 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:30> : { mRULE_SEMICOLON ( ) ; } break ; case <NUM_LIT:31> : { mRULE_STRING ( ) ; } break ; case <NUM_LIT:32> : { 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> : { 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>" ; static final String DFA12_eofS = "<STR_LIT>" ; static final String DFA12_minS = "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" + "<STR_LIT>" ; static final String DFA12_maxS = "<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>" ; 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>" } ; 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:c>' ) ) { 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>' ) ) { 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>' ) ) { 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:a>' && LA12_0 <= '<CHAR_LIT:b>' ) || ( LA12_0 >= '<CHAR_LIT:e>' && 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>' ) ) ) { s = <NUM_LIT:15> ; } else if ( ( ( LA12_0 >= '<CHAR_LIT:0>' && LA12_0 <= '<CHAR_LIT:9>' ) ) ) { s = <NUM_LIT:16> ; } else if ( ( LA12_0 == '<STR_LIT:\\>' ) ) { s = <NUM_LIT> ; } else if ( ( LA12_0 == '<CHAR_LIT:/>' ) ) { s = <NUM_LIT> ; } 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> ; } 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: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:30> ; } else if ( ( LA12_0 == '<CHAR_LIT:}>' ) ) { s = <NUM_LIT:31> ; } else if ( ( LA12_0 == '<CHAR_LIT>' ) ) { 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>' ) ) { 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 >= '<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 ; 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 completeProperty_Name ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void completeProperty_DoResolvePojo ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeProperty_DoResolveDb ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeProperty_DbUrl ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeProperty_DbUsername ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeProperty_DbPassword ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeProperty_DbSchema ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) assignment . getTerminal ( ) ) , context , acceptor ) ; } public void completeProperty_DbDriver ( EObject model , Assignment assignment , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { completeRuleCall ( ( ( RuleCall ) 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 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 complete_Artifacts ( EObject model , RuleCall ruleCall , ContentAssistContext context , ICompletionProposalAcceptor acceptor ) { } public void complete_Property ( 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_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_FeatureValue ( 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 ) { } } </s>
<s> package org . sqlproc . dsl . ui ; import org . eclipse . xtext . ui . guice . AbstractGuiceAwareExecutableExtensionFactory ; import org . osgi . framework . Bundle ; import com . google . inject . Injector ; public class ProcessorDslExecutableExtensionFactory extends AbstractGuiceAwareExecutableExtensionFactory { @ Override protected Bundle getBundle ( ) { return org . sqlproc . dsl . ui . internal . ProcessorDslActivator . getInstance ( ) . getBundle ( ) ; } @ Override protected Injector getInjector ( ) { return org . sqlproc . dsl . ui . internal . ProcessorDslActivator . getInstance ( ) . getInjector ( "<STR_LIT>" ) ; } } </s>
<s> package org . sqlproc . engine . model ; public class Movie extends Media { private String urlIMDB ; private Integer playLength ; private Genre category ; public Movie ( ) { } public Movie ( String title , String urlIMDB ) { super ( title ) ; this . urlIMDB = urlIMDB ; } public String getUrlIMDB ( ) { return urlIMDB ; } public Integer getPlayLength ( ) { return playLength ; } public void setPlayLength ( Integer playLength ) { this . playLength = playLength ; } public Genre getCategory ( ) { return category ; } public void setCategory ( Genre category ) { this . category = category ; } public void setUrlIMDB ( String urlIMDB ) { this . urlIMDB = urlIMDB ; } } </s>
<s> package org . sqlproc . engine . model ; import java . math . BigInteger ; import java . util . Date ; import java . util . List ; public class Subscriber { private Long id ; private Date createdDate ; private String createdBy ; private Date lastUpdated ; private String lastUpdatedBy ; private Long version ; private PersonName name ; private List < Contact > contacts ; private Library library ; private List < BillingDetails > billingDetails ; public Subscriber ( ) { } public Long getId ( ) { return id ; } public void setId ( Long id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id ; } public void setId ( BigInteger id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id . longValue ( ) ; } public Date getCreatedDate ( ) { return createdDate ; } public void setCreatedDate ( Date createdDate ) { this . createdDate = createdDate ; } public String getCreatedBy ( ) { return createdBy ; } public void setCreatedBy ( String createdBy ) { this . createdBy = createdBy ; } public Date getLastUpdated ( ) { return lastUpdated ; } public void setLastUpdated ( Date lastUpdated ) { this . lastUpdated = lastUpdated ; } public String getLastUpdatedBy ( ) { return lastUpdatedBy ; } public void setLastUpdatedBy ( String lastUpdatedBy ) { this . lastUpdatedBy = lastUpdatedBy ; } public Long getVersion ( ) { return version ; } public void setVersion ( Long version ) { this . version = version ; } public PersonName getName ( ) { return name ; } public void setName ( PersonName name ) { this . name = name ; } public List < Contact > getContacts ( ) { return contacts ; } public void setContacts ( List < Contact > contacts ) { this . contacts = contacts ; } public Library getLibrary ( ) { return library ; } public void setLibrary ( Library library ) { this . library = library ; } public List < BillingDetails > getBillingDetails ( ) { return billingDetails ; } public void setBillingDetails ( List < BillingDetails > billingDetails ) { this . billingDetails = billingDetails ; } } </s>
<s> package org . sqlproc . engine . model ; public final class PhoneNumber { private final int area ; private final int exch ; private final int ext ; public PhoneNumber ( int area , int exch , int ext ) { this . area = area ; this . exch = exch ; this . ext = ext ; } public int getArea ( ) { return area ; } public int getExch ( ) { return exch ; } public int getExt ( ) { return ext ; } public boolean equals ( Object y ) { if ( y == this ) { return true ; } if ( y == null ) { return false ; } if ( y . getClass ( ) != this . getClass ( ) ) { return false ; } PhoneNumber a = this ; PhoneNumber b = ( PhoneNumber ) y ; return ( a . area == b . area ) && ( a . exch == b . exch ) && ( a . ext == b . ext ) ; } public String toString ( ) { return String . format ( "<STR_LIT>" , area , exch , ext ) ; } public int hashCode ( ) { return <NUM_LIT> * ( area + <NUM_LIT> * exch ) + ext ; } } </s>
<s> package org . sqlproc . engine . model ; public class Engagement { private Long id ; private String role ; private String uuid ; private Person person ; private Media media ; public Engagement ( ) { } public Engagement ( String role , Person person , Media media ) { super ( ) ; this . role = role ; this . person = person ; this . media = media ; } public Long getId ( ) { return id ; } public void setId ( Long id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id ; } public String getRole ( ) { return role ; } public String getUuid ( ) { return uuid ; } public void setUuid ( String uuid ) { this . uuid = uuid ; } public void setRole ( String role ) { this . role = role ; } public Person getPerson ( ) { return person ; } public void setPerson ( Person person ) { if ( ( person != null ) && ( this . person != null ) && ! this . person . equals ( person ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . person = person ; } public Media getMedia ( ) { return media ; } public void setMedia ( Media media ) { if ( ( media != null ) && ( this . media != null ) && ! this . media . equals ( media ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . media = media ; } } </s>
<s> package org . sqlproc . engine . model ; public enum Genre { ACTION , COMEDY , DRAMA , STORY , SCI_FI ; } </s>
<s> package org . sqlproc . engine . model ; import java . util . HashSet ; import java . util . Set ; public class MediaCharacter { private Long id ; private String name ; private Set < Person > playedBy = new HashSet < Person > ( ) ; private Set < Media > existsInMedia = new HashSet < Media > ( ) ; public MediaCharacter ( ) { } public MediaCharacter ( String name ) { super ( ) ; this . name = name ; } public Long getId ( ) { return id ; } public void setId ( Long id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id ; } public String getName ( ) { return name ; } public void setName ( String name ) { this . name = name ; } public Set < Person > getPlayedBy ( ) { return playedBy ; } public void addPlayedBy ( Person playedByElement ) { this . playedBy . add ( playedByElement ) ; } public void removePlayedBy ( Person playedByElement ) { this . playedBy . remove ( playedByElement ) ; } public void removeAllPlayedBy ( ) { this . playedBy . clear ( ) ; } public Set < Media > getExistsInMedia ( ) { return existsInMedia ; } public void addExistsInMedia ( Media existsInMediaElement ) { this . existsInMedia . add ( existsInMediaElement ) ; existsInMediaElement . getMediaCharacters ( ) . add ( ( MediaCharacter ) this ) ; } public void removeExistsInMedia ( Media existsInMediaElement ) { this . existsInMedia . remove ( existsInMediaElement ) ; existsInMediaElement . getMediaCharacters ( ) . remove ( ( MediaCharacter ) this ) ; } public void removeAllExistsInMedia ( ) { for ( Media d : this . existsInMedia ) { d . getMediaCharacters ( ) . remove ( ( MediaCharacter ) this ) ; } this . existsInMedia . clear ( ) ; } } </s>
<s> package org . sqlproc . engine . model ; import java . math . BigInteger ; import java . util . Date ; public abstract class PersonBase { private Long id ; private java . sql . Date birthDate ; private Date createdDate ; private String createdBy ; private Date lastUpdated ; private String lastUpdatedBy ; private Long version ; private Gender sex ; private Ssn ssn ; private PersonName name ; private Contact contact ; private Size clothesSize ; public PersonBase ( ) { } public PersonBase ( Gender sex , Ssn ssn ) { this . sex = sex ; this . ssn = ssn ; } public Long getId ( ) { return id ; } public void setId ( Long id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id ; } public void setId ( BigInteger id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id . longValue ( ) ; } public java . sql . Date getBirthDate ( ) { return birthDate ; } public void setBirthDate ( java . sql . Date birthDate ) { this . birthDate = birthDate ; } public Date getCreatedDate ( ) { return createdDate ; } public void setCreatedDate ( Date createdDate ) { this . createdDate = createdDate ; } public String getCreatedBy ( ) { return createdBy ; } public void setCreatedBy ( String createdBy ) { this . createdBy = createdBy ; } public Date getLastUpdated ( ) { return lastUpdated ; } public void setLastUpdated ( Date lastUpdated ) { this . lastUpdated = lastUpdated ; } public String getLastUpdatedBy ( ) { return lastUpdatedBy ; } public void setLastUpdatedBy ( String lastUpdatedBy ) { this . lastUpdatedBy = lastUpdatedBy ; } public Long getVersion ( ) { return version ; } public void setVersion ( Long version ) { this . version = version ; } public Gender getSex ( ) { return sex ; } public Ssn getSsn ( ) { return ssn ; } public PersonName getName ( ) { return name ; } public void setName ( PersonName name ) { this . name = name ; } public Contact getContact ( ) { return contact ; } public void setContact ( Contact contact ) { this . contact = contact ; } public void setSex ( Gender sex ) { this . sex = sex ; } public void setSsn ( Ssn ssn ) { this . ssn = ssn ; } public Size getClothesSize ( ) { return clothesSize ; } public void setClothesSize ( Size clothesSize ) { this . clothesSize = clothesSize ; } } </s>
<s> package org . sqlproc . engine . model ; public class PersonName { private String first ; private String last ; public PersonName ( ) { } public PersonName ( String first , String last ) { this . first = first ; this . last = last ; } public String getFirst ( ) { return first ; } public String getLast ( ) { return last ; } public void setFirst ( String first ) { this . first = first ; } public void setLast ( String last ) { this . last = last ; } @ Override public String toString ( ) { return "<STR_LIT>" + first + "<STR_LIT>" + last + "<STR_LIT:]>" ; } } </s>
<s> package org . sqlproc . engine . model ; import java . io . Serializable ; import java . util . HashMap ; import java . util . Map ; public enum Size implements Serializable { SMALL ( <NUM_LIT:0> ) , MIDDLE ( <NUM_LIT:1> ) , BIG ( <NUM_LIT:2> ) ; private static Map < Integer , Size > identifierMap = new HashMap < Integer , Size > ( ) ; static { for ( Size value : Size . values ( ) ) { identifierMap . put ( value . getValue ( ) , value ) ; } } private Integer value ; private Size ( Integer value ) { this . value = value ; } public static Size fromValue ( Integer value ) { Size result = identifierMap . get ( value ) ; if ( result == null ) { throw new IllegalArgumentException ( "<STR_LIT>" + value ) ; } return result ; } public Integer getValue ( ) { return value ; } public String getName ( ) { return name ( ) ; } } </s>
<s> package org . sqlproc . engine . model ; import java . util . Date ; import java . util . HashSet ; import java . util . Set ; public abstract class MediaBase { private Long id ; private String title ; private Date createdDate ; private String createdBy ; private Date lastUpdated ; private String lastUpdatedBy ; private Long version ; private Set < PhysicalMedia > physicalMedia = new HashSet < PhysicalMedia > ( ) ; private Set < Engagement > engagements = new HashSet < Engagement > ( ) ; private Set < MediaCharacter > mediaCharacters = new HashSet < MediaCharacter > ( ) ; public MediaBase ( ) { } public MediaBase ( String title ) { super ( ) ; this . title = title ; } public Long getId ( ) { return id ; } public void setId ( Long id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id ; } public String getTitle ( ) { return title ; } public void setTitle ( String title ) { this . title = title ; } public Date getCreatedDate ( ) { return createdDate ; } public void setCreatedDate ( Date createdDate ) { this . createdDate = createdDate ; } public String getCreatedBy ( ) { return createdBy ; } public void setCreatedBy ( String createdBy ) { this . createdBy = createdBy ; } public Date getLastUpdated ( ) { return lastUpdated ; } public void setLastUpdated ( Date lastUpdated ) { this . lastUpdated = lastUpdated ; } public String getLastUpdatedBy ( ) { return lastUpdatedBy ; } public void setLastUpdatedBy ( String lastUpdatedBy ) { this . lastUpdatedBy = lastUpdatedBy ; } public Long getVersion ( ) { return version ; } public void setVersion ( Long version ) { this . version = version ; } public Set < PhysicalMedia > getPhysicalMedia ( ) { return physicalMedia ; } public void addPhysicalMedia ( PhysicalMedia physicalMediaElement ) { this . physicalMedia . add ( physicalMediaElement ) ; physicalMediaElement . getMedia ( ) . add ( ( Media ) this ) ; } public void removePhysicalMedia ( PhysicalMedia physicalMediaElement ) { this . physicalMedia . remove ( physicalMediaElement ) ; physicalMediaElement . getMedia ( ) . remove ( ( Media ) this ) ; } public void removeAllPhysicalMedia ( ) { for ( PhysicalMedia d : this . physicalMedia ) { d . getMedia ( ) . remove ( ( Media ) this ) ; } this . physicalMedia . clear ( ) ; } public Set < Engagement > getEngagements ( ) { return engagements ; } public void addEngagement ( Engagement engagementElement ) { this . engagements . add ( engagementElement ) ; engagementElement . setMedia ( ( Media ) this ) ; } public void removeEngagement ( Engagement engagementElement ) { this . engagements . remove ( engagementElement ) ; engagementElement . setMedia ( null ) ; } public void removeAllEngagements ( ) { for ( Engagement d : this . engagements ) { d . setMedia ( null ) ; } this . engagements . clear ( ) ; } public Set < MediaCharacter > getMediaCharacters ( ) { return mediaCharacters ; } public void addMediaCharacter ( MediaCharacter mediaCharacterElement ) { this . mediaCharacters . add ( mediaCharacterElement ) ; mediaCharacterElement . getExistsInMedia ( ) . add ( ( Media ) this ) ; } public void removeMediaCharacter ( MediaCharacter mediaCharacterElement ) { this . mediaCharacters . remove ( mediaCharacterElement ) ; mediaCharacterElement . getExistsInMedia ( ) . remove ( ( Media ) this ) ; } public void removeAllMediaCharacters ( ) { for ( MediaCharacter d : this . mediaCharacters ) { d . getExistsInMedia ( ) . remove ( ( Media ) this ) ; } this . mediaCharacters . clear ( ) ; } } </s>
<s> package org . sqlproc . engine . model ; public class BankAccount extends BillingDetails { private String accountNumber ; private String bankName ; private String swift ; public String getAccountNumber ( ) { return accountNumber ; } public void setAccountNumber ( String accountNumber ) { this . accountNumber = accountNumber ; } public String getBankName ( ) { return bankName ; } public void setBankName ( String bankName ) { this . bankName = bankName ; } public String getSwift ( ) { return swift ; } public void setSwift ( String swift ) { this . swift = swift ; } } </s>
<s> package org . sqlproc . engine . model ; public class CreditCard extends BillingDetails { private Long number ; private Short expMonth ; private Short expYear ; public Long getNumber ( ) { return number ; } public void setNumber ( Long number ) { this . number = number ; } public Short getExpMonth ( ) { return expMonth ; } public void setExpMonth ( Short expMonth ) { this . expMonth = expMonth ; } public Short getExpYear ( ) { return expYear ; } public void setExpYear ( Short expYear ) { this . expYear = expYear ; } } </s>
<s> package org . sqlproc . engine . model ; import java . util . Calendar ; public class Person extends PersonBase { public Person ( ) { } public Person ( Gender sex , Ssn ssn ) { super ( sex , ssn ) ; } public Integer getAge ( ) { if ( getBirthDate ( ) == null ) { return null ; } Calendar birth = Calendar . getInstance ( ) ; birth . setTime ( getBirthDate ( ) ) ; Calendar today = Calendar . getInstance ( ) ; int age = today . get ( Calendar . YEAR ) - birth . get ( Calendar . YEAR ) ; Calendar birthDay = Calendar . getInstance ( ) ; birthDay . set ( Calendar . YEAR , today . get ( Calendar . YEAR ) ) ; birthDay . set ( Calendar . MONTH , birth . get ( Calendar . MONTH ) ) ; birthDay . set ( Calendar . DAY_OF_MONTH , birth . get ( Calendar . DAY_OF_MONTH ) ) ; birthDay . set ( Calendar . HOUR_OF_DAY , <NUM_LIT:0> ) ; birthDay . set ( Calendar . MINUTE , <NUM_LIT:0> ) ; birthDay . set ( Calendar . SECOND , <NUM_LIT:0> ) ; birthDay . set ( Calendar . MILLISECOND , <NUM_LIT:0> ) ; boolean birthDayIsAfter = birthDay . compareTo ( today ) > <NUM_LIT:0> ; if ( birthDayIsAfter ) { age -= <NUM_LIT:1> ; } return age ; } public void setAge ( int year , int month , int day ) { Calendar birthDay = Calendar . getInstance ( ) ; birthDay . set ( Calendar . YEAR , year ) ; birthDay . set ( Calendar . MONTH , month ) ; birthDay . set ( Calendar . DAY_OF_MONTH , day ) ; birthDay . set ( Calendar . HOUR_OF_DAY , <NUM_LIT:0> ) ; birthDay . set ( Calendar . MINUTE , <NUM_LIT:0> ) ; birthDay . set ( Calendar . SECOND , <NUM_LIT:0> ) ; birthDay . set ( Calendar . MILLISECOND , <NUM_LIT:0> ) ; setBirthDate ( new java . sql . Date ( birthDay . getTime ( ) . getTime ( ) ) ) ; } @ Override public String toString ( ) { return "<STR_LIT>" + getAge ( ) + "<STR_LIT>" + getId ( ) + "<STR_LIT>" + getBirthDate ( ) + "<STR_LIT>" + getCreatedDate ( ) + "<STR_LIT>" + getCreatedBy ( ) + "<STR_LIT>" + getLastUpdated ( ) + "<STR_LIT>" + getLastUpdatedBy ( ) + "<STR_LIT>" + getVersion ( ) + "<STR_LIT>" + getSex ( ) + "<STR_LIT>" + getSsn ( ) + "<STR_LIT>" + getName ( ) + "<STR_LIT>" + getContact ( ) + "<STR_LIT>" + getClothesSize ( ) + "<STR_LIT:]>" ; } } </s>
<s> package org . sqlproc . engine . model ; import java . util . Date ; import java . util . HashSet ; import java . util . List ; import java . util . Set ; public class Library { private Long id ; private String name ; private Date createdDate ; private String createdBy ; private Date lastUpdated ; private String lastUpdatedBy ; private Long version ; public Set < PhysicalMedia > media = new HashSet < PhysicalMedia > ( ) ; public List < PhysicalMedia > mediaList ; public Set < PhysicalMedia > mediaSet ; public Library ( ) { } public Library ( String name ) { super ( ) ; this . name = name ; } public Long getId ( ) { return id ; } public void setId ( Long id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id ; } public String getName ( ) { return name ; } public void setName ( String name ) { this . name = name ; } public Date getCreatedDate ( ) { return createdDate ; } public void setCreatedDate ( Date createdDate ) { this . createdDate = createdDate ; } public String getCreatedBy ( ) { return createdBy ; } public void setCreatedBy ( String createdBy ) { this . createdBy = createdBy ; } public Date getLastUpdated ( ) { return lastUpdated ; } public void setLastUpdated ( Date lastUpdated ) { this . lastUpdated = lastUpdated ; } public String getLastUpdatedBy ( ) { return lastUpdatedBy ; } public void setLastUpdatedBy ( String lastUpdatedBy ) { this . lastUpdatedBy = lastUpdatedBy ; } public Long getVersion ( ) { return version ; } public void setVersion ( Long version ) { this . version = version ; } public Set < PhysicalMedia > getMedia ( ) { return media ; } public void addMedia ( PhysicalMedia mediaElement ) { this . media . add ( mediaElement ) ; mediaElement . setLibrary ( ( Library ) this ) ; } public void removeMedia ( PhysicalMedia mediaElement ) { this . media . remove ( mediaElement ) ; mediaElement . setLibrary ( null ) ; } public void removeAllMedia ( ) { for ( PhysicalMedia d : this . media ) { d . setLibrary ( null ) ; } this . media . clear ( ) ; } public List < PhysicalMedia > getMediaList ( ) { return mediaList ; } public void setMediaList ( List < PhysicalMedia > mediaList ) { this . mediaList = mediaList ; } public Set < PhysicalMedia > getMediaSet ( ) { return mediaSet ; } public void setMediaSet ( Set < PhysicalMedia > mediaSet ) { this . mediaSet = mediaSet ; } } </s>
<s> package org . sqlproc . engine . model ; import java . math . BigDecimal ; import java . math . BigInteger ; import java . sql . Blob ; import java . sql . Clob ; import java . sql . Timestamp ; import java . util . Date ; public class Types { Integer t_int ; Long t_long ; Byte t_byte ; Short t_short ; Float t_float ; Double t_double ; Character t_char ; String t_string ; Date t_date ; Date t_time ; Date t_datetime ; Timestamp t_timestamp ; Boolean t_boolean ; BigInteger t_big_integer ; BigDecimal t_big_decimal ; byte [ ] a_byte ; String a_text ; Clob a_clob ; Blob a_blob ; public Integer getT_int ( ) { return t_int ; } public void setT_int ( Integer t_int ) { this . t_int = t_int ; } public Long getT_long ( ) { return t_long ; } public void setT_long ( Long t_long ) { this . t_long = t_long ; } public Byte getT_byte ( ) { return t_byte ; } public void setT_byte ( Byte t_byte ) { this . t_byte = t_byte ; } public Short getT_short ( ) { return t_short ; } public void setT_short ( Short t_short ) { this . t_short = t_short ; } public String getT_string ( ) { return t_string ; } public void setT_string ( String t_string ) { this . t_string = t_string ; } public Float getT_float ( ) { return t_float ; } public void setT_float ( Float t_float ) { this . t_float = t_float ; } public Double getT_double ( ) { return t_double ; } public void setT_double ( Double t_double ) { this . t_double = t_double ; } public Character getT_char ( ) { return t_char ; } public void setT_char ( Character t_char ) { this . t_char = t_char ; } public Date getT_date ( ) { return t_date ; } public void setT_date ( Date t_date ) { this . t_date = t_date ; } public Date getT_time ( ) { return t_time ; } public void setT_time ( Date t_time ) { this . t_time = t_time ; } public Date getT_datetime ( ) { return t_datetime ; } public void setT_datetime ( Date t_datetime ) { this . t_datetime = t_datetime ; } public Timestamp getT_timestamp ( ) { return t_timestamp ; } public void setT_timestamp ( Timestamp t_timestamp ) { this . t_timestamp = t_timestamp ; } public Boolean getT_boolean ( ) { return t_boolean ; } public void setT_boolean ( Boolean t_boolean ) { this . t_boolean = t_boolean ; } public BigInteger getT_big_integer ( ) { return t_big_integer ; } public void setT_big_integer ( BigInteger t_big_integer ) { this . t_big_integer = t_big_integer ; } public BigDecimal getT_big_decimal ( ) { return t_big_decimal ; } public void setT_big_decimal ( BigDecimal t_big_decimal ) { this . t_big_decimal = t_big_decimal ; } public byte [ ] getA_byte ( ) { return a_byte ; } public void setA_byte ( byte [ ] a_byte ) { this . a_byte = a_byte ; } public String getA_text ( ) { return a_text ; } public void setA_text ( String a_text ) { this . a_text = a_text ; } public Clob getA_clob ( ) { return a_clob ; } public void setA_clob ( Clob a_clob ) { this . a_clob = a_clob ; } public Blob getA_blob ( ) { return a_blob ; } public void setA_blob ( Blob a_blob ) { this . a_blob = a_blob ; } private Long id ; public Long getId ( ) { return id ; } public void setId ( Long id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id ; } } </s>
<s> package org . sqlproc . engine . model ; public class Ssn { private String number ; private Country country ; public Ssn ( ) { } public Ssn ( String number , Country country ) { this . number = number ; this . country = country ; } public String getNumber ( ) { return number ; } public Country getCountry ( ) { return country ; } public void setNumber ( String number ) { this . number = number ; } public void setCountry ( Country country ) { this . country = country ; } @ Override public String toString ( ) { return "<STR_LIT>" + number + "<STR_LIT>" + country + "<STR_LIT:]>" ; } } </s>
<s> package org . sqlproc . engine . model ; import java . math . BigInteger ; import java . util . Date ; public abstract class BillingDetails { private Long id ; private Date createdDate ; private String createdBy ; private Date lastUpdated ; private String lastUpdatedBy ; private Long version ; private String type ; public BillingDetails ( ) { } public Long getId ( ) { return id ; } public void setId ( Long id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id ; } public void setId ( BigInteger id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id . longValue ( ) ; } public Date getCreatedDate ( ) { return createdDate ; } public void setCreatedDate ( Date createdDate ) { this . createdDate = createdDate ; } public String getCreatedBy ( ) { return createdBy ; } public void setCreatedBy ( String createdBy ) { this . createdBy = createdBy ; } public Date getLastUpdated ( ) { return lastUpdated ; } public void setLastUpdated ( Date lastUpdated ) { this . lastUpdated = lastUpdated ; } public String getLastUpdatedBy ( ) { return lastUpdatedBy ; } public void setLastUpdatedBy ( String lastUpdatedBy ) { this . lastUpdatedBy = lastUpdatedBy ; } public Long getVersion ( ) { return version ; } public void setVersion ( Long version ) { this . version = version ; } public String getType ( ) { return type ; } public void setType ( String type ) { this . type = type ; } } </s>
<s> package org . sqlproc . engine . model ; import java . io . Serializable ; import java . util . HashMap ; import java . util . Map ; public enum Country implements Serializable { SWEDEN ( "<STR_LIT>" , "<STR_LIT>" , <NUM_LIT> ) , NORWAY ( "<STR_LIT>" , "<STR_LIT>" , <NUM_LIT> ) , DENMARK ( "<STR_LIT>" , "<STR_LIT>" , <NUM_LIT> ) , UNITED_STATES ( "<STR_LIT>" , "<STR_LIT>" , <NUM_LIT> ) , UNITED_KINGDOM ( "<STR_LIT>" , "<STR_LIT>" , <NUM_LIT> ) , FRANCE ( "<STR_LIT>" , "<STR_LIT>" , <NUM_LIT> ) , CZECH_REPUBLIC ( "<STR_LIT>" , "<STR_LIT>" , <NUM_LIT> ) ; private static Map < String , Country > identifierMap = new HashMap < String , Country > ( ) ; static { for ( Country value : Country . values ( ) ) { identifierMap . put ( value . getAlpha2 ( ) , value ) ; } } private String alpha2 ; private String alpha3 ; private int numeric ; private Country ( String alpha2 , String alpha3 , int numeric ) { this . alpha2 = alpha2 ; this . alpha3 = alpha3 ; this . numeric = numeric ; } public static Country fromAlpha2 ( String alpha2 ) { Country result = identifierMap . get ( alpha2 ) ; if ( result == null ) { throw new IllegalArgumentException ( "<STR_LIT>" + alpha2 ) ; } return result ; } public static Country fromValue ( String alpha2 ) { Country result = identifierMap . get ( alpha2 . toUpperCase ( ) ) ; if ( result == null ) { throw new IllegalArgumentException ( "<STR_LIT>" + alpha2 ) ; } return result ; } public String getValue ( ) { return alpha2 ; } public String getAlpha2 ( ) { return alpha2 ; } public String getAlpha3 ( ) { return alpha3 ; } public int getNumeric ( ) { return numeric ; } public String getName ( ) { return name ( ) ; } } </s>
<s> package org . sqlproc . engine . model ; import java . util . Date ; public class Contact { private Long id ; private String address ; private String city ; private String zip ; private String state ; private String uuid ; private Date createdDate ; private String createdBy ; private Date lastUpdated ; private String lastUpdatedBy ; private Long version ; private PersonName personName ; private PhoneNumber phone ; public Contact ( ) { } public Long getId ( ) { return id ; } public void setId ( Long id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id ; } public String getAddress ( ) { return address ; } public void setAddress ( String address ) { this . address = address ; } public String getCity ( ) { return city ; } public void setCity ( String city ) { this . city = city ; } public String getZip ( ) { return zip ; } public void setZip ( String zip ) { this . zip = zip ; } public String getState ( ) { return state ; } public void setState ( String state ) { this . state = state ; } public Date getCreatedDate ( ) { return createdDate ; } public void setCreatedDate ( Date createdDate ) { this . createdDate = createdDate ; } public String getCreatedBy ( ) { return createdBy ; } public void setCreatedBy ( String createdBy ) { this . createdBy = createdBy ; } public Date getLastUpdated ( ) { return lastUpdated ; } public void setLastUpdated ( Date lastUpdated ) { this . lastUpdated = lastUpdated ; } public String getLastUpdatedBy ( ) { return lastUpdatedBy ; } public void setLastUpdatedBy ( String lastUpdatedBy ) { this . lastUpdatedBy = lastUpdatedBy ; } public Long getVersion ( ) { return version ; } public void setVersion ( Long version ) { this . version = version ; } public String getUuid ( ) { if ( uuid == null ) { uuid = java . util . UUID . randomUUID ( ) . toString ( ) ; } return uuid ; } public void setUuid ( String uuid ) { this . uuid = uuid ; } public PersonName getPersonName ( ) { return personName ; } public void setPersonName ( PersonName personName ) { this . personName = personName ; } public PhoneNumber getPhone ( ) { return phone ; } public void setPhone ( PhoneNumber phone ) { this . phone = phone ; } @ Override public String toString ( ) { return "<STR_LIT>" + id + "<STR_LIT>" + address + "<STR_LIT>" + city + "<STR_LIT>" + zip + "<STR_LIT>" + state + "<STR_LIT>" + uuid + "<STR_LIT>" + createdDate + "<STR_LIT>" + createdBy + "<STR_LIT>" + lastUpdated + "<STR_LIT>" + lastUpdatedBy + "<STR_LIT>" + version + "<STR_LIT>" + personName + "<STR_LIT>" + phone + "<STR_LIT:]>" ; } } </s>
<s> package org . sqlproc . engine . model ; import java . io . Serializable ; import java . util . HashMap ; import java . util . Map ; public enum Gender implements Serializable { FEMALE ( "<STR_LIT:F>" ) , MALE ( "<STR_LIT:M>" ) ; private static Map < String , Gender > identifierMap = new HashMap < String , Gender > ( ) ; static { for ( Gender value : Gender . values ( ) ) { identifierMap . put ( value . getValue ( ) , value ) ; } } private String value ; private Gender ( String value ) { this . value = value ; } public static Gender fromValue ( String value ) { Gender result = identifierMap . get ( value ) ; if ( result == null ) { throw new IllegalArgumentException ( "<STR_LIT>" + value ) ; } return result ; } public String getValue ( ) { return value ; } public String getName ( ) { return name ( ) ; } } </s>
<s> package org . sqlproc . engine . model ; import java . util . Date ; import java . util . HashSet ; import java . util . Set ; public class PhysicalMedia { private Long id ; private String status ; private String location ; private String uuid ; private Date createdDate ; private String createdBy ; private Date lastUpdated ; private String lastUpdatedBy ; private Long version ; private Library library ; private Set < Media > media = new HashSet < Media > ( ) ; public PhysicalMedia ( ) { } public Long getId ( ) { return id ; } public void setId ( Long id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id ; } public String getStatus ( ) { return status ; } public void setStatus ( String status ) { this . status = status ; } public String getLocation ( ) { return location ; } public void setLocation ( String location ) { this . location = location ; } public String getUuid ( ) { return uuid ; } public void setUuid ( String uuid ) { this . uuid = uuid ; } public Date getCreatedDate ( ) { return createdDate ; } public void setCreatedDate ( Date createdDate ) { this . createdDate = createdDate ; } public String getCreatedBy ( ) { return createdBy ; } public void setCreatedBy ( String createdBy ) { this . createdBy = createdBy ; } public Date getLastUpdated ( ) { return lastUpdated ; } public void setLastUpdated ( Date lastUpdated ) { this . lastUpdated = lastUpdated ; } public String getLastUpdatedBy ( ) { return lastUpdatedBy ; } public void setLastUpdatedBy ( String lastUpdatedBy ) { this . lastUpdatedBy = lastUpdatedBy ; } public Long getVersion ( ) { return version ; } public void setVersion ( Long version ) { this . version = version ; } public Library getLibrary ( ) { return library ; } public void setLibrary ( Library library ) { this . library = library ; } public Set < Media > getMedia ( ) { return media ; } public void addMedia ( Media mediaElement ) { this . media . add ( mediaElement ) ; mediaElement . getPhysicalMedia ( ) . add ( ( PhysicalMedia ) this ) ; } public void removeMedia ( Media mediaElement ) { this . media . remove ( mediaElement ) ; mediaElement . getPhysicalMedia ( ) . remove ( ( PhysicalMedia ) this ) ; } public void removeAllMedia ( ) { for ( Media d : this . media ) { d . getPhysicalMedia ( ) . remove ( ( PhysicalMedia ) this ) ; } this . media . clear ( ) ; } } </s>
<s> package org . sqlproc . engine . model ; public class Book extends Media { private String isbn ; public Book ( ) { } public Book ( String title , String isbn ) { super ( title ) ; this . isbn = isbn ; } public String getIsbn ( ) { return isbn ; } public void setIsbn ( String isbn ) { this . isbn = isbn ; } } </s>
<s> package org . sqlproc . engine . model ; public abstract class Media extends MediaBase { public Media ( ) { } public Media ( String title ) { super ( title ) ; } public boolean existsInLibrary ( Long libraryId ) { for ( PhysicalMedia p : getPhysicalMedia ( ) ) { if ( libraryId . equals ( p . getLibrary ( ) . getId ( ) ) ) { return true ; } } return false ; } } </s>
<s> package org . sqlproc . engine . form ; public class MediaTransport { private Long id ; private String mediaTitle ; private EngagementTransport engagement ; public Long getId ( ) { return id ; } public void setId ( Long id ) { this . id = id ; } public String getMediaTitle ( ) { return mediaTitle ; } public void setMediaTitle ( String mediaTitle ) { this . mediaTitle = mediaTitle ; } public EngagementTransport getEngagement ( ) { return engagement ; } public void setEngagement ( EngagementTransport engagement ) { this . engagement = engagement ; } } </s>
<s> package org . sqlproc . engine . form ; import java . util . Set ; import org . sqlproc . engine . model . Country ; public class SsnForm { private Country country ; private Set < Country > countries ; private String number ; public Country getCountry ( ) { return country ; } public void setCountry ( Country country ) { this . country = country ; } public Set < Country > getCountries ( ) { return countries ; } public void setCountries ( Set < Country > countries ) { this . countries = countries ; } public String getNumber ( ) { return number ; } public void setNumber ( String number ) { this . number = number ; } } </s>
<s> package org . sqlproc . engine . form ; import java . util . List ; public class NameCollectionsForm { private List < String > firstList ; private List < String > lastList ; public List < String > getFirstList ( ) { return firstList ; } public void setFirstList ( List < String > firstList ) { this . firstList = firstList ; } public List < String > getLastList ( ) { return lastList ; } public void setLastList ( List < String > lastList ) { this . lastList = lastList ; } } </s>
<s> package org . sqlproc . engine . form ; import java . util . Set ; public class PersonCollectionsForm { private Set < Long > idSet ; private Set < String > updatedBySet ; private NameCollectionsForm names ; public Set < Long > getIdSet ( ) { return idSet ; } public void setIdSet ( Set < Long > idSet ) { this . idSet = idSet ; } public Set < String > getUpdatedBySet ( ) { return updatedBySet ; } public void setUpdatedBySet ( Set < String > updatedBySet ) { this . updatedBySet = updatedBySet ; } public NameCollectionsForm getNames ( ) { return names ; } public void setNames ( NameCollectionsForm names ) { this . names = names ; } } </s>
<s> package org . sqlproc . engine . form ; import java . util . Date ; import java . util . Set ; import org . sqlproc . engine . model . Gender ; import org . sqlproc . engine . model . Size ; public class PersonForm { private Long id ; private Date birthDate ; private Date createdDate ; private String createdBy ; private Date lastUpdated ; private String lastUpdatedBy ; private Long version ; private Gender sex ; private SsnForm ssn ; private Size clothesSize ; private PersonNameForm name ; private Set < Long > idSet ; private Set < Gender > sexs ; private Set < Size > clothesSizes ; private Integer age ; public Long getId ( ) { return id ; } public void setId ( Long id ) { this . id = id ; } public Date getBirthDate ( ) { return birthDate ; } public void setBirthDate ( Date birthDate ) { this . birthDate = birthDate ; } public Date getCreatedDate ( ) { return createdDate ; } public void setCreatedDate ( Date createdDate ) { this . createdDate = createdDate ; } public String getCreatedBy ( ) { return createdBy ; } public void setCreatedBy ( String createdBy ) { this . createdBy = createdBy ; } public Date getLastUpdated ( ) { return lastUpdated ; } public void setLastUpdated ( Date lastUpdated ) { this . lastUpdated = lastUpdated ; } public String getLastUpdatedBy ( ) { return lastUpdatedBy ; } public void setLastUpdatedBy ( String lastUpdatedBy ) { this . lastUpdatedBy = lastUpdatedBy ; } public Long getVersion ( ) { return version ; } public void setVersion ( Long version ) { this . version = version ; } public Gender getSex ( ) { return sex ; } public void setSex ( Gender sex ) { this . sex = sex ; } public SsnForm getSsn ( ) { return ssn ; } public void setSsn ( SsnForm ssn ) { this . ssn = ssn ; } public PersonNameForm getName ( ) { return name ; } public void setName ( PersonNameForm name ) { this . name = name ; } public Set < Long > getIdSet ( ) { return idSet ; } public void setIdSet ( Set < Long > idSet ) { this . idSet = idSet ; } public Set < Gender > getSexs ( ) { return sexs ; } public void setSexs ( Set < Gender > sexs ) { this . sexs = sexs ; } public Size getClothesSize ( ) { return clothesSize ; } public void setClothesSize ( Size clothesSize ) { this . clothesSize = clothesSize ; } public Set < Size > getClothesSizes ( ) { return clothesSizes ; } public void setClothesSizes ( Set < Size > clothesSizes ) { this . clothesSizes = clothesSizes ; } public Integer getAge ( ) { return age ; } public void setAge ( Integer age ) { this . age = age ; } } </s>
<s> package org . sqlproc . engine . form ; public class FormSimpleFunction { private java . sql . Timestamp time ; private java . sql . Timestamp time2 ; public java . sql . Timestamp getTime ( ) { return time ; } public void setTime ( java . sql . Timestamp time ) { this . time = time ; } public java . sql . Timestamp getTime2 ( ) { return time2 ; } public void setTime2 ( java . sql . Timestamp time2 ) { this . time2 = time2 ; } } </s>
<s> package org . sqlproc . engine . form ; public class EngagementTransport { private String first ; private String last ; private String role ; private String ssn ; public String getFirst ( ) { return first ; } public void setFirst ( String first ) { this . first = first ; } public String getLast ( ) { return last ; } public void setLast ( String last ) { this . last = last ; } public String getRole ( ) { return role ; } public void setRole ( String role ) { this . role = role ; } public String getSsn ( ) { return ssn ; } public void setSsn ( String ssn ) { this . ssn = ssn ; } } </s>
<s> package org . sqlproc . engine . form ; import java . util . Set ; public class SearchForm { private String fname ; private String lname ; private Set < Long > idSet ; private String media ; private String ssn ; public String getFname ( ) { return fname ; } public void setFname ( String fname ) { this . fname = fname ; } public Set < Long > getIdSet ( ) { return idSet ; } public void setIdSet ( Set < Long > idSet ) { this . idSet = idSet ; } public String getMedia ( ) { return media ; } public void setMedia ( String media ) { this . media = media ; } public String getLname ( ) { return lname ; } public void setLname ( String lname ) { this . lname = lname ; } public String getSsn ( ) { return ssn ; } public void setSsn ( String ssn ) { this . ssn = ssn ; } } </s>
<s> package org . sqlproc . engine . form ; public class LibraryTransport { private Long id ; private String name ; private String location ; private MediaTransport media ; public Long getId ( ) { return id ; } public void setId ( Long id ) { this . id = id ; } public String getLocation ( ) { return location ; } public void setLocation ( String location ) { this . location = location ; } public MediaTransport getMedia ( ) { return media ; } public void setMedia ( MediaTransport media ) { this . media = media ; } public String getName ( ) { return name ; } public void setName ( String name ) { this . name = name ; } } </s>
<s> package org . sqlproc . engine . form ; import java . math . BigDecimal ; import java . math . BigInteger ; import java . sql . Blob ; import java . sql . Clob ; import java . sql . Timestamp ; import java . util . Date ; public class TypesTransport { int n_int ; Integer t_int ; long n_long ; Long t_long ; byte n_byte ; Byte t_byte ; short n_short ; Short t_short ; float n_float ; Float t_float ; double n_double ; Double t_double ; char n_char ; Character t_char ; String t_string ; java . sql . Time t_time ; java . sql . Date t_date ; Date t_datetime ; Timestamp t_timestamp ; boolean n_boolean ; Boolean t_boolean ; BigInteger t_big_integer ; BigDecimal t_big_decimal ; byte [ ] an_byte ; Byte [ ] at_byte ; String a_text ; Clob a_clob ; Blob a_blob ; public int getN_int ( ) { return n_int ; } public void setN_int ( int n_int ) { this . n_int = n_int ; } public Integer getT_int ( ) { return t_int ; } public void setT_int ( Integer t_int ) { this . t_int = t_int ; } public long getN_long ( ) { return n_long ; } public void setN_long ( long n_long ) { this . n_long = n_long ; } public Long getT_long ( ) { return t_long ; } public void setT_long ( Long t_long ) { this . t_long = t_long ; } public byte getN_byte ( ) { return n_byte ; } public void setN_byte ( byte n_byte ) { this . n_byte = n_byte ; } public Byte getT_byte ( ) { return t_byte ; } public void setT_byte ( Byte t_byte ) { this . t_byte = t_byte ; } public short getN_short ( ) { return n_short ; } public void setN_short ( short n_short ) { this . n_short = n_short ; } public Short getT_short ( ) { return t_short ; } public void setT_short ( Short t_short ) { this . t_short = t_short ; } public String getT_string ( ) { return t_string ; } public void setT_string ( String t_string ) { this . t_string = t_string ; } public float getN_float ( ) { return n_float ; } public void setN_float ( float n_float ) { this . n_float = n_float ; } public Float getT_float ( ) { return t_float ; } public void setT_float ( Float t_float ) { this . t_float = t_float ; } public double getN_double ( ) { return n_double ; } public void setN_double ( double n_double ) { this . n_double = n_double ; } public Double getT_double ( ) { return t_double ; } public void setT_double ( Double t_double ) { this . t_double = t_double ; } public char getN_char ( ) { return n_char ; } public void setN_char ( char n_char ) { this . n_char = n_char ; } public Character getT_char ( ) { return t_char ; } public void setT_char ( Character t_char ) { this . t_char = t_char ; } public java . sql . Time getT_time ( ) { return t_time ; } public void setT_time ( java . sql . Time t_time ) { this . t_time = t_time ; } public java . sql . Date getT_date ( ) { return t_date ; } public void setT_date ( java . sql . Date t_date ) { this . t_date = t_date ; } public Timestamp getT_timestamp ( ) { return t_timestamp ; } public void setT_timestamp ( Timestamp t_timestamp ) { this . t_timestamp = t_timestamp ; } public boolean isN_boolean ( ) { return n_boolean ; } public void setN_boolean ( boolean n_boolean ) { this . n_boolean = n_boolean ; } public Boolean getT_boolean ( ) { return t_boolean ; } public void setT_boolean ( Boolean t_boolean ) { this . t_boolean = t_boolean ; } public BigInteger getT_big_integer ( ) { return t_big_integer ; } public void setT_big_integer ( BigInteger t_big_integer ) { this . t_big_integer = t_big_integer ; } public BigDecimal getT_big_decimal ( ) { return t_big_decimal ; } public void setT_big_decimal ( BigDecimal t_big_decimal ) { this . t_big_decimal = t_big_decimal ; } public byte [ ] getAn_byte ( ) { return an_byte ; } public void setAn_byte ( byte [ ] an_byte ) { this . an_byte = an_byte ; } public Byte [ ] getAt_byte ( ) { return at_byte ; } public void setAt_byte ( Byte [ ] at_byte ) { this . at_byte = at_byte ; } public String getA_text ( ) { return a_text ; } public void setA_text ( String a_text ) { this . a_text = a_text ; } public Clob getA_clob ( ) { return a_clob ; } public void setA_clob ( Clob a_clob ) { this . a_clob = a_clob ; } public Blob getA_blob ( ) { return a_blob ; } public void setA_blob ( Blob a_blob ) { this . a_blob = a_blob ; } public Date getT_datetime ( ) { return t_datetime ; } public void setT_datetime ( Date t_datetime ) { this . t_datetime = t_datetime ; } } </s>
<s> package org . sqlproc . engine . form ; public class PersonNameForm { private String first ; private String last ; public String getFirst ( ) { return first ; } public void setFirst ( String first ) { this . first = first ; } public String getLast ( ) { return last ; } public void setLast ( String last ) { this . last = last ; } } </s>
<s> package org . sqlproc . engine . form ; import java . math . BigDecimal ; import java . math . BigInteger ; import java . sql . Blob ; import java . sql . Clob ; import java . sql . Timestamp ; import java . util . Date ; public class TypesTransport { int n_int ; Integer t_int ; long n_long ; Long t_long ; byte n_byte ; Byte t_byte ; short n_short ; Short t_short ; float n_float ; Float t_float ; double n_double ; Double t_double ; char n_char ; Character t_char ; String t_string ; java . sql . Time t_time ; java . sql . Date t_date ; Date t_datetime ; Timestamp t_timestamp ; boolean n_boolean ; Boolean t_boolean ; BigInteger t_big_integer ; BigDecimal t_big_decimal ; byte [ ] an_byte ; Byte [ ] at_byte ; String a_text ; Clob a_clob ; Blob a_blob ; public int getN_int ( ) { return n_int ; } public void setN_int ( int n_int ) { this . n_int = n_int ; } public Integer getT_int ( ) { return t_int ; } public void setT_int ( Integer t_int ) { this . t_int = t_int ; } public long getN_long ( ) { return n_long ; } public void setN_long ( long n_long ) { this . n_long = n_long ; } public Long getT_long ( ) { return t_long ; } public void setT_long ( Long t_long ) { this . t_long = t_long ; } public byte getN_byte ( ) { return n_byte ; } public void setN_byte ( byte n_byte ) { this . n_byte = n_byte ; } public Byte getT_byte ( ) { return t_byte ; } public void setT_byte ( Byte t_byte ) { this . t_byte = t_byte ; } public short getN_short ( ) { return n_short ; } public void setN_short ( short n_short ) { this . n_short = n_short ; } public Short getT_short ( ) { return t_short ; } public void setT_short ( Short t_short ) { this . t_short = t_short ; } public String getT_string ( ) { return t_string ; } public void setT_string ( String t_string ) { this . t_string = t_string ; } public float getN_float ( ) { return n_float ; } public void setN_float ( float n_float ) { this . n_float = n_float ; } public Float getT_float ( ) { return t_float ; } public void setT_float ( Float t_float ) { this . t_float = t_float ; } public double getN_double ( ) { return n_double ; } public void setN_double ( double n_double ) { this . n_double = n_double ; } public Double getT_double ( ) { return t_double ; } public void setT_double ( Double t_double ) { this . t_double = t_double ; } public char getN_char ( ) { return n_char ; } public void setN_char ( char n_char ) { this . n_char = n_char ; } public Character getT_char ( ) { return t_char ; } public void setT_char ( Character t_char ) { this . t_char = t_char ; } public java . sql . Time getT_time ( ) { return t_time ; } public void setT_time ( java . sql . Time t_time ) { this . t_time = t_time ; } public java . sql . Date getT_date ( ) { return t_date ; } public void setT_date ( java . sql . Date t_date ) { this . t_date = t_date ; } public Timestamp getT_timestamp ( ) { return t_timestamp ; } public void setT_timestamp ( Timestamp t_timestamp ) { this . t_timestamp = t_timestamp ; } public boolean isN_boolean ( ) { return n_boolean ; } public void setN_boolean ( boolean n_boolean ) { this . n_boolean = n_boolean ; } public Boolean getT_boolean ( ) { return t_boolean ; } public void setT_boolean ( Boolean t_boolean ) { this . t_boolean = t_boolean ; } public BigInteger getT_big_integer ( ) { return t_big_integer ; } public void setT_big_integer ( BigInteger t_big_integer ) { this . t_big_integer = t_big_integer ; } public BigDecimal getT_big_decimal ( ) { return t_big_decimal ; } public void setT_big_decimal ( BigDecimal t_big_decimal ) { this . t_big_decimal = t_big_decimal ; } public byte [ ] getAn_byte ( ) { return an_byte ; } public void setAn_byte ( byte [ ] an_byte ) { this . an_byte = an_byte ; } public Byte [ ] getAt_byte ( ) { return at_byte ; } public void setAt_byte ( Byte [ ] at_byte ) { this . at_byte = at_byte ; } public String getA_text ( ) { return a_text ; } public void setA_text ( String a_text ) { this . a_text = a_text ; } public Clob getA_clob ( ) { return a_clob ; } public void setA_clob ( Clob a_clob ) { this . a_clob = a_clob ; } public Blob getA_blob ( ) { return a_blob ; } public void setA_blob ( Blob a_blob ) { this . a_blob = a_blob ; } public Date getT_datetime ( ) { return t_datetime ; } public void setT_datetime ( Date t_datetime ) { this . t_datetime = t_datetime ; } } </s>
<s> package org . sqlproc . engine . form ; import java . util . Set ; import org . sqlproc . engine . model . Country ; public class SsnForm { private Country country ; private Set < Country > countries ; private String number ; public Country getCountry ( ) { return country ; } public void setCountry ( Country country ) { this . country = country ; } public Set < Country > getCountries ( ) { return countries ; } public void setCountries ( Set < Country > countries ) { this . countries = countries ; } public String getNumber ( ) { return number ; } public void setNumber ( String number ) { this . number = number ; } } </s>
<s> package org . sqlproc . engine . form ; public class MediaTransport { private Long id ; private String mediaTitle ; private EngagementTransport engagement ; public Long getId ( ) { return id ; } public void setId ( Long id ) { this . id = id ; } public String getMediaTitle ( ) { return mediaTitle ; } public void setMediaTitle ( String mediaTitle ) { this . mediaTitle = mediaTitle ; } public EngagementTransport getEngagement ( ) { return engagement ; } public void setEngagement ( EngagementTransport engagement ) { this . engagement = engagement ; } } </s>
<s> package org . sqlproc . engine . form ; import java . util . List ; public class NameCollectionsForm { private List < String > firstList ; private List < String > lastList ; public List < String > getFirstList ( ) { return firstList ; } public void setFirstList ( List < String > firstList ) { this . firstList = firstList ; } public List < String > getLastList ( ) { return lastList ; } public void setLastList ( List < String > lastList ) { this . lastList = lastList ; } } </s>
<s> package org . sqlproc . engine . form ; import java . util . Set ; public class PersonCollectionsForm { private Set < Long > idSet ; private Set < String > updatedBySet ; private NameCollectionsForm names ; public Set < Long > getIdSet ( ) { return idSet ; } public void setIdSet ( Set < Long > idSet ) { this . idSet = idSet ; } public Set < String > getUpdatedBySet ( ) { return updatedBySet ; } public void setUpdatedBySet ( Set < String > updatedBySet ) { this . updatedBySet = updatedBySet ; } public NameCollectionsForm getNames ( ) { return names ; } public void setNames ( NameCollectionsForm names ) { this . names = names ; } } </s>
<s> package org . sqlproc . engine . form ; import java . util . Date ; import java . util . Set ; import org . sqlproc . engine . model . Gender ; import org . sqlproc . engine . model . Size ; public class PersonForm { private Long id ; private Date birthDate ; private Date createdDate ; private String createdBy ; private Date lastUpdated ; private String lastUpdatedBy ; private Long version ; private Gender sex ; private SsnForm ssn ; private Size clothesSize ; private PersonNameForm name ; private Set < Long > idSet ; private Set < Gender > sexs ; private Set < Size > clothesSizes ; private Integer age ; public Long getId ( ) { return id ; } public void setId ( Long id ) { this . id = id ; } public Date getBirthDate ( ) { return birthDate ; } public void setBirthDate ( Date birthDate ) { this . birthDate = birthDate ; } public Date getCreatedDate ( ) { return createdDate ; } public void setCreatedDate ( Date createdDate ) { this . createdDate = createdDate ; } public String getCreatedBy ( ) { return createdBy ; } public void setCreatedBy ( String createdBy ) { this . createdBy = createdBy ; } public Date getLastUpdated ( ) { return lastUpdated ; } public void setLastUpdated ( Date lastUpdated ) { this . lastUpdated = lastUpdated ; } public String getLastUpdatedBy ( ) { return lastUpdatedBy ; } public void setLastUpdatedBy ( String lastUpdatedBy ) { this . lastUpdatedBy = lastUpdatedBy ; } public Long getVersion ( ) { return version ; } public void setVersion ( Long version ) { this . version = version ; } public Gender getSex ( ) { return sex ; } public void setSex ( Gender sex ) { this . sex = sex ; } public SsnForm getSsn ( ) { return ssn ; } public void setSsn ( SsnForm ssn ) { this . ssn = ssn ; } public PersonNameForm getName ( ) { return name ; } public void setName ( PersonNameForm name ) { this . name = name ; } public Set < Long > getIdSet ( ) { return idSet ; } public void setIdSet ( Set < Long > idSet ) { this . idSet = idSet ; } public Set < Gender > getSexs ( ) { return sexs ; } public void setSexs ( Set < Gender > sexs ) { this . sexs = sexs ; } public Size getClothesSize ( ) { return clothesSize ; } public void setClothesSize ( Size clothesSize ) { this . clothesSize = clothesSize ; } public Set < Size > getClothesSizes ( ) { return clothesSizes ; } public void setClothesSizes ( Set < Size > clothesSizes ) { this . clothesSizes = clothesSizes ; } public Integer getAge ( ) { return age ; } public void setAge ( Integer age ) { this . age = age ; } } </s>
<s> package org . sqlproc . engine . form ; public class FormSimpleFunction { private java . sql . Timestamp time ; private java . sql . Timestamp time2 ; public java . sql . Timestamp getTime ( ) { return time ; } public void setTime ( java . sql . Timestamp time ) { this . time = time ; } public java . sql . Timestamp getTime2 ( ) { return time2 ; } public void setTime2 ( java . sql . Timestamp time2 ) { this . time2 = time2 ; } } </s>
<s> package org . sqlproc . engine . form ; import java . util . Set ; public class SearchForm { private String fname ; private String lname ; private Set < Long > idSet ; private String media ; private String ssn ; public String getFname ( ) { return fname ; } public void setFname ( String fname ) { this . fname = fname ; } public Set < Long > getIdSet ( ) { return idSet ; } public void setIdSet ( Set < Long > idSet ) { this . idSet = idSet ; } public String getMedia ( ) { return media ; } public void setMedia ( String media ) { this . media = media ; } public String getLname ( ) { return lname ; } public void setLname ( String lname ) { this . lname = lname ; } public String getSsn ( ) { return ssn ; } public void setSsn ( String ssn ) { this . ssn = ssn ; } } </s>
<s> package org . sqlproc . engine . form ; public class LibraryTransport { private Long id ; private String name ; private String location ; private MediaTransport media ; public Long getId ( ) { return id ; } public void setId ( Long id ) { this . id = id ; } public String getLocation ( ) { return location ; } public void setLocation ( String location ) { this . location = location ; } public MediaTransport getMedia ( ) { return media ; } public void setMedia ( MediaTransport media ) { this . media = media ; } public String getName ( ) { return name ; } public void setName ( String name ) { this . name = name ; } } </s>
<s> package org . sqlproc . engine . form ; public class PersonNameForm { private String first ; private String last ; public String getFirst ( ) { return first ; } public void setFirst ( String first ) { this . first = first ; } public String getLast ( ) { return last ; } public void setLast ( String last ) { this . last = last ; } } </s>
<s> package org . sqlproc . engine . form ; public class EngagementTransport { private String first ; private String last ; private String role ; private String ssn ; public String getFirst ( ) { return first ; } public void setFirst ( String first ) { this . first = first ; } public String getLast ( ) { return last ; } public void setLast ( String last ) { this . last = last ; } public String getRole ( ) { return role ; } public void setRole ( String role ) { this . role = role ; } public String getSsn ( ) { return ssn ; } public void setSsn ( String ssn ) { this . ssn = ssn ; } } </s>
<s> package org . sqlproc . engine . type ; import java . util . Arrays ; import java . util . Collection ; import org . dbunit . dataset . datatype . DefaultDataTypeFactory ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; public class InformixDbUnitDataTypeFactory extends DefaultDataTypeFactory { private static final Logger logger = LoggerFactory . getLogger ( InformixDbUnitDataTypeFactory . class ) ; private static final Collection DATABASE_PRODUCTS = Arrays . asList ( new String [ ] { "<STR_LIT>" } ) ; public Collection getValidDbProducts ( ) { return DATABASE_PRODUCTS ; } } </s>
<s> package org . sqlproc . engine . type ; import java . lang . reflect . Method ; import java . sql . Types ; import java . util . ArrayList ; import java . util . Collection ; import java . util . Iterator ; import java . util . List ; import java . util . regex . Matcher ; import java . util . regex . Pattern ; import org . sqlproc . engine . SqlQuery ; import org . sqlproc . engine . SqlRuntimeException ; import org . sqlproc . engine . impl . BeanUtils ; import org . sqlproc . engine . model . PhoneNumber ; public class PhoneNumberType extends SqlInternalType { static Pattern pattern = Pattern . compile ( "<STR_LIT>" ) ; @ Override public Class < ? > [ ] getClassTypes ( ) { return new Class [ ] { PhoneNumber . class } ; } @ Override public String [ ] getMetaTypes ( ) { return new String [ ] { "<STR_LIT>" } ; } public void addScalar ( SqlQuery query , String dbName , Class < ? > attributeType ) { query . addScalar ( dbName , Types . VARCHAR ) ; } @ Override public void setResult ( Object resultInstance , String attributeName , Object resultValue , boolean ingoreError ) throws SqlRuntimeException { Method m = BeanUtils . getSetter ( resultInstance , attributeName , PhoneNumber . class ) ; if ( m == null ) { if ( ingoreError ) { logger . error ( "<STR_LIT>" + attributeName + "<STR_LIT>" + resultInstance + "<STR_LIT>" ) ; return ; } else { throw new SqlRuntimeException ( "<STR_LIT>" + attributeName + "<STR_LIT>" + resultInstance + "<STR_LIT>" ) ; } } if ( resultValue == null ) { BeanUtils . simpleInvokeMethod ( m , resultInstance , null ) ; return ; } if ( ! ( resultValue instanceof String ) ) { if ( ingoreError ) { logger . error ( "<STR_LIT>" + resultValue + "<STR_LIT>" ) ; return ; } else { throw new SqlRuntimeException ( "<STR_LIT>" + resultValue + "<STR_LIT>" ) ; } } String sPhoneNumber = ( String ) resultValue ; Matcher matcher = pattern . matcher ( sPhoneNumber ) ; if ( ! matcher . matches ( ) ) { if ( ingoreError ) { logger . error ( "<STR_LIT>" + sPhoneNumber + "<STR_LIT:'>" ) ; return ; } else { throw new SqlRuntimeException ( "<STR_LIT>" + sPhoneNumber + "<STR_LIT:'>" ) ; } } int area = Integer . parseInt ( matcher . group ( <NUM_LIT:1> ) ) ; int exch = Integer . parseInt ( matcher . group ( <NUM_LIT:2> ) ) ; int ext = Integer . parseInt ( matcher . group ( <NUM_LIT:3> ) ) ; BeanUtils . simpleInvokeMethod ( m , resultInstance , new PhoneNumber ( area , exch , ext ) ) ; } @ Override public void setParameter ( SqlQuery query , String paramName , Object inputValue , Class < ? > inputType , boolean ingoreError ) throws SqlRuntimeException { if ( inputValue == null ) { query . setParameter ( paramName , inputValue , Types . VARCHAR ) ; } else { if ( inputValue instanceof Collection ) { List < String > phoneNumbers = new ArrayList < String > ( ) ; for ( Iterator iter = ( ( Collection ) inputValue ) . iterator ( ) ; iter . hasNext ( ) ; ) { Object o = iter . next ( ) ; if ( o != null ) { if ( ! ( o instanceof PhoneNumber ) ) { if ( ingoreError ) { logger . error ( "<STR_LIT>" + o + "<STR_LIT>" ) ; continue ; } else { throw new SqlRuntimeException ( "<STR_LIT>" + o + "<STR_LIT>" ) ; } } String sPhoneNumber = ( ( PhoneNumber ) o ) . toString ( ) ; } } query . setParameterList ( paramName , phoneNumbers . toArray ( ) , Types . VARCHAR ) ; } else { if ( ! ( inputValue instanceof PhoneNumber ) ) { if ( ingoreError ) { logger . error ( "<STR_LIT>" + inputValue + "<STR_LIT>" ) ; return ; } else { throw new SqlRuntimeException ( "<STR_LIT>" + inputValue + "<STR_LIT>" ) ; } } PhoneNumber phoneNumber = ( PhoneNumber ) inputValue ; String sPhoneNumber = String . format ( "<STR_LIT>" , phoneNumber . getArea ( ) , phoneNumber . getExch ( ) , phoneNumber . getExt ( ) ) ; query . setParameter ( paramName , sPhoneNumber , Types . VARCHAR ) ; } } } } </s>
<s> package org . sqlproc . engine . plugin ; import java . util . Collection ; import org . sqlproc . engine . impl . SqlProcessContext ; import org . sqlproc . engine . impl . SqlUtils ; import org . sqlproc . engine . type . SqlMetaType ; public class CustomizedSqlPlugins implements IsEmptyPlugin , IsTruePlugin { public static final String SUPPVAL_NOTNULL = "<STR_LIT>" ; public static final String SUPPVAL_ANY = "<STR_LIT>" ; public static final String SUPPVAL_NULL = "<STR_LIT:null>" ; private static final String SUPPVAL_ZERO = "<STR_LIT>" ; @ Override public boolean isEmpty ( Object obj , SqlMetaType sqlMetaType , String sqlMetaTypeExt , boolean inSqlSetOrInsert ) throws IllegalArgumentException { String value = ( sqlMetaTypeExt != null ) ? sqlMetaTypeExt . toLowerCase ( ) : null ; if ( SUPPVAL_ZERO . equalsIgnoreCase ( value ) ) { if ( obj != null ) { if ( obj instanceof String ) { final String str = ( ( String ) obj ) . trim ( ) ; return ( ! str . isEmpty ( ) && ! str . equalsIgnoreCase ( "<STR_LIT:0>" ) ) ; } } else { throw new IllegalArgumentException ( "<STR_LIT>" + SUPPVAL_ZERO + "<STR_LIT>" ) ; } } if ( SUPPVAL_NOTNULL . equalsIgnoreCase ( value ) ) { if ( obj == null ) throw new IllegalArgumentException ( SUPPVAL_NOTNULL ) ; } if ( inSqlSetOrInsert ) { if ( obj == null ) return true ; } if ( SUPPVAL_ANY . equalsIgnoreCase ( value ) ) { return true ; } else if ( SUPPVAL_NULL . equalsIgnoreCase ( value ) ) { if ( obj == null ) return true ; else return false ; } else { if ( obj == null ) { return false ; } else if ( obj instanceof Collection < ? > ) { if ( ( ( Collection < ? > ) obj ) . isEmpty ( ) ) return false ; } else if ( obj . toString ( ) . length ( ) <= <NUM_LIT:0> ) { return false ; } return true ; } } @ Override public boolean isTrue ( Object obj , SqlMetaType sqlMetaType , String sqlMetaTypeExt ) { if ( SUPPVAL_ZERO . equalsIgnoreCase ( sqlMetaTypeExt ) ) { if ( obj != null ) { if ( obj instanceof String ) { final String str = ( ( String ) obj ) . trim ( ) ; return ( str . length ( ) > <NUM_LIT:0> && ! str . equalsIgnoreCase ( "<STR_LIT:0>" ) ) ; } } else { throw new IllegalArgumentException ( "<STR_LIT>" + SUPPVAL_ZERO + "<STR_LIT>" ) ; } } if ( sqlMetaTypeExt == null ) { if ( obj != null ) { if ( obj instanceof Boolean ) { return ( ( Boolean ) obj ) . booleanValue ( ) ; } else if ( obj instanceof String ) { String str = ( ( String ) obj ) . trim ( ) ; return ( str . length ( ) > <NUM_LIT:0> && ! str . equalsIgnoreCase ( "<STR_LIT:false>" ) ) ; } else if ( obj instanceof Number ) { return ( ( Number ) obj ) . longValue ( ) > <NUM_LIT:0> ; } else if ( obj . getClass ( ) . isEnum ( ) ) { return true ; } else { return true ; } } return false ; } else { if ( obj == null ) { if ( sqlMetaTypeExt . toLowerCase ( ) . equalsIgnoreCase ( SUPPVAL_NULL ) ) return true ; else return false ; } else { if ( obj . getClass ( ) . isEnum ( ) ) { if ( obj . toString ( ) . equals ( sqlMetaTypeExt ) ) { return true ; } else if ( sqlMetaType == SqlProcessContext . getTypeFactory ( ) . getEnumStringType ( ) ) { return sqlMetaTypeExt . equals ( SqlUtils . getEnumToValue ( obj ) ) ; } else if ( sqlMetaType == SqlProcessContext . getTypeFactory ( ) . getEnumIntegerType ( ) ) { return sqlMetaTypeExt . equals ( SqlUtils . getEnumToValue ( obj ) . toString ( ) ) ; } else { Object enumVal = SqlUtils . getEnumToValue ( obj ) ; if ( enumVal . toString ( ) . equals ( sqlMetaTypeExt ) ) return true ; return false ; } } else { if ( obj . toString ( ) . equals ( sqlMetaTypeExt ) ) return true ; else return false ; } } } } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . HashSet ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . LibraryTransport ; import org . sqlproc . engine . form . MediaTransport ; import org . sqlproc . engine . form . PersonForm ; import org . sqlproc . engine . form . PersonNameForm ; import org . sqlproc . engine . form . SearchForm ; import org . sqlproc . engine . model . Person ; public class TestAdvancedEmbeddedMapping extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testSqlInBracesAdv2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setLast ( "<STR_LIT>" ) ; PersonForm pfc = new PersonForm ( ) ; pfc . setName ( new PersonNameForm ( ) ) ; pfc . getName ( ) . setFirst ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( pf , pfc , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , pfc , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( null , p . getName ( ) ) ; assertEquals ( null , p . getSsn ( ) ) ; pf . setLastUpdatedBy ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( pf , pfc , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pfc , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , null , null , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( null , p . getName ( ) ) ; assertEquals ( null , p . getSsn ( ) ) ; } @ Test public void testConditionalJoinAdv2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; SearchForm sf = new SearchForm ( ) ; String sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < MediaTransport > list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; MediaTransport gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( null , gt . getEngagement ( ) ) ; sf = new SearchForm ( ) ; sf . setIdSet ( new HashSet < Long > ( ) ) ; sf . getIdSet ( ) . add ( <NUM_LIT> ) ; sf . getIdSet ( ) . add ( <NUM_LIT> ) ; sf . setFname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; } @ Test public void testConditionalJoin2LevelsAdv2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; SearchForm sf = new SearchForm ( ) ; String sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < LibraryTransport > list = sqlEngine . query ( session , LibraryTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; LibraryTransport gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getName ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getLocation ( ) ) ; sf = new SearchForm ( ) ; sf . setMedia ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , LibraryTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getName ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getLocation ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getEngagement ( ) . getRole ( ) ) ; sf = new SearchForm ( ) ; sf . setMedia ( "<STR_LIT>" ) ; sf . setFname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , LibraryTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getName ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getLocation ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getEngagement ( ) . getRole ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getEngagement ( ) . getLast ( ) ) ; sf = new SearchForm ( ) ; sf . setFname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , LibraryTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getName ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getLocation ( ) ) ; assertEquals ( null , gt . getMedia ( ) ) ; } @ Test public void testConditionalWhereAdv2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; SearchForm sf = new SearchForm ( ) ; String sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < MediaTransport > list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; MediaTransport gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( null , gt . getEngagement ( ) ) ; sf = new SearchForm ( ) ; sf . setIdSet ( new HashSet < Long > ( ) ) ; sf . getIdSet ( ) . add ( <NUM_LIT> ) ; sf . getIdSet ( ) . add ( <NUM_LIT> ) ; sf . setFname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; } @ Test public void testConditionalWhereAndBracesAdv2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; SearchForm sf = new SearchForm ( ) ; String sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; List < MediaTransport > list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; MediaTransport gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( null , gt . getEngagement ( ) ) ; sf = new SearchForm ( ) ; sf . setFname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; sf = new SearchForm ( ) ; sf . setFname ( "<STR_LIT>" ) ; sf . setLname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; sf = new SearchForm ( ) ; sf . setLname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; } @ Test public void testConditionalWhereAndBracesMoreAdv2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; SearchForm sf = new SearchForm ( ) ; sf . setFname ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; List < MediaTransport > list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; MediaTransport gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( null , gt . getEngagement ( ) ) ; sf = new SearchForm ( ) ; sf . setFname ( "<STR_LIT>" ) ; sf . setLname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getSsn ( ) ) ; sf = new SearchForm ( ) ; sf . setSsn ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getSsn ( ) ) ; sf = new SearchForm ( ) ; sf . setFname ( "<STR_LIT>" ) ; sf . setLname ( "<STR_LIT>" ) ; sf . setSsn ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getSsn ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlCrudEngine ; import org . sqlproc . engine . SqlProcessorException ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . model . Country ; import org . sqlproc . engine . model . Gender ; import org . sqlproc . engine . model . Person ; import org . sqlproc . engine . model . PersonName ; import org . sqlproc . engine . model . Size ; import org . sqlproc . engine . model . Ssn ; public class TestIdSelJdbc extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testInsertUsingJdbcIdentities ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; p . setSex ( Gender . MALE ) ; p . setCreatedBy ( "<STR_LIT>" ) ; p . setVersion ( <NUM_LIT:1L> ) ; p . setClothesSize ( Size . MIDDLE ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" , "<STR_LIT>" ) ; String sql = crudEngine . getInsertSql ( p , null ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; int count = crudEngine . insert ( session , p ) ; assertEquals ( <NUM_LIT:1> , count ) ; logger . info ( "<STR_LIT>" + p . getId ( ) ) ; assertNotNull ( p . getId ( ) ) ; list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; } @ Test public void testInsertNotUsingJdbcIdentities ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; p . setSex ( Gender . MALE ) ; p . setCreatedBy ( "<STR_LIT>" ) ; p . setVersion ( <NUM_LIT:1L> ) ; p . setClothesSize ( Size . MIDDLE ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" , "<STR_LIT>" ) ; String sql = crudEngine . getInsertSql ( p , null ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; try { crudEngine . insert ( session , p ) ; } catch ( SqlProcessorException e ) { assertEquals ( "<STR_LIT>" , "<STR_LIT>" , e . getMessage ( ) ) ; return ; } fail ( "<STR_LIT>" ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; import org . junit . Test ; import org . sqlproc . engine . SqlCrudEngine ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . model . Engagement ; import org . sqlproc . engine . model . Gender ; import org . sqlproc . engine . model . Library ; import org . sqlproc . engine . model . Media ; import org . sqlproc . engine . model . MediaCharacter ; import org . sqlproc . engine . model . Movie ; import org . sqlproc . engine . model . Person ; import org . sqlproc . engine . model . PhysicalMedia ; import org . sqlproc . engine . model . Size ; public class TestJoins extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testBasicLeftJoinList6 ( ) { SqlCrudEngine sqlEngine = getCrudEngine ( "<STR_LIT>" ) ; Library ll = new Library ( ) ; ll . setId ( <NUM_LIT:1L> ) ; String sql = sqlEngine . getGetSql ( ll , null ) ; logger . info ( sql ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , ArrayList . class ) ; Library l = sqlEngine . get ( session , Library . class , ll , null , <NUM_LIT:0> , moreResultClasses ) ; assertNotNull ( l ) ; assert5 ( l ) ; } @ Test public void testBasicLeftJoinList5 ( ) { SqlCrudEngine sqlEngine = getCrudEngine ( "<STR_LIT>" ) ; Library ll = new Library ( ) ; ll . setId ( <NUM_LIT:1L> ) ; String sql = sqlEngine . getGetSql ( ll , null ) ; logger . info ( sql ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , ArrayList . class ) ; Library l = sqlEngine . get ( session , Library . class , ll , null , <NUM_LIT:0> , moreResultClasses ) ; assertNotNull ( l ) ; assert5 ( l ) ; } @ Test public void testBasicLeftJoinList4 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , ArrayList . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert5 ( l ) ; } @ Test public void testBasic2LeftJoin4 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , Movie . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert2 ( l ) ; } @ Test public void testBasicLeftJoinSet3 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , ArrayList . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert6 ( l ) ; } @ Test public void testBasicLeftJoinSet2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , ArrayList . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert6 ( l ) ; } @ Test public void testBasicLeftJoinSet ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; List < Library > list = sqlEngine . query ( session , Library . class ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert6 ( l ) ; } private void assert6 ( Library l ) { assertEquals ( new Long ( <NUM_LIT:1> ) , l . getId ( ) ) ; assertEquals ( "<STR_LIT>" , l . getName ( ) ) ; assertEquals ( <NUM_LIT:2> , l . getMediaSet ( ) . size ( ) ) ; for ( PhysicalMedia pm : l . getMediaSet ( ) ) { if ( pm . getId ( ) == <NUM_LIT:1> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; } else if ( pm . getId ( ) == <NUM_LIT:2> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } @ Test public void testBasicLeftJoinList3 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , ArrayList . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert5 ( l ) ; } @ Test public void testBasicLeftJoinList2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , ArrayList . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert5 ( l ) ; } @ Test public void testBasicLeftJoinList ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; List < Library > list = sqlEngine . query ( session , Library . class ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert5 ( l ) ; } private void assert5 ( Library l ) { assertEquals ( new Long ( <NUM_LIT:1> ) , l . getId ( ) ) ; assertEquals ( "<STR_LIT>" , l . getName ( ) ) ; assertEquals ( <NUM_LIT:2> , l . getMediaList ( ) . size ( ) ) ; for ( PhysicalMedia pm : l . getMediaList ( ) ) { if ( pm . getId ( ) == <NUM_LIT:1> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; } else if ( pm . getId ( ) == <NUM_LIT:2> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } @ Test public void testBasic4LeftJoin2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , Movie . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert4 ( l ) ; } @ Test public void testBasic4LeftJoin ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , Movie . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert4 ( l ) ; } private void assert4 ( Library l ) { assertEquals ( new Long ( <NUM_LIT:1> ) , l . getId ( ) ) ; assertEquals ( "<STR_LIT>" , l . getName ( ) ) ; assertEquals ( <NUM_LIT:2> , l . getMedia ( ) . size ( ) ) ; for ( PhysicalMedia pm : l . getMedia ( ) ) { if ( pm . getId ( ) == <NUM_LIT:1> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; assertEquals ( <NUM_LIT:1> , pm . getMedia ( ) . size ( ) ) ; for ( Media m : pm . getMedia ( ) ) { if ( m . getId ( ) == <NUM_LIT:1> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; assertEquals ( <NUM_LIT:1> , m . getMediaCharacters ( ) . size ( ) ) ; for ( MediaCharacter mc : m . getMediaCharacters ( ) ) { assertEquals ( new Long ( <NUM_LIT:1> ) , mc . getId ( ) ) ; assertEquals ( "<STR_LIT>" , mc . getName ( ) ) ; assertEquals ( <NUM_LIT:0> , mc . getPlayedBy ( ) . size ( ) ) ; } } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } else if ( pm . getId ( ) == <NUM_LIT:2> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; assertEquals ( <NUM_LIT:2> , pm . getMedia ( ) . size ( ) ) ; for ( Media m : pm . getMedia ( ) ) { if ( m . getId ( ) == <NUM_LIT:2> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; assertEquals ( <NUM_LIT:2> , m . getMediaCharacters ( ) . size ( ) ) ; for ( MediaCharacter mc : m . getMediaCharacters ( ) ) { if ( mc . getId ( ) == <NUM_LIT:2> ) { assertEquals ( "<STR_LIT>" , mc . getName ( ) ) ; assertEquals ( <NUM_LIT:1> , mc . getPlayedBy ( ) . size ( ) ) ; for ( Person p : mc . getPlayedBy ( ) ) { assertEquals ( new Long ( <NUM_LIT:1> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertEquals ( Size . MIDDLE , p . getClothesSize ( ) ) ; } } else if ( mc . getId ( ) == <NUM_LIT:3> ) { assertEquals ( "<STR_LIT>" , mc . getName ( ) ) ; assertEquals ( <NUM_LIT:1> , mc . getPlayedBy ( ) . size ( ) ) ; for ( Person p : mc . getPlayedBy ( ) ) { assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; assertEquals ( Gender . FEMALE , p . getSex ( ) ) ; assertEquals ( Size . SMALL , p . getClothesSize ( ) ) ; } } else { fail ( "<STR_LIT>" + mc . getId ( ) ) ; } } } else if ( m . getId ( ) == <NUM_LIT:3> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; assertEquals ( <NUM_LIT:0> , m . getMediaCharacters ( ) . size ( ) ) ; } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } @ Test public void testBasic3LeftJoin ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , Movie . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert3 ( l ) ; } private void assert3 ( Library l ) { assertEquals ( new Long ( <NUM_LIT:1> ) , l . getId ( ) ) ; assertEquals ( "<STR_LIT>" , l . getName ( ) ) ; assertEquals ( <NUM_LIT:2> , l . getMedia ( ) . size ( ) ) ; for ( PhysicalMedia pm : l . getMedia ( ) ) { if ( pm . getId ( ) == <NUM_LIT:1> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; assertEquals ( <NUM_LIT:1> , pm . getMedia ( ) . size ( ) ) ; for ( Media m : pm . getMedia ( ) ) { if ( m . getId ( ) == <NUM_LIT:1> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; assertEquals ( <NUM_LIT:0> , m . getEngagements ( ) . size ( ) ) ; } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } else if ( pm . getId ( ) == <NUM_LIT:2> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; assertEquals ( <NUM_LIT:2> , pm . getMedia ( ) . size ( ) ) ; for ( Media m : pm . getMedia ( ) ) { if ( m . getId ( ) == <NUM_LIT:2> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; assertEquals ( <NUM_LIT:2> , m . getEngagements ( ) . size ( ) ) ; for ( Engagement e : m . getEngagements ( ) ) { if ( e . getId ( ) == <NUM_LIT:1> ) { assertEquals ( "<STR_LIT>" , e . getRole ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , e . getPerson ( ) . getId ( ) ) ; assertEquals ( "<STR_LIT>" , e . getPerson ( ) . getName ( ) . getLast ( ) ) ; assertEquals ( Gender . MALE , e . getPerson ( ) . getSex ( ) ) ; assertEquals ( Size . MIDDLE , e . getPerson ( ) . getClothesSize ( ) ) ; } else if ( e . getId ( ) == <NUM_LIT:2> ) { assertEquals ( "<STR_LIT>" , e . getRole ( ) ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , e . getPerson ( ) . getId ( ) ) ; assertEquals ( "<STR_LIT>" , e . getPerson ( ) . getName ( ) . getLast ( ) ) ; assertEquals ( Gender . FEMALE , e . getPerson ( ) . getSex ( ) ) ; assertEquals ( Size . SMALL , e . getPerson ( ) . getClothesSize ( ) ) ; } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } else if ( m . getId ( ) == <NUM_LIT:3> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; assertEquals ( <NUM_LIT:0> , m . getEngagements ( ) . size ( ) ) ; } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } @ Test public void testBasic2LeftJoin3 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , Movie . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert2 ( l ) ; } @ Test public void testBasic2LeftJoin2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , Movie . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert2 ( l ) ; } private void assert2 ( Library l ) { assertEquals ( new Long ( <NUM_LIT:1> ) , l . getId ( ) ) ; assertEquals ( "<STR_LIT>" , l . getName ( ) ) ; assertEquals ( <NUM_LIT:2> , l . getMedia ( ) . size ( ) ) ; for ( PhysicalMedia pm : l . getMedia ( ) ) { if ( pm . getId ( ) == <NUM_LIT:1> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; assertEquals ( <NUM_LIT:1> , pm . getMedia ( ) . size ( ) ) ; for ( Media m : pm . getMedia ( ) ) { if ( m . getId ( ) == <NUM_LIT:1> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } else if ( pm . getId ( ) == <NUM_LIT:2> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; assertEquals ( <NUM_LIT:2> , pm . getMedia ( ) . size ( ) ) ; for ( Media m : pm . getMedia ( ) ) { if ( m . getId ( ) == <NUM_LIT:2> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; } else if ( m . getId ( ) == <NUM_LIT:3> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } @ Test public void testBasic2LeftJoin ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; List < Library > list = sqlEngine . query ( session , Library . class ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert1 ( l ) ; } @ Test public void testBasicLeftJoin3 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; List < Library > list = sqlEngine . query ( session , Library . class ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert1 ( l ) ; } @ Test public void testBasicLeftJoin2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; List < Library > list = sqlEngine . query ( session , Library . class ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert1 ( l ) ; } @ Test public void testBasicLeftJoin ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; List < Library > list = sqlEngine . query ( session , Library . class ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert1 ( l ) ; } private void assert1 ( Library l ) { assertEquals ( new Long ( <NUM_LIT:1> ) , l . getId ( ) ) ; assertEquals ( "<STR_LIT>" , l . getName ( ) ) ; assertEquals ( <NUM_LIT:2> , l . getMedia ( ) . size ( ) ) ; for ( PhysicalMedia pm : l . getMedia ( ) ) { if ( pm . getId ( ) == <NUM_LIT:1> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; } else if ( pm . getId ( ) == <NUM_LIT:2> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } @ Test public void testBasicLeftJoinNoId2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; List < PhysicalMedia > list = sqlEngine . query ( session , PhysicalMedia . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; PhysicalMedia pm = list . get ( <NUM_LIT:1> ) ; assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; assertEquals ( "<STR_LIT:A>" , pm . getStatus ( ) ) ; assertEquals ( "<STR_LIT:2>" , pm . getUuid ( ) ) ; } @ Test public void testBasicLeftJoinNoId ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; List < PhysicalMedia > list = sqlEngine . query ( session , PhysicalMedia . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; PhysicalMedia pm = list . get ( <NUM_LIT:1> ) ; assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; assertEquals ( "<STR_LIT:A>" , pm . getStatus ( ) ) ; assertEquals ( "<STR_LIT:2>" , pm . getUuid ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . model . BankAccount ; import org . sqlproc . engine . model . BillingDetails ; import org . sqlproc . engine . model . CreditCard ; import org . sqlproc . engine . model . Subscriber ; public class TestMoreInhertance extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testNextInheritance ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , CreditCard . class ) ; moreResultClasses . put ( "<STR_LIT>" , BankAccount . class ) ; List < Subscriber > list = sqlEngine . query ( session , Subscriber . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; Subscriber s ; BillingDetails bd ; CreditCard cc ; BankAccount ba ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; s = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , s . getId ( ) ) ; assertEquals ( "<STR_LIT>" , s . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , s . getName ( ) . getLast ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , s . getLibrary ( ) . getId ( ) ) ; assertNotNull ( s . getBillingDetails ( ) ) ; assertEquals ( <NUM_LIT:2> , s . getBillingDetails ( ) . size ( ) ) ; bd = s . getBillingDetails ( ) . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , bd . getId ( ) ) ; assertEquals ( "<STR_LIT>" , bd . getType ( ) ) ; assertTrue ( bd instanceof CreditCard ) ; cc = ( CreditCard ) bd ; assertEquals ( new Long ( <NUM_LIT> ) , cc . getNumber ( ) ) ; assertEquals ( new Short ( ( short ) <NUM_LIT:11> ) , cc . getExpMonth ( ) ) ; assertEquals ( new Short ( ( short ) <NUM_LIT:12> ) , cc . getExpYear ( ) ) ; bd = s . getBillingDetails ( ) . get ( <NUM_LIT:1> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , bd . getId ( ) ) ; assertEquals ( "<STR_LIT>" , bd . getType ( ) ) ; assertTrue ( bd instanceof BankAccount ) ; ba = ( BankAccount ) bd ; assertEquals ( "<STR_LIT>" , ba . getAccountNumber ( ) ) ; assertEquals ( "<STR_LIT>" , ba . getBankName ( ) ) ; assertEquals ( "<STR_LIT>" , ba . getSwift ( ) ) ; s = list . get ( <NUM_LIT:1> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , s . getId ( ) ) ; assertEquals ( "<STR_LIT>" , s . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , s . getName ( ) . getLast ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , s . getLibrary ( ) . getId ( ) ) ; assertNotNull ( s . getBillingDetails ( ) ) ; assertEquals ( <NUM_LIT:2> , s . getBillingDetails ( ) . size ( ) ) ; bd = s . getBillingDetails ( ) . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:3> ) , bd . getId ( ) ) ; assertEquals ( "<STR_LIT>" , bd . getType ( ) ) ; assertTrue ( bd instanceof CreditCard ) ; cc = ( CreditCard ) bd ; assertEquals ( new Long ( <NUM_LIT> ) , cc . getNumber ( ) ) ; assertEquals ( new Short ( ( short ) <NUM_LIT:10> ) , cc . getExpMonth ( ) ) ; assertEquals ( new Short ( ( short ) <NUM_LIT:11> ) , cc . getExpYear ( ) ) ; bd = s . getBillingDetails ( ) . get ( <NUM_LIT:1> ) ; assertEquals ( new Long ( <NUM_LIT:4> ) , bd . getId ( ) ) ; assertEquals ( "<STR_LIT>" , bd . getType ( ) ) ; assertTrue ( bd instanceof BankAccount ) ; ba = ( BankAccount ) bd ; assertEquals ( "<STR_LIT>" , ba . getAccountNumber ( ) ) ; assertEquals ( "<STR_LIT>" , ba . getBankName ( ) ) ; assertEquals ( "<STR_LIT>" , ba . getSwift ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . text . DateFormat ; import java . text . ParsePosition ; import java . util . Date ; import java . util . Locale ; import org . junit . Ignore ; @ Ignore ( "<STR_LIT>" ) public class TestUtils { public static Locale LOCALE_CS = new Locale ( "<STR_LIT>" ) ; public static Date parse ( final Object value ) { return parse ( value , Locale . getDefault ( ) ) ; } public static Date parse ( final Object value , Locale locale ) { DateFormat format = DateFormat . getDateInstance ( DateFormat . SHORT , locale ) ; final ParsePosition position = new ParsePosition ( <NUM_LIT:0> ) ; final String stringValue = value . toString ( ) ; final Date result = ( Date ) format . parseObject ( stringValue , position ) ; if ( position . getIndex ( ) != stringValue . length ( ) ) { throw new RuntimeException ( "<STR_LIT>" + value + "<STR_LIT>" + format ) ; } return result ; } public static String convertToString ( final Object value ) { return convertToString ( value , Locale . getDefault ( ) ) ; } public static String convertToString ( final Object value , Locale locale ) { DateFormat dateFormat = DateFormat . getDateInstance ( DateFormat . SHORT , locale ) ; if ( dateFormat != null ) { return dateFormat . format ( value ) ; } return value . toString ( ) ; } public static boolean isBlank ( String s ) { if ( s == null ) return true ; if ( s . trim ( ) . length ( ) == <NUM_LIT:0> ) return true ; return false ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . math . BigDecimal ; import java . math . BigInteger ; import java . sql . SQLException ; import java . sql . Timestamp ; import java . text . ParseException ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . TypesTransport ; public class TestStandardParameters extends TestDatabase { protected String getDataSetFile ( String dbType ) { if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else return "<STR_LIT>" ; } @ Test public void testStandardParameters ( ) throws SQLException , ParseException { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; TypesTransport criteria = new TypesTransport ( ) ; criteria . setT_int ( <NUM_LIT:2> ) ; criteria . setT_long ( <NUM_LIT> ) ; criteria . setT_byte ( ( byte ) <NUM_LIT:4> ) ; criteria . setT_short ( ( short ) <NUM_LIT:5> ) ; criteria . setT_char ( new Character ( '<CHAR_LIT>' ) ) ; criteria . setT_string ( "<STR_LIT:abc>" ) ; criteria . setT_boolean ( Boolean . TRUE ) ; criteria . setT_date ( SqlUtils . getDate ( <NUM_LIT> , <NUM_LIT:7> , <NUM_LIT:31> ) ) ; if ( ! "<STR_LIT>" . equalsIgnoreCase ( dbType ) && ! "<STR_LIT>" . equalsIgnoreCase ( dbType ) && ! "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) criteria . setT_time ( SqlUtils . getTime ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT:2> ) ) ; criteria . setT_datetime ( SqlUtils . getDateTime ( <NUM_LIT> , <NUM_LIT:7> , <NUM_LIT:31> , <NUM_LIT> , <NUM_LIT> , <NUM_LIT:2> ) ) ; if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) { criteria . setT_timestamp ( Timestamp . valueOf ( "<STR_LIT>" ) ) ; } else { criteria . setT_timestamp ( Timestamp . valueOf ( "<STR_LIT>" ) ) ; } criteria . setAn_byte ( "<STR_LIT>" . getBytes ( ) ) ; String sql = sqlEngine . getSql ( criteria , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; if ( ! dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) assertContains ( sql , "<STR_LIT>" ) ; List < TypesTransport > list = sqlEngine . query ( session , TypesTransport . class , criteria , null , SqlQueryEngine . NO_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; TypesTransport t = list . get ( <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , t . getN_int ( ) ) ; assertEquals ( new Integer ( <NUM_LIT:2> ) , t . getT_int ( ) ) ; assertEquals ( <NUM_LIT:3> , t . getN_long ( ) ) ; assertEquals ( new Long ( <NUM_LIT> ) , t . getT_long ( ) ) ; assertEquals ( <NUM_LIT:4> , t . getN_byte ( ) ) ; assertEquals ( new Byte ( ( byte ) <NUM_LIT:4> ) , t . getT_byte ( ) ) ; assertEquals ( <NUM_LIT:5> , t . getN_short ( ) ) ; assertEquals ( new Short ( ( short ) <NUM_LIT:5> ) , t . getT_short ( ) ) ; assertEquals ( <NUM_LIT> , t . getN_float ( ) , <NUM_LIT> ) ; assertEquals ( new Float ( <NUM_LIT> ) , t . getT_float ( ) , <NUM_LIT> ) ; assertEquals ( <NUM_LIT> , t . getN_double ( ) , <NUM_LIT> ) ; assertEquals ( new Double ( <NUM_LIT> ) , t . getT_double ( ) , <NUM_LIT> ) ; assertEquals ( '<CHAR_LIT>' , t . getN_char ( ) ) ; assertEquals ( new Character ( '<CHAR_LIT>' ) , t . getT_char ( ) ) ; assertEquals ( "<STR_LIT:abc>" , t . getT_string ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_time ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_date ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_datetime ( ) . toString ( ) ) ; if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; assertEquals ( true , t . isN_boolean ( ) ) ; assertEquals ( Boolean . TRUE , t . getT_boolean ( ) ) ; assertEquals ( new BigInteger ( "<STR_LIT>" ) , t . getT_big_integer ( ) ) ; assertEquals ( new BigDecimal ( "<STR_LIT>" ) , t . getT_big_decimal ( ) ) ; assertEquals ( "<STR_LIT>" , new String ( t . getAn_byte ( ) ) ) ; assertEquals ( t . getAn_byte ( ) . length , t . getAt_byte ( ) . length ) ; for ( int i = <NUM_LIT:0> ; i < t . getAn_byte ( ) . length ; i ++ ) assertEquals ( t . getAn_byte ( ) [ i ] , t . getAt_byte ( ) [ i ] . byteValue ( ) ) ; assertEquals ( "<STR_LIT:hello>" , t . getA_text ( ) ) ; if ( ! "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) { assertNotNull ( t . getA_blob ( ) ) ; assertNotNull ( t . getA_clob ( ) ) ; assertEquals ( "<STR_LIT>" , new String ( t . getA_blob ( ) . getBytes ( <NUM_LIT:1L> , ( int ) t . getA_blob ( ) . length ( ) ) ) ) ; assertEquals ( "<STR_LIT>" , t . getA_clob ( ) . getSubString ( <NUM_LIT:1L> , ( int ) t . getA_clob ( ) . length ( ) ) ) ; } } @ Test public void testFromToParameters ( ) throws SQLException , ParseException { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; TypesTransport criteria = new TypesTransport ( ) ; criteria . setT_datetime ( SqlUtils . getDateTime ( <NUM_LIT> , <NUM_LIT:7> , <NUM_LIT:31> , <NUM_LIT:15> , <NUM_LIT> , <NUM_LIT:2> ) ) ; if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) { criteria . setT_timestamp ( Timestamp . valueOf ( "<STR_LIT>" ) ) ; } else { criteria . setT_timestamp ( Timestamp . valueOf ( "<STR_LIT>" ) ) ; } String sql = sqlEngine . getSql ( criteria , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < TypesTransport > list = sqlEngine . query ( session , TypesTransport . class , criteria , null , SqlQueryEngine . NO_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; TypesTransport t = list . get ( <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , t . getN_int ( ) ) ; assertEquals ( new Integer ( <NUM_LIT:2> ) , t . getT_int ( ) ) ; assertEquals ( <NUM_LIT:3> , t . getN_long ( ) ) ; assertEquals ( new Long ( <NUM_LIT> ) , t . getT_long ( ) ) ; assertEquals ( <NUM_LIT:4> , t . getN_byte ( ) ) ; assertEquals ( new Byte ( ( byte ) <NUM_LIT:4> ) , t . getT_byte ( ) ) ; assertEquals ( <NUM_LIT:5> , t . getN_short ( ) ) ; assertEquals ( new Short ( ( short ) <NUM_LIT:5> ) , t . getT_short ( ) ) ; assertEquals ( <NUM_LIT> , t . getN_float ( ) , <NUM_LIT> ) ; assertEquals ( new Float ( <NUM_LIT> ) , t . getT_float ( ) , <NUM_LIT> ) ; assertEquals ( <NUM_LIT> , t . getN_double ( ) , <NUM_LIT> ) ; assertEquals ( new Double ( <NUM_LIT> ) , t . getT_double ( ) , <NUM_LIT> ) ; assertEquals ( '<CHAR_LIT>' , t . getN_char ( ) ) ; assertEquals ( new Character ( '<CHAR_LIT>' ) , t . getT_char ( ) ) ; assertEquals ( "<STR_LIT:abc>" , t . getT_string ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_time ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_date ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_datetime ( ) . toString ( ) ) ; if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; assertEquals ( true , t . isN_boolean ( ) ) ; assertEquals ( Boolean . TRUE , t . getT_boolean ( ) ) ; assertEquals ( new BigInteger ( "<STR_LIT>" ) , t . getT_big_integer ( ) ) ; assertEquals ( new BigDecimal ( "<STR_LIT>" ) , t . getT_big_decimal ( ) ) ; assertEquals ( "<STR_LIT>" , new String ( t . getAn_byte ( ) ) ) ; assertEquals ( t . getAn_byte ( ) . length , t . getAt_byte ( ) . length ) ; for ( int i = <NUM_LIT:0> ; i < t . getAn_byte ( ) . length ; i ++ ) assertEquals ( t . getAn_byte ( ) [ i ] , t . getAt_byte ( ) [ i ] . byteValue ( ) ) ; assertEquals ( "<STR_LIT:hello>" , t . getA_text ( ) ) ; if ( ! "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) { assertEquals ( "<STR_LIT>" , new String ( t . getA_blob ( ) . getBytes ( <NUM_LIT:1L> , ( int ) t . getA_blob ( ) . length ( ) ) ) ) ; assertEquals ( "<STR_LIT>" , t . getA_clob ( ) . getSubString ( <NUM_LIT:1L> , ( int ) t . getA_clob ( ) . length ( ) ) ) ; } } } </s>
<s> package org . sqlproc . engine . impl ; import java . math . BigDecimal ; import java . math . BigInteger ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . TypesTransport ; public class TestStandardTypes extends TestDatabase { protected String getDataSetFile ( String dbType ) { if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else return "<STR_LIT>" ; } @ Test public void testStandardTypes ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; List < TypesTransport > list = sqlEngine . query ( session , TypesTransport . class , null , null , SqlQueryEngine . NO_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; TypesTransport t = list . get ( <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , t . getN_int ( ) ) ; assertEquals ( new Integer ( <NUM_LIT:2> ) , t . getT_int ( ) ) ; assertEquals ( <NUM_LIT:3> , t . getN_long ( ) ) ; assertEquals ( new Long ( <NUM_LIT> ) , t . getT_long ( ) ) ; assertEquals ( <NUM_LIT:4> , t . getN_byte ( ) ) ; assertEquals ( new Byte ( ( byte ) <NUM_LIT:4> ) , t . getT_byte ( ) ) ; assertEquals ( <NUM_LIT:5> , t . getN_short ( ) ) ; assertEquals ( new Short ( ( short ) <NUM_LIT:5> ) , t . getT_short ( ) ) ; assertEquals ( <NUM_LIT> , t . getN_float ( ) , <NUM_LIT> ) ; assertEquals ( new Float ( <NUM_LIT> ) , t . getT_float ( ) , <NUM_LIT> ) ; assertEquals ( <NUM_LIT> , t . getN_double ( ) , <NUM_LIT> ) ; assertEquals ( new Double ( <NUM_LIT> ) , t . getT_double ( ) , <NUM_LIT> ) ; assertEquals ( '<CHAR_LIT>' , t . getN_char ( ) ) ; assertEquals ( new Character ( '<CHAR_LIT>' ) , t . getT_char ( ) ) ; assertEquals ( "<STR_LIT:abc>" , t . getT_string ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_time ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_date ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_datetime ( ) . toString ( ) ) ; if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; assertEquals ( true , t . isN_boolean ( ) ) ; assertEquals ( Boolean . TRUE , t . getT_boolean ( ) ) ; assertEquals ( new BigInteger ( "<STR_LIT>" ) , t . getT_big_integer ( ) ) ; assertEquals ( new BigDecimal ( "<STR_LIT>" ) , t . getT_big_decimal ( ) ) ; assertEquals ( "<STR_LIT>" , new String ( t . getAn_byte ( ) ) ) ; assertEquals ( t . getAn_byte ( ) . length , t . getAt_byte ( ) . length ) ; for ( int i = <NUM_LIT:0> ; i < t . getAn_byte ( ) . length ; i ++ ) assertEquals ( t . getAn_byte ( ) [ i ] , t . getAt_byte ( ) [ i ] . byteValue ( ) ) ; } @ Test public void testStandardTypes2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; List < TypesTransport > list = sqlEngine . query ( session , TypesTransport . class , null , null , SqlQueryEngine . NO_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; TypesTransport t = list . get ( <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , t . getN_int ( ) ) ; assertEquals ( new Integer ( <NUM_LIT:2> ) , t . getT_int ( ) ) ; assertEquals ( <NUM_LIT:3> , t . getN_long ( ) ) ; assertEquals ( new Long ( <NUM_LIT> ) , t . getT_long ( ) ) ; assertEquals ( <NUM_LIT:4> , t . getN_byte ( ) ) ; assertEquals ( new Byte ( ( byte ) <NUM_LIT:4> ) , t . getT_byte ( ) ) ; assertEquals ( <NUM_LIT:5> , t . getN_short ( ) ) ; assertEquals ( new Short ( ( short ) <NUM_LIT:5> ) , t . getT_short ( ) ) ; assertEquals ( <NUM_LIT> , t . getN_float ( ) , <NUM_LIT> ) ; assertEquals ( new Float ( <NUM_LIT> ) , t . getT_float ( ) , <NUM_LIT> ) ; assertEquals ( <NUM_LIT> , t . getN_double ( ) , <NUM_LIT> ) ; assertEquals ( new Double ( <NUM_LIT> ) , t . getT_double ( ) , <NUM_LIT> ) ; assertEquals ( '<CHAR_LIT>' , t . getN_char ( ) ) ; assertEquals ( new Character ( '<CHAR_LIT>' ) , t . getT_char ( ) ) ; assertEquals ( "<STR_LIT:abc>" , t . getT_string ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_time ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_date ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_datetime ( ) . toString ( ) ) ; if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; assertEquals ( true , t . isN_boolean ( ) ) ; assertEquals ( Boolean . TRUE , t . getT_boolean ( ) ) ; assertEquals ( new BigInteger ( "<STR_LIT>" ) , t . getT_big_integer ( ) ) ; assertEquals ( new BigDecimal ( "<STR_LIT>" ) , t . getT_big_decimal ( ) ) ; assertEquals ( "<STR_LIT>" , new String ( t . getAn_byte ( ) ) ) ; assertEquals ( t . getAn_byte ( ) . length , t . getAt_byte ( ) . length ) ; for ( int i = <NUM_LIT:0> ; i < t . getAn_byte ( ) . length ; i ++ ) assertEquals ( t . getAn_byte ( ) [ i ] , t . getAt_byte ( ) [ i ] . byteValue ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; import java . util . Set ; import org . junit . Test ; import org . sqlproc . engine . SqlOrder ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . model . Book ; import org . sqlproc . engine . model . Engagement ; import org . sqlproc . engine . model . Library ; import org . sqlproc . engine . model . Media ; import org . sqlproc . engine . model . MediaCharacter ; import org . sqlproc . engine . model . Movie ; import org . sqlproc . engine . model . Person ; import org . sqlproc . engine . model . PhysicalMedia ; public class TestExtraJoins extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testExtraJoinManyToMany ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; PhysicalMedia phm = new PhysicalMedia ( ) ; phm . setStatus ( "<STR_LIT:C>" ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , Movie . class ) ; moreResultClasses . put ( "<STR_LIT>" , Book . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , phm , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertTotal ( list ) ; } @ Test public void testExtraJoinManyToManyNoOrder ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; PhysicalMedia phm = new PhysicalMedia ( ) ; phm . setStatus ( "<STR_LIT:C>" ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , Movie . class ) ; moreResultClasses . put ( "<STR_LIT>" , Book . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , phm , null , SqlQueryEngine . NO_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertTotal ( list ) ; } @ Test public void testExtraJoinManyToManyBadOrder ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlOrder . getAscOrder ( <NUM_LIT:2> ) ) ; logger . info ( sql ) ; PhysicalMedia phm = new PhysicalMedia ( ) ; phm . setStatus ( "<STR_LIT:C>" ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , Movie . class ) ; moreResultClasses . put ( "<STR_LIT>" , Book . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , phm , null , SqlOrder . getAscOrder ( <NUM_LIT:2> ) , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertTotal ( list ) ; } private void assertTotal ( List < Library > list ) { assertEquals ( <NUM_LIT:4> , list . size ( ) ) ; Library li1 = assertLibrary ( list , <NUM_LIT:1L> , "<STR_LIT>" , <NUM_LIT:5> ) ; Library li2 = assertLibrary ( list , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:5> ) ; Library li3 = assertLibrary ( list , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:5> ) ; Library li4 = assertLibrary ( list , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:5> ) ; PhysicalMedia pm1 = assertPhysicalMedia ( li1 . getMedia ( ) , <NUM_LIT:1L> , "<STR_LIT>" , <NUM_LIT:2> ) ; PhysicalMedia pm2 = assertPhysicalMedia ( li1 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:0> ) ; PhysicalMedia pm3 = assertPhysicalMedia ( li1 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; PhysicalMedia pm4 = assertPhysicalMedia ( li1 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; PhysicalMedia pm5 = assertPhysicalMedia ( li1 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:3> ) ; PhysicalMedia pm6 = assertPhysicalMedia ( li2 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:2> ) ; PhysicalMedia pm7 = assertPhysicalMedia ( li2 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:0> ) ; PhysicalMedia pm8 = assertPhysicalMedia ( li2 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; PhysicalMedia pm9 = assertPhysicalMedia ( li2 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; PhysicalMedia pm10 = assertPhysicalMedia ( li2 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:5> ) ; PhysicalMedia pm11 = assertPhysicalMedia ( li3 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:3> ) ; PhysicalMedia pm12 = assertPhysicalMedia ( li3 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:3> ) ; PhysicalMedia pm13 = assertPhysicalMedia ( li3 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:3> ) ; PhysicalMedia pm14 = assertPhysicalMedia ( li3 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; PhysicalMedia pm15 = assertPhysicalMedia ( li3 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; PhysicalMedia pm16 = assertPhysicalMedia ( li4 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; PhysicalMedia pm17 = assertPhysicalMedia ( li4 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; PhysicalMedia pm18 = assertPhysicalMedia ( li4 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; PhysicalMedia pm19 = assertPhysicalMedia ( li4 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:2> ) ; PhysicalMedia pm20 = assertPhysicalMedia ( li4 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:2> ) ; Media me1 = assertMedia ( pm1 . getMedia ( ) , <NUM_LIT:1L> , "<STR_LIT>" , <NUM_LIT:3> ) ; Media me2 = assertMedia ( pm1 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:3> ) ; Media me2b = assertMedia ( pm3 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:3> ) ; Media me2c = assertMedia ( pm4 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:3> ) ; Media me3 = assertMedia ( pm5 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:0> ) ; Media me4 = assertMedia ( pm5 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:0> ) ; Media me5 = assertMedia ( pm5 . getMedia ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:0> ) ; MediaCharacter mc1 = assertMediaCharacter ( me1 . getMediaCharacters ( ) , <NUM_LIT:1L> , "<STR_LIT>" , <NUM_LIT:1> ) ; MediaCharacter mc2 = assertMediaCharacter ( me1 . getMediaCharacters ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; MediaCharacter mc3 = assertMediaCharacter ( me1 . getMediaCharacters ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; MediaCharacter mc1b = assertMediaCharacter ( me2 . getMediaCharacters ( ) , <NUM_LIT:1L> , "<STR_LIT>" , <NUM_LIT:1> ) ; MediaCharacter mc2b = assertMediaCharacter ( me2 . getMediaCharacters ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; MediaCharacter mc3b = assertMediaCharacter ( me2 . getMediaCharacters ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; MediaCharacter mc1c = assertMediaCharacter ( me2b . getMediaCharacters ( ) , <NUM_LIT:1L> , "<STR_LIT>" , <NUM_LIT:1> ) ; MediaCharacter mc2c = assertMediaCharacter ( me2b . getMediaCharacters ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; MediaCharacter mc3c = assertMediaCharacter ( me2b . getMediaCharacters ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; MediaCharacter mc1d = assertMediaCharacter ( me2c . getMediaCharacters ( ) , <NUM_LIT:1L> , "<STR_LIT>" , <NUM_LIT:1> ) ; MediaCharacter mc2d = assertMediaCharacter ( me2c . getMediaCharacters ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; MediaCharacter mc3d = assertMediaCharacter ( me2c . getMediaCharacters ( ) , <NUM_LIT> , "<STR_LIT>" , <NUM_LIT:1> ) ; assertPerson ( mc1 . getPlayedBy ( ) , <NUM_LIT:1L> , "<STR_LIT>" , "<STR_LIT>" ) ; assertPerson ( mc2 . getPlayedBy ( ) , <NUM_LIT:1L> , "<STR_LIT>" , "<STR_LIT>" ) ; assertPerson ( mc3 . getPlayedBy ( ) , <NUM_LIT> , "<STR_LIT>" , "<STR_LIT>" ) ; } private Library assertLibrary ( List < Library > list , long id , String name , int size ) { Library li2 = null ; for ( Library li : list ) { if ( li . getId ( ) == id ) { li2 = li ; break ; } } if ( li2 == null ) fail ( "<STR_LIT>" + id ) ; assertEquals ( name , li2 . getName ( ) ) ; assertEquals ( size , li2 . getMedia ( ) . size ( ) ) ; return li2 ; } private PhysicalMedia assertPhysicalMedia ( Set < PhysicalMedia > set , long id , String location , int size ) { PhysicalMedia pm2 = null ; for ( PhysicalMedia pm : set ) { if ( pm . getId ( ) == id ) { pm2 = pm ; break ; } } if ( pm2 == null ) fail ( "<STR_LIT>" + id ) ; assertEquals ( location , pm2 . getLocation ( ) ) ; assertEquals ( size , pm2 . getMedia ( ) . size ( ) ) ; return pm2 ; } private Media assertMedia ( Set < Media > set , long id , String title , int size ) { Media me2 = null ; for ( Media me : set ) { if ( me . getId ( ) == id ) { me2 = me ; break ; } } if ( me2 == null ) fail ( "<STR_LIT>" + id ) ; assertEquals ( title , me2 . getTitle ( ) ) ; assertEquals ( size , me2 . getMediaCharacters ( ) . size ( ) ) ; return me2 ; } private Engagement assertEngagement ( Set < Engagement > set , long id ) { Engagement en2 = null ; for ( Engagement en : set ) { if ( en . getId ( ) == id ) { en2 = en ; break ; } } if ( en2 == null ) fail ( "<STR_LIT>" + id ) ; return en2 ; } private MediaCharacter assertMediaCharacter ( Set < MediaCharacter > set , long id , String name , int size ) { MediaCharacter mc2 = null ; for ( MediaCharacter mc : set ) { if ( mc . getId ( ) == id ) { mc2 = mc ; break ; } } if ( mc2 == null ) fail ( "<STR_LIT>" + id ) ; assertEquals ( name , mc2 . getName ( ) ) ; assertEquals ( size , mc2 . getPlayedBy ( ) . size ( ) ) ; return mc2 ; } private Person assertPerson ( Set < Person > set , long id , String name_first , String name_last ) { Person pe2 = null ; for ( Person pe : set ) { if ( pe . getId ( ) == id ) { pe2 = pe ; break ; } } if ( pe2 == null ) fail ( "<STR_LIT>" + id ) ; assertEquals ( name_first , pe2 . getName ( ) . getFirst ( ) ) ; assertEquals ( name_last , pe2 . getName ( ) . getLast ( ) ) ; return pe2 ; } @ Test public void testExtraJoinPaged ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; PhysicalMedia phm = new PhysicalMedia ( ) ; phm . setStatus ( "<STR_LIT:C>" ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , Movie . class ) ; moreResultClasses . put ( "<STR_LIT>" , Book . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , phm , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:16> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; } @ Test public void testExtraJoinPagedFrom ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; PhysicalMedia phm = new PhysicalMedia ( ) ; phm . setStatus ( "<STR_LIT:C>" ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , Movie . class ) ; moreResultClasses . put ( "<STR_LIT>" , Book . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , phm , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT> , <NUM_LIT:16> , moreResultClasses ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . Date ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlCrudEngine ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . model . Contact ; import org . sqlproc . engine . model . PhoneNumber ; public class TestCustomTypes extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testInsert ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; Contact c = new Contact ( ) ; c . setAddress ( "<STR_LIT>" ) ; c . setCity ( "<STR_LIT>" ) ; c . setZip ( "<STR_LIT>" ) ; c . setState ( null ) ; c . setUuid ( "<STR_LIT:2>" ) ; c . setCreatedDate ( new Date ( ) ) ; c . setCreatedBy ( "<STR_LIT>" ) ; c . setVersion ( <NUM_LIT:1L> ) ; c . setPhone ( new PhoneNumber ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; SqlCrudEngine insertEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = insertEngine . getInsertSql ( c , null ) ; logger . info ( sql ) ; int count = insertEngine . insert ( session , c ) ; assertEquals ( <NUM_LIT:1> , count ) ; SqlCrudEngine getEngine = getCrudEngine ( "<STR_LIT>" ) ; Contact form = new Contact ( ) ; form . setPhone ( new PhoneNumber ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; Contact cc = getEngine . get ( session , Contact . class , form ) ; assertNotNull ( cc ) ; assertEquals ( "<STR_LIT>" , cc . getPhone ( ) . toString ( ) ) ; } @ Test public void testInsert2 ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; Contact c = new Contact ( ) ; c . setAddress ( "<STR_LIT>" ) ; c . setCity ( "<STR_LIT>" ) ; c . setZip ( "<STR_LIT>" ) ; c . setState ( null ) ; c . setUuid ( "<STR_LIT:2>" ) ; c . setCreatedDate ( new Date ( ) ) ; c . setCreatedBy ( "<STR_LIT>" ) ; c . setVersion ( <NUM_LIT:1L> ) ; c . setPhone ( new PhoneNumber ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; SqlCrudEngine insertEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = insertEngine . getInsertSql ( c , null ) ; logger . info ( sql ) ; int count = insertEngine . insert ( session , c ) ; assertEquals ( <NUM_LIT:1> , count ) ; SqlCrudEngine getEngine = getCrudEngine ( "<STR_LIT>" ) ; Contact form = new Contact ( ) ; form . setPhone ( new PhoneNumber ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; Contact cc = getEngine . get ( session , Contact . class , form ) ; assertNotNull ( cc ) ; assertEquals ( "<STR_LIT>" , cc . getPhone ( ) . toString ( ) ) ; } @ Test public void testInsert3 ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; Contact c = new Contact ( ) ; c . setAddress ( "<STR_LIT>" ) ; c . setCity ( "<STR_LIT>" ) ; c . setZip ( "<STR_LIT>" ) ; c . setState ( null ) ; c . setUuid ( "<STR_LIT:2>" ) ; c . setCreatedDate ( new Date ( ) ) ; c . setCreatedBy ( "<STR_LIT>" ) ; c . setVersion ( <NUM_LIT:1L> ) ; c . setPhone ( new PhoneNumber ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; SqlCrudEngine insertEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = insertEngine . getInsertSql ( c , null ) ; logger . info ( sql ) ; int count = insertEngine . insert ( session , c ) ; assertEquals ( <NUM_LIT:1> , count ) ; SqlCrudEngine getEngine = getCrudEngine ( "<STR_LIT>" ) ; Contact form = new Contact ( ) ; form . setPhone ( new PhoneNumber ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; Contact cc = getEngine . get ( session , Contact . class , form ) ; assertNotNull ( cc ) ; assertEquals ( "<STR_LIT>" , cc . getPhone ( ) . toString ( ) ) ; } @ Test public void testInsert4 ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; Contact c = new Contact ( ) ; c . setAddress ( "<STR_LIT>" ) ; c . setCity ( "<STR_LIT>" ) ; c . setZip ( "<STR_LIT>" ) ; c . setState ( null ) ; c . setUuid ( "<STR_LIT:2>" ) ; c . setCreatedDate ( new Date ( ) ) ; c . setCreatedBy ( "<STR_LIT>" ) ; c . setVersion ( <NUM_LIT:1L> ) ; c . setPhone ( new PhoneNumber ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; SqlCrudEngine insertEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = insertEngine . getInsertSql ( c , null ) ; logger . info ( sql ) ; int count = insertEngine . insert ( session , c ) ; assertEquals ( <NUM_LIT:1> , count ) ; SqlCrudEngine getEngine = getCrudEngine ( "<STR_LIT>" ) ; Contact form = new Contact ( ) ; form . setPhone ( new PhoneNumber ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; Contact cc = getEngine . get ( session , Contact . class , form ) ; assertNotNull ( cc ) ; assertEquals ( "<STR_LIT>" , cc . getPhone ( ) . toString ( ) ) ; } @ Test public void testCustomInDynamic ( ) { SqlQueryEngine selectEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = selectEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; Contact form = new Contact ( ) ; form . setPhone ( new PhoneNumber ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; List < Contact > list = selectEngine . query ( session , Contact . class , form , SqlQueryEngine . ASC_ORDER ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; form . setPhone ( new PhoneNumber ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT> ) ) ; list = selectEngine . query ( session , Contact . class , form , SqlQueryEngine . ASC_ORDER ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; } @ Test public void testCustomOut ( ) { SqlQueryEngine selectEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = selectEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; List < Contact > list = selectEngine . query ( session , Contact . class , null , SqlQueryEngine . ASC_ORDER ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Contact c = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , c . getId ( ) ) ; assertNotNull ( c . getPhone ( ) ) ; assertEquals ( "<STR_LIT>" , c . getPhone ( ) . toString ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . ArrayList ; import java . util . HashSet ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . NameCollectionsForm ; import org . sqlproc . engine . form . PersonCollectionsForm ; import org . sqlproc . engine . model . Person ; public class TestCollections extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testCollectionsUndefined ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonCollectionsForm pf = new PersonCollectionsForm ( ) ; pf . setIdSet ( new HashSet < Long > ( ) ) ; pf . getIdSet ( ) . add ( <NUM_LIT> ) ; pf . getIdSet ( ) . add ( <NUM_LIT> ) ; String sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; pf . setUpdatedBySet ( new HashSet < String > ( ) ) ; pf . getUpdatedBySet ( ) . add ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; pf . getUpdatedBySet ( ) . add ( "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; pf . setNames ( new NameCollectionsForm ( ) ) ; list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; pf . getNames ( ) . setFirstList ( new ArrayList < String > ( ) ) ; pf . getNames ( ) . setLastList ( new ArrayList < String > ( ) ) ; list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; pf . getNames ( ) . getLastList ( ) . add ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; pf . getNames ( ) . getLastList ( ) . add ( "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; } @ Test public void testCollectionsStandard ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonCollectionsForm pf = new PersonCollectionsForm ( ) ; pf . setIdSet ( new HashSet < Long > ( ) ) ; pf . getIdSet ( ) . add ( <NUM_LIT> ) ; pf . getIdSet ( ) . add ( <NUM_LIT> ) ; String sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; pf . setUpdatedBySet ( new HashSet < String > ( ) ) ; pf . getUpdatedBySet ( ) . add ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; pf . getUpdatedBySet ( ) . add ( "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; pf . setNames ( new NameCollectionsForm ( ) ) ; list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; pf . getNames ( ) . setFirstList ( new ArrayList < String > ( ) ) ; pf . getNames ( ) . setLastList ( new ArrayList < String > ( ) ) ; list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; pf . getNames ( ) . getLastList ( ) . add ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; pf . getNames ( ) . getLastList ( ) . add ( "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . PersonForm ; import org . sqlproc . engine . model . Person ; public class TestMoreConditions extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testConditionsMore ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; pf . setVersion ( <NUM_LIT:1L> ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; pf . setLastUpdatedBy ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; pf . setLastUpdatedBy ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; } @ Test public void testConditionsMore2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; pf . setVersion ( <NUM_LIT:1L> ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; pf . setLastUpdatedBy ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; pf . setLastUpdatedBy ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . model . Country ; import org . sqlproc . engine . model . Gender ; import org . sqlproc . engine . model . Person ; public class TestAsterisk extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testAnsiBasicAsterisk ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdated ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . model . Book ; import org . sqlproc . engine . model . Engagement ; import org . sqlproc . engine . model . Genre ; import org . sqlproc . engine . model . Library ; import org . sqlproc . engine . model . Media ; import org . sqlproc . engine . model . MediaCharacter ; import org . sqlproc . engine . model . Movie ; import org . sqlproc . engine . model . Person ; import org . sqlproc . engine . model . PhysicalMedia ; public class TestMoreJoins extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testBasicTwoJoins ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; List < Movie > list = sqlEngine . query ( session , Movie . class , null , SqlQueryEngine . ASC_ORDER ) ; assertEquals ( <NUM_LIT:4> , list . size ( ) ) ; Movie mo = list . get ( <NUM_LIT:1> ) ; assertEquals ( "<STR_LIT>" , mo . getTitle ( ) ) ; assertEquals ( <NUM_LIT:2> , mo . getEngagements ( ) . size ( ) ) ; for ( Engagement en : mo . getEngagements ( ) ) { if ( en . getId ( ) == <NUM_LIT:1L> ) { assertEquals ( <NUM_LIT:1L> , ( long ) en . getPerson ( ) . getId ( ) ) ; assertEquals ( "<STR_LIT>" , en . getPerson ( ) . getName ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , en . getPerson ( ) . getName ( ) . getFirst ( ) ) ; } else if ( en . getId ( ) == <NUM_LIT> ) { assertEquals ( <NUM_LIT> , ( long ) en . getPerson ( ) . getId ( ) ) ; assertEquals ( "<STR_LIT>" , en . getPerson ( ) . getName ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , en . getPerson ( ) . getName ( ) . getFirst ( ) ) ; } else { fail ( "<STR_LIT>" + en . getId ( ) ) ; } } assertEquals ( <NUM_LIT:2> , mo . getMediaCharacters ( ) . size ( ) ) ; for ( MediaCharacter mc : mo . getMediaCharacters ( ) ) { if ( mc . getId ( ) == <NUM_LIT> ) { assertEquals ( <NUM_LIT:1> , mc . getPlayedBy ( ) . size ( ) ) ; for ( Person pe : mc . getPlayedBy ( ) ) { assertEquals ( <NUM_LIT:1L> , ( long ) pe . getId ( ) ) ; assertEquals ( "<STR_LIT>" , pe . getName ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , pe . getName ( ) . getFirst ( ) ) ; } } else if ( mc . getId ( ) == <NUM_LIT> ) { assertEquals ( <NUM_LIT:1> , mc . getPlayedBy ( ) . size ( ) ) ; for ( Person pe : mc . getPlayedBy ( ) ) { assertEquals ( <NUM_LIT> , ( long ) pe . getId ( ) ) ; assertEquals ( "<STR_LIT>" , pe . getName ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , pe . getName ( ) . getFirst ( ) ) ; } } else { fail ( "<STR_LIT>" + mc . getId ( ) ) ; } } } @ Test public void testBasicJoinOneToOne ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; List < Person > list = sqlEngine . query ( session , Person . class , null , SqlQueryEngine . ASC_ORDER ) ; assertEquals ( <NUM_LIT:4> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; assertNotNull ( p . getContact ( ) ) ; assertEquals ( "<STR_LIT>" , p . getContact ( ) . getCity ( ) ) ; p = list . get ( <NUM_LIT:1> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; assertNull ( p . getContact ( ) ) ; } @ Test public void testBasicPoly2Join2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; PhysicalMedia pm = new PhysicalMedia ( ) ; pm . setStatus ( "<STR_LIT:C>" ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , Movie . class ) ; moreResultClasses . put ( "<STR_LIT>" , Book . class ) ; List < PhysicalMedia > list = sqlEngine . query ( session , PhysicalMedia . class , pm , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; pm = list . get ( <NUM_LIT:0> ) ; assert2 ( pm ) ; } @ Test public void testBasicPoly2Join ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; PhysicalMedia pm = new PhysicalMedia ( ) ; pm . setStatus ( "<STR_LIT:C>" ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , Movie . class ) ; moreResultClasses . put ( "<STR_LIT>" , Book . class ) ; List < PhysicalMedia > list = sqlEngine . query ( session , PhysicalMedia . class , pm , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; pm = list . get ( <NUM_LIT:0> ) ; assert2 ( pm ) ; } private void assert2 ( PhysicalMedia pm ) { assertEquals ( new Long ( <NUM_LIT:5> ) , pm . getId ( ) ) ; assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; assertEquals ( <NUM_LIT:2> , pm . getMedia ( ) . size ( ) ) ; for ( Media m : pm . getMedia ( ) ) { if ( m . getId ( ) == <NUM_LIT:6> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; Book bk = ( Book ) m ; assertEquals ( "<STR_LIT>" , bk . getIsbn ( ) ) ; } else if ( m . getId ( ) == <NUM_LIT:7> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; Movie mo = ( Movie ) m ; assertEquals ( "<STR_LIT>" , mo . getUrlIMDB ( ) ) ; assertNull ( mo . getCategory ( ) ) ; } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } @ Test public void testBasicPolyJoin2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; PhysicalMedia pm = new PhysicalMedia ( ) ; pm . setStatus ( "<STR_LIT:C>" ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , Movie . class ) ; moreResultClasses . put ( "<STR_LIT>" , Book . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , pm , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert1 ( l ) ; } @ Test public void testBasicPolyJoin ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; PhysicalMedia pm = new PhysicalMedia ( ) ; pm . setStatus ( "<STR_LIT:C>" ) ; Map < String , Class < ? > > moreResultClasses = new HashMap < String , Class < ? > > ( ) ; moreResultClasses . put ( "<STR_LIT>" , Movie . class ) ; moreResultClasses . put ( "<STR_LIT>" , Book . class ) ; List < Library > list = sqlEngine . query ( session , Library . class , pm , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> , moreResultClasses ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Library l = list . get ( <NUM_LIT:0> ) ; assert1 ( l ) ; } private void assert1 ( Library l ) { assertEquals ( new Long ( <NUM_LIT:1> ) , l . getId ( ) ) ; assertEquals ( "<STR_LIT>" , l . getName ( ) ) ; assertEquals ( <NUM_LIT:4> , l . getMedia ( ) . size ( ) ) ; for ( PhysicalMedia pm : l . getMedia ( ) ) { if ( pm . getId ( ) == <NUM_LIT:1> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; assertEquals ( <NUM_LIT:1> , pm . getMedia ( ) . size ( ) ) ; for ( Media m : pm . getMedia ( ) ) { if ( m . getId ( ) == <NUM_LIT:1> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; Movie mo = ( Movie ) m ; assertEquals ( "<STR_LIT:abc>" , mo . getUrlIMDB ( ) ) ; assertEquals ( Genre . STORY , mo . getCategory ( ) ) ; } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } else if ( pm . getId ( ) == <NUM_LIT:2> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; assertEquals ( <NUM_LIT:2> , pm . getMedia ( ) . size ( ) ) ; for ( Media m : pm . getMedia ( ) ) { if ( m . getId ( ) == <NUM_LIT:2> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; Movie mo = ( Movie ) m ; assertEquals ( "<STR_LIT>" , mo . getUrlIMDB ( ) ) ; assertEquals ( Genre . ACTION , mo . getCategory ( ) ) ; } else if ( m . getId ( ) == <NUM_LIT:3> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; Movie mo = ( Movie ) m ; assertEquals ( "<STR_LIT>" , mo . getUrlIMDB ( ) ) ; assertNull ( mo . getCategory ( ) ) ; } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } else if ( pm . getId ( ) == <NUM_LIT:3> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; assertEquals ( <NUM_LIT:1> , pm . getMedia ( ) . size ( ) ) ; for ( Media m : pm . getMedia ( ) ) { if ( m . getId ( ) == <NUM_LIT:4> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; Book bk = ( Book ) m ; assertEquals ( "<STR_LIT>" , bk . getIsbn ( ) ) ; } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } else if ( pm . getId ( ) == <NUM_LIT:4> ) { assertEquals ( "<STR_LIT>" , pm . getLocation ( ) ) ; assertEquals ( <NUM_LIT:1> , pm . getMedia ( ) . size ( ) ) ; for ( Media m : pm . getMedia ( ) ) { if ( m . getId ( ) == <NUM_LIT:5> ) { assertEquals ( "<STR_LIT>" , m . getTitle ( ) ) ; Book bk = ( Book ) m ; assertEquals ( "<STR_LIT>" , bk . getIsbn ( ) ) ; } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } else { fail ( "<STR_LIT>" + pm . getId ( ) ) ; } } } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . HashSet ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . PersonForm ; import org . sqlproc . engine . form . SsnForm ; import org . sqlproc . engine . model . Country ; import org . sqlproc . engine . model . Gender ; import org . sqlproc . engine . model . Person ; import org . sqlproc . engine . model . Size ; public class TestEnums extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testEnums ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setSex ( Gender . MALE ) ; pf . setSsn ( new SsnForm ( ) ) ; pf . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; pf . setClothesSize ( Size . MIDDLE ) ; String sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; assertTrue ( list . size ( ) > <NUM_LIT:0> ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertEquals ( Size . MIDDLE , p . getClothesSize ( ) ) ; pf = new PersonForm ( ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; } @ Test public void testEnums2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setSex ( Gender . MALE ) ; pf . setSsn ( new SsnForm ( ) ) ; pf . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; pf . setClothesSize ( Size . MIDDLE ) ; String sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; assertTrue ( list . size ( ) > <NUM_LIT:0> ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertEquals ( Size . MIDDLE , p . getClothesSize ( ) ) ; pf = new PersonForm ( ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; } @ Test public void testEnumsIn ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setSexs ( new HashSet < Gender > ( ) ) ; pf . getSexs ( ) . add ( Gender . MALE ) ; pf . getSexs ( ) . add ( Gender . FEMALE ) ; pf . setSsn ( new SsnForm ( ) ) ; pf . getSsn ( ) . setCountries ( new HashSet < Country > ( ) ) ; pf . getSsn ( ) . getCountries ( ) . add ( Country . CZECH_REPUBLIC ) ; pf . getSsn ( ) . getCountries ( ) . add ( Country . UNITED_STATES ) ; pf . setClothesSizes ( new HashSet < Size > ( ) ) ; pf . getClothesSizes ( ) . add ( Size . SMALL ) ; pf . getClothesSizes ( ) . add ( Size . MIDDLE ) ; String sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; assertTrue ( list . size ( ) > <NUM_LIT:0> ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertEquals ( Size . MIDDLE , p . getClothesSize ( ) ) ; pf = new PersonForm ( ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; pf = new PersonForm ( ) ; pf . setSexs ( new HashSet < Gender > ( ) ) ; pf . setSsn ( new SsnForm ( ) ) ; pf . getSsn ( ) . setCountries ( new HashSet < Country > ( ) ) ; pf . setClothesSizes ( new HashSet < Size > ( ) ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; } @ Test public void testEnumsIn2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setSexs ( new HashSet < Gender > ( ) ) ; pf . getSexs ( ) . add ( Gender . MALE ) ; pf . getSexs ( ) . add ( Gender . FEMALE ) ; pf . setSsn ( new SsnForm ( ) ) ; pf . getSsn ( ) . setCountries ( new HashSet < Country > ( ) ) ; pf . getSsn ( ) . getCountries ( ) . add ( Country . CZECH_REPUBLIC ) ; pf . getSsn ( ) . getCountries ( ) . add ( Country . UNITED_STATES ) ; pf . setClothesSizes ( new HashSet < Size > ( ) ) ; pf . getClothesSizes ( ) . add ( Size . SMALL ) ; pf . getClothesSizes ( ) . add ( Size . MIDDLE ) ; String sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; assertTrue ( list . size ( ) > <NUM_LIT:0> ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertEquals ( Size . MIDDLE , p . getClothesSize ( ) ) ; pf = new PersonForm ( ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; pf = new PersonForm ( ) ; pf . setSexs ( new HashSet < Gender > ( ) ) ; pf . setSsn ( new SsnForm ( ) ) ; pf . getSsn ( ) . setCountries ( new HashSet < Country > ( ) ) ; pf . setClothesSizes ( new HashSet < Size > ( ) ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; } @ Test public void testEnumsCondition ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setSex ( Gender . MALE ) ; pf . setSsn ( new SsnForm ( ) ) ; pf . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; pf . setClothesSize ( Size . MIDDLE ) ; String sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; assertTrue ( list . size ( ) > <NUM_LIT:0> ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertEquals ( Size . MIDDLE , p . getClothesSize ( ) ) ; pf = new PersonForm ( ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; pf = new PersonForm ( ) ; pf . setSex ( Gender . FEMALE ) ; pf . setSsn ( new SsnForm ( ) ) ; pf . getSsn ( ) . setCountry ( Country . CZECH_REPUBLIC ) ; pf . setClothesSize ( Size . SMALL ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; } @ Test public void testEnumsCondition2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setSex ( Gender . MALE ) ; pf . setSsn ( new SsnForm ( ) ) ; pf . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; pf . setClothesSize ( Size . MIDDLE ) ; String sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; assertTrue ( list . size ( ) > <NUM_LIT:0> ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertEquals ( Size . MIDDLE , p . getClothesSize ( ) ) ; pf = new PersonForm ( ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; pf = new PersonForm ( ) ; pf . setSex ( Gender . FEMALE ) ; pf . setSsn ( new SsnForm ( ) ) ; pf . getSsn ( ) . setCountry ( Country . CZECH_REPUBLIC ) ; pf . setClothesSize ( Size . SMALL ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; } @ Test public void testEnumsCondition3 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setSex ( Gender . MALE ) ; pf . setSsn ( new SsnForm ( ) ) ; pf . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; pf . setClothesSize ( Size . MIDDLE ) ; String sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; assertTrue ( list . size ( ) > <NUM_LIT:0> ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertEquals ( Size . MIDDLE , p . getClothesSize ( ) ) ; pf = new PersonForm ( ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; pf = new PersonForm ( ) ; pf . setSex ( Gender . FEMALE ) ; pf . setSsn ( new SsnForm ( ) ) ; pf . getSsn ( ) . setCountry ( Country . CZECH_REPUBLIC ) ; pf . setClothesSize ( Size . SMALL ) ; sql = sqlEngine . getSql ( pf , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pf , SqlQueryEngine . ASC_ORDER ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . text . DateFormat ; import java . text . SimpleDateFormat ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . model . Person ; public class TestLimit extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testNoLimit ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; List < Person > list = sqlEngine . query ( session , Person . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:7> , list . size ( ) ) ; for ( int i = <NUM_LIT:0> , n = list . size ( ) ; i < n ; i ++ ) assertEquals ( list . get ( i ) . getId ( ) , new Long ( <NUM_LIT:2> + i ) ) ; } @ Test public void testLimitMax ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; List < Person > list = sqlEngine . query ( session , Person . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:3> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; for ( int i = <NUM_LIT:0> , n = list . size ( ) ; i < n ; i ++ ) assertEquals ( list . get ( i ) . getId ( ) , new Long ( <NUM_LIT:2> + i ) ) ; } @ Test public void testLimitMinMax ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; List < Person > list = sqlEngine . query ( session , Person . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:3> , <NUM_LIT:2> ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; for ( int i = <NUM_LIT:0> , n = list . size ( ) ; i < n ; i ++ ) assertEquals ( list . get ( i ) . getId ( ) , new Long ( <NUM_LIT:4> + i ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . HashSet ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . LibraryTransport ; import org . sqlproc . engine . form . MediaTransport ; import org . sqlproc . engine . form . PersonForm ; import org . sqlproc . engine . form . PersonNameForm ; import org . sqlproc . engine . form . SearchForm ; import org . sqlproc . engine . model . Person ; public class TestAdvanced extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testSqlInBracesAdv ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setLast ( "<STR_LIT>" ) ; PersonForm pfc = new PersonForm ( ) ; pfc . setName ( new PersonNameForm ( ) ) ; pfc . getName ( ) . setFirst ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( pf , pfc , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , pfc , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( null , p . getName ( ) ) ; assertEquals ( null , p . getSsn ( ) ) ; pf . setLastUpdatedBy ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( pf , pfc , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , pfc , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , null , null , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( null , p . getName ( ) ) ; assertEquals ( null , p . getSsn ( ) ) ; } @ Test public void testConditionalJoinAdv ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; SearchForm sf = new SearchForm ( ) ; String sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < MediaTransport > list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; MediaTransport gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; if ( gt . getEngagement ( ) != null ) { assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( null , gt . getEngagement ( ) . getRole ( ) ) ; } sf = new SearchForm ( ) ; sf . setIdSet ( new HashSet < Long > ( ) ) ; sf . getIdSet ( ) . add ( <NUM_LIT> ) ; sf . getIdSet ( ) . add ( <NUM_LIT> ) ; sf . setFname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; } @ Test public void testConditionalJoin2LevelsAdv ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; SearchForm sf = new SearchForm ( ) ; String sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < LibraryTransport > list = sqlEngine . query ( session , LibraryTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; LibraryTransport gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getName ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getLocation ( ) ) ; sf = new SearchForm ( ) ; sf . setMedia ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , LibraryTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getName ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getLocation ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getEngagement ( ) . getRole ( ) ) ; sf = new SearchForm ( ) ; sf . setMedia ( "<STR_LIT>" ) ; sf . setFname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , LibraryTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getName ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getLocation ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getEngagement ( ) . getRole ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getEngagement ( ) . getLast ( ) ) ; sf = new SearchForm ( ) ; sf . setFname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , LibraryTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getName ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getLocation ( ) ) ; if ( gt . getMedia ( ) != null ) { assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getEngagement ( ) . getRole ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMedia ( ) . getEngagement ( ) . getLast ( ) ) ; } } @ Test public void testConditionalWhereAdv ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; SearchForm sf = new SearchForm ( ) ; String sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; List < MediaTransport > list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; MediaTransport gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; if ( gt . getEngagement ( ) != null ) { assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( null , gt . getEngagement ( ) . getRole ( ) ) ; } sf = new SearchForm ( ) ; sf . setIdSet ( new HashSet < Long > ( ) ) ; sf . getIdSet ( ) . add ( <NUM_LIT> ) ; sf . getIdSet ( ) . add ( <NUM_LIT> ) ; sf . setFname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; } @ Test public void testConditionalWhereAndBracesAdv ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; SearchForm sf = new SearchForm ( ) ; String sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < MediaTransport > list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; MediaTransport gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; if ( gt . getEngagement ( ) != null ) { assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( null , gt . getEngagement ( ) . getRole ( ) ) ; } sf = new SearchForm ( ) ; sf . setFname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; sf = new SearchForm ( ) ; sf . setFname ( "<STR_LIT>" ) ; sf . setLname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; sf = new SearchForm ( ) ; sf . setLname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; } @ Test public void testConditionalWhereAndBracesMoreAdv ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; SearchForm sf = new SearchForm ( ) ; sf . setFname ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < MediaTransport > list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; MediaTransport gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; if ( gt . getEngagement ( ) != null ) { assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getSsn ( ) ) ; assertEquals ( null , gt . getEngagement ( ) . getRole ( ) ) ; } sf = new SearchForm ( ) ; sf . setFname ( "<STR_LIT>" ) ; sf . setLname ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getSsn ( ) ) ; sf = new SearchForm ( ) ; sf . setSsn ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getSsn ( ) ) ; sf = new SearchForm ( ) ; sf . setFname ( "<STR_LIT>" ) ; sf . setLname ( "<STR_LIT>" ) ; sf . setSsn ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( sf , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , MediaTransport . class , sf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; gt = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , gt . getId ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getMediaTitle ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getLast ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getRole ( ) ) ; assertEquals ( "<STR_LIT>" , gt . getEngagement ( ) . getSsn ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . text . DateFormat ; import java . text . SimpleDateFormat ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . PersonForm ; import org . sqlproc . engine . form . PersonNameForm ; import org . sqlproc . engine . form . SsnForm ; import org . sqlproc . engine . model . Country ; import org . sqlproc . engine . model . Gender ; import org . sqlproc . engine . model . Person ; public class TestMoreParameters extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testParametersMore ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setFirst ( "<STR_LIT:A>" ) ; pf . setSsn ( new SsnForm ( ) ) ; pf . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; try { pf . setCreatedDate ( sdf . parse ( "<STR_LIT>" ) ) ; } catch ( Exception ex ) { fail ( ) ; } pf . setCreatedBy ( "<STR_LIT:A>" ) ; pf . setVersion ( <NUM_LIT:1L> ) ; sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; pf . getName ( ) . setLast ( "<STR_LIT:A>" ) ; pf . setLastUpdatedBy ( "<STR_LIT:A>" ) ; try { pf . setBirthDate ( sdf . parse ( "<STR_LIT>" ) ) ; } catch ( Exception ex ) { fail ( ) ; } sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; pf . getSsn ( ) . setNumber ( "<STR_LIT:A>" ) ; pf . setSex ( Gender . FEMALE ) ; try { pf . setLastUpdated ( sdf . parse ( "<STR_LIT>" ) ) ; } catch ( Exception ex ) { fail ( ) ; } sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; } @ Test public void testParametersMore2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setFirst ( "<STR_LIT:A>" ) ; pf . setSsn ( new SsnForm ( ) ) ; pf . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; try { pf . setCreatedDate ( sdf . parse ( "<STR_LIT>" ) ) ; } catch ( Exception ex ) { fail ( ) ; } pf . setCreatedBy ( "<STR_LIT:A>" ) ; pf . setVersion ( <NUM_LIT:1L> ) ; sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; pf . getName ( ) . setLast ( "<STR_LIT:A>" ) ; pf . setLastUpdatedBy ( "<STR_LIT:A>" ) ; try { pf . setBirthDate ( sdf . parse ( "<STR_LIT>" ) ) ; } catch ( Exception ex ) { fail ( ) ; } sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; pf . getSsn ( ) . setNumber ( "<STR_LIT:A>" ) ; pf . setSex ( Gender . FEMALE ) ; try { pf . setLastUpdated ( sdf . parse ( "<STR_LIT>" ) ) ; } catch ( Exception ex ) { fail ( ) ; } sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; } @ Test public void testParametersTop ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; assertEquals ( <NUM_LIT> , list . get ( <NUM_LIT:0> ) . getId ( ) . longValue ( ) ) ; pf . setCreatedBy ( "<STR_LIT>" ) ; sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . Date ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlCrudEngine ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . model . Country ; import org . sqlproc . engine . model . Gender ; import org . sqlproc . engine . model . Person ; import org . sqlproc . engine . model . PersonName ; import org . sqlproc . engine . model . Size ; import org . sqlproc . engine . model . Ssn ; public class TestCrud extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testInsertEmpty ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = new Person ( ) ; p . setId ( <NUM_LIT> ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; p . setSex ( Gender . MALE ) ; p . setCreatedDate ( new Date ( ) ) ; p . setCreatedBy ( "<STR_LIT>" ) ; p . setVersion ( <NUM_LIT:1L> ) ; p . setClothesSize ( Size . MIDDLE ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = crudEngine . getInsertSql ( p , null ) ; logger . info ( sql ) ; int count = crudEngine . insert ( session , p ) ; assertEquals ( <NUM_LIT:1> , count ) ; logger . info ( "<STR_LIT>" + p . getId ( ) ) ; assertNotNull ( p . getId ( ) ) ; Person p2 = new Person ( ) ; p2 . setId ( p . getId ( ) ) ; list = sqlEngine . query ( session , Person . class , p2 ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p3 = list . get ( <NUM_LIT:0> ) ; assertEquals ( "<STR_LIT>" , p3 . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p3 . getName ( ) . getLast ( ) ) ; } @ Test public void testGetNull ( ) { SqlCrudEngine sqlEngine = getCrudEngine ( "<STR_LIT>" ) ; Person p = new Person ( ) ; p . setId ( <NUM_LIT> ) ; Person person2 = sqlEngine . get ( session , Person . class , p ) ; assertNull ( person2 ) ; } @ Test public void testDelete3 ( ) { SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; Person p = new Person ( ) ; List < Person > list = sqlEngine . query ( session , Person . class , p ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" ) ; p . setId ( list . get ( <NUM_LIT:0> ) . getId ( ) ) ; String sql = crudEngine . getDeleteSql ( p , p ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; int count = crudEngine . delete ( session , p ) ; assertEquals ( <NUM_LIT:1> , count ) ; list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; try { count = crudEngine . delete ( session , null ) ; fail ( ) ; } catch ( IllegalArgumentException e ) { assertContains ( e . getMessage ( ) , "<STR_LIT>" ) ; } } @ Test public void testDelete4 ( ) { SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; Person p = new Person ( ) ; List < Person > list = sqlEngine . query ( session , Person . class , p ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" ) ; p . setId ( list . get ( <NUM_LIT:0> ) . getId ( ) ) ; String sql = crudEngine . getDeleteSql ( p , p ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; int count = crudEngine . delete ( session , p ) ; assertEquals ( <NUM_LIT:1> , count ) ; list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; try { count = crudEngine . delete ( session , null ) ; fail ( ) ; } catch ( IllegalArgumentException e ) { assertContains ( e . getMessage ( ) , "<STR_LIT>" ) ; } } @ Test public void testGet2 ( ) { SqlCrudEngine sqlEngine = getCrudEngine ( "<STR_LIT>" ) ; Person p = new Person ( ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; Person person2 = sqlEngine . get ( session , Person . class , p ) ; assertNotNull ( person2 ) ; assertEquals ( "<STR_LIT>" , person2 . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , person2 . getName ( ) . getLast ( ) ) ; } @ Test public void testGet ( ) { SqlCrudEngine sqlEngine = getCrudEngine ( "<STR_LIT>" ) ; Person p = new Person ( ) ; p . setId ( <NUM_LIT> ) ; Person person2 = sqlEngine . get ( session , Person . class , p ) ; assertNotNull ( person2 ) ; assertEquals ( "<STR_LIT>" , person2 . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , person2 . getName ( ) . getLast ( ) ) ; } @ Test public void testDelete2 ( ) { SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; Person p = new Person ( ) ; List < Person > list = sqlEngine . query ( session , Person . class , p ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = crudEngine . getDeleteSql ( p , null ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; int count = crudEngine . delete ( session , p ) ; assertEquals ( <NUM_LIT:2> , count ) ; list = sqlEngine . query ( session , Person . class , p ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; } @ Test public void testDelete ( ) { SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; Person p = new Person ( ) ; p . setId ( <NUM_LIT> ) ; List < Person > list = sqlEngine . query ( session , Person . class , p ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; assertEquals ( "<STR_LIT>" , list . get ( <NUM_LIT:0> ) . getName ( ) . getFirst ( ) ) ; assertNotSame ( null , list . get ( <NUM_LIT:0> ) . getCreatedDate ( ) ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = crudEngine . getDeleteSql ( p , null ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; int count = crudEngine . delete ( session , p ) ; assertEquals ( <NUM_LIT:1> , count ) ; list = sqlEngine . query ( session , Person . class , p ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; } @ Test public void testUpdate2 ( ) { SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; Person p = new Person ( ) ; p . setId ( <NUM_LIT> ) ; List < Person > list = sqlEngine . query ( session , Person . class , p ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; assertEquals ( "<STR_LIT>" , list . get ( <NUM_LIT:0> ) . getName ( ) . getFirst ( ) ) ; assertNotSame ( null , list . get ( <NUM_LIT:0> ) . getCreatedDate ( ) ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . setCreatedDate ( null ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = crudEngine . getUpdateSql ( p , null ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; int count = crudEngine . update ( session , p ) ; assertEquals ( <NUM_LIT:1> , count ) ; list = sqlEngine . query ( session , Person . class , p ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; assertEquals ( "<STR_LIT>" , list . get ( <NUM_LIT:0> ) . getName ( ) . getFirst ( ) ) ; if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertNotNull ( list . get ( <NUM_LIT:0> ) . getCreatedDate ( ) ) ; else assertEquals ( null , list . get ( <NUM_LIT:0> ) . getCreatedDate ( ) ) ; } @ Test public void testUpdate1 ( ) { SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; Person p = new Person ( ) ; p . setId ( <NUM_LIT> ) ; List < Person > list = sqlEngine . query ( session , Person . class , p ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; assertEquals ( "<STR_LIT>" , list . get ( <NUM_LIT:0> ) . getName ( ) . getFirst ( ) ) ; assertNotSame ( null , list . get ( <NUM_LIT:0> ) . getCreatedDate ( ) ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . setCreatedDate ( null ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = crudEngine . getUpdateSql ( p , null ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; int count = crudEngine . update ( session , p ) ; assertEquals ( <NUM_LIT:1> , count ) ; list = sqlEngine . query ( session , Person . class , p ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; assertEquals ( "<STR_LIT>" , list . get ( <NUM_LIT:0> ) . getName ( ) . getFirst ( ) ) ; if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertNotNull ( list . get ( <NUM_LIT:0> ) . getCreatedDate ( ) ) ; else assertEquals ( null , list . get ( <NUM_LIT:0> ) . getCreatedDate ( ) ) ; } @ Test public void testInsert7 ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; p . setSex ( Gender . MALE ) ; p . setCreatedBy ( "<STR_LIT>" ) ; p . setVersion ( <NUM_LIT:1L> ) ; p . setClothesSize ( Size . MIDDLE ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = crudEngine . getInsertSql ( p , null ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; int count = crudEngine . insert ( session , p ) ; assertEquals ( <NUM_LIT:1> , count ) ; logger . info ( "<STR_LIT>" + p . getId ( ) ) ; assertNotNull ( p . getId ( ) ) ; list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; } @ Test public void testInsert6 ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; p . setSex ( Gender . MALE ) ; p . setCreatedBy ( "<STR_LIT>" ) ; p . setVersion ( <NUM_LIT:1L> ) ; p . setClothesSize ( Size . MIDDLE ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = crudEngine . getInsertSql ( p , null ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; int count = crudEngine . insert ( session , p ) ; assertEquals ( <NUM_LIT:1> , count ) ; logger . info ( "<STR_LIT>" + p . getId ( ) ) ; assertNotNull ( p . getId ( ) ) ; list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; } @ Test public void testInsert5 ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; p . setSex ( Gender . MALE ) ; p . setCreatedBy ( "<STR_LIT>" ) ; p . setVersion ( <NUM_LIT:1L> ) ; p . setClothesSize ( Size . MIDDLE ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = crudEngine . getInsertSql ( p , null ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; int count = crudEngine . insert ( session , p ) ; assertEquals ( <NUM_LIT:1> , count ) ; logger . info ( "<STR_LIT>" + p . getId ( ) ) ; assertNotNull ( p . getId ( ) ) ; list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; } @ Test public void testInsert4 ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; p . setSex ( Gender . MALE ) ; p . setCreatedBy ( "<STR_LIT>" ) ; p . setVersion ( <NUM_LIT:1L> ) ; p . setClothesSize ( Size . MIDDLE ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = crudEngine . getInsertSql ( p , null ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; int count = crudEngine . insert ( session , p ) ; assertEquals ( <NUM_LIT:1> , count ) ; logger . info ( "<STR_LIT>" + p . getId ( ) ) ; assertNotNull ( p . getId ( ) ) ; list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; } @ Test public void testInsert3 ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; p . setSex ( Gender . MALE ) ; p . setCreatedBy ( "<STR_LIT>" ) ; p . setVersion ( <NUM_LIT:1L> ) ; p . setClothesSize ( Size . MIDDLE ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = crudEngine . getInsertSql ( p , null ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; int count = crudEngine . insert ( session , p ) ; assertEquals ( <NUM_LIT:1> , count ) ; logger . info ( "<STR_LIT>" + p . getId ( ) ) ; assertNotNull ( p . getId ( ) ) ; list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; } @ Test public void testInsert2 ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; p . setSex ( Gender . MALE ) ; p . setCreatedBy ( "<STR_LIT>" ) ; p . setVersion ( <NUM_LIT:1L> ) ; p . setClothesSize ( Size . MIDDLE ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = crudEngine . getInsertSql ( p , null ) ; logger . info ( sql ) ; int count = crudEngine . insert ( session , p ) ; assertEquals ( <NUM_LIT:1> , count ) ; list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; } @ Test public void testInsert ( ) { SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = new Person ( ) ; p . setId ( <NUM_LIT> ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; p . setSex ( Gender . MALE ) ; p . setCreatedDate ( new Date ( ) ) ; p . setCreatedBy ( "<STR_LIT>" ) ; p . setVersion ( <NUM_LIT:1L> ) ; p . setClothesSize ( Size . MIDDLE ) ; SqlCrudEngine crudEngine = getCrudEngine ( "<STR_LIT>" ) ; String sql = crudEngine . getInsertSql ( p , null ) ; logger . info ( sql ) ; int count = crudEngine . insert ( session , p ) ; assertEquals ( <NUM_LIT:1> , count ) ; logger . info ( "<STR_LIT>" + p . getId ( ) ) ; assertNotNull ( p . getId ( ) ) ; list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import org . junit . Ignore ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . PersonForm ; import org . sqlproc . engine . plugin . CustomizedSqlPlugins ; import org . sqlproc . engine . plugin . SimpleSqlPluginFactory ; public class TestSqlPlugins extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test @ Ignore public void testIsEmptyPlugin ( ) { final SimpleSqlPluginFactory sqlPluginFactory = ( SimpleSqlPluginFactory ) SimpleSqlPluginFactory . getInstance ( ) ; sqlPluginFactory . setIsEmptyPlugin ( new CustomizedSqlPlugins ( ) ) ; final SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" , sqlPluginFactory ) ; final PersonForm personForm = new PersonForm ( ) ; personForm . setId ( <NUM_LIT> ) ; personForm . setCreatedBy ( "<STR_LIT:0>" ) ; final String sql = sqlEngine . getSql ( personForm , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; } @ Test public void testIsTruePlugin ( ) { final SimpleSqlPluginFactory sqlPluginFactory = ( SimpleSqlPluginFactory ) SimpleSqlPluginFactory . getInstance ( ) ; sqlPluginFactory . setIsTruePlugin ( new CustomizedSqlPlugins ( ) ) ; final SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" , sqlPluginFactory ) ; final PersonForm personForm = new PersonForm ( ) ; personForm . setCreatedBy ( "<STR_LIT:0>" ) ; final String sql = sqlEngine . getSql ( personForm , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import static org . sqlproc . engine . SqlOrder . getDescOrder ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . model . Person ; public class TestOrder extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testOrder ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , new Object ( ) , SqlQueryEngine . ASC_ORDER ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; sql = sqlEngine . getSql ( null , null , getDescOrder ( <NUM_LIT:2> ) ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , null , null , getDescOrder ( <NUM_LIT:2> ) , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; sql = sqlEngine . getSql ( null , null , getDescOrder ( <NUM_LIT:1> ) . addAscOrder ( <NUM_LIT:4> ) ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , null , null , getDescOrder ( <NUM_LIT:1> ) . addAscOrder ( <NUM_LIT:4> ) , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; sql = sqlEngine . getSql ( null , null , getDescOrder ( <NUM_LIT:1> ) . addAscOrder ( <NUM_LIT:4> ) . addDescOrder ( <NUM_LIT:3> ) ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , null , null , getDescOrder ( <NUM_LIT:1> ) . addAscOrder ( <NUM_LIT:4> ) . addDescOrder ( <NUM_LIT:3> ) , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . io . BufferedReader ; import java . io . IOException ; import java . io . InputStream ; import java . io . InputStreamReader ; import java . sql . Connection ; import java . sql . SQLException ; import java . sql . Statement ; import java . util . ArrayList ; import java . util . List ; import java . util . Properties ; import org . apache . commons . dbcp . BasicDataSource ; import org . apache . commons . dbcp . PoolableConnection ; import org . dbunit . DatabaseTestCase ; import org . dbunit . DatabaseUnitException ; import org . dbunit . database . DatabaseConfig ; import org . dbunit . database . DatabaseConnection ; import org . dbunit . database . IDatabaseConnection ; import org . dbunit . dataset . IDataSet ; import org . dbunit . dataset . ReplacementDataSet ; import org . dbunit . dataset . xml . FlatXmlDataSet ; import org . dbunit . ext . mssql . InsertIdentityOperation ; import org . dbunit . operation . CompositeOperation ; import org . dbunit . operation . DatabaseOperation ; import org . junit . Ignore ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import org . springframework . jdbc . core . JdbcTemplate ; import org . springframework . jdbc . datasource . DataSourceTransactionManager ; import org . springframework . transaction . TransactionStatus ; import org . springframework . transaction . support . TransactionCallback ; import org . springframework . transaction . support . TransactionTemplate ; import org . sqlproc . engine . SqlCrudEngine ; import org . sqlproc . engine . SqlEngineFactory ; import org . sqlproc . engine . SqlFilesLoader ; import org . sqlproc . engine . SqlProcedureEngine ; import org . sqlproc . engine . SqlProcessorLoader ; import org . sqlproc . engine . SqlPropertiesLoader ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . jdbc . type . JdbcTypeFactory ; import org . sqlproc . engine . plugin . SimpleSqlPluginFactory ; import org . sqlproc . engine . plugin . SqlPluginFactory ; import org . sqlproc . engine . spring . SpringSimpleSession ; import org . sqlproc . engine . type . PhoneNumberType ; import org . sqlproc . engine . type . SqlInternalType ; @ Ignore ( "<STR_LIT>" ) public abstract class TestDatabase extends DatabaseTestCase { protected final Logger logger = LoggerFactory . getLogger ( getClass ( ) ) ; protected static final String CONFIGURATION_NAME = "<STR_LIT>" ; protected static final String DDL_CREATE_DB = "<STR_LIT>" ; protected static final String DDL_DROP_DB = "<STR_LIT>" ; protected static final String STATEMENTS_PROPS = "<STR_LIT>" ; protected static final String STATEMENTS_FILES = "<STR_LIT>" ; protected static final String DB_TYPE = "<STR_LIT>" ; protected static final String NEW_LOADER = "<STR_LIT>" ; protected static final String DATATYPE_FACTORY = "<STR_LIT>" ; protected static Properties testProperties ; protected static StringBuilder metaStatements ; protected static String dbType ; protected static List < String > ddlCreateDb ; protected static List < String > ddlDropDb ; protected static boolean dbCreated = false ; protected static List < SqlInternalType > customTypes = new ArrayList < SqlInternalType > ( ) ; static { customTypes . add ( new PhoneNumberType ( ) ) ; } protected static JdbcTemplate jdbcTemplate ; protected static DataSourceTransactionManager transactionManager ; protected static TransactionTemplate txTemplate ; protected SpringSimpleSession session ; static { testProperties = SqlPropertiesLoader . getProperties ( DatabaseTestCase . class , "<STR_LIT>" ) ; dbType = testProperties . getProperty ( DB_TYPE ) ; if ( containsProperty ( testProperties , DDL_CREATE_DB ) ) { ddlCreateDb = loadDDL ( testProperties . getProperty ( DDL_CREATE_DB ) ) ; } if ( containsProperty ( testProperties , DDL_DROP_DB ) ) { ddlDropDb = loadDDL ( testProperties . getProperty ( DDL_DROP_DB ) ) ; } String [ ] metaFilesNames = testProperties . getProperty ( STATEMENTS_FILES ) . split ( "<STR_LIT>" ) ; metaStatements = SqlFilesLoader . getStatements ( DatabaseTestCase . class , metaFilesNames ) ; metaStatements . append ( "<STR_LIT:n>" ) . append ( "<STR_LIT>" ) ; BasicDataSource dataSource = new BasicDataSource ( ) ; dataSource . setDriverClassName ( testProperties . getProperty ( "<STR_LIT>" ) ) ; dataSource . setUrl ( testProperties . getProperty ( "<STR_LIT>" ) ) ; dataSource . setUsername ( testProperties . getProperty ( "<STR_LIT>" ) ) ; dataSource . setPassword ( testProperties . getProperty ( "<STR_LIT>" ) ) ; dataSource . setMaxActive ( <NUM_LIT:1> ) ; dataSource . setAccessToUnderlyingConnectionAllowed ( true ) ; jdbcTemplate = new JdbcTemplate ( ) ; jdbcTemplate . setDataSource ( dataSource ) ; transactionManager = new DataSourceTransactionManager ( ) ; transactionManager . setDataSource ( dataSource ) ; txTemplate = new TransactionTemplate ( transactionManager ) ; } public TestDatabase ( ) { } public TestDatabase ( String name ) { super ( name ) ; } @ Override protected IDatabaseConnection getConnection ( ) throws Exception { IDatabaseConnection connection = new DbConnection ( jdbcTemplate . getDataSource ( ) . getConnection ( ) ) ; DatabaseConfig config = connection . getConfig ( ) ; if ( containsProperty ( testProperties , DATATYPE_FACTORY ) ) { Class clazz = Class . forName ( testProperties . getProperty ( DATATYPE_FACTORY ) ) ; config . setProperty ( DatabaseConfig . PROPERTY_DATATYPE_FACTORY , BeanUtils . getInstance ( clazz ) ) ; } return connection ; } @ Override protected IDataSet getDataSet ( ) throws Exception { ReplacementDataSet dataSet = new ReplacementDataSet ( new FlatXmlDataSet ( this . getClass ( ) . getClassLoader ( ) . getResourceAsStream ( getDataSetFile ( dbType ) ) ) ) ; dataSet . addReplacementObject ( "<STR_LIT>" , null ) ; return dataSet ; } protected String getDataSetFile ( ) { throw new UnsupportedOperationException ( "<STR_LIT>" ) ; } protected abstract String getDataSetFile ( String dbType ) ; protected DatabaseOperation getSetUpOperation ( ) throws Exception { final DatabaseOperation cleanInsertOperation ; if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) { cleanInsertOperation = InsertIdentityOperation . CLEAN_INSERT ; } else { cleanInsertOperation = DatabaseOperation . CLEAN_INSERT ; } if ( dbCreated || ddlCreateDb == null ) { return cleanInsertOperation ; } else { DatabaseOperation operation = new CompositeOperation ( new BatchOperation ( ddlCreateDb ) , cleanInsertOperation ) ; dbCreated = true ; return operation ; } } protected DatabaseOperation getTearDownOperation ( ) throws Exception { return DatabaseOperation . NONE ; } protected void setUp ( ) throws Exception { super . setUp ( ) ; ParserUtils . nullCounter ( ) ; session = new SpringSimpleSession ( jdbcTemplate ) ; } protected void tearDown ( ) throws Exception { super . tearDown ( ) ; } private static List < String > loadDDL ( String filename ) { List < String > sqls = new ArrayList < String > ( ) ; try { InputStream in = Thread . currentThread ( ) . getContextClassLoader ( ) . getResourceAsStream ( filename ) ; BufferedReader r = new BufferedReader ( new InputStreamReader ( in ) ) ; String line = null ; String EOL = System . getProperty ( "<STR_LIT>" ) ; StringBuilder sql = new StringBuilder ( ) ; while ( ( line = r . readLine ( ) ) != null ) { if ( ! TestUtils . isBlank ( line ) && ! line . startsWith ( "<STR_LIT:-->" ) ) { sql . append ( line + EOL ) ; } else { if ( sql . length ( ) > <NUM_LIT:0> ) { sqls . add ( sql . toString ( ) ) ; sql = new StringBuilder ( ) ; } } } if ( sql . length ( ) > <NUM_LIT:0> ) { sqls . add ( sql . toString ( ) ) ; } in . close ( ) ; } catch ( IOException e ) { return null ; } return sqls ; } private static class BatchOperation extends DatabaseOperation { List < String > sqls ; BatchOperation ( List < String > sqls ) { this . sqls = sqls ; } public void execute ( IDatabaseConnection connection , IDataSet dataSet ) throws DatabaseUnitException , SQLException { Statement stmt = null ; try { stmt = connection . getConnection ( ) . createStatement ( ) ; for ( String sql : sqls ) stmt . addBatch ( sql ) ; stmt . executeBatch ( ) ; } catch ( SQLException e ) { System . out . println ( "<STR_LIT>" + e . getMessage ( ) ) ; System . out . println ( "<STR_LIT>" + e . getErrorCode ( ) ) ; System . out . println ( "<STR_LIT>" + e . getSQLState ( ) ) ; System . out . println ( "<STR_LIT>" + e . getCause ( ) ) ; System . out . println ( "<STR_LIT>" + e . getMessage ( ) ) ; throw e ; } finally { if ( stmt != null ) { try { stmt . close ( ) ; } catch ( SQLException ignore ) { } } } } } protected SqlEngineFactory getEngineFactory ( String name , SqlPluginFactory sqlPluginFactory ) { SqlProcessContext . nullFeatures ( ) ; SqlProcessContext . nullTypeFactory ( ) ; SqlEngineFactory factory ; factory = new SqlProcessorLoader ( metaStatements , JdbcTypeFactory . getInstance ( ) , sqlPluginFactory , dbType , null , customTypes , name ) ; assertNotNull ( factory ) ; return factory ; } protected SqlQueryEngine getQueryEngine ( String name , SqlPluginFactory sqlPluginFactory ) { SqlEngineFactory factory = getEngineFactory ( name , sqlPluginFactory ) ; SqlQueryEngine sqlEngine = factory . getQueryEngine ( name ) ; assertNotNull ( sqlEngine ) ; return sqlEngine ; } SqlEngineFactory getEngineFactory ( String name ) { SqlProcessContext . nullFeatures ( ) ; SqlProcessContext . nullTypeFactory ( ) ; SqlEngineFactory factory ; factory = new SqlProcessorLoader ( metaStatements , JdbcTypeFactory . getInstance ( ) , SimpleSqlPluginFactory . getInstance ( ) , dbType , null , customTypes , name ) ; assertNotNull ( factory ) ; return factory ; } SqlEngineFactory getEngineFactory ( String name , String filter ) { SqlProcessContext . nullFeatures ( ) ; SqlProcessContext . nullTypeFactory ( ) ; SqlEngineFactory factory ; factory = new SqlProcessorLoader ( metaStatements , JdbcTypeFactory . getInstance ( ) , SimpleSqlPluginFactory . getInstance ( ) , filter , null , customTypes , name ) ; assertNotNull ( factory ) ; return factory ; } SqlQueryEngine getQueryEngine ( String name ) { SqlEngineFactory factory = getEngineFactory ( name ) ; SqlQueryEngine sqlEngine = factory . getQueryEngine ( name ) ; assertNotNull ( sqlEngine ) ; return sqlEngine ; } SqlQueryEngine getSqlEngine ( String name ) { return getQueryEngine ( name ) ; } SqlCrudEngine getCrudEngine ( String name , String filter ) { SqlEngineFactory factory = getEngineFactory ( name , filter ) ; SqlCrudEngine sqlEngine = factory . getCrudEngine ( name ) ; assertNotNull ( sqlEngine ) ; return sqlEngine ; } SqlCrudEngine getCrudEngine ( String name ) { SqlEngineFactory factory = getEngineFactory ( name ) ; SqlCrudEngine sqlEngine = factory . getCrudEngine ( name ) ; assertNotNull ( sqlEngine ) ; return sqlEngine ; } SqlProcedureEngine getProcedureEngine ( String name ) { SqlEngineFactory factory = getEngineFactory ( name ) ; SqlProcedureEngine sqlEngine = factory . getProcedureEngine ( name ) ; assertNotNull ( sqlEngine ) ; return sqlEngine ; } protected void assertContains ( String in , String what ) { if ( ! in . contains ( what ) ) { fail ( "<STR_LIT>" + what + "<STR_LIT>" + in + "<STR_LIT:>>" ) ; } } protected void assertContains ( String in , String what , String what2 ) { if ( ! in . contains ( what ) && ! in . contains ( what2 ) ) { fail ( "<STR_LIT>" + what + "<STR_LIT:/>" + what2 + "<STR_LIT>" + in + "<STR_LIT:>>" ) ; } } protected void assertDoNotContain ( String in , String what ) { if ( in . contains ( what ) ) { fail ( "<STR_LIT>" + what + "<STR_LIT>" + in + "<STR_LIT:>>" ) ; } } static boolean containsProperty ( Properties props , String name ) { String s = props . getProperty ( name ) ; if ( s == null || s . trim ( ) . length ( ) == <NUM_LIT:0> ) return false ; return true ; } protected < T > T doInTransaction ( final TestOperation < T > testTransaction , String databaseType ) { if ( databaseType == null || ! dbType . equalsIgnoreCase ( databaseType ) ) { return testTransaction . doTest ( ) ; } return txTemplate . execute ( new TransactionCallback < T > ( ) { @ Override public T doInTransaction ( TransactionStatus status ) { return testTransaction . doTest ( ) ; } } ) ; } public static class DbConnection extends DatabaseConnection { Connection wrapperConnection ; public DbConnection ( Connection connection ) throws DatabaseUnitException { super ( ( ( PoolableConnection ) ( ( Connection ) BeanUtils . getProperty ( connection , "<STR_LIT>" ) ) ) . getDelegate ( ) ) ; wrapperConnection = connection ; } public DbConnection ( Connection connection , String schema ) throws DatabaseUnitException { super ( ( ( PoolableConnection ) ( ( Connection ) BeanUtils . getProperty ( connection , "<STR_LIT>" ) ) ) . getDelegate ( ) ) ; wrapperConnection = connection ; } @ Override public void close ( ) throws SQLException { wrapperConnection . close ( ) ; } } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . SqlRuntimeException ; import org . sqlproc . engine . model . Gender ; import org . sqlproc . engine . model . Person ; public class TestExceptions extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testMissingNestedOutputAttribute ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; try { List < Result4 > list = sqlEngine . query ( session , Result4 . class , new Form7 ( ) , new Form7 ( ) ) ; fail ( "<STR_LIT>" ) ; } catch ( SqlRuntimeException e ) { logger . info ( e . getMessage ( ) ) ; assertContains ( e . getMessage ( ) , "<STR_LIT>" ) ; } } @ Test public void testMissingOutputAttributeSetter2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; try { List < Result3 > list = sqlEngine . query ( session , Result3 . class , new Form7 ( ) , new Form7 ( ) ) ; fail ( "<STR_LIT>" ) ; } catch ( SqlRuntimeException e ) { logger . info ( e . getMessage ( ) ) ; assertContains ( e . getMessage ( ) , "<STR_LIT>" ) ; } } @ Test public void testMissingOutputAttributeSetter ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; try { List < Result2 > list = sqlEngine . query ( session , Result2 . class , new Form7 ( ) , new Form7 ( ) ) ; fail ( "<STR_LIT>" ) ; } catch ( SqlRuntimeException e ) { logger . info ( e . getMessage ( ) ) ; assertContains ( e . getMessage ( ) , "<STR_LIT>" , "<STR_LIT>" ) ; } } @ Test public void testMissingOutputAttribute ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; try { List < Result1 > list = sqlEngine . query ( session , Result1 . class , new Form7 ( ) , new Form7 ( ) ) ; fail ( "<STR_LIT>" ) ; } catch ( SqlRuntimeException e ) { logger . info ( e . getMessage ( ) ) ; assertContains ( e . getMessage ( ) , "<STR_LIT>" ) ; } } @ Test public void testMissingOutputAttributeGetter ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; try { List < Object > list = sqlEngine . query ( session , Object . class , new Form7 ( ) , new Form7 ( ) ) ; fail ( "<STR_LIT>" ) ; } catch ( SqlRuntimeException e ) { logger . info ( e . getMessage ( ) ) ; assertContains ( e . getMessage ( ) , "<STR_LIT>" ) ; } } @ Test public void testMissingNestedConstantAttribute ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; try { List < Person > list = sqlEngine . query ( session , Person . class , new Form5 ( ) , new Form5 ( ) ) ; fail ( "<STR_LIT>" ) ; } catch ( SqlRuntimeException e ) { logger . info ( e . getMessage ( ) ) ; assertContains ( e . getMessage ( ) , "<STR_LIT>" ) ; } } @ Test public void testMissingConstantAttribute ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; try { List < Person > list = sqlEngine . query ( session , Person . class , new Form3 ( ) , new Form3 ( ) ) ; fail ( "<STR_LIT>" ) ; } catch ( SqlRuntimeException e ) { logger . info ( e . getMessage ( ) ) ; assertContains ( e . getMessage ( ) , "<STR_LIT>" ) ; } } @ Test public void testMissingNestedAttribute ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; try { List < Person > list = sqlEngine . query ( session , Person . class , new Form2 ( ) ) ; fail ( "<STR_LIT>" ) ; } catch ( SqlRuntimeException e ) { logger . info ( e . getMessage ( ) ) ; assertContains ( e . getMessage ( ) , "<STR_LIT>" ) ; } } @ Test public void testMissingGetter ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; try { List < Person > list = sqlEngine . query ( session , Person . class , new Form1 ( ) ) ; fail ( "<STR_LIT>" ) ; } catch ( SqlRuntimeException e ) { logger . info ( e . getMessage ( ) ) ; assertContains ( e . getMessage ( ) , "<STR_LIT>" ) ; } } @ Test public void testMissingAttribute ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; try { List < Person > list = sqlEngine . query ( session , Person . class , new Object ( ) ) ; fail ( "<STR_LIT>" ) ; } catch ( SqlRuntimeException e ) { logger . info ( e . getMessage ( ) ) ; assertContains ( e . getMessage ( ) , "<STR_LIT>" ) ; } } public static class Result4 { private String name ; private Long id ; public String getName ( ) { return name ; } public Long getId ( ) { return id ; } public void setName ( String name ) { this . name = name ; } public void setId ( Long id ) { this . id = id ; } } public static class Result3 { private String name ; private Long id ; public String getName ( ) { return name ; } public Long getId ( ) { return id ; } public void setId ( Long id ) { this . id = id ; } } public static class Result2 { private String name ; private Long id ; public String getName ( ) { return name ; } public Long getId ( ) { return id ; } } public static class Result1 { private String name ; public String getName ( ) { return name ; } } public static class Form7 { public static class Form8 { private String first ; private String last ; public String getFirst ( ) { return first ; } public void setFirst ( String first ) { this . first = first ; } public String getLast ( ) { return last ; } public void setLast ( String last ) { this . last = last ; } } private Long id ; private Form8 name ; private Gender sex ; public Long getId ( ) { return id ; } public void setId ( Long id ) { this . id = id ; } public Form8 getName ( ) { return name ; } public void setName ( Form8 name ) { this . name = name ; } public Gender getSex ( ) { return sex ; } public void setSex ( Gender sex ) { this . sex = sex ; } } public static class Form5 { public static class Form6 { private String first ; public String getFirst ( ) { return first ; } public void setFirst ( String first ) { this . first = first ; } } private Long id ; private Form6 name ; private Gender sex ; public Long getId ( ) { return id ; } public void setId ( Long id ) { this . id = id ; } public Form6 getName ( ) { return name ; } public void setName ( Form6 name ) { this . name = name ; } public Gender getSex ( ) { return sex ; } public void setSex ( Gender sex ) { this . sex = sex ; } } public static class Form3 { public static class Form4 { private String first ; public String getFirst ( ) { return first ; } public void setFirst ( String first ) { this . first = first ; } } private Long id ; private Form4 name ; public Long getId ( ) { return id ; } public void setId ( Long id ) { this . id = id ; } public Form4 getName ( ) { return name ; } public void setName ( Form4 name ) { this . name = name ; } } public static class Form2 { private Long id ; private Object name ; public Long getId ( ) { return id ; } public void setId ( Long id ) { this . id = id ; } public Object getName ( ) { return name ; } public void setName ( Object name ) { this . name = name ; } } static class Form1 { private Long id ; public Long getId ( ) { return id ; } public void setId ( Long id ) { this . id = id ; } } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . PersonForm ; import org . sqlproc . engine . form . PersonNameForm ; import org . sqlproc . engine . model . Person ; public class TestSqlEscaped extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testSimpleEscaped ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; List < Person > list = sqlEngine . query ( session , Person . class , new Object ( ) ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testInMetaEscaped ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; PersonForm pf = new PersonForm ( ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setLast ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , new Object ( ) , pf ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . math . BigDecimal ; import java . math . BigInteger ; import java . sql . SQLException ; import java . sql . Timestamp ; import java . text . ParseException ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . TypesTransport ; public class TestUndefinedParameters extends TestDatabase { protected String getDataSetFile ( String dbType ) { if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else return "<STR_LIT>" ; } @ Test public void testUndefinedParameters ( ) throws SQLException , ParseException { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; TypesTransport criteria = new TypesTransport ( ) ; criteria . setT_int ( <NUM_LIT:2> ) ; criteria . setT_long ( <NUM_LIT> ) ; criteria . setT_byte ( ( byte ) <NUM_LIT:4> ) ; criteria . setT_short ( ( short ) <NUM_LIT:5> ) ; criteria . setT_char ( new Character ( '<CHAR_LIT>' ) ) ; criteria . setT_string ( "<STR_LIT:abc>" ) ; criteria . setT_boolean ( Boolean . TRUE ) ; criteria . setT_date ( SqlUtils . getDate ( <NUM_LIT> , <NUM_LIT:7> , <NUM_LIT:31> ) ) ; if ( ! "<STR_LIT>" . equalsIgnoreCase ( dbType ) && ! "<STR_LIT>" . equalsIgnoreCase ( dbType ) && ! "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) criteria . setT_time ( SqlUtils . getTime ( <NUM_LIT> , <NUM_LIT> , <NUM_LIT:2> ) ) ; criteria . setT_datetime ( SqlUtils . getDateTime ( <NUM_LIT> , <NUM_LIT:7> , <NUM_LIT:31> , <NUM_LIT> , <NUM_LIT> , <NUM_LIT:2> ) ) ; if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) { criteria . setT_timestamp ( Timestamp . valueOf ( "<STR_LIT>" ) ) ; } else { criteria . setT_timestamp ( Timestamp . valueOf ( "<STR_LIT>" ) ) ; } criteria . setAn_byte ( "<STR_LIT>" . getBytes ( ) ) ; String sql = sqlEngine . getSql ( criteria , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; if ( ! dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) assertContains ( sql , "<STR_LIT>" ) ; List < TypesTransport > list = sqlEngine . query ( session , TypesTransport . class , criteria , null , SqlQueryEngine . NO_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; TypesTransport t = list . get ( <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , t . getN_int ( ) ) ; assertEquals ( new Integer ( <NUM_LIT:2> ) , t . getT_int ( ) ) ; assertEquals ( <NUM_LIT:3> , t . getN_long ( ) ) ; assertEquals ( new Long ( <NUM_LIT> ) , t . getT_long ( ) ) ; assertEquals ( <NUM_LIT:4> , t . getN_byte ( ) ) ; assertEquals ( new Byte ( ( byte ) <NUM_LIT:4> ) , t . getT_byte ( ) ) ; assertEquals ( <NUM_LIT:5> , t . getN_short ( ) ) ; assertEquals ( new Short ( ( short ) <NUM_LIT:5> ) , t . getT_short ( ) ) ; assertEquals ( <NUM_LIT> , t . getN_float ( ) , <NUM_LIT> ) ; assertEquals ( new Float ( <NUM_LIT> ) , t . getT_float ( ) , <NUM_LIT> ) ; assertEquals ( <NUM_LIT> , t . getN_double ( ) , <NUM_LIT> ) ; assertEquals ( new Double ( <NUM_LIT> ) , t . getT_double ( ) , <NUM_LIT> ) ; assertEquals ( '<CHAR_LIT>' , t . getN_char ( ) ) ; assertEquals ( new Character ( '<CHAR_LIT>' ) , t . getT_char ( ) ) ; assertEquals ( "<STR_LIT:abc>" , t . getT_string ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_time ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_date ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_datetime ( ) . toString ( ) ) ; if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; assertEquals ( true , t . isN_boolean ( ) ) ; assertEquals ( Boolean . TRUE , t . getT_boolean ( ) ) ; assertEquals ( new BigInteger ( "<STR_LIT>" ) , t . getT_big_integer ( ) ) ; assertEquals ( new BigDecimal ( "<STR_LIT>" ) , t . getT_big_decimal ( ) ) ; assertEquals ( "<STR_LIT>" , new String ( t . getAn_byte ( ) ) ) ; assertEquals ( t . getAn_byte ( ) . length , t . getAt_byte ( ) . length ) ; for ( int i = <NUM_LIT:0> ; i < t . getAn_byte ( ) . length ; i ++ ) assertEquals ( t . getAn_byte ( ) [ i ] , t . getAt_byte ( ) [ i ] . byteValue ( ) ) ; assertEquals ( "<STR_LIT:hello>" , t . getA_text ( ) ) ; if ( ! "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) { assertNotNull ( t . getA_blob ( ) ) ; assertNotNull ( t . getA_clob ( ) ) ; assertEquals ( "<STR_LIT>" , new String ( t . getA_blob ( ) . getBytes ( <NUM_LIT:1L> , ( int ) t . getA_blob ( ) . length ( ) ) ) ) ; assertEquals ( "<STR_LIT>" , t . getA_clob ( ) . getSubString ( <NUM_LIT:1L> , ( int ) t . getA_clob ( ) . length ( ) ) ) ; } } } </s>
<s> package org . sqlproc . engine . impl ; import java . text . DateFormat ; import java . text . SimpleDateFormat ; import java . util . HashSet ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlOrder ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . PersonForm ; import org . sqlproc . engine . form . PersonNameForm ; import org . sqlproc . engine . model . Country ; import org . sqlproc . engine . model . Gender ; import org . sqlproc . engine . model . Person ; public class TestBasic extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testAnsiBasic ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdated ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testAnsiSqlExtBasic ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setLast ( "<STR_LIT>" ) ; PersonForm pfc = new PersonForm ( ) ; pfc . setName ( new PersonNameForm ( ) ) ; pfc . getName ( ) . setFirst ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( pf , pfc , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , pfc , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testBasic ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdated ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testFormBasic ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setFirst ( "<STR_LIT>" ) ; pf . setSex ( Gender . MALE ) ; pf . setLastUpdatedBy ( "<STR_LIT>" ) ; try { pf . setLastUpdated ( sdf . parse ( "<STR_LIT>" ) ) ; } catch ( Exception ex ) { fail ( ) ; } pf . setVersion ( <NUM_LIT:1L> ) ; String sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , sdf . format ( p . getLastUpdated ( ) ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testFormBasicNull ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; String sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:0> , list . size ( ) ) ; } @ Test public void testFormOrBasic ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setFirst ( "<STR_LIT>" ) ; pf . setSex ( Gender . MALE ) ; pf . setLastUpdatedBy ( "<STR_LIT>" ) ; try { pf . setLastUpdated ( sdf . parse ( "<STR_LIT>" ) ) ; } catch ( Exception ex ) { fail ( ) ; } pf . setVersion ( <NUM_LIT:1L> ) ; String sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , sdf . format ( p . getLastUpdated ( ) ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testConstantBasic ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setFirst ( "<STR_LIT>" ) ; pf . setSex ( Gender . MALE ) ; pf . setLastUpdatedBy ( "<STR_LIT>" ) ; try { pf . setLastUpdated ( sdf . parse ( "<STR_LIT>" ) ) ; } catch ( Exception ex ) { fail ( ) ; } pf . setVersion ( <NUM_LIT:1L> ) ; String sql = sqlEngine . getSql ( new Object ( ) , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , new Object ( ) , pf , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , sdf . format ( p . getLastUpdated ( ) ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testConstantOrBasic ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setFirst ( "<STR_LIT>" ) ; pf . setSex ( Gender . MALE ) ; pf . setLastUpdatedBy ( "<STR_LIT>" ) ; try { pf . setLastUpdated ( sdf . parse ( "<STR_LIT>" ) ) ; } catch ( Exception ex ) { fail ( ) ; } pf . setVersion ( <NUM_LIT:1L> ) ; String sql = sqlEngine . getSql ( new Object ( ) , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , new Object ( ) , pf , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , sdf . format ( p . getLastUpdated ( ) ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testConstantInAndOrderBasic ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setIdSet ( new HashSet < Long > ( ) ) ; pf . getIdSet ( ) . add ( <NUM_LIT:1L> ) ; pf . getIdSet ( ) . add ( <NUM_LIT> ) ; String sql = sqlEngine . getSql ( new Object ( ) , pf , SqlOrder . getAscOrder ( <NUM_LIT:2> ) ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , new Object ( ) , pf , SqlOrder . getAscOrder ( <NUM_LIT:2> ) , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; } @ Test public void testIdentifierAndConstantOutOfMetaSqlBasic ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setLast ( "<STR_LIT>" ) ; PersonForm pfc = new PersonForm ( ) ; pfc . setName ( new PersonNameForm ( ) ) ; pfc . getName ( ) . setFirst ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( pf , pfc , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , pfc , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testSqlInBracesBasic ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setLast ( "<STR_LIT>" ) ; PersonForm pfc = new PersonForm ( ) ; pfc . setName ( new PersonNameForm ( ) ) ; pfc . getName ( ) . setFirst ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( pf , pfc , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , pfc , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; list = sqlEngine . query ( session , Person . class , null , null , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; if ( p . getName ( ) != null ) { assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertTrue ( p . getAge ( ) . intValue ( ) >= <NUM_LIT> ) ; } @ Test public void testNullFormBasic ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , null ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdated ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . util . Date ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlProcedureEngine ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . FormSimpleFunction ; import org . sqlproc . engine . model . Country ; import org . sqlproc . engine . model . Gender ; import org . sqlproc . engine . model . Person ; import org . sqlproc . engine . model . PersonName ; import org . sqlproc . engine . model . Ssn ; public class TestProcedure extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testSimpleFunctionToInForm ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; SqlProcedureEngine callableEngine = getProcedureEngine ( "<STR_LIT>" ) ; FormSimpleFunction f = new FormSimpleFunction ( ) ; f . setTime ( new java . sql . Timestamp ( new Date ( ) . getTime ( ) ) ) ; String sql = callableEngine . getCallSql ( f , null ) ; logger . info ( sql ) ; java . sql . Timestamp result = ( java . sql . Timestamp ) callableEngine . callFunction ( session , f ) ; assertNotNull ( result ) ; assertNotNull ( f . getTime2 ( ) ) ; logger . info ( "<STR_LIT>" + f . getTime2 ( ) ) ; } @ Test public void testSimpleFunction ( ) { if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) { this . simpleFunctionDB2 ( ) ; return ; } SqlProcedureEngine callableEngine = getProcedureEngine ( "<STR_LIT>" ) ; FormSimpleFunction f = new FormSimpleFunction ( ) ; f . setTime ( new java . sql . Timestamp ( new Date ( ) . getTime ( ) ) ) ; String sql = callableEngine . getCallSql ( f , null ) ; logger . info ( sql ) ; Object result = callableEngine . callFunction ( session , f ) ; assertNotNull ( result ) ; assertNull ( f . getTime2 ( ) ) ; logger . info ( "<STR_LIT>" + result ) ; } private void simpleFunctionDB2 ( ) { SqlQueryEngine queryEngine = getQueryEngine ( "<STR_LIT>" ) ; FormSimpleFunction f = new FormSimpleFunction ( ) ; f . setTime ( new java . sql . Timestamp ( new Date ( ) . getTime ( ) ) ) ; String sql = queryEngine . getSql ( f , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; List < FormSimpleFunction > resultList = queryEngine . query ( session , FormSimpleFunction . class , f ) ; FormSimpleFunction result = resultList . get ( <NUM_LIT:0> ) ; assertNotNull ( result . getTime2 ( ) ) ; logger . info ( "<STR_LIT>" + result . getTime2 ( ) ) ; } @ Test public void testCallableInsertResultProcDefaultTypes ( ) { if ( ! "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) return ; SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; SqlProcedureEngine callableEngine = getProcedureEngine ( "<STR_LIT>" ) ; String sql = callableEngine . getCallSql ( p , null ) ; logger . info ( sql ) ; list = callableEngine . callQuery ( session , Person . class , p ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p2 = list . get ( <NUM_LIT:0> ) ; logger . info ( "<STR_LIT>" + p2 ) ; assertNotNull ( p2 . getId ( ) ) ; assertEquals ( p . getSsn ( ) . getNumber ( ) , p2 . getSsn ( ) . getNumber ( ) ) ; assertEquals ( p . getSsn ( ) . getCountry ( ) , p2 . getSsn ( ) . getCountry ( ) ) ; assertEquals ( p . getName ( ) . getFirst ( ) , p2 . getName ( ) . getFirst ( ) ) ; assertEquals ( p . getName ( ) . getLast ( ) , p2 . getName ( ) . getLast ( ) ) ; assertEquals ( p . getAge ( ) , p2 . getAge ( ) ) ; assertEquals ( Gender . MALE , p2 . getSex ( ) ) ; } @ Test public void testCallableInsertResultDefaultTypes ( ) { SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; final Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; final SqlProcedureEngine callableEngine = getProcedureEngine ( "<STR_LIT>" ) ; String sql = callableEngine . getCallSql ( p , null ) ; logger . info ( sql ) ; list = doInTransaction ( new TestOperation < List < Person > > ( ) { @ Override public List < Person > doTest ( ) { return callableEngine . callQuery ( session , Person . class , p ) ; } } , "<STR_LIT>" ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p2 = list . get ( <NUM_LIT:0> ) ; logger . info ( "<STR_LIT>" + p2 ) ; assertNotNull ( p2 . getId ( ) ) ; assertEquals ( p . getSsn ( ) . getNumber ( ) , p2 . getSsn ( ) . getNumber ( ) ) ; assertEquals ( p . getSsn ( ) . getCountry ( ) , p2 . getSsn ( ) . getCountry ( ) ) ; assertEquals ( p . getName ( ) . getFirst ( ) , p2 . getName ( ) . getFirst ( ) ) ; assertEquals ( p . getName ( ) . getLast ( ) , p2 . getName ( ) . getLast ( ) ) ; assertEquals ( p . getAge ( ) , p2 . getAge ( ) ) ; assertEquals ( Gender . MALE , p2 . getSex ( ) ) ; } @ Test public void testCallableInsertResultSetNull ( ) { SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; final Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; final SqlProcedureEngine callableEngine = getProcedureEngine ( "<STR_LIT>" ) ; String sql = callableEngine . getCallSql ( p , null ) ; logger . info ( sql ) ; list = doInTransaction ( new TestOperation < List < Person > > ( ) { @ Override public List < Person > doTest ( ) { return callableEngine . callQuery ( session , Person . class , p ) ; } } , "<STR_LIT>" ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p2 = list . get ( <NUM_LIT:0> ) ; logger . info ( "<STR_LIT>" + p2 ) ; assertNotNull ( p2 . getId ( ) ) ; assertEquals ( p . getSsn ( ) . getNumber ( ) , p2 . getSsn ( ) . getNumber ( ) ) ; assertEquals ( p . getSsn ( ) . getCountry ( ) , p2 . getSsn ( ) . getCountry ( ) ) ; assertEquals ( p . getName ( ) . getFirst ( ) , p2 . getName ( ) . getFirst ( ) ) ; assertEquals ( p . getName ( ) . getLast ( ) , p2 . getName ( ) . getLast ( ) ) ; assertEquals ( p . getAge ( ) , p2 . getAge ( ) ) ; assertEquals ( Gender . MALE , p2 . getSex ( ) ) ; } @ Test public void testCallableInsertResultSet ( ) { SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; final Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; p . setSex ( Gender . FEMALE ) ; final SqlProcedureEngine callableEngine = getProcedureEngine ( "<STR_LIT>" ) ; String sql = callableEngine . getCallSql ( p , null ) ; logger . info ( sql ) ; list = doInTransaction ( new TestOperation < List < Person > > ( ) { @ Override public List < Person > doTest ( ) { return callableEngine . callQuery ( session , Person . class , p ) ; } } , "<STR_LIT>" ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p2 = list . get ( <NUM_LIT:0> ) ; logger . info ( "<STR_LIT>" + p2 ) ; assertNotNull ( p2 . getId ( ) ) ; assertEquals ( p . getSsn ( ) . getNumber ( ) , p2 . getSsn ( ) . getNumber ( ) ) ; assertEquals ( p . getSsn ( ) . getCountry ( ) , p2 . getSsn ( ) . getCountry ( ) ) ; assertEquals ( p . getName ( ) . getFirst ( ) , p2 . getName ( ) . getFirst ( ) ) ; assertEquals ( p . getName ( ) . getLast ( ) , p2 . getName ( ) . getLast ( ) ) ; assertEquals ( p . getAge ( ) , p2 . getAge ( ) ) ; assertEquals ( p . getSex ( ) , p2 . getSex ( ) ) ; } @ Test public void testCallableInsertMetaTypesNull ( ) { SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; SqlProcedureEngine callableEngine = getProcedureEngine ( "<STR_LIT>" ) ; String sql = callableEngine . getCallSql ( p , null ) ; logger . info ( sql ) ; int count = callableEngine . callUpdate ( session , p ) ; if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) { assertTrue ( "<STR_LIT>" , count == <NUM_LIT:1> ) ; } else { assertTrue ( "<STR_LIT>" , count == <NUM_LIT:0> || count == - <NUM_LIT:1> ) ; } logger . info ( "<STR_LIT>" + p . getId ( ) ) ; assertNotNull ( p . getId ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; } @ Test public void testCallableInsertMetaTypes ( ) { SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; p . setSex ( Gender . FEMALE ) ; SqlProcedureEngine callableEngine = getProcedureEngine ( "<STR_LIT>" ) ; String sql = callableEngine . getCallSql ( p , null ) ; logger . info ( sql ) ; int count = callableEngine . callUpdate ( session , p ) ; if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) { assertTrue ( "<STR_LIT>" , count == <NUM_LIT:1> ) ; } else { assertTrue ( "<STR_LIT>" , count == <NUM_LIT:0> || count == - <NUM_LIT:1> ) ; } logger . info ( "<STR_LIT>" + p . getId ( ) ) ; assertNotNull ( p . getId ( ) ) ; list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; } @ Test public void testCallableInsertNull ( ) { SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; SqlProcedureEngine callableEngine = getProcedureEngine ( "<STR_LIT>" ) ; String sql = callableEngine . getCallSql ( p , null ) ; logger . info ( sql ) ; int count = callableEngine . callUpdate ( session , p ) ; if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) { assertTrue ( "<STR_LIT>" , count == <NUM_LIT:1> ) ; } else { assertTrue ( "<STR_LIT>" , count == <NUM_LIT:0> || count == - <NUM_LIT:1> ) ; } logger . info ( "<STR_LIT>" + p . getId ( ) ) ; assertNotNull ( p . getId ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; } @ Test public void testCallableInsert ( ) { SqlQueryEngine sqlEngine = getQueryEngine ( "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = new Person ( ) ; p . setSsn ( new Ssn ( ) ) ; p . getSsn ( ) . setNumber ( "<STR_LIT>" ) ; p . getSsn ( ) . setCountry ( Country . UNITED_STATES ) ; p . setName ( new PersonName ( ) ) ; p . getName ( ) . setFirst ( "<STR_LIT>" ) ; p . getName ( ) . setLast ( "<STR_LIT>" ) ; p . setAge ( <NUM_LIT> , <NUM_LIT:4> , <NUM_LIT> ) ; p . setSex ( Gender . FEMALE ) ; SqlProcedureEngine callableEngine = getProcedureEngine ( "<STR_LIT>" ) ; String sql = callableEngine . getCallSql ( p , null ) ; logger . info ( sql ) ; int count = callableEngine . callUpdate ( session , p ) ; if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) { assertTrue ( "<STR_LIT>" , count == <NUM_LIT:1> ) ; } else { assertTrue ( "<STR_LIT>" , count == <NUM_LIT:0> || count == - <NUM_LIT:1> ) ; } logger . info ( "<STR_LIT>" + p . getId ( ) ) ; assertNotNull ( p . getId ( ) ) ; list = sqlEngine . query ( session , Person . class ) ; assertEquals ( <NUM_LIT:3> , list . size ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; public class TestCount extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testOrder ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; int rows = sqlEngine . queryCount ( session ) ; assertTrue ( rows > <NUM_LIT:0> ) ; logger . info ( "<STR_LIT>" + rows ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . text . DateFormat ; import java . text . SimpleDateFormat ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . PersonForm ; import org . sqlproc . engine . form . PersonNameForm ; import org . sqlproc . engine . model . Country ; import org . sqlproc . engine . model . Gender ; import org . sqlproc . engine . model . Person ; public class TestMoreLike extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testMoreLike ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setFirst ( "<STR_LIT>" ) ; pf . getName ( ) . setLast ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , sdf . format ( p . getLastUpdated ( ) ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testMoreLike2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setFirst ( "<STR_LIT>" ) ; pf . getName ( ) . setLast ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , sdf . format ( p . getLastUpdated ( ) ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . math . BigDecimal ; import java . math . BigInteger ; import java . sql . SQLException ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . TypesTransport ; public class TestUndefinedTypes extends TestDatabase { protected String getDataSetFile ( String dbType ) { if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else if ( dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) return "<STR_LIT>" ; else return "<STR_LIT>" ; } @ Test public void testUndefinedTypes ( ) throws SQLException { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; List < TypesTransport > list = sqlEngine . query ( session , TypesTransport . class , null , null , SqlQueryEngine . NO_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; TypesTransport t = list . get ( <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , t . getN_int ( ) ) ; assertEquals ( new Integer ( <NUM_LIT:2> ) , t . getT_int ( ) ) ; assertEquals ( <NUM_LIT:3> , t . getN_long ( ) ) ; assertEquals ( new Long ( <NUM_LIT> ) , t . getT_long ( ) ) ; assertEquals ( <NUM_LIT:4> , t . getN_byte ( ) ) ; assertEquals ( new Byte ( ( byte ) <NUM_LIT:4> ) , t . getT_byte ( ) ) ; assertEquals ( <NUM_LIT:5> , t . getN_short ( ) ) ; assertEquals ( new Short ( ( short ) <NUM_LIT:5> ) , t . getT_short ( ) ) ; assertEquals ( <NUM_LIT> , t . getN_float ( ) , <NUM_LIT> ) ; assertEquals ( new Float ( <NUM_LIT> ) , t . getT_float ( ) , <NUM_LIT> ) ; assertEquals ( <NUM_LIT> , t . getN_double ( ) , <NUM_LIT> ) ; assertEquals ( new Double ( <NUM_LIT> ) , t . getT_double ( ) , <NUM_LIT> ) ; assertEquals ( '<CHAR_LIT>' , t . getN_char ( ) ) ; assertEquals ( new Character ( '<CHAR_LIT>' ) , t . getT_char ( ) ) ; assertEquals ( "<STR_LIT:abc>" , t . getT_string ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_time ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_date ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_datetime ( ) . toString ( ) ) ; if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; assertEquals ( true , t . isN_boolean ( ) ) ; assertEquals ( Boolean . TRUE , t . getT_boolean ( ) ) ; assertEquals ( new BigInteger ( "<STR_LIT>" ) , t . getT_big_integer ( ) ) ; assertEquals ( new BigDecimal ( "<STR_LIT>" ) , t . getT_big_decimal ( ) ) ; assertEquals ( "<STR_LIT>" , new String ( t . getAn_byte ( ) ) ) ; assertEquals ( t . getAn_byte ( ) . length , t . getAt_byte ( ) . length ) ; for ( int i = <NUM_LIT:0> ; i < t . getAn_byte ( ) . length ; i ++ ) assertEquals ( t . getAn_byte ( ) [ i ] , t . getAt_byte ( ) [ i ] . byteValue ( ) ) ; assertEquals ( "<STR_LIT:hello>" , t . getA_text ( ) ) ; if ( ! dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) { assertEquals ( "<STR_LIT>" , new String ( t . getA_blob ( ) . getBytes ( <NUM_LIT:1L> , ( int ) t . getA_blob ( ) . length ( ) ) ) ) ; assertEquals ( "<STR_LIT>" , t . getA_clob ( ) . getSubString ( <NUM_LIT:1L> , ( int ) t . getA_clob ( ) . length ( ) ) ) ; } } @ Test public void testUndefinedTypes2 ( ) throws SQLException { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; List < TypesTransport > list = sqlEngine . query ( session , TypesTransport . class , null , null , SqlQueryEngine . NO_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; TypesTransport t = list . get ( <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , t . getN_int ( ) ) ; assertEquals ( new Integer ( <NUM_LIT:2> ) , t . getT_int ( ) ) ; assertEquals ( <NUM_LIT:3> , t . getN_long ( ) ) ; assertEquals ( new Long ( <NUM_LIT> ) , t . getT_long ( ) ) ; assertEquals ( <NUM_LIT:4> , t . getN_byte ( ) ) ; assertEquals ( new Byte ( ( byte ) <NUM_LIT:4> ) , t . getT_byte ( ) ) ; assertEquals ( <NUM_LIT:5> , t . getN_short ( ) ) ; assertEquals ( new Short ( ( short ) <NUM_LIT:5> ) , t . getT_short ( ) ) ; assertEquals ( <NUM_LIT> , t . getN_float ( ) , <NUM_LIT> ) ; assertEquals ( new Float ( <NUM_LIT> ) , t . getT_float ( ) , <NUM_LIT> ) ; assertEquals ( <NUM_LIT> , t . getN_double ( ) , <NUM_LIT> ) ; assertEquals ( new Double ( <NUM_LIT> ) , t . getT_double ( ) , <NUM_LIT> ) ; assertEquals ( '<CHAR_LIT>' , t . getN_char ( ) ) ; assertEquals ( new Character ( '<CHAR_LIT>' ) , t . getT_char ( ) ) ; assertEquals ( "<STR_LIT:abc>" , t . getT_string ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_time ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_date ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , t . getT_datetime ( ) . toString ( ) ) ; if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else if ( "<STR_LIT>" . equalsIgnoreCase ( dbType ) || "<STR_LIT>" . equalsIgnoreCase ( dbType ) ) assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; else assertEquals ( "<STR_LIT>" , t . getT_timestamp ( ) . toString ( ) ) ; assertEquals ( true , t . isN_boolean ( ) ) ; assertEquals ( Boolean . TRUE , t . getT_boolean ( ) ) ; assertEquals ( new BigInteger ( "<STR_LIT>" ) , t . getT_big_integer ( ) ) ; assertEquals ( new BigDecimal ( "<STR_LIT>" ) , t . getT_big_decimal ( ) ) ; assertEquals ( "<STR_LIT>" , new String ( t . getAn_byte ( ) ) ) ; assertEquals ( t . getAn_byte ( ) . length , t . getAt_byte ( ) . length ) ; for ( int i = <NUM_LIT:0> ; i < t . getAn_byte ( ) . length ; i ++ ) assertEquals ( t . getAn_byte ( ) [ i ] , t . getAt_byte ( ) [ i ] . byteValue ( ) ) ; assertEquals ( "<STR_LIT:hello>" , t . getA_text ( ) ) ; if ( ! dbType . equalsIgnoreCase ( "<STR_LIT>" ) ) { assertEquals ( "<STR_LIT>" , new String ( t . getA_blob ( ) . getBytes ( <NUM_LIT:1L> , ( int ) t . getA_blob ( ) . length ( ) ) ) ) ; assertEquals ( "<STR_LIT>" , t . getA_clob ( ) . getSubString ( <NUM_LIT:1L> , ( int ) t . getA_clob ( ) . length ( ) ) ) ; } } } </s>
<s> package org . sqlproc . engine . impl ; import java . text . DateFormat ; import java . text . SimpleDateFormat ; import java . util . HashSet ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlOrder ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . PersonForm ; import org . sqlproc . engine . form . PersonNameForm ; import org . sqlproc . engine . model . Country ; import org . sqlproc . engine . model . Gender ; import org . sqlproc . engine . model . Person ; public class TestEmbeddedMapping extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testAnsiBasic2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , new Object ( ) ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdated ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testAnsiBasic3 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , new Object ( ) ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdated ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testAnsiSqlExtBasic2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setLast ( "<STR_LIT>" ) ; PersonForm pfc = new PersonForm ( ) ; pfc . setName ( new PersonNameForm ( ) ) ; pfc . getName ( ) . setFirst ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( pf , pfc , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , pfc , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testBasic2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , null , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdated ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testFormBasic2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setFirst ( "<STR_LIT>" ) ; pf . setSex ( Gender . MALE ) ; pf . setLastUpdatedBy ( "<STR_LIT>" ) ; try { pf . setLastUpdated ( sdf . parse ( "<STR_LIT>" ) ) ; } catch ( Exception ex ) { fail ( ) ; } pf . setVersion ( <NUM_LIT:1L> ) ; String sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , sdf . format ( p . getLastUpdated ( ) ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testFormOrBasic2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setFirst ( "<STR_LIT>" ) ; pf . setSex ( Gender . MALE ) ; pf . setLastUpdatedBy ( "<STR_LIT>" ) ; try { pf . setLastUpdated ( sdf . parse ( "<STR_LIT>" ) ) ; } catch ( Exception ex ) { fail ( ) ; } pf . setVersion ( <NUM_LIT:1L> ) ; String sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , sdf . format ( p . getLastUpdated ( ) ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testConstantBasic2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setFirst ( "<STR_LIT>" ) ; pf . setSex ( Gender . MALE ) ; pf . setLastUpdatedBy ( "<STR_LIT>" ) ; try { pf . setLastUpdated ( sdf . parse ( "<STR_LIT>" ) ) ; } catch ( Exception ex ) { fail ( ) ; } pf . setVersion ( <NUM_LIT:1L> ) ; String sql = sqlEngine . getSql ( new Object ( ) , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , new Object ( ) , pf , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , sdf . format ( p . getLastUpdated ( ) ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testConstantOrBasic2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setId ( <NUM_LIT> ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setFirst ( "<STR_LIT>" ) ; pf . setSex ( Gender . MALE ) ; pf . setLastUpdatedBy ( "<STR_LIT>" ) ; try { pf . setLastUpdated ( sdf . parse ( "<STR_LIT>" ) ) ; } catch ( Exception ex ) { fail ( ) ; } pf . setVersion ( <NUM_LIT:1L> ) ; String sql = sqlEngine . getSql ( new Object ( ) , pf , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , new Object ( ) , pf , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , sdf . format ( p . getLastUpdated ( ) ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testConstantInAndOrderBasic2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setIdSet ( new HashSet < Long > ( ) ) ; pf . getIdSet ( ) . add ( <NUM_LIT:1L> ) ; pf . getIdSet ( ) . add ( <NUM_LIT> ) ; String sql = sqlEngine . getSql ( new Object ( ) , pf , SqlOrder . getAscOrder ( <NUM_LIT:2> ) ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , new Object ( ) , pf , SqlOrder . getAscOrder ( <NUM_LIT:2> ) , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; } @ Test public void testIdentifierAndConstantOutOfMetaSqlBasic2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setLast ( "<STR_LIT>" ) ; PersonForm pfc = new PersonForm ( ) ; pfc . setName ( new PersonNameForm ( ) ) ; pfc . getName ( ) . setFirst ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( pf , pfc , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , pfc , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } @ Test public void testSqlInBracesBasic2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setLast ( "<STR_LIT>" ) ; PersonForm pfc = new PersonForm ( ) ; pfc . setName ( new PersonNameForm ( ) ) ; pfc . getName ( ) . setFirst ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( pf , pfc , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , pfc , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; list = sqlEngine . query ( session , Person . class , null , null , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; if ( p . getName ( ) != null ) { assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertTrue ( p . getAge ( ) . intValue ( ) >= <NUM_LIT> ) ; } @ Test public void testNullFormBasic2 ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; String sql = sqlEngine . getSql ( null , null , SqlQueryEngine . NO_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , null ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdated ( ) . toString ( ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; import java . text . DateFormat ; import java . text . SimpleDateFormat ; import java . util . List ; import org . junit . Test ; import org . sqlproc . engine . SqlQueryEngine ; import org . sqlproc . engine . form . PersonForm ; import org . sqlproc . engine . form . PersonNameForm ; import org . sqlproc . engine . model . Country ; import org . sqlproc . engine . model . Gender ; import org . sqlproc . engine . model . Person ; public class TestWhere extends TestDatabase { protected String getDataSetFile ( String dbType ) { return "<STR_LIT>" ; } @ Test public void testFormBasic ( ) { SqlQueryEngine sqlEngine = getSqlEngine ( "<STR_LIT>" ) ; DateFormat sdf = new SimpleDateFormat ( "<STR_LIT>" ) ; PersonForm pf = new PersonForm ( ) ; String sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; assertDoNotContain ( sql , "<STR_LIT>" ) ; List < Person > list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:2> , list . size ( ) ) ; pf . setId ( <NUM_LIT> ) ; pf . setName ( new PersonNameForm ( ) ) ; pf . getName ( ) . setFirst ( "<STR_LIT>" ) ; pf . setSex ( Gender . MALE ) ; pf . setLastUpdatedBy ( "<STR_LIT>" ) ; try { pf . setLastUpdated ( sdf . parse ( "<STR_LIT>" ) ) ; } catch ( Exception ex ) { fail ( ) ; } pf . setVersion ( <NUM_LIT:1L> ) ; sql = sqlEngine . getSql ( pf , null , SqlQueryEngine . ASC_ORDER ) ; logger . info ( sql ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; assertContains ( sql , "<STR_LIT>" ) ; list = sqlEngine . query ( session , Person . class , pf , null , SqlQueryEngine . ASC_ORDER , <NUM_LIT:0> , <NUM_LIT:0> , <NUM_LIT:0> ) ; assertEquals ( <NUM_LIT:1> , list . size ( ) ) ; Person p = list . get ( <NUM_LIT:0> ) ; assertEquals ( new Long ( <NUM_LIT:2> ) , p . getId ( ) ) ; assertEquals ( "<STR_LIT>" , p . getBirthDate ( ) . toString ( ) ) ; assertEquals ( null , p . getCreatedDate ( ) ) ; assertEquals ( null , p . getCreatedBy ( ) ) ; assertEquals ( "<STR_LIT>" , sdf . format ( p . getLastUpdated ( ) ) ) ; assertEquals ( "<STR_LIT>" , p . getLastUpdatedBy ( ) ) ; assertEquals ( new Long ( <NUM_LIT:1> ) , p . getVersion ( ) ) ; assertEquals ( Gender . MALE , p . getSex ( ) ) ; assertNotNull ( p . getSsn ( ) ) ; assertEquals ( "<STR_LIT>" , p . getSsn ( ) . getNumber ( ) ) ; assertEquals ( Country . UNITED_STATES , p . getSsn ( ) . getCountry ( ) ) ; assertNotNull ( p . getName ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getFirst ( ) ) ; assertEquals ( "<STR_LIT>" , p . getName ( ) . getLast ( ) ) ; } } </s>
<s> package org . sqlproc . engine . impl ; public interface TestOperation < T > { T doTest ( ) ; } </s>
<s> package org . sqlproc . engine . model ; public class Engagement { private Long id ; private String role ; private String uuid ; private Person person ; private Media media ; public Engagement ( ) { } public Engagement ( String role , Person person , Media media ) { super ( ) ; this . role = role ; this . person = person ; this . media = media ; } public Long getId ( ) { return id ; } public void setId ( Long id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id ; } public String getRole ( ) { return role ; } public String getUuid ( ) { return uuid ; } public void setUuid ( String uuid ) { this . uuid = uuid ; } public void setRole ( String role ) { this . role = role ; } public Person getPerson ( ) { return person ; } public void setPerson ( Person person ) { if ( ( person != null ) && ( this . person != null ) && ! this . person . equals ( person ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . person = person ; } public Media getMedia ( ) { return media ; } public void setMedia ( Media media ) { if ( ( media != null ) && ( this . media != null ) && ! this . media . equals ( media ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . media = media ; } } </s>
<s> package org . sqlproc . engine . model ; import java . math . BigInteger ; import java . util . Date ; public abstract class PersonBase { private Long id ; private java . sql . Date birthDate ; private Date createdDate ; private String createdBy ; private Date lastUpdated ; private String lastUpdatedBy ; private Long version ; private Gender sex ; private Ssn ssn ; private PersonName name ; private Contact contact ; private Size clothesSize ; public PersonBase ( ) { } public PersonBase ( Gender sex , Ssn ssn ) { this . sex = sex ; this . ssn = ssn ; } public Long getId ( ) { return id ; } public void setId ( Long id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id ; } public void setId ( BigInteger id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id . longValue ( ) ; } public java . sql . Date getBirthDate ( ) { return birthDate ; } public void setBirthDate ( java . sql . Date birthDate ) { this . birthDate = birthDate ; } public Date getCreatedDate ( ) { return createdDate ; } public void setCreatedDate ( Date createdDate ) { this . createdDate = createdDate ; } public String getCreatedBy ( ) { return createdBy ; } public void setCreatedBy ( String createdBy ) { this . createdBy = createdBy ; } public Date getLastUpdated ( ) { return lastUpdated ; } public void setLastUpdated ( Date lastUpdated ) { this . lastUpdated = lastUpdated ; } public String getLastUpdatedBy ( ) { return lastUpdatedBy ; } public void setLastUpdatedBy ( String lastUpdatedBy ) { this . lastUpdatedBy = lastUpdatedBy ; } public Long getVersion ( ) { return version ; } public void setVersion ( Long version ) { this . version = version ; } public Gender getSex ( ) { return sex ; } public Ssn getSsn ( ) { return ssn ; } public PersonName getName ( ) { return name ; } public void setName ( PersonName name ) { this . name = name ; } public Contact getContact ( ) { return contact ; } public void setContact ( Contact contact ) { this . contact = contact ; } public void setSex ( Gender sex ) { this . sex = sex ; } public void setSsn ( Ssn ssn ) { this . ssn = ssn ; } public Size getClothesSize ( ) { return clothesSize ; } public void setClothesSize ( Size clothesSize ) { this . clothesSize = clothesSize ; } } </s>
<s> package org . sqlproc . engine . model ; public enum Genre { ACTION , COMEDY , DRAMA , STORY , SCI_FI ; } </s>
<s> package org . sqlproc . engine . model ; import java . util . HashSet ; import java . util . Set ; public class MediaCharacter { private Long id ; private String name ; private Set < Person > playedBy = new HashSet < Person > ( ) ; private Set < Media > existsInMedia = new HashSet < Media > ( ) ; public MediaCharacter ( ) { } public MediaCharacter ( String name ) { super ( ) ; this . name = name ; } public Long getId ( ) { return id ; } public void setId ( Long id ) { if ( ( this . id != null ) && ! this . id . equals ( id ) ) { throw new IllegalArgumentException ( "<STR_LIT>" ) ; } this . id = id ; } public String getName ( ) { return name ; } public void setName ( String name ) { this . name = name ; } public Set < Person > getPlayedBy ( ) { return playedBy ; } public void addPlayedBy ( Person playedByElement ) { this . playedBy . add ( playedByElement ) ; } public void removePlayedBy ( Person playedByElement ) { this . playedBy . remove ( playedByElement ) ; } public void removeAllPlayedBy ( ) { this . playedBy . clear ( ) ; } public Set < Media > getExistsInMedia ( ) { return existsInMedia ; } public void addExistsInMedia ( Media existsInMediaElement ) { this . existsInMedia . add ( existsInMediaElement ) ; existsInMediaElement . getMediaCharacters ( ) . add ( ( MediaCharacter ) this ) ; } public void removeExistsInMedia ( Media existsInMediaElement ) { this . existsInMedia . remove ( existsInMediaElement ) ; existsInMediaElement . getMediaCharacters ( ) . remove ( ( MediaCharacter ) this ) ; } public void removeAllExistsInMedia ( ) { for ( Media d : this . existsInMedia ) { d . getMediaCharacters ( ) . remove ( ( MediaCharacter ) this ) ; } this . existsInMedia . clear ( ) ; } } </s>
<s> package org . sqlproc . engine . model ; public class PersonName { private String first ; private String last ; public PersonName ( ) { } public PersonName ( String first , String last ) { this . first = first ; this . last = last ; } public String getFirst ( ) { return first ; } public String getLast ( ) { return last ; } public void setFirst ( String first ) { this . first = first ; } public void setLast ( String last ) { this . last = last ; } @ Override public String toString ( ) { return "<STR_LIT>" + first + "<STR_LIT>" + last + "<STR_LIT:]>" ; } } </s>
<s> package org . sqlproc . engine . model ; import java . io . Serializable ; import java . util . HashMap ; import java . util . Map ; public enum Size implements Serializable { SMALL ( <NUM_LIT:0> ) , MIDDLE ( <NUM_LIT:1> ) , BIG ( <NUM_LIT:2> ) ; private static Map < Integer , Size > identifierMap = new HashMap < Integer , Size > ( ) ; static { for ( Size value : Size . values ( ) ) { identifierMap . put ( value . getValue ( ) , value ) ; } } private Integer value ; private Size ( Integer value ) { this . value = value ; } public static Size fromValue ( Integer value ) { Size result = identifierMap . get ( value ) ; if ( result == null ) { throw new IllegalArgumentException ( "<STR_LIT>" + value ) ; } return result ; } public Integer getValue ( ) { return value ; } public String getName ( ) { return name ( ) ; } } </s>
<s> package org . sqlproc . engine . model ; public class CreditCard extends BillingDetails { private Long number ; private Short expMonth ; private Short expYear ; public Long getNumber ( ) { return number ; } public void setNumber ( Long number ) { this . number = number ; } public Short getExpMonth ( ) { return expMonth ; } public void setExpMonth ( Short expMonth ) { this . expMonth = expMonth ; } public Short getExpYear ( ) { return expYear ; } public void setExpYear ( Short expYear ) { this . expYear = expYear ; } } </s>