aboutsummaryrefslogtreecommitdiffstats
path: root/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/services/ApplicationConfigurationGrammarAccess.java
blob: 25d8ad421864500893ca6eaaae0445745a1caf39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
/*
 * generated by Xtext 2.21.0
 */
package hu.bme.mit.inf.dslreasoner.application.services;

import com.google.inject.Inject;
import com.google.inject.Singleton;
import java.util.List;
import org.eclipse.xtext.Action;
import org.eclipse.xtext.Alternatives;
import org.eclipse.xtext.Assignment;
import org.eclipse.xtext.CrossReference;
import org.eclipse.xtext.EnumLiteralDeclaration;
import org.eclipse.xtext.EnumRule;
import org.eclipse.xtext.Grammar;
import org.eclipse.xtext.GrammarUtil;
import org.eclipse.xtext.Group;
import org.eclipse.xtext.Keyword;
import org.eclipse.xtext.ParserRule;
import org.eclipse.xtext.RuleCall;
import org.eclipse.xtext.TerminalRule;
import org.eclipse.xtext.UnorderedGroup;
import org.eclipse.xtext.common.services.TerminalsGrammarAccess;
import org.eclipse.xtext.service.AbstractElementFinder.AbstractEnumRuleElementFinder;
import org.eclipse.xtext.service.AbstractElementFinder.AbstractGrammarElementFinder;
import org.eclipse.xtext.service.GrammarProvider;

@Singleton
public class ApplicationConfigurationGrammarAccess extends AbstractGrammarElementFinder {
	
	public class ConfigurationScriptElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ConfigurationScript");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Assignment cImportsAssignment_0 = (Assignment)cGroup.eContents().get(0);
		private final RuleCall cImportsImportParserRuleCall_0_0 = (RuleCall)cImportsAssignment_0.eContents().get(0);
		private final Assignment cCommandsAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cCommandsCommandParserRuleCall_1_0 = (RuleCall)cCommandsAssignment_1.eContents().get(0);
		
		//ConfigurationScript:
		//	imports+=Import*
		//	commands+=Command*;
		@Override public ParserRule getRule() { return rule; }
		
		//imports+=Import* commands+=Command*
		public Group getGroup() { return cGroup; }
		
		//imports+=Import*
		public Assignment getImportsAssignment_0() { return cImportsAssignment_0; }
		
		//Import
		public RuleCall getImportsImportParserRuleCall_0_0() { return cImportsImportParserRuleCall_0_0; }
		
		//commands+=Command*
		public Assignment getCommandsAssignment_1() { return cCommandsAssignment_1; }
		
		//Command
		public RuleCall getCommandsCommandParserRuleCall_1_0() { return cCommandsCommandParserRuleCall_1_0; }
	}
	public class CommandElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.Command");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cDeclarationParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cTaskParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		
		//Command:
		//	Declaration | Task;
		@Override public ParserRule getRule() { return rule; }
		
		//Declaration | Task
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//Declaration
		public RuleCall getDeclarationParserRuleCall_0() { return cDeclarationParserRuleCall_0; }
		
		//Task
		public RuleCall getTaskParserRuleCall_1() { return cTaskParserRuleCall_1; }
	}
	public class QualifiedNameElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.QualifiedName");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final RuleCall cIDTerminalRuleCall_0 = (RuleCall)cGroup.eContents().get(0);
		private final Group cGroup_1 = (Group)cGroup.eContents().get(1);
		private final Keyword cFullStopKeyword_1_0 = (Keyword)cGroup_1.eContents().get(0);
		private final RuleCall cIDTerminalRuleCall_1_1 = (RuleCall)cGroup_1.eContents().get(1);
		
		//QualifiedName:
		//	ID ('.' ID)*;
		@Override public ParserRule getRule() { return rule; }
		
		//ID ('.' ID)*
		public Group getGroup() { return cGroup; }
		
		//ID
		public RuleCall getIDTerminalRuleCall_0() { return cIDTerminalRuleCall_0; }
		
		//('.' ID)*
		public Group getGroup_1() { return cGroup_1; }
		
		//'.'
		public Keyword getFullStopKeyword_1_0() { return cFullStopKeyword_1_0; }
		
		//ID
		public RuleCall getIDTerminalRuleCall_1_1() { return cIDTerminalRuleCall_1_1; }
	}
	public class REALLiteralElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.REALLiteral");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cHyphenMinusKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final RuleCall cINTTerminalRuleCall_1 = (RuleCall)cGroup.eContents().get(1);
		private final Keyword cFullStopKeyword_2 = (Keyword)cGroup.eContents().get(2);
		private final RuleCall cINTTerminalRuleCall_3 = (RuleCall)cGroup.eContents().get(3);
		
		//REALLiteral ecore::EBigDecimal:
		//	'-'? INT '.' INT;
		@Override public ParserRule getRule() { return rule; }
		
		//'-'? INT '.' INT
		public Group getGroup() { return cGroup; }
		
		//'-'?
		public Keyword getHyphenMinusKeyword_0() { return cHyphenMinusKeyword_0; }
		
		//INT
		public RuleCall getINTTerminalRuleCall_1() { return cINTTerminalRuleCall_1; }
		
		//'.'
		public Keyword getFullStopKeyword_2() { return cFullStopKeyword_2; }
		
		//INT
		public RuleCall getINTTerminalRuleCall_3() { return cINTTerminalRuleCall_3; }
	}
	public class INTLiteralElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.INTLiteral");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cHyphenMinusKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final RuleCall cINTTerminalRuleCall_1 = (RuleCall)cGroup.eContents().get(1);
		
		//INTLiteral ecore::EInt:
		//	'-'? INT;
		@Override public ParserRule getRule() { return rule; }
		
		//'-'? INT
		public Group getGroup() { return cGroup; }
		
		//'-'?
		public Keyword getHyphenMinusKeyword_0() { return cHyphenMinusKeyword_0; }
		
		//INT
		public RuleCall getINTTerminalRuleCall_1() { return cINTTerminalRuleCall_1; }
	}
	public class ImportElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.Import");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cEPackageImportParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cViatraImportParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		
		/////////////////////////////////////////////////////
		//// Imports
		/////////////////////////////////////////////////////
		//Import:
		//	EPackageImport | ViatraImport;
		@Override public ParserRule getRule() { return rule; }
		
		//EPackageImport | ViatraImport
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//EPackageImport
		public RuleCall getEPackageImportParserRuleCall_0() { return cEPackageImportParserRuleCall_0; }
		
		//ViatraImport
		public RuleCall getViatraImportParserRuleCall_1() { return cViatraImportParserRuleCall_1; }
	}
	public class EPackageImportElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.EPackageImport");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cImportKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Keyword cEpackageKeyword_1 = (Keyword)cGroup.eContents().get(1);
		private final Assignment cImportedPackageAssignment_2 = (Assignment)cGroup.eContents().get(2);
		private final CrossReference cImportedPackageEPackageCrossReference_2_0 = (CrossReference)cImportedPackageAssignment_2.eContents().get(0);
		private final RuleCall cImportedPackageEPackageSTRINGTerminalRuleCall_2_0_1 = (RuleCall)cImportedPackageEPackageCrossReference_2_0.eContents().get(1);
		
		//EPackageImport:
		//	"import" "epackage" importedPackage=[ecore::EPackage|STRING];
		@Override public ParserRule getRule() { return rule; }
		
		//"import" "epackage" importedPackage=[ecore::EPackage|STRING]
		public Group getGroup() { return cGroup; }
		
		//"import"
		public Keyword getImportKeyword_0() { return cImportKeyword_0; }
		
		//"epackage"
		public Keyword getEpackageKeyword_1() { return cEpackageKeyword_1; }
		
		//importedPackage=[ecore::EPackage|STRING]
		public Assignment getImportedPackageAssignment_2() { return cImportedPackageAssignment_2; }
		
		//[ecore::EPackage|STRING]
		public CrossReference getImportedPackageEPackageCrossReference_2_0() { return cImportedPackageEPackageCrossReference_2_0; }
		
		//STRING
		public RuleCall getImportedPackageEPackageSTRINGTerminalRuleCall_2_0_1() { return cImportedPackageEPackageSTRINGTerminalRuleCall_2_0_1; }
	}
	public class ViatraImportElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ViatraImport");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cImportKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Keyword cViatraKeyword_1 = (Keyword)cGroup.eContents().get(1);
		private final Assignment cImportedViatraAssignment_2 = (Assignment)cGroup.eContents().get(2);
		private final CrossReference cImportedViatraPatternModelCrossReference_2_0 = (CrossReference)cImportedViatraAssignment_2.eContents().get(0);
		private final RuleCall cImportedViatraPatternModelSTRINGTerminalRuleCall_2_0_1 = (RuleCall)cImportedViatraPatternModelCrossReference_2_0.eContents().get(1);
		
		//ViatraImport:
		//	"import" "viatra" importedViatra=[viatra::PatternModel|STRING];
		@Override public ParserRule getRule() { return rule; }
		
		//"import" "viatra" importedViatra=[viatra::PatternModel|STRING]
		public Group getGroup() { return cGroup; }
		
		//"import"
		public Keyword getImportKeyword_0() { return cImportKeyword_0; }
		
		//"viatra"
		public Keyword getViatraKeyword_1() { return cViatraKeyword_1; }
		
		//importedViatra=[viatra::PatternModel|STRING]
		public Assignment getImportedViatraAssignment_2() { return cImportedViatraAssignment_2; }
		
		//[viatra::PatternModel|STRING]
		public CrossReference getImportedViatraPatternModelCrossReference_2_0() { return cImportedViatraPatternModelCrossReference_2_0; }
		
		//STRING
		public RuleCall getImportedViatraPatternModelSTRINGTerminalRuleCall_2_0_1() { return cImportedViatraPatternModelSTRINGTerminalRuleCall_2_0_1; }
	}
	public class DeclarationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.Declaration");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cFileDeclarationParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cMetamodelDeclarationParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		private final RuleCall cPartialModelDeclarationParserRuleCall_2 = (RuleCall)cAlternatives.eContents().get(2);
		private final RuleCall cGraphPatternDeclarationParserRuleCall_3 = (RuleCall)cAlternatives.eContents().get(3);
		private final RuleCall cConfigDeclarationParserRuleCall_4 = (RuleCall)cAlternatives.eContents().get(4);
		private final RuleCall cScopeDeclarationParserRuleCall_5 = (RuleCall)cAlternatives.eContents().get(5);
		private final RuleCall cObjectiveDeclarationParserRuleCall_6 = (RuleCall)cAlternatives.eContents().get(6);
		
		/////////////////////////////////////////////////////
		//// Declaration
		/////////////////////////////////////////////////////
		//Declaration:
		//	FileDeclaration
		//	| MetamodelDeclaration
		//	| PartialModelDeclaration
		//	| GraphPatternDeclaration
		//	| ConfigDeclaration
		//	| ScopeDeclaration
		//	| ObjectiveDeclaration;
		@Override public ParserRule getRule() { return rule; }
		
		//FileDeclaration | MetamodelDeclaration | PartialModelDeclaration | GraphPatternDeclaration | ConfigDeclaration |
		//ScopeDeclaration | ObjectiveDeclaration
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//FileDeclaration
		public RuleCall getFileDeclarationParserRuleCall_0() { return cFileDeclarationParserRuleCall_0; }
		
		//MetamodelDeclaration
		public RuleCall getMetamodelDeclarationParserRuleCall_1() { return cMetamodelDeclarationParserRuleCall_1; }
		
		//PartialModelDeclaration
		public RuleCall getPartialModelDeclarationParserRuleCall_2() { return cPartialModelDeclarationParserRuleCall_2; }
		
		//GraphPatternDeclaration
		public RuleCall getGraphPatternDeclarationParserRuleCall_3() { return cGraphPatternDeclarationParserRuleCall_3; }
		
		//ConfigDeclaration
		public RuleCall getConfigDeclarationParserRuleCall_4() { return cConfigDeclarationParserRuleCall_4; }
		
		//ScopeDeclaration
		public RuleCall getScopeDeclarationParserRuleCall_5() { return cScopeDeclarationParserRuleCall_5; }
		
		//ObjectiveDeclaration
		public RuleCall getObjectiveDeclarationParserRuleCall_6() { return cObjectiveDeclarationParserRuleCall_6; }
	}
	public class FileSpecificationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.FileSpecification");
		private final Assignment cPathAssignment = (Assignment)rule.eContents().get(1);
		private final RuleCall cPathSTRINGTerminalRuleCall_0 = (RuleCall)cPathAssignment.eContents().get(0);
		
		/////////////////////////////////////////////////////
		//// Files and Folders
		/////////////////////////////////////////////////////
		//FileSpecification:
		//	path=STRING;
		@Override public ParserRule getRule() { return rule; }
		
		//path=STRING
		public Assignment getPathAssignment() { return cPathAssignment; }
		
		//STRING
		public RuleCall getPathSTRINGTerminalRuleCall_0() { return cPathSTRINGTerminalRuleCall_0; }
	}
	public class FileDeclarationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.FileDeclaration");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cFileKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cNameAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cNameIDTerminalRuleCall_1_0 = (RuleCall)cNameAssignment_1.eContents().get(0);
		private final Keyword cEqualsSignKeyword_2 = (Keyword)cGroup.eContents().get(2);
		private final Assignment cSpecificationAssignment_3 = (Assignment)cGroup.eContents().get(3);
		private final RuleCall cSpecificationFileSpecificationParserRuleCall_3_0 = (RuleCall)cSpecificationAssignment_3.eContents().get(0);
		
		//FileDeclaration:
		//	'file' name=ID '=' specification=FileSpecification;
		@Override public ParserRule getRule() { return rule; }
		
		//'file' name=ID '=' specification=FileSpecification
		public Group getGroup() { return cGroup; }
		
		//'file'
		public Keyword getFileKeyword_0() { return cFileKeyword_0; }
		
		//name=ID
		public Assignment getNameAssignment_1() { return cNameAssignment_1; }
		
		//ID
		public RuleCall getNameIDTerminalRuleCall_1_0() { return cNameIDTerminalRuleCall_1_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_2() { return cEqualsSignKeyword_2; }
		
		//specification=FileSpecification
		public Assignment getSpecificationAssignment_3() { return cSpecificationAssignment_3; }
		
		//FileSpecification
		public RuleCall getSpecificationFileSpecificationParserRuleCall_3_0() { return cSpecificationFileSpecificationParserRuleCall_3_0; }
	}
	public class FileReferenceElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.FileReference");
		private final Assignment cReferredAssignment = (Assignment)rule.eContents().get(1);
		private final CrossReference cReferredFileDeclarationCrossReference_0 = (CrossReference)cReferredAssignment.eContents().get(0);
		private final RuleCall cReferredFileDeclarationIDTerminalRuleCall_0_1 = (RuleCall)cReferredFileDeclarationCrossReference_0.eContents().get(1);
		
		//FileReference:
		//	referred=[FileDeclaration];
		@Override public ParserRule getRule() { return rule; }
		
		//referred=[FileDeclaration]
		public Assignment getReferredAssignment() { return cReferredAssignment; }
		
		//[FileDeclaration]
		public CrossReference getReferredFileDeclarationCrossReference_0() { return cReferredFileDeclarationCrossReference_0; }
		
		//ID
		public RuleCall getReferredFileDeclarationIDTerminalRuleCall_0_1() { return cReferredFileDeclarationIDTerminalRuleCall_0_1; }
	}
	public class FileElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.File");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cFileSpecificationParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cFileReferenceParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		
		//File:
		//	FileSpecification | FileReference;
		@Override public ParserRule getRule() { return rule; }
		
		//FileSpecification | FileReference
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//FileSpecification
		public RuleCall getFileSpecificationParserRuleCall_0() { return cFileSpecificationParserRuleCall_0; }
		
		//FileReference
		public RuleCall getFileReferenceParserRuleCall_1() { return cFileReferenceParserRuleCall_1; }
	}
	public class MetamodelSpecificationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.MetamodelSpecification");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cLeftCurlyBracketKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cEntriesAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cEntriesMetamodelEntryParserRuleCall_1_0 = (RuleCall)cEntriesAssignment_1.eContents().get(0);
		private final Group cGroup_2 = (Group)cGroup.eContents().get(2);
		private final Keyword cCommaKeyword_2_0 = (Keyword)cGroup_2.eContents().get(0);
		private final Assignment cEntriesAssignment_2_1 = (Assignment)cGroup_2.eContents().get(1);
		private final RuleCall cEntriesMetamodelEntryParserRuleCall_2_1_0 = (RuleCall)cEntriesAssignment_2_1.eContents().get(0);
		private final Keyword cRightCurlyBracketKeyword_3 = (Keyword)cGroup.eContents().get(3);
		
		/////////////////////////////////////////////////////
		//// Metamodel
		/////////////////////////////////////////////////////
		//MetamodelSpecification:
		//	'{' entries+=MetamodelEntry (',' entries+=MetamodelEntry)* '}';
		@Override public ParserRule getRule() { return rule; }
		
		//'{' entries+=MetamodelEntry (',' entries+=MetamodelEntry)* '}'
		public Group getGroup() { return cGroup; }
		
		//'{'
		public Keyword getLeftCurlyBracketKeyword_0() { return cLeftCurlyBracketKeyword_0; }
		
		//entries+=MetamodelEntry
		public Assignment getEntriesAssignment_1() { return cEntriesAssignment_1; }
		
		//MetamodelEntry
		public RuleCall getEntriesMetamodelEntryParserRuleCall_1_0() { return cEntriesMetamodelEntryParserRuleCall_1_0; }
		
		//(',' entries+=MetamodelEntry)*
		public Group getGroup_2() { return cGroup_2; }
		
		//','
		public Keyword getCommaKeyword_2_0() { return cCommaKeyword_2_0; }
		
		//entries+=MetamodelEntry
		public Assignment getEntriesAssignment_2_1() { return cEntriesAssignment_2_1; }
		
		//MetamodelEntry
		public RuleCall getEntriesMetamodelEntryParserRuleCall_2_1_0() { return cEntriesMetamodelEntryParserRuleCall_2_1_0; }
		
		//'}'
		public Keyword getRightCurlyBracketKeyword_3() { return cRightCurlyBracketKeyword_3; }
	}
	public class MetamodelEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.MetamodelEntry");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cMetamodelElementParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cAllPackageEntryParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		
		//MetamodelEntry:
		//	MetamodelElement | AllPackageEntry;
		@Override public ParserRule getRule() { return rule; }
		
		//MetamodelElement | AllPackageEntry
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//MetamodelElement
		public RuleCall getMetamodelElementParserRuleCall_0() { return cMetamodelElementParserRuleCall_0; }
		
		//AllPackageEntry
		public RuleCall getAllPackageEntryParserRuleCall_1() { return cAllPackageEntryParserRuleCall_1; }
	}
	public class AllPackageEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.AllPackageEntry");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cPackageKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cPackageAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final CrossReference cPackageEPackageCrossReference_1_0 = (CrossReference)cPackageAssignment_1.eContents().get(0);
		private final RuleCall cPackageEPackageQualifiedNameParserRuleCall_1_0_1 = (RuleCall)cPackageEPackageCrossReference_1_0.eContents().get(1);
		private final Group cGroup_2 = (Group)cGroup.eContents().get(2);
		private final Keyword cExcludingKeyword_2_0 = (Keyword)cGroup_2.eContents().get(0);
		private final Keyword cLeftCurlyBracketKeyword_2_1 = (Keyword)cGroup_2.eContents().get(1);
		private final Assignment cExclusionAssignment_2_2 = (Assignment)cGroup_2.eContents().get(2);
		private final RuleCall cExclusionMetamodelElementParserRuleCall_2_2_0 = (RuleCall)cExclusionAssignment_2_2.eContents().get(0);
		private final Group cGroup_2_3 = (Group)cGroup_2.eContents().get(3);
		private final Keyword cCommaKeyword_2_3_0 = (Keyword)cGroup_2_3.eContents().get(0);
		private final Assignment cExclusionAssignment_2_3_1 = (Assignment)cGroup_2_3.eContents().get(1);
		private final RuleCall cExclusionMetamodelElementParserRuleCall_2_3_1_0 = (RuleCall)cExclusionAssignment_2_3_1.eContents().get(0);
		private final Keyword cRightCurlyBracketKeyword_2_4 = (Keyword)cGroup_2.eContents().get(4);
		
		//AllPackageEntry:
		//	"package" package=[ecore::EPackage|QualifiedName] ("excluding" '{' exclusion+=MetamodelElement (','
		//	exclusion+=MetamodelElement)* '}')?;
		@Override public ParserRule getRule() { return rule; }
		
		//"package" package=[ecore::EPackage|QualifiedName] ("excluding" '{' exclusion+=MetamodelElement (','
		//exclusion+=MetamodelElement)* '}')?
		public Group getGroup() { return cGroup; }
		
		//"package"
		public Keyword getPackageKeyword_0() { return cPackageKeyword_0; }
		
		//package=[ecore::EPackage|QualifiedName]
		public Assignment getPackageAssignment_1() { return cPackageAssignment_1; }
		
		//[ecore::EPackage|QualifiedName]
		public CrossReference getPackageEPackageCrossReference_1_0() { return cPackageEPackageCrossReference_1_0; }
		
		//QualifiedName
		public RuleCall getPackageEPackageQualifiedNameParserRuleCall_1_0_1() { return cPackageEPackageQualifiedNameParserRuleCall_1_0_1; }
		
		//("excluding" '{' exclusion+=MetamodelElement (',' exclusion+=MetamodelElement)* '}')?
		public Group getGroup_2() { return cGroup_2; }
		
		//"excluding"
		public Keyword getExcludingKeyword_2_0() { return cExcludingKeyword_2_0; }
		
		//'{'
		public Keyword getLeftCurlyBracketKeyword_2_1() { return cLeftCurlyBracketKeyword_2_1; }
		
		//exclusion+=MetamodelElement
		public Assignment getExclusionAssignment_2_2() { return cExclusionAssignment_2_2; }
		
		//MetamodelElement
		public RuleCall getExclusionMetamodelElementParserRuleCall_2_2_0() { return cExclusionMetamodelElementParserRuleCall_2_2_0; }
		
		//(',' exclusion+=MetamodelElement)*
		public Group getGroup_2_3() { return cGroup_2_3; }
		
		//','
		public Keyword getCommaKeyword_2_3_0() { return cCommaKeyword_2_3_0; }
		
		//exclusion+=MetamodelElement
		public Assignment getExclusionAssignment_2_3_1() { return cExclusionAssignment_2_3_1; }
		
		//MetamodelElement
		public RuleCall getExclusionMetamodelElementParserRuleCall_2_3_1_0() { return cExclusionMetamodelElementParserRuleCall_2_3_1_0; }
		
		//'}'
		public Keyword getRightCurlyBracketKeyword_2_4() { return cRightCurlyBracketKeyword_2_4; }
	}
	public class MetamodelElementElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.MetamodelElement");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Group cGroup_0 = (Group)cGroup.eContents().get(0);
		private final Assignment cPackageAssignment_0_0 = (Assignment)cGroup_0.eContents().get(0);
		private final CrossReference cPackageEPackageCrossReference_0_0_0 = (CrossReference)cPackageAssignment_0_0.eContents().get(0);
		private final RuleCall cPackageEPackageQualifiedNameParserRuleCall_0_0_0_1 = (RuleCall)cPackageEPackageCrossReference_0_0_0.eContents().get(1);
		private final Keyword cColonColonKeyword_0_1 = (Keyword)cGroup_0.eContents().get(1);
		private final Assignment cClassifierAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final CrossReference cClassifierEClassifierCrossReference_1_0 = (CrossReference)cClassifierAssignment_1.eContents().get(0);
		private final RuleCall cClassifierEClassifierIDTerminalRuleCall_1_0_1 = (RuleCall)cClassifierEClassifierCrossReference_1_0.eContents().get(1);
		private final Group cGroup_2 = (Group)cGroup.eContents().get(2);
		private final Keyword cFullStopKeyword_2_0 = (Keyword)cGroup_2.eContents().get(0);
		private final Assignment cFeatureAssignment_2_1 = (Assignment)cGroup_2.eContents().get(1);
		private final CrossReference cFeatureENamedElementCrossReference_2_1_0 = (CrossReference)cFeatureAssignment_2_1.eContents().get(0);
		private final RuleCall cFeatureENamedElementIDTerminalRuleCall_2_1_0_1 = (RuleCall)cFeatureENamedElementCrossReference_2_1_0.eContents().get(1);
		
		//MetamodelElement:
		//	(package=[ecore::EPackage|QualifiedName] '::')? classifier=[ecore::EClassifier] ('.'
		//	feature=[ecore::ENamedElement])?;
		@Override public ParserRule getRule() { return rule; }
		
		//(package=[ecore::EPackage|QualifiedName] '::')? classifier=[ecore::EClassifier] ('.' feature=[ecore::ENamedElement])?
		public Group getGroup() { return cGroup; }
		
		//(package=[ecore::EPackage|QualifiedName] '::')?
		public Group getGroup_0() { return cGroup_0; }
		
		//package=[ecore::EPackage|QualifiedName]
		public Assignment getPackageAssignment_0_0() { return cPackageAssignment_0_0; }
		
		//[ecore::EPackage|QualifiedName]
		public CrossReference getPackageEPackageCrossReference_0_0_0() { return cPackageEPackageCrossReference_0_0_0; }
		
		//QualifiedName
		public RuleCall getPackageEPackageQualifiedNameParserRuleCall_0_0_0_1() { return cPackageEPackageQualifiedNameParserRuleCall_0_0_0_1; }
		
		//'::'
		public Keyword getColonColonKeyword_0_1() { return cColonColonKeyword_0_1; }
		
		//classifier=[ecore::EClassifier]
		public Assignment getClassifierAssignment_1() { return cClassifierAssignment_1; }
		
		//[ecore::EClassifier]
		public CrossReference getClassifierEClassifierCrossReference_1_0() { return cClassifierEClassifierCrossReference_1_0; }
		
		//ID
		public RuleCall getClassifierEClassifierIDTerminalRuleCall_1_0_1() { return cClassifierEClassifierIDTerminalRuleCall_1_0_1; }
		
		//('.' feature=[ecore::ENamedElement])?
		public Group getGroup_2() { return cGroup_2; }
		
		//'.'
		public Keyword getFullStopKeyword_2_0() { return cFullStopKeyword_2_0; }
		
		//feature=[ecore::ENamedElement]
		public Assignment getFeatureAssignment_2_1() { return cFeatureAssignment_2_1; }
		
		//[ecore::ENamedElement]
		public CrossReference getFeatureENamedElementCrossReference_2_1_0() { return cFeatureENamedElementCrossReference_2_1_0; }
		
		//ID
		public RuleCall getFeatureENamedElementIDTerminalRuleCall_2_1_0_1() { return cFeatureENamedElementIDTerminalRuleCall_2_1_0_1; }
	}
	public class MetamodelDeclarationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.MetamodelDeclaration");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cMetamodelKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cNameAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cNameIDTerminalRuleCall_1_0 = (RuleCall)cNameAssignment_1.eContents().get(0);
		private final Assignment cSpecificationAssignment_2 = (Assignment)cGroup.eContents().get(2);
		private final RuleCall cSpecificationMetamodelSpecificationParserRuleCall_2_0 = (RuleCall)cSpecificationAssignment_2.eContents().get(0);
		
		//MetamodelDeclaration:
		//	'metamodel' name=ID specification=MetamodelSpecification;
		@Override public ParserRule getRule() { return rule; }
		
		//'metamodel' name=ID specification=MetamodelSpecification
		public Group getGroup() { return cGroup; }
		
		//'metamodel'
		public Keyword getMetamodelKeyword_0() { return cMetamodelKeyword_0; }
		
		//name=ID
		public Assignment getNameAssignment_1() { return cNameAssignment_1; }
		
		//ID
		public RuleCall getNameIDTerminalRuleCall_1_0() { return cNameIDTerminalRuleCall_1_0; }
		
		//specification=MetamodelSpecification
		public Assignment getSpecificationAssignment_2() { return cSpecificationAssignment_2; }
		
		//MetamodelSpecification
		public RuleCall getSpecificationMetamodelSpecificationParserRuleCall_2_0() { return cSpecificationMetamodelSpecificationParserRuleCall_2_0; }
	}
	public class MetamodelReferenceElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.MetamodelReference");
		private final Assignment cReferredAssignment = (Assignment)rule.eContents().get(1);
		private final CrossReference cReferredMetamodelDeclarationCrossReference_0 = (CrossReference)cReferredAssignment.eContents().get(0);
		private final RuleCall cReferredMetamodelDeclarationIDTerminalRuleCall_0_1 = (RuleCall)cReferredMetamodelDeclarationCrossReference_0.eContents().get(1);
		
		//MetamodelReference:
		//	referred=[MetamodelDeclaration];
		@Override public ParserRule getRule() { return rule; }
		
		//referred=[MetamodelDeclaration]
		public Assignment getReferredAssignment() { return cReferredAssignment; }
		
		//[MetamodelDeclaration]
		public CrossReference getReferredMetamodelDeclarationCrossReference_0() { return cReferredMetamodelDeclarationCrossReference_0; }
		
		//ID
		public RuleCall getReferredMetamodelDeclarationIDTerminalRuleCall_0_1() { return cReferredMetamodelDeclarationIDTerminalRuleCall_0_1; }
	}
	public class MetamodelElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.Metamodel");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cMetamodelReferenceParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cMetamodelSpecificationParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		
		//Metamodel:
		//	MetamodelReference | MetamodelSpecification;
		@Override public ParserRule getRule() { return rule; }
		
		//MetamodelReference | MetamodelSpecification
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//MetamodelReference
		public RuleCall getMetamodelReferenceParserRuleCall_0() { return cMetamodelReferenceParserRuleCall_0; }
		
		//MetamodelSpecification
		public RuleCall getMetamodelSpecificationParserRuleCall_1() { return cMetamodelSpecificationParserRuleCall_1; }
	}
	public class PartialModelSpecificationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.PartialModelSpecification");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cLeftCurlyBracketKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cEntryAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cEntryPartialModelEntryParserRuleCall_1_0 = (RuleCall)cEntryAssignment_1.eContents().get(0);
		private final Group cGroup_2 = (Group)cGroup.eContents().get(2);
		private final Keyword cCommaKeyword_2_0 = (Keyword)cGroup_2.eContents().get(0);
		private final Assignment cEntryAssignment_2_1 = (Assignment)cGroup_2.eContents().get(1);
		private final RuleCall cEntryPartialModelEntryParserRuleCall_2_1_0 = (RuleCall)cEntryAssignment_2_1.eContents().get(0);
		private final Keyword cRightCurlyBracketKeyword_3 = (Keyword)cGroup.eContents().get(3);
		
		/////////////////////////////////////////////////////
		//// Partial Model
		/////////////////////////////////////////////////////
		//PartialModelSpecification:
		//	'{' entry+=PartialModelEntry (',' entry+=PartialModelEntry)? '}';
		@Override public ParserRule getRule() { return rule; }
		
		//'{' entry+=PartialModelEntry (',' entry+=PartialModelEntry)? '}'
		public Group getGroup() { return cGroup; }
		
		//'{'
		public Keyword getLeftCurlyBracketKeyword_0() { return cLeftCurlyBracketKeyword_0; }
		
		//entry+=PartialModelEntry
		public Assignment getEntryAssignment_1() { return cEntryAssignment_1; }
		
		//PartialModelEntry
		public RuleCall getEntryPartialModelEntryParserRuleCall_1_0() { return cEntryPartialModelEntryParserRuleCall_1_0; }
		
		//(',' entry+=PartialModelEntry)?
		public Group getGroup_2() { return cGroup_2; }
		
		//','
		public Keyword getCommaKeyword_2_0() { return cCommaKeyword_2_0; }
		
		//entry+=PartialModelEntry
		public Assignment getEntryAssignment_2_1() { return cEntryAssignment_2_1; }
		
		//PartialModelEntry
		public RuleCall getEntryPartialModelEntryParserRuleCall_2_1_0() { return cEntryPartialModelEntryParserRuleCall_2_1_0; }
		
		//'}'
		public Keyword getRightCurlyBracketKeyword_3() { return cRightCurlyBracketKeyword_3; }
	}
	public class PartialModelEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.PartialModelEntry");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cModelEntryParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cFolderEntryParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		
		//PartialModelEntry:
		//	ModelEntry | FolderEntry;
		@Override public ParserRule getRule() { return rule; }
		
		//ModelEntry | FolderEntry
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//ModelEntry
		public RuleCall getModelEntryParserRuleCall_0() { return cModelEntryParserRuleCall_0; }
		
		//FolderEntry
		public RuleCall getFolderEntryParserRuleCall_1() { return cFolderEntryParserRuleCall_1; }
	}
	public class ModelEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ModelEntry");
		private final Assignment cPathAssignment = (Assignment)rule.eContents().get(1);
		private final RuleCall cPathFileParserRuleCall_0 = (RuleCall)cPathAssignment.eContents().get(0);
		
		//ModelEntry:
		//	path=File;
		@Override public ParserRule getRule() { return rule; }
		
		//path=File
		public Assignment getPathAssignment() { return cPathAssignment; }
		
		//File
		public RuleCall getPathFileParserRuleCall_0() { return cPathFileParserRuleCall_0; }
	}
	public class FolderEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.FolderEntry");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cFolderKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cPathAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cPathFileParserRuleCall_1_0 = (RuleCall)cPathAssignment_1.eContents().get(0);
		private final Group cGroup_2 = (Group)cGroup.eContents().get(2);
		private final Keyword cExcludingKeyword_2_0 = (Keyword)cGroup_2.eContents().get(0);
		private final Keyword cLeftCurlyBracketKeyword_2_1 = (Keyword)cGroup_2.eContents().get(1);
		private final Assignment cExclusionAssignment_2_2 = (Assignment)cGroup_2.eContents().get(2);
		private final RuleCall cExclusionModelEntryParserRuleCall_2_2_0 = (RuleCall)cExclusionAssignment_2_2.eContents().get(0);
		private final Group cGroup_2_3 = (Group)cGroup_2.eContents().get(3);
		private final Keyword cCommaKeyword_2_3_0 = (Keyword)cGroup_2_3.eContents().get(0);
		private final Assignment cExclusionAssignment_2_3_1 = (Assignment)cGroup_2_3.eContents().get(1);
		private final RuleCall cExclusionModelEntryParserRuleCall_2_3_1_0 = (RuleCall)cExclusionAssignment_2_3_1.eContents().get(0);
		private final Keyword cRightCurlyBracketKeyword_2_4 = (Keyword)cGroup_2.eContents().get(4);
		
		//FolderEntry:
		//	"folder" path=File ("excluding" "{" exclusion+=ModelEntry ("," exclusion+=ModelEntry)* "}")?;
		@Override public ParserRule getRule() { return rule; }
		
		//"folder" path=File ("excluding" "{" exclusion+=ModelEntry ("," exclusion+=ModelEntry)* "}")?
		public Group getGroup() { return cGroup; }
		
		//"folder"
		public Keyword getFolderKeyword_0() { return cFolderKeyword_0; }
		
		//path=File
		public Assignment getPathAssignment_1() { return cPathAssignment_1; }
		
		//File
		public RuleCall getPathFileParserRuleCall_1_0() { return cPathFileParserRuleCall_1_0; }
		
		//("excluding" "{" exclusion+=ModelEntry ("," exclusion+=ModelEntry)* "}")?
		public Group getGroup_2() { return cGroup_2; }
		
		//"excluding"
		public Keyword getExcludingKeyword_2_0() { return cExcludingKeyword_2_0; }
		
		//"{"
		public Keyword getLeftCurlyBracketKeyword_2_1() { return cLeftCurlyBracketKeyword_2_1; }
		
		//exclusion+=ModelEntry
		public Assignment getExclusionAssignment_2_2() { return cExclusionAssignment_2_2; }
		
		//ModelEntry
		public RuleCall getExclusionModelEntryParserRuleCall_2_2_0() { return cExclusionModelEntryParserRuleCall_2_2_0; }
		
		//("," exclusion+=ModelEntry)*
		public Group getGroup_2_3() { return cGroup_2_3; }
		
		//","
		public Keyword getCommaKeyword_2_3_0() { return cCommaKeyword_2_3_0; }
		
		//exclusion+=ModelEntry
		public Assignment getExclusionAssignment_2_3_1() { return cExclusionAssignment_2_3_1; }
		
		//ModelEntry
		public RuleCall getExclusionModelEntryParserRuleCall_2_3_1_0() { return cExclusionModelEntryParserRuleCall_2_3_1_0; }
		
		//"}"
		public Keyword getRightCurlyBracketKeyword_2_4() { return cRightCurlyBracketKeyword_2_4; }
	}
	public class PartialModelDeclarationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.PartialModelDeclaration");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cModelsKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cNameAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cNameIDTerminalRuleCall_1_0 = (RuleCall)cNameAssignment_1.eContents().get(0);
		private final Assignment cSpecificationAssignment_2 = (Assignment)cGroup.eContents().get(2);
		private final RuleCall cSpecificationPartialModelSpecificationParserRuleCall_2_0 = (RuleCall)cSpecificationAssignment_2.eContents().get(0);
		
		//PartialModelDeclaration:
		//	'models' name=ID specification=PartialModelSpecification;
		@Override public ParserRule getRule() { return rule; }
		
		//'models' name=ID specification=PartialModelSpecification
		public Group getGroup() { return cGroup; }
		
		//'models'
		public Keyword getModelsKeyword_0() { return cModelsKeyword_0; }
		
		//name=ID
		public Assignment getNameAssignment_1() { return cNameAssignment_1; }
		
		//ID
		public RuleCall getNameIDTerminalRuleCall_1_0() { return cNameIDTerminalRuleCall_1_0; }
		
		//specification=PartialModelSpecification
		public Assignment getSpecificationAssignment_2() { return cSpecificationAssignment_2; }
		
		//PartialModelSpecification
		public RuleCall getSpecificationPartialModelSpecificationParserRuleCall_2_0() { return cSpecificationPartialModelSpecificationParserRuleCall_2_0; }
	}
	public class PartialModelReferenceElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.PartialModelReference");
		private final Assignment cReferredAssignment = (Assignment)rule.eContents().get(1);
		private final CrossReference cReferredPartialModelDeclarationCrossReference_0 = (CrossReference)cReferredAssignment.eContents().get(0);
		private final RuleCall cReferredPartialModelDeclarationIDTerminalRuleCall_0_1 = (RuleCall)cReferredPartialModelDeclarationCrossReference_0.eContents().get(1);
		
		//PartialModelReference:
		//	referred=[PartialModelDeclaration];
		@Override public ParserRule getRule() { return rule; }
		
		//referred=[PartialModelDeclaration]
		public Assignment getReferredAssignment() { return cReferredAssignment; }
		
		//[PartialModelDeclaration]
		public CrossReference getReferredPartialModelDeclarationCrossReference_0() { return cReferredPartialModelDeclarationCrossReference_0; }
		
		//ID
		public RuleCall getReferredPartialModelDeclarationIDTerminalRuleCall_0_1() { return cReferredPartialModelDeclarationIDTerminalRuleCall_0_1; }
	}
	public class PartialModelElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.PartialModel");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cPartialModelSpecificationParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cPartialModelReferenceParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		
		//PartialModel:
		//	PartialModelSpecification | PartialModelReference;
		@Override public ParserRule getRule() { return rule; }
		
		//PartialModelSpecification | PartialModelReference
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//PartialModelSpecification
		public RuleCall getPartialModelSpecificationParserRuleCall_0() { return cPartialModelSpecificationParserRuleCall_0; }
		
		//PartialModelReference
		public RuleCall getPartialModelReferenceParserRuleCall_1() { return cPartialModelReferenceParserRuleCall_1; }
	}
	public class PatternSpecificationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.PatternSpecification");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cLeftCurlyBracketKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cEntriesAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cEntriesPatternEntryParserRuleCall_1_0 = (RuleCall)cEntriesAssignment_1.eContents().get(0);
		private final Group cGroup_2 = (Group)cGroup.eContents().get(2);
		private final Keyword cCommaKeyword_2_0 = (Keyword)cGroup_2.eContents().get(0);
		private final Assignment cEntriesAssignment_2_1 = (Assignment)cGroup_2.eContents().get(1);
		private final RuleCall cEntriesPatternEntryParserRuleCall_2_1_0 = (RuleCall)cEntriesAssignment_2_1.eContents().get(0);
		private final Keyword cRightCurlyBracketKeyword_3 = (Keyword)cGroup.eContents().get(3);
		
		/////////////////////////////////////////////////////
		//// Patterns
		/////////////////////////////////////////////////////
		//PatternSpecification:
		//	'{' entries+=PatternEntry (',' entries+=PatternEntry)* '}';
		@Override public ParserRule getRule() { return rule; }
		
		//'{' entries+=PatternEntry (',' entries+=PatternEntry)* '}'
		public Group getGroup() { return cGroup; }
		
		//'{'
		public Keyword getLeftCurlyBracketKeyword_0() { return cLeftCurlyBracketKeyword_0; }
		
		//entries+=PatternEntry
		public Assignment getEntriesAssignment_1() { return cEntriesAssignment_1; }
		
		//PatternEntry
		public RuleCall getEntriesPatternEntryParserRuleCall_1_0() { return cEntriesPatternEntryParserRuleCall_1_0; }
		
		//(',' entries+=PatternEntry)*
		public Group getGroup_2() { return cGroup_2; }
		
		//','
		public Keyword getCommaKeyword_2_0() { return cCommaKeyword_2_0; }
		
		//entries+=PatternEntry
		public Assignment getEntriesAssignment_2_1() { return cEntriesAssignment_2_1; }
		
		//PatternEntry
		public RuleCall getEntriesPatternEntryParserRuleCall_2_1_0() { return cEntriesPatternEntryParserRuleCall_2_1_0; }
		
		//'}'
		public Keyword getRightCurlyBracketKeyword_3() { return cRightCurlyBracketKeyword_3; }
	}
	public class PatternEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.PatternEntry");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cPatternElementParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cAllPatternEntryParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		
		//PatternEntry:
		//	PatternElement | AllPatternEntry;
		@Override public ParserRule getRule() { return rule; }
		
		//PatternElement | AllPatternEntry
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//PatternElement
		public RuleCall getPatternElementParserRuleCall_0() { return cPatternElementParserRuleCall_0; }
		
		//AllPatternEntry
		public RuleCall getAllPatternEntryParserRuleCall_1() { return cAllPatternEntryParserRuleCall_1; }
	}
	public class AllPatternEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.AllPatternEntry");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cPackageKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cPackageAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final CrossReference cPackagePatternModelCrossReference_1_0 = (CrossReference)cPackageAssignment_1.eContents().get(0);
		private final RuleCall cPackagePatternModelQualifiedNameParserRuleCall_1_0_1 = (RuleCall)cPackagePatternModelCrossReference_1_0.eContents().get(1);
		private final Group cGroup_2 = (Group)cGroup.eContents().get(2);
		private final Keyword cExcludingKeyword_2_0 = (Keyword)cGroup_2.eContents().get(0);
		private final Keyword cLeftCurlyBracketKeyword_2_1 = (Keyword)cGroup_2.eContents().get(1);
		private final Assignment cExclusuionAssignment_2_2 = (Assignment)cGroup_2.eContents().get(2);
		private final RuleCall cExclusuionPatternElementParserRuleCall_2_2_0 = (RuleCall)cExclusuionAssignment_2_2.eContents().get(0);
		private final Group cGroup_2_3 = (Group)cGroup_2.eContents().get(3);
		private final Keyword cCommaKeyword_2_3_0 = (Keyword)cGroup_2_3.eContents().get(0);
		private final Assignment cExclusuionAssignment_2_3_1 = (Assignment)cGroup_2_3.eContents().get(1);
		private final RuleCall cExclusuionPatternElementParserRuleCall_2_3_1_0 = (RuleCall)cExclusuionAssignment_2_3_1.eContents().get(0);
		private final Keyword cRightCurlyBracketKeyword_2_4 = (Keyword)cGroup_2.eContents().get(4);
		
		//AllPatternEntry:
		//	'package' package=[viatra::PatternModel|QualifiedName] ('excluding' '{' exclusuion+=PatternElement (','
		//	exclusuion+=PatternElement)* '}')?;
		@Override public ParserRule getRule() { return rule; }
		
		//'package' package=[viatra::PatternModel|QualifiedName] ('excluding' '{' exclusuion+=PatternElement (','
		//exclusuion+=PatternElement)* '}')?
		public Group getGroup() { return cGroup; }
		
		//'package'
		public Keyword getPackageKeyword_0() { return cPackageKeyword_0; }
		
		//package=[viatra::PatternModel|QualifiedName]
		public Assignment getPackageAssignment_1() { return cPackageAssignment_1; }
		
		//[viatra::PatternModel|QualifiedName]
		public CrossReference getPackagePatternModelCrossReference_1_0() { return cPackagePatternModelCrossReference_1_0; }
		
		//QualifiedName
		public RuleCall getPackagePatternModelQualifiedNameParserRuleCall_1_0_1() { return cPackagePatternModelQualifiedNameParserRuleCall_1_0_1; }
		
		//('excluding' '{' exclusuion+=PatternElement (',' exclusuion+=PatternElement)* '}')?
		public Group getGroup_2() { return cGroup_2; }
		
		//'excluding'
		public Keyword getExcludingKeyword_2_0() { return cExcludingKeyword_2_0; }
		
		//'{'
		public Keyword getLeftCurlyBracketKeyword_2_1() { return cLeftCurlyBracketKeyword_2_1; }
		
		//exclusuion+=PatternElement
		public Assignment getExclusuionAssignment_2_2() { return cExclusuionAssignment_2_2; }
		
		//PatternElement
		public RuleCall getExclusuionPatternElementParserRuleCall_2_2_0() { return cExclusuionPatternElementParserRuleCall_2_2_0; }
		
		//(',' exclusuion+=PatternElement)*
		public Group getGroup_2_3() { return cGroup_2_3; }
		
		//','
		public Keyword getCommaKeyword_2_3_0() { return cCommaKeyword_2_3_0; }
		
		//exclusuion+=PatternElement
		public Assignment getExclusuionAssignment_2_3_1() { return cExclusuionAssignment_2_3_1; }
		
		//PatternElement
		public RuleCall getExclusuionPatternElementParserRuleCall_2_3_1_0() { return cExclusuionPatternElementParserRuleCall_2_3_1_0; }
		
		//'}'
		public Keyword getRightCurlyBracketKeyword_2_4() { return cRightCurlyBracketKeyword_2_4; }
	}
	public class PatternElementElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.PatternElement");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Group cGroup_0 = (Group)cGroup.eContents().get(0);
		private final Assignment cPackageAssignment_0_0 = (Assignment)cGroup_0.eContents().get(0);
		private final CrossReference cPackagePatternModelCrossReference_0_0_0 = (CrossReference)cPackageAssignment_0_0.eContents().get(0);
		private final RuleCall cPackagePatternModelQualifiedNameParserRuleCall_0_0_0_1 = (RuleCall)cPackagePatternModelCrossReference_0_0_0.eContents().get(1);
		private final Keyword cColonColonKeyword_0_1 = (Keyword)cGroup_0.eContents().get(1);
		private final Assignment cPatternAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final CrossReference cPatternPatternCrossReference_1_0 = (CrossReference)cPatternAssignment_1.eContents().get(0);
		private final RuleCall cPatternPatternIDTerminalRuleCall_1_0_1 = (RuleCall)cPatternPatternCrossReference_1_0.eContents().get(1);
		
		//PatternElement:
		//	(package=[viatra::PatternModel|QualifiedName] '::')? pattern=[viatra::Pattern];
		@Override public ParserRule getRule() { return rule; }
		
		//(package=[viatra::PatternModel|QualifiedName] '::')? pattern=[viatra::Pattern]
		public Group getGroup() { return cGroup; }
		
		//(package=[viatra::PatternModel|QualifiedName] '::')?
		public Group getGroup_0() { return cGroup_0; }
		
		//package=[viatra::PatternModel|QualifiedName]
		public Assignment getPackageAssignment_0_0() { return cPackageAssignment_0_0; }
		
		//[viatra::PatternModel|QualifiedName]
		public CrossReference getPackagePatternModelCrossReference_0_0_0() { return cPackagePatternModelCrossReference_0_0_0; }
		
		//QualifiedName
		public RuleCall getPackagePatternModelQualifiedNameParserRuleCall_0_0_0_1() { return cPackagePatternModelQualifiedNameParserRuleCall_0_0_0_1; }
		
		//'::'
		public Keyword getColonColonKeyword_0_1() { return cColonColonKeyword_0_1; }
		
		//pattern=[viatra::Pattern]
		public Assignment getPatternAssignment_1() { return cPatternAssignment_1; }
		
		//[viatra::Pattern]
		public CrossReference getPatternPatternCrossReference_1_0() { return cPatternPatternCrossReference_1_0; }
		
		//ID
		public RuleCall getPatternPatternIDTerminalRuleCall_1_0_1() { return cPatternPatternIDTerminalRuleCall_1_0_1; }
	}
	public class GraphPatternDeclarationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.GraphPatternDeclaration");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cConstraintsKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cNameAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cNameIDTerminalRuleCall_1_0 = (RuleCall)cNameAssignment_1.eContents().get(0);
		private final Assignment cSpecificationAssignment_2 = (Assignment)cGroup.eContents().get(2);
		private final RuleCall cSpecificationPatternSpecificationParserRuleCall_2_0 = (RuleCall)cSpecificationAssignment_2.eContents().get(0);
		
		//GraphPatternDeclaration:
		//	'constraints' name=ID specification=PatternSpecification;
		@Override public ParserRule getRule() { return rule; }
		
		//'constraints' name=ID specification=PatternSpecification
		public Group getGroup() { return cGroup; }
		
		//'constraints'
		public Keyword getConstraintsKeyword_0() { return cConstraintsKeyword_0; }
		
		//name=ID
		public Assignment getNameAssignment_1() { return cNameAssignment_1; }
		
		//ID
		public RuleCall getNameIDTerminalRuleCall_1_0() { return cNameIDTerminalRuleCall_1_0; }
		
		//specification=PatternSpecification
		public Assignment getSpecificationAssignment_2() { return cSpecificationAssignment_2; }
		
		//PatternSpecification
		public RuleCall getSpecificationPatternSpecificationParserRuleCall_2_0() { return cSpecificationPatternSpecificationParserRuleCall_2_0; }
	}
	public class GraphPatternReferenceElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.GraphPatternReference");
		private final Assignment cReferredAssignment = (Assignment)rule.eContents().get(1);
		private final CrossReference cReferredGraphPatternDeclarationCrossReference_0 = (CrossReference)cReferredAssignment.eContents().get(0);
		private final RuleCall cReferredGraphPatternDeclarationIDTerminalRuleCall_0_1 = (RuleCall)cReferredGraphPatternDeclarationCrossReference_0.eContents().get(1);
		
		//GraphPatternReference:
		//	referred=[GraphPatternDeclaration];
		@Override public ParserRule getRule() { return rule; }
		
		//referred=[GraphPatternDeclaration]
		public Assignment getReferredAssignment() { return cReferredAssignment; }
		
		//[GraphPatternDeclaration]
		public CrossReference getReferredGraphPatternDeclarationCrossReference_0() { return cReferredGraphPatternDeclarationCrossReference_0; }
		
		//ID
		public RuleCall getReferredGraphPatternDeclarationIDTerminalRuleCall_0_1() { return cReferredGraphPatternDeclarationIDTerminalRuleCall_0_1; }
	}
	public class GraphPatternElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.GraphPattern");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cGraphPatternReferenceParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cPatternSpecificationParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		
		//GraphPattern:
		//	GraphPatternReference | PatternSpecification;
		@Override public ParserRule getRule() { return rule; }
		
		//GraphPatternReference | PatternSpecification
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//GraphPatternReference
		public RuleCall getGraphPatternReferenceParserRuleCall_0() { return cGraphPatternReferenceParserRuleCall_0; }
		
		//PatternSpecification
		public RuleCall getPatternSpecificationParserRuleCall_1() { return cPatternSpecificationParserRuleCall_1; }
	}
	public class ObjectiveSpecificationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ObjectiveSpecification");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cLeftCurlyBracketKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cEntriesAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cEntriesObjectiveEntryParserRuleCall_1_0 = (RuleCall)cEntriesAssignment_1.eContents().get(0);
		private final Group cGroup_2 = (Group)cGroup.eContents().get(2);
		private final Keyword cCommaKeyword_2_0 = (Keyword)cGroup_2.eContents().get(0);
		private final Assignment cEntriesAssignment_2_1 = (Assignment)cGroup_2.eContents().get(1);
		private final RuleCall cEntriesObjectiveEntryParserRuleCall_2_1_0 = (RuleCall)cEntriesAssignment_2_1.eContents().get(0);
		private final Keyword cRightCurlyBracketKeyword_3 = (Keyword)cGroup.eContents().get(3);
		
		/////////////////////////////////////////////////////
		//// Objectives
		/////////////////////////////////////////////////////
		//ObjectiveSpecification:
		//	'{' entries+=ObjectiveEntry (',' entries+=ObjectiveEntry)* '}';
		@Override public ParserRule getRule() { return rule; }
		
		//'{' entries+=ObjectiveEntry (',' entries+=ObjectiveEntry)* '}'
		public Group getGroup() { return cGroup; }
		
		//'{'
		public Keyword getLeftCurlyBracketKeyword_0() { return cLeftCurlyBracketKeyword_0; }
		
		//entries+=ObjectiveEntry
		public Assignment getEntriesAssignment_1() { return cEntriesAssignment_1; }
		
		//ObjectiveEntry
		public RuleCall getEntriesObjectiveEntryParserRuleCall_1_0() { return cEntriesObjectiveEntryParserRuleCall_1_0; }
		
		//(',' entries+=ObjectiveEntry)*
		public Group getGroup_2() { return cGroup_2; }
		
		//','
		public Keyword getCommaKeyword_2_0() { return cCommaKeyword_2_0; }
		
		//entries+=ObjectiveEntry
		public Assignment getEntriesAssignment_2_1() { return cEntriesAssignment_2_1; }
		
		//ObjectiveEntry
		public RuleCall getEntriesObjectiveEntryParserRuleCall_2_1_0() { return cEntriesObjectiveEntryParserRuleCall_2_1_0; }
		
		//'}'
		public Keyword getRightCurlyBracketKeyword_3() { return cRightCurlyBracketKeyword_3; }
	}
	public class ObjectiveEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ObjectiveEntry");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cOptimizationEntryParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cThresholdEntryParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		
		//ObjectiveEntry:
		//	OptimizationEntry | ThresholdEntry;
		@Override public ParserRule getRule() { return rule; }
		
		//OptimizationEntry | ThresholdEntry
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//OptimizationEntry
		public RuleCall getOptimizationEntryParserRuleCall_0() { return cOptimizationEntryParserRuleCall_0; }
		
		//ThresholdEntry
		public RuleCall getThresholdEntryParserRuleCall_1() { return cThresholdEntryParserRuleCall_1; }
	}
	public class OptimizationEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.OptimizationEntry");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Assignment cDirectionAssignment_0 = (Assignment)cGroup.eContents().get(0);
		private final RuleCall cDirectionOptimizationDirectionEnumRuleCall_0_0 = (RuleCall)cDirectionAssignment_0.eContents().get(0);
		private final Assignment cFunctionAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cFunctionObjectiveFunctionParserRuleCall_1_0 = (RuleCall)cFunctionAssignment_1.eContents().get(0);
		
		//OptimizationEntry:
		//	direction=OptimizationDirection function=ObjectiveFunction;
		@Override public ParserRule getRule() { return rule; }
		
		//direction=OptimizationDirection function=ObjectiveFunction
		public Group getGroup() { return cGroup; }
		
		//direction=OptimizationDirection
		public Assignment getDirectionAssignment_0() { return cDirectionAssignment_0; }
		
		//OptimizationDirection
		public RuleCall getDirectionOptimizationDirectionEnumRuleCall_0_0() { return cDirectionOptimizationDirectionEnumRuleCall_0_0; }
		
		//function=ObjectiveFunction
		public Assignment getFunctionAssignment_1() { return cFunctionAssignment_1; }
		
		//ObjectiveFunction
		public RuleCall getFunctionObjectiveFunctionParserRuleCall_1_0() { return cFunctionObjectiveFunctionParserRuleCall_1_0; }
	}
	public class ThresholdEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ThresholdEntry");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Assignment cFunctionAssignment_0 = (Assignment)cGroup.eContents().get(0);
		private final RuleCall cFunctionObjectiveFunctionParserRuleCall_0_0 = (RuleCall)cFunctionAssignment_0.eContents().get(0);
		private final Assignment cOperatorAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cOperatorComparisonOperatorEnumRuleCall_1_0 = (RuleCall)cOperatorAssignment_1.eContents().get(0);
		private final Assignment cThresholdAssignment_2 = (Assignment)cGroup.eContents().get(2);
		private final RuleCall cThresholdREALLiteralParserRuleCall_2_0 = (RuleCall)cThresholdAssignment_2.eContents().get(0);
		
		//ThresholdEntry:
		//	function=ObjectiveFunction operator=ComparisonOperator threshold=REALLiteral;
		@Override public ParserRule getRule() { return rule; }
		
		//function=ObjectiveFunction operator=ComparisonOperator threshold=REALLiteral
		public Group getGroup() { return cGroup; }
		
		//function=ObjectiveFunction
		public Assignment getFunctionAssignment_0() { return cFunctionAssignment_0; }
		
		//ObjectiveFunction
		public RuleCall getFunctionObjectiveFunctionParserRuleCall_0_0() { return cFunctionObjectiveFunctionParserRuleCall_0_0; }
		
		//operator=ComparisonOperator
		public Assignment getOperatorAssignment_1() { return cOperatorAssignment_1; }
		
		//ComparisonOperator
		public RuleCall getOperatorComparisonOperatorEnumRuleCall_1_0() { return cOperatorComparisonOperatorEnumRuleCall_1_0; }
		
		//threshold=REALLiteral
		public Assignment getThresholdAssignment_2() { return cThresholdAssignment_2; }
		
		//REALLiteral
		public RuleCall getThresholdREALLiteralParserRuleCall_2_0() { return cThresholdREALLiteralParserRuleCall_2_0; }
	}
	public class ObjectiveFunctionElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ObjectiveFunction");
		private final RuleCall cCostObjectiveFunctionParserRuleCall = (RuleCall)rule.eContents().get(1);
		
		//ObjectiveFunction:
		//	CostObjectiveFunction;
		@Override public ParserRule getRule() { return rule; }
		
		//CostObjectiveFunction
		public RuleCall getCostObjectiveFunctionParserRuleCall() { return cCostObjectiveFunctionParserRuleCall; }
	}
	public class CostObjectiveFunctionElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.CostObjectiveFunction");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cCostKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Keyword cLeftCurlyBracketKeyword_1 = (Keyword)cGroup.eContents().get(1);
		private final Assignment cEntriesAssignment_2 = (Assignment)cGroup.eContents().get(2);
		private final RuleCall cEntriesCostEntryParserRuleCall_2_0 = (RuleCall)cEntriesAssignment_2.eContents().get(0);
		private final Group cGroup_3 = (Group)cGroup.eContents().get(3);
		private final Keyword cCommaKeyword_3_0 = (Keyword)cGroup_3.eContents().get(0);
		private final Assignment cEntriesAssignment_3_1 = (Assignment)cGroup_3.eContents().get(1);
		private final RuleCall cEntriesCostEntryParserRuleCall_3_1_0 = (RuleCall)cEntriesAssignment_3_1.eContents().get(0);
		private final Keyword cRightCurlyBracketKeyword_4 = (Keyword)cGroup.eContents().get(4);
		
		//CostObjectiveFunction:
		//	'cost' '{' entries+=CostEntry (',' entries+=CostEntry)* '}';
		@Override public ParserRule getRule() { return rule; }
		
		//'cost' '{' entries+=CostEntry (',' entries+=CostEntry)* '}'
		public Group getGroup() { return cGroup; }
		
		//'cost'
		public Keyword getCostKeyword_0() { return cCostKeyword_0; }
		
		//'{'
		public Keyword getLeftCurlyBracketKeyword_1() { return cLeftCurlyBracketKeyword_1; }
		
		//entries+=CostEntry
		public Assignment getEntriesAssignment_2() { return cEntriesAssignment_2; }
		
		//CostEntry
		public RuleCall getEntriesCostEntryParserRuleCall_2_0() { return cEntriesCostEntryParserRuleCall_2_0; }
		
		//(',' entries+=CostEntry)*
		public Group getGroup_3() { return cGroup_3; }
		
		//','
		public Keyword getCommaKeyword_3_0() { return cCommaKeyword_3_0; }
		
		//entries+=CostEntry
		public Assignment getEntriesAssignment_3_1() { return cEntriesAssignment_3_1; }
		
		//CostEntry
		public RuleCall getEntriesCostEntryParserRuleCall_3_1_0() { return cEntriesCostEntryParserRuleCall_3_1_0; }
		
		//'}'
		public Keyword getRightCurlyBracketKeyword_4() { return cRightCurlyBracketKeyword_4; }
	}
	public class CostEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.CostEntry");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Assignment cPatternElementAssignment_0 = (Assignment)cGroup.eContents().get(0);
		private final RuleCall cPatternElementPatternElementParserRuleCall_0_0 = (RuleCall)cPatternElementAssignment_0.eContents().get(0);
		private final Keyword cEqualsSignKeyword_1 = (Keyword)cGroup.eContents().get(1);
		private final Assignment cWeightAssignment_2 = (Assignment)cGroup.eContents().get(2);
		private final RuleCall cWeightINTLiteralParserRuleCall_2_0 = (RuleCall)cWeightAssignment_2.eContents().get(0);
		
		//CostEntry:
		//	patternElement=PatternElement '=' weight=INTLiteral;
		@Override public ParserRule getRule() { return rule; }
		
		//patternElement=PatternElement '=' weight=INTLiteral
		public Group getGroup() { return cGroup; }
		
		//patternElement=PatternElement
		public Assignment getPatternElementAssignment_0() { return cPatternElementAssignment_0; }
		
		//PatternElement
		public RuleCall getPatternElementPatternElementParserRuleCall_0_0() { return cPatternElementPatternElementParserRuleCall_0_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_1() { return cEqualsSignKeyword_1; }
		
		//weight=INTLiteral
		public Assignment getWeightAssignment_2() { return cWeightAssignment_2; }
		
		//INTLiteral
		public RuleCall getWeightINTLiteralParserRuleCall_2_0() { return cWeightINTLiteralParserRuleCall_2_0; }
	}
	public class ObjectiveDeclarationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ObjectiveDeclaration");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cObjectivesKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cNameAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cNameIDTerminalRuleCall_1_0 = (RuleCall)cNameAssignment_1.eContents().get(0);
		private final Assignment cSpecificationAssignment_2 = (Assignment)cGroup.eContents().get(2);
		private final RuleCall cSpecificationObjectiveSpecificationParserRuleCall_2_0 = (RuleCall)cSpecificationAssignment_2.eContents().get(0);
		
		//ObjectiveDeclaration:
		//	'objectives' name=ID specification=ObjectiveSpecification;
		@Override public ParserRule getRule() { return rule; }
		
		//'objectives' name=ID specification=ObjectiveSpecification
		public Group getGroup() { return cGroup; }
		
		//'objectives'
		public Keyword getObjectivesKeyword_0() { return cObjectivesKeyword_0; }
		
		//name=ID
		public Assignment getNameAssignment_1() { return cNameAssignment_1; }
		
		//ID
		public RuleCall getNameIDTerminalRuleCall_1_0() { return cNameIDTerminalRuleCall_1_0; }
		
		//specification=ObjectiveSpecification
		public Assignment getSpecificationAssignment_2() { return cSpecificationAssignment_2; }
		
		//ObjectiveSpecification
		public RuleCall getSpecificationObjectiveSpecificationParserRuleCall_2_0() { return cSpecificationObjectiveSpecificationParserRuleCall_2_0; }
	}
	public class ObjectiveReferenceElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ObjectiveReference");
		private final Assignment cReferredAssignment = (Assignment)rule.eContents().get(1);
		private final CrossReference cReferredObjectiveDeclarationCrossReference_0 = (CrossReference)cReferredAssignment.eContents().get(0);
		private final RuleCall cReferredObjectiveDeclarationIDTerminalRuleCall_0_1 = (RuleCall)cReferredObjectiveDeclarationCrossReference_0.eContents().get(1);
		
		//ObjectiveReference:
		//	referred=[ObjectiveDeclaration];
		@Override public ParserRule getRule() { return rule; }
		
		//referred=[ObjectiveDeclaration]
		public Assignment getReferredAssignment() { return cReferredAssignment; }
		
		//[ObjectiveDeclaration]
		public CrossReference getReferredObjectiveDeclarationCrossReference_0() { return cReferredObjectiveDeclarationCrossReference_0; }
		
		//ID
		public RuleCall getReferredObjectiveDeclarationIDTerminalRuleCall_0_1() { return cReferredObjectiveDeclarationIDTerminalRuleCall_0_1; }
	}
	public class ObjectiveElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.Objective");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cObjectiveReferenceParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cObjectiveSpecificationParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		
		//Objective:
		//	ObjectiveReference | ObjectiveSpecification;
		@Override public ParserRule getRule() { return rule; }
		
		//ObjectiveReference | ObjectiveSpecification
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//ObjectiveReference
		public RuleCall getObjectiveReferenceParserRuleCall_0() { return cObjectiveReferenceParserRuleCall_0; }
		
		//ObjectiveSpecification
		public RuleCall getObjectiveSpecificationParserRuleCall_1() { return cObjectiveSpecificationParserRuleCall_1; }
	}
	public class ConfigSpecificationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ConfigSpecification");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Action cConfigSpecificationAction_0 = (Action)cGroup.eContents().get(0);
		private final Keyword cLeftCurlyBracketKeyword_1 = (Keyword)cGroup.eContents().get(1);
		private final Group cGroup_2 = (Group)cGroup.eContents().get(2);
		private final Assignment cEntriesAssignment_2_0 = (Assignment)cGroup_2.eContents().get(0);
		private final RuleCall cEntriesConfigEntryParserRuleCall_2_0_0 = (RuleCall)cEntriesAssignment_2_0.eContents().get(0);
		private final Group cGroup_2_1 = (Group)cGroup_2.eContents().get(1);
		private final Keyword cCommaKeyword_2_1_0 = (Keyword)cGroup_2_1.eContents().get(0);
		private final Assignment cEntriesAssignment_2_1_1 = (Assignment)cGroup_2_1.eContents().get(1);
		private final RuleCall cEntriesConfigEntryParserRuleCall_2_1_1_0 = (RuleCall)cEntriesAssignment_2_1_1.eContents().get(0);
		private final Keyword cRightCurlyBracketKeyword_3 = (Keyword)cGroup.eContents().get(3);
		
		/////////////////////////////////////////////////////
		//// SolverConfig
		/////////////////////////////////////////////////////
		//ConfigSpecification:
		//	{ConfigSpecification} '{' (entries+=ConfigEntry ("," entries+=ConfigEntry)*)?
		//	'}';
		@Override public ParserRule getRule() { return rule; }
		
		//{ConfigSpecification} '{' (entries+=ConfigEntry ("," entries+=ConfigEntry)*)? '}'
		public Group getGroup() { return cGroup; }
		
		//{ConfigSpecification}
		public Action getConfigSpecificationAction_0() { return cConfigSpecificationAction_0; }
		
		//'{'
		public Keyword getLeftCurlyBracketKeyword_1() { return cLeftCurlyBracketKeyword_1; }
		
		//(entries+=ConfigEntry ("," entries+=ConfigEntry)*)?
		public Group getGroup_2() { return cGroup_2; }
		
		//entries+=ConfigEntry
		public Assignment getEntriesAssignment_2_0() { return cEntriesAssignment_2_0; }
		
		//ConfigEntry
		public RuleCall getEntriesConfigEntryParserRuleCall_2_0_0() { return cEntriesConfigEntryParserRuleCall_2_0_0; }
		
		//("," entries+=ConfigEntry)*
		public Group getGroup_2_1() { return cGroup_2_1; }
		
		//","
		public Keyword getCommaKeyword_2_1_0() { return cCommaKeyword_2_1_0; }
		
		//entries+=ConfigEntry
		public Assignment getEntriesAssignment_2_1_1() { return cEntriesAssignment_2_1_1; }
		
		//ConfigEntry
		public RuleCall getEntriesConfigEntryParserRuleCall_2_1_1_0() { return cEntriesConfigEntryParserRuleCall_2_1_1_0; }
		
		//'}'
		public Keyword getRightCurlyBracketKeyword_3() { return cRightCurlyBracketKeyword_3; }
	}
	public class ConfigDeclarationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ConfigDeclaration");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cConfigKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cNameAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cNameIDTerminalRuleCall_1_0 = (RuleCall)cNameAssignment_1.eContents().get(0);
		private final Assignment cSpecificationAssignment_2 = (Assignment)cGroup.eContents().get(2);
		private final RuleCall cSpecificationConfigSpecificationParserRuleCall_2_0 = (RuleCall)cSpecificationAssignment_2.eContents().get(0);
		
		//ConfigDeclaration:
		//	'config' name=ID specification=ConfigSpecification;
		@Override public ParserRule getRule() { return rule; }
		
		//'config' name=ID specification=ConfigSpecification
		public Group getGroup() { return cGroup; }
		
		//'config'
		public Keyword getConfigKeyword_0() { return cConfigKeyword_0; }
		
		//name=ID
		public Assignment getNameAssignment_1() { return cNameAssignment_1; }
		
		//ID
		public RuleCall getNameIDTerminalRuleCall_1_0() { return cNameIDTerminalRuleCall_1_0; }
		
		//specification=ConfigSpecification
		public Assignment getSpecificationAssignment_2() { return cSpecificationAssignment_2; }
		
		//ConfigSpecification
		public RuleCall getSpecificationConfigSpecificationParserRuleCall_2_0() { return cSpecificationConfigSpecificationParserRuleCall_2_0; }
	}
	public class ConfigEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ConfigEntry");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cDocumentationEntryParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cRuntimeEntryParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		private final RuleCall cMemoryEntryParserRuleCall_2 = (RuleCall)cAlternatives.eContents().get(2);
		private final RuleCall cCustomEntryParserRuleCall_3 = (RuleCall)cAlternatives.eContents().get(3);
		
		//ConfigEntry:
		//	DocumentationEntry | RuntimeEntry | MemoryEntry | CustomEntry;
		@Override public ParserRule getRule() { return rule; }
		
		//DocumentationEntry | RuntimeEntry | MemoryEntry | CustomEntry
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//DocumentationEntry
		public RuleCall getDocumentationEntryParserRuleCall_0() { return cDocumentationEntryParserRuleCall_0; }
		
		//RuntimeEntry
		public RuleCall getRuntimeEntryParserRuleCall_1() { return cRuntimeEntryParserRuleCall_1; }
		
		//MemoryEntry
		public RuleCall getMemoryEntryParserRuleCall_2() { return cMemoryEntryParserRuleCall_2; }
		
		//CustomEntry
		public RuleCall getCustomEntryParserRuleCall_3() { return cCustomEntryParserRuleCall_3; }
	}
	public class DocumentationEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.DocumentationEntry");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cLogLevelKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Keyword cEqualsSignKeyword_1 = (Keyword)cGroup.eContents().get(1);
		private final Assignment cLevelAssignment_2 = (Assignment)cGroup.eContents().get(2);
		private final RuleCall cLevelDocumentLevelSpecificationEnumRuleCall_2_0 = (RuleCall)cLevelAssignment_2.eContents().get(0);
		
		//DocumentationEntry:
		//	"log-level" '=' level=DocumentLevelSpecification;
		@Override public ParserRule getRule() { return rule; }
		
		//"log-level" '=' level=DocumentLevelSpecification
		public Group getGroup() { return cGroup; }
		
		//"log-level"
		public Keyword getLogLevelKeyword_0() { return cLogLevelKeyword_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_1() { return cEqualsSignKeyword_1; }
		
		//level=DocumentLevelSpecification
		public Assignment getLevelAssignment_2() { return cLevelAssignment_2; }
		
		//DocumentLevelSpecification
		public RuleCall getLevelDocumentLevelSpecificationEnumRuleCall_2_0() { return cLevelDocumentLevelSpecificationEnumRuleCall_2_0; }
	}
	public class RuntimeEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.RuntimeEntry");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cRuntimeKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Keyword cEqualsSignKeyword_1 = (Keyword)cGroup.eContents().get(1);
		private final Assignment cMillisecLimitAssignment_2 = (Assignment)cGroup.eContents().get(2);
		private final RuleCall cMillisecLimitINTTerminalRuleCall_2_0 = (RuleCall)cMillisecLimitAssignment_2.eContents().get(0);
		
		//RuntimeEntry:
		//	"runtime" "=" millisecLimit=INT;
		@Override public ParserRule getRule() { return rule; }
		
		//"runtime" "=" millisecLimit=INT
		public Group getGroup() { return cGroup; }
		
		//"runtime"
		public Keyword getRuntimeKeyword_0() { return cRuntimeKeyword_0; }
		
		//"="
		public Keyword getEqualsSignKeyword_1() { return cEqualsSignKeyword_1; }
		
		//millisecLimit=INT
		public Assignment getMillisecLimitAssignment_2() { return cMillisecLimitAssignment_2; }
		
		//INT
		public RuleCall getMillisecLimitINTTerminalRuleCall_2_0() { return cMillisecLimitINTTerminalRuleCall_2_0; }
	}
	public class MemoryEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.MemoryEntry");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cMemoryKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Keyword cEqualsSignKeyword_1 = (Keyword)cGroup.eContents().get(1);
		private final Assignment cMegabyteLimitAssignment_2 = (Assignment)cGroup.eContents().get(2);
		private final RuleCall cMegabyteLimitINTTerminalRuleCall_2_0 = (RuleCall)cMegabyteLimitAssignment_2.eContents().get(0);
		
		//MemoryEntry:
		//	"memory" "=" megabyteLimit=INT;
		@Override public ParserRule getRule() { return rule; }
		
		//"memory" "=" megabyteLimit=INT
		public Group getGroup() { return cGroup; }
		
		//"memory"
		public Keyword getMemoryKeyword_0() { return cMemoryKeyword_0; }
		
		//"="
		public Keyword getEqualsSignKeyword_1() { return cEqualsSignKeyword_1; }
		
		//megabyteLimit=INT
		public Assignment getMegabyteLimitAssignment_2() { return cMegabyteLimitAssignment_2; }
		
		//INT
		public RuleCall getMegabyteLimitINTTerminalRuleCall_2_0() { return cMegabyteLimitINTTerminalRuleCall_2_0; }
	}
	public class CustomEntryElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.CustomEntry");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Assignment cKeyAssignment_0 = (Assignment)cGroup.eContents().get(0);
		private final RuleCall cKeySTRINGTerminalRuleCall_0_0 = (RuleCall)cKeyAssignment_0.eContents().get(0);
		private final Keyword cEqualsSignKeyword_1 = (Keyword)cGroup.eContents().get(1);
		private final Assignment cValueAssignment_2 = (Assignment)cGroup.eContents().get(2);
		private final RuleCall cValueSTRINGTerminalRuleCall_2_0 = (RuleCall)cValueAssignment_2.eContents().get(0);
		
		//CustomEntry:
		//	key=STRING "=" value=STRING;
		@Override public ParserRule getRule() { return rule; }
		
		//key=STRING "=" value=STRING
		public Group getGroup() { return cGroup; }
		
		//key=STRING
		public Assignment getKeyAssignment_0() { return cKeyAssignment_0; }
		
		//STRING
		public RuleCall getKeySTRINGTerminalRuleCall_0_0() { return cKeySTRINGTerminalRuleCall_0_0; }
		
		//"="
		public Keyword getEqualsSignKeyword_1() { return cEqualsSignKeyword_1; }
		
		//value=STRING
		public Assignment getValueAssignment_2() { return cValueAssignment_2; }
		
		//STRING
		public RuleCall getValueSTRINGTerminalRuleCall_2_0() { return cValueSTRINGTerminalRuleCall_2_0; }
	}
	public class ConfigReferenceElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ConfigReference");
		private final Assignment cConfigAssignment = (Assignment)rule.eContents().get(1);
		private final CrossReference cConfigConfigDeclarationCrossReference_0 = (CrossReference)cConfigAssignment.eContents().get(0);
		private final RuleCall cConfigConfigDeclarationIDTerminalRuleCall_0_1 = (RuleCall)cConfigConfigDeclarationCrossReference_0.eContents().get(1);
		
		//ConfigReference:
		//	config=[ConfigDeclaration];
		@Override public ParserRule getRule() { return rule; }
		
		//config=[ConfigDeclaration]
		public Assignment getConfigAssignment() { return cConfigAssignment; }
		
		//[ConfigDeclaration]
		public CrossReference getConfigConfigDeclarationCrossReference_0() { return cConfigConfigDeclarationCrossReference_0; }
		
		//ID
		public RuleCall getConfigConfigDeclarationIDTerminalRuleCall_0_1() { return cConfigConfigDeclarationIDTerminalRuleCall_0_1; }
	}
	public class ConfigElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.Config");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cConfigSpecificationParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cConfigReferenceParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		
		//Config:
		//	ConfigSpecification | ConfigReference;
		@Override public ParserRule getRule() { return rule; }
		
		//ConfigSpecification | ConfigReference
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//ConfigSpecification
		public RuleCall getConfigSpecificationParserRuleCall_0() { return cConfigSpecificationParserRuleCall_0; }
		
		//ConfigReference
		public RuleCall getConfigReferenceParserRuleCall_1() { return cConfigReferenceParserRuleCall_1; }
	}
	public class ScopeSpecificationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ScopeSpecification");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Action cScopeSpecificationAction_0 = (Action)cGroup.eContents().get(0);
		private final Keyword cLeftCurlyBracketKeyword_1 = (Keyword)cGroup.eContents().get(1);
		private final Group cGroup_2 = (Group)cGroup.eContents().get(2);
		private final Assignment cScopesAssignment_2_0 = (Assignment)cGroup_2.eContents().get(0);
		private final RuleCall cScopesTypeScopeParserRuleCall_2_0_0 = (RuleCall)cScopesAssignment_2_0.eContents().get(0);
		private final Group cGroup_2_1 = (Group)cGroup_2.eContents().get(1);
		private final Keyword cCommaKeyword_2_1_0 = (Keyword)cGroup_2_1.eContents().get(0);
		private final Assignment cScopesAssignment_2_1_1 = (Assignment)cGroup_2_1.eContents().get(1);
		private final RuleCall cScopesTypeScopeParserRuleCall_2_1_1_0 = (RuleCall)cScopesAssignment_2_1_1.eContents().get(0);
		private final Keyword cRightCurlyBracketKeyword_3 = (Keyword)cGroup.eContents().get(3);
		
		//ScopeSpecification:
		//	{ScopeSpecification} '{' (scopes+=TypeScope (',' scopes+=TypeScope)*)?
		//	'}';
		@Override public ParserRule getRule() { return rule; }
		
		//{ScopeSpecification} '{' (scopes+=TypeScope (',' scopes+=TypeScope)*)? '}'
		public Group getGroup() { return cGroup; }
		
		//{ScopeSpecification}
		public Action getScopeSpecificationAction_0() { return cScopeSpecificationAction_0; }
		
		//'{'
		public Keyword getLeftCurlyBracketKeyword_1() { return cLeftCurlyBracketKeyword_1; }
		
		//(scopes+=TypeScope (',' scopes+=TypeScope)*)?
		public Group getGroup_2() { return cGroup_2; }
		
		//scopes+=TypeScope
		public Assignment getScopesAssignment_2_0() { return cScopesAssignment_2_0; }
		
		//TypeScope
		public RuleCall getScopesTypeScopeParserRuleCall_2_0_0() { return cScopesTypeScopeParserRuleCall_2_0_0; }
		
		//(',' scopes+=TypeScope)*
		public Group getGroup_2_1() { return cGroup_2_1; }
		
		//','
		public Keyword getCommaKeyword_2_1_0() { return cCommaKeyword_2_1_0; }
		
		//scopes+=TypeScope
		public Assignment getScopesAssignment_2_1_1() { return cScopesAssignment_2_1_1; }
		
		//TypeScope
		public RuleCall getScopesTypeScopeParserRuleCall_2_1_1_0() { return cScopesTypeScopeParserRuleCall_2_1_1_0; }
		
		//'}'
		public Keyword getRightCurlyBracketKeyword_3() { return cRightCurlyBracketKeyword_3; }
	}
	public class TypeScopeElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.TypeScope");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cClassTypeScopeParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cObjectTypeScopeParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		private final RuleCall cIntegerTypeScopeParserRuleCall_2 = (RuleCall)cAlternatives.eContents().get(2);
		private final RuleCall cRealTypeScopeParserRuleCall_3 = (RuleCall)cAlternatives.eContents().get(3);
		private final RuleCall cStringTypeScopeParserRuleCall_4 = (RuleCall)cAlternatives.eContents().get(4);
		
		//TypeScope:
		//	ClassTypeScope | ObjectTypeScope | IntegerTypeScope | RealTypeScope | StringTypeScope;
		@Override public ParserRule getRule() { return rule; }
		
		//ClassTypeScope | ObjectTypeScope | IntegerTypeScope | RealTypeScope | StringTypeScope
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//ClassTypeScope
		public RuleCall getClassTypeScopeParserRuleCall_0() { return cClassTypeScopeParserRuleCall_0; }
		
		//ObjectTypeScope
		public RuleCall getObjectTypeScopeParserRuleCall_1() { return cObjectTypeScopeParserRuleCall_1; }
		
		//IntegerTypeScope
		public RuleCall getIntegerTypeScopeParserRuleCall_2() { return cIntegerTypeScopeParserRuleCall_2; }
		
		//RealTypeScope
		public RuleCall getRealTypeScopeParserRuleCall_3() { return cRealTypeScopeParserRuleCall_3; }
		
		//StringTypeScope
		public RuleCall getStringTypeScopeParserRuleCall_4() { return cStringTypeScopeParserRuleCall_4; }
	}
	public class ClassTypeScopeElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ClassTypeScope");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cNumberSignKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cTypeAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cTypeClassReferenceParserRuleCall_1_0 = (RuleCall)cTypeAssignment_1.eContents().get(0);
		private final Alternatives cAlternatives_2 = (Alternatives)cGroup.eContents().get(2);
		private final Assignment cSetsNewAssignment_2_0 = (Assignment)cAlternatives_2.eContents().get(0);
		private final Keyword cSetsNewPlusSignEqualsSignKeyword_2_0_0 = (Keyword)cSetsNewAssignment_2_0.eContents().get(0);
		private final Assignment cSetsSumAssignment_2_1 = (Assignment)cAlternatives_2.eContents().get(1);
		private final Keyword cSetsSumEqualsSignKeyword_2_1_0 = (Keyword)cSetsSumAssignment_2_1.eContents().get(0);
		private final Alternatives cAlternatives_3 = (Alternatives)cGroup.eContents().get(3);
		private final Assignment cNumberAssignment_3_0 = (Assignment)cAlternatives_3.eContents().get(0);
		private final RuleCall cNumberExactNumberParserRuleCall_3_0_0 = (RuleCall)cNumberAssignment_3_0.eContents().get(0);
		private final Assignment cNumberAssignment_3_1 = (Assignment)cAlternatives_3.eContents().get(1);
		private final RuleCall cNumberIntervallNumberParserRuleCall_3_1_0 = (RuleCall)cNumberAssignment_3_1.eContents().get(0);
		
		//ClassTypeScope:
		//	'#' type=ClassReference (setsNew?='+=' | setsSum?='=') (number=ExactNumber | number=IntervallNumber);
		@Override public ParserRule getRule() { return rule; }
		
		//'#' type=ClassReference (setsNew?='+=' | setsSum?='=') (number=ExactNumber | number=IntervallNumber)
		public Group getGroup() { return cGroup; }
		
		//'#'
		public Keyword getNumberSignKeyword_0() { return cNumberSignKeyword_0; }
		
		//type=ClassReference
		public Assignment getTypeAssignment_1() { return cTypeAssignment_1; }
		
		//ClassReference
		public RuleCall getTypeClassReferenceParserRuleCall_1_0() { return cTypeClassReferenceParserRuleCall_1_0; }
		
		//(setsNew?='+=' | setsSum?='=')
		public Alternatives getAlternatives_2() { return cAlternatives_2; }
		
		//setsNew?='+='
		public Assignment getSetsNewAssignment_2_0() { return cSetsNewAssignment_2_0; }
		
		//'+='
		public Keyword getSetsNewPlusSignEqualsSignKeyword_2_0_0() { return cSetsNewPlusSignEqualsSignKeyword_2_0_0; }
		
		//setsSum?='='
		public Assignment getSetsSumAssignment_2_1() { return cSetsSumAssignment_2_1; }
		
		//'='
		public Keyword getSetsSumEqualsSignKeyword_2_1_0() { return cSetsSumEqualsSignKeyword_2_1_0; }
		
		//(number=ExactNumber | number=IntervallNumber)
		public Alternatives getAlternatives_3() { return cAlternatives_3; }
		
		//number=ExactNumber
		public Assignment getNumberAssignment_3_0() { return cNumberAssignment_3_0; }
		
		//ExactNumber
		public RuleCall getNumberExactNumberParserRuleCall_3_0_0() { return cNumberExactNumberParserRuleCall_3_0_0; }
		
		//number=IntervallNumber
		public Assignment getNumberAssignment_3_1() { return cNumberAssignment_3_1; }
		
		//IntervallNumber
		public RuleCall getNumberIntervallNumberParserRuleCall_3_1_0() { return cNumberIntervallNumberParserRuleCall_3_1_0; }
	}
	public class ObjectTypeScopeElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ObjectTypeScope");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cNumberSignKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cTypeAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cTypeObjectReferenceParserRuleCall_1_0 = (RuleCall)cTypeAssignment_1.eContents().get(0);
		private final Alternatives cAlternatives_2 = (Alternatives)cGroup.eContents().get(2);
		private final Assignment cSetsNewAssignment_2_0 = (Assignment)cAlternatives_2.eContents().get(0);
		private final Keyword cSetsNewPlusSignEqualsSignKeyword_2_0_0 = (Keyword)cSetsNewAssignment_2_0.eContents().get(0);
		private final Assignment cSetsSumAssignment_2_1 = (Assignment)cAlternatives_2.eContents().get(1);
		private final Keyword cSetsSumEqualsSignKeyword_2_1_0 = (Keyword)cSetsSumAssignment_2_1.eContents().get(0);
		private final Alternatives cAlternatives_3 = (Alternatives)cGroup.eContents().get(3);
		private final Assignment cNumberAssignment_3_0 = (Assignment)cAlternatives_3.eContents().get(0);
		private final RuleCall cNumberExactNumberParserRuleCall_3_0_0 = (RuleCall)cNumberAssignment_3_0.eContents().get(0);
		private final Assignment cNumberAssignment_3_1 = (Assignment)cAlternatives_3.eContents().get(1);
		private final RuleCall cNumberIntervallNumberParserRuleCall_3_1_0 = (RuleCall)cNumberAssignment_3_1.eContents().get(0);
		
		//ObjectTypeScope:
		//	'#' type=ObjectReference (setsNew?='+=' | setsSum?='=') (number=ExactNumber | number=IntervallNumber);
		@Override public ParserRule getRule() { return rule; }
		
		//'#' type=ObjectReference (setsNew?='+=' | setsSum?='=') (number=ExactNumber | number=IntervallNumber)
		public Group getGroup() { return cGroup; }
		
		//'#'
		public Keyword getNumberSignKeyword_0() { return cNumberSignKeyword_0; }
		
		//type=ObjectReference
		public Assignment getTypeAssignment_1() { return cTypeAssignment_1; }
		
		//ObjectReference
		public RuleCall getTypeObjectReferenceParserRuleCall_1_0() { return cTypeObjectReferenceParserRuleCall_1_0; }
		
		//(setsNew?='+=' | setsSum?='=')
		public Alternatives getAlternatives_2() { return cAlternatives_2; }
		
		//setsNew?='+='
		public Assignment getSetsNewAssignment_2_0() { return cSetsNewAssignment_2_0; }
		
		//'+='
		public Keyword getSetsNewPlusSignEqualsSignKeyword_2_0_0() { return cSetsNewPlusSignEqualsSignKeyword_2_0_0; }
		
		//setsSum?='='
		public Assignment getSetsSumAssignment_2_1() { return cSetsSumAssignment_2_1; }
		
		//'='
		public Keyword getSetsSumEqualsSignKeyword_2_1_0() { return cSetsSumEqualsSignKeyword_2_1_0; }
		
		//(number=ExactNumber | number=IntervallNumber)
		public Alternatives getAlternatives_3() { return cAlternatives_3; }
		
		//number=ExactNumber
		public Assignment getNumberAssignment_3_0() { return cNumberAssignment_3_0; }
		
		//ExactNumber
		public RuleCall getNumberExactNumberParserRuleCall_3_0_0() { return cNumberExactNumberParserRuleCall_3_0_0; }
		
		//number=IntervallNumber
		public Assignment getNumberAssignment_3_1() { return cNumberAssignment_3_1; }
		
		//IntervallNumber
		public RuleCall getNumberIntervallNumberParserRuleCall_3_1_0() { return cNumberIntervallNumberParserRuleCall_3_1_0; }
	}
	public class IntegerTypeScopeElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.IntegerTypeScope");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cNumberSignKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cTypeAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cTypeIntegerReferenceParserRuleCall_1_0 = (RuleCall)cTypeAssignment_1.eContents().get(0);
		private final Alternatives cAlternatives_2 = (Alternatives)cGroup.eContents().get(2);
		private final Assignment cSetsNewAssignment_2_0 = (Assignment)cAlternatives_2.eContents().get(0);
		private final Keyword cSetsNewPlusSignEqualsSignKeyword_2_0_0 = (Keyword)cSetsNewAssignment_2_0.eContents().get(0);
		private final Assignment cSetsSumAssignment_2_1 = (Assignment)cAlternatives_2.eContents().get(1);
		private final Keyword cSetsSumEqualsSignKeyword_2_1_0 = (Keyword)cSetsSumAssignment_2_1.eContents().get(0);
		private final Alternatives cAlternatives_3 = (Alternatives)cGroup.eContents().get(3);
		private final Assignment cNumberAssignment_3_0 = (Assignment)cAlternatives_3.eContents().get(0);
		private final RuleCall cNumberExactNumberParserRuleCall_3_0_0 = (RuleCall)cNumberAssignment_3_0.eContents().get(0);
		private final Assignment cNumberAssignment_3_1 = (Assignment)cAlternatives_3.eContents().get(1);
		private final RuleCall cNumberIntervallNumberParserRuleCall_3_1_0 = (RuleCall)cNumberAssignment_3_1.eContents().get(0);
		private final Assignment cNumberAssignment_3_2 = (Assignment)cAlternatives_3.eContents().get(2);
		private final RuleCall cNumberIntEnumberationParserRuleCall_3_2_0 = (RuleCall)cNumberAssignment_3_2.eContents().get(0);
		
		//IntegerTypeScope:
		//	'#' type=IntegerReference (setsNew?='+=' | setsSum?='=') (number=ExactNumber | number=IntervallNumber |
		//	number=IntEnumberation);
		@Override public ParserRule getRule() { return rule; }
		
		//'#' type=IntegerReference (setsNew?='+=' | setsSum?='=') (number=ExactNumber | number=IntervallNumber |
		//number=IntEnumberation)
		public Group getGroup() { return cGroup; }
		
		//'#'
		public Keyword getNumberSignKeyword_0() { return cNumberSignKeyword_0; }
		
		//type=IntegerReference
		public Assignment getTypeAssignment_1() { return cTypeAssignment_1; }
		
		//IntegerReference
		public RuleCall getTypeIntegerReferenceParserRuleCall_1_0() { return cTypeIntegerReferenceParserRuleCall_1_0; }
		
		//(setsNew?='+=' | setsSum?='=')
		public Alternatives getAlternatives_2() { return cAlternatives_2; }
		
		//setsNew?='+='
		public Assignment getSetsNewAssignment_2_0() { return cSetsNewAssignment_2_0; }
		
		//'+='
		public Keyword getSetsNewPlusSignEqualsSignKeyword_2_0_0() { return cSetsNewPlusSignEqualsSignKeyword_2_0_0; }
		
		//setsSum?='='
		public Assignment getSetsSumAssignment_2_1() { return cSetsSumAssignment_2_1; }
		
		//'='
		public Keyword getSetsSumEqualsSignKeyword_2_1_0() { return cSetsSumEqualsSignKeyword_2_1_0; }
		
		//(number=ExactNumber | number=IntervallNumber | number=IntEnumberation)
		public Alternatives getAlternatives_3() { return cAlternatives_3; }
		
		//number=ExactNumber
		public Assignment getNumberAssignment_3_0() { return cNumberAssignment_3_0; }
		
		//ExactNumber
		public RuleCall getNumberExactNumberParserRuleCall_3_0_0() { return cNumberExactNumberParserRuleCall_3_0_0; }
		
		//number=IntervallNumber
		public Assignment getNumberAssignment_3_1() { return cNumberAssignment_3_1; }
		
		//IntervallNumber
		public RuleCall getNumberIntervallNumberParserRuleCall_3_1_0() { return cNumberIntervallNumberParserRuleCall_3_1_0; }
		
		//number=IntEnumberation
		public Assignment getNumberAssignment_3_2() { return cNumberAssignment_3_2; }
		
		//IntEnumberation
		public RuleCall getNumberIntEnumberationParserRuleCall_3_2_0() { return cNumberIntEnumberationParserRuleCall_3_2_0; }
	}
	public class RealTypeScopeElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.RealTypeScope");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cNumberSignKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cTypeAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cTypeRealReferenceParserRuleCall_1_0 = (RuleCall)cTypeAssignment_1.eContents().get(0);
		private final Alternatives cAlternatives_2 = (Alternatives)cGroup.eContents().get(2);
		private final Assignment cSetsNewAssignment_2_0 = (Assignment)cAlternatives_2.eContents().get(0);
		private final Keyword cSetsNewPlusSignEqualsSignKeyword_2_0_0 = (Keyword)cSetsNewAssignment_2_0.eContents().get(0);
		private final Assignment cSetsSumAssignment_2_1 = (Assignment)cAlternatives_2.eContents().get(1);
		private final Keyword cSetsSumEqualsSignKeyword_2_1_0 = (Keyword)cSetsSumAssignment_2_1.eContents().get(0);
		private final Alternatives cAlternatives_3 = (Alternatives)cGroup.eContents().get(3);
		private final Assignment cNumberAssignment_3_0 = (Assignment)cAlternatives_3.eContents().get(0);
		private final RuleCall cNumberExactNumberParserRuleCall_3_0_0 = (RuleCall)cNumberAssignment_3_0.eContents().get(0);
		private final Assignment cNumberAssignment_3_1 = (Assignment)cAlternatives_3.eContents().get(1);
		private final RuleCall cNumberIntervallNumberParserRuleCall_3_1_0 = (RuleCall)cNumberAssignment_3_1.eContents().get(0);
		private final Assignment cNumberAssignment_3_2 = (Assignment)cAlternatives_3.eContents().get(2);
		private final RuleCall cNumberRealEnumerationParserRuleCall_3_2_0 = (RuleCall)cNumberAssignment_3_2.eContents().get(0);
		
		//RealTypeScope:
		//	'#' type=RealReference (setsNew?='+=' | setsSum?='=') (number=ExactNumber | number=IntervallNumber |
		//	number=RealEnumeration);
		@Override public ParserRule getRule() { return rule; }
		
		//'#' type=RealReference (setsNew?='+=' | setsSum?='=') (number=ExactNumber | number=IntervallNumber |
		//number=RealEnumeration)
		public Group getGroup() { return cGroup; }
		
		//'#'
		public Keyword getNumberSignKeyword_0() { return cNumberSignKeyword_0; }
		
		//type=RealReference
		public Assignment getTypeAssignment_1() { return cTypeAssignment_1; }
		
		//RealReference
		public RuleCall getTypeRealReferenceParserRuleCall_1_0() { return cTypeRealReferenceParserRuleCall_1_0; }
		
		//(setsNew?='+=' | setsSum?='=')
		public Alternatives getAlternatives_2() { return cAlternatives_2; }
		
		//setsNew?='+='
		public Assignment getSetsNewAssignment_2_0() { return cSetsNewAssignment_2_0; }
		
		//'+='
		public Keyword getSetsNewPlusSignEqualsSignKeyword_2_0_0() { return cSetsNewPlusSignEqualsSignKeyword_2_0_0; }
		
		//setsSum?='='
		public Assignment getSetsSumAssignment_2_1() { return cSetsSumAssignment_2_1; }
		
		//'='
		public Keyword getSetsSumEqualsSignKeyword_2_1_0() { return cSetsSumEqualsSignKeyword_2_1_0; }
		
		//(number=ExactNumber | number=IntervallNumber | number=RealEnumeration)
		public Alternatives getAlternatives_3() { return cAlternatives_3; }
		
		//number=ExactNumber
		public Assignment getNumberAssignment_3_0() { return cNumberAssignment_3_0; }
		
		//ExactNumber
		public RuleCall getNumberExactNumberParserRuleCall_3_0_0() { return cNumberExactNumberParserRuleCall_3_0_0; }
		
		//number=IntervallNumber
		public Assignment getNumberAssignment_3_1() { return cNumberAssignment_3_1; }
		
		//IntervallNumber
		public RuleCall getNumberIntervallNumberParserRuleCall_3_1_0() { return cNumberIntervallNumberParserRuleCall_3_1_0; }
		
		//number=RealEnumeration
		public Assignment getNumberAssignment_3_2() { return cNumberAssignment_3_2; }
		
		//RealEnumeration
		public RuleCall getNumberRealEnumerationParserRuleCall_3_2_0() { return cNumberRealEnumerationParserRuleCall_3_2_0; }
	}
	public class StringTypeScopeElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.StringTypeScope");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cNumberSignKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cTypeAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cTypeStringReferenceParserRuleCall_1_0 = (RuleCall)cTypeAssignment_1.eContents().get(0);
		private final Alternatives cAlternatives_2 = (Alternatives)cGroup.eContents().get(2);
		private final Assignment cSetsNewAssignment_2_0 = (Assignment)cAlternatives_2.eContents().get(0);
		private final Keyword cSetsNewPlusSignEqualsSignKeyword_2_0_0 = (Keyword)cSetsNewAssignment_2_0.eContents().get(0);
		private final Assignment cSetsSumAssignment_2_1 = (Assignment)cAlternatives_2.eContents().get(1);
		private final Keyword cSetsSumEqualsSignKeyword_2_1_0 = (Keyword)cSetsSumAssignment_2_1.eContents().get(0);
		private final Alternatives cAlternatives_3 = (Alternatives)cGroup.eContents().get(3);
		private final Assignment cNumberAssignment_3_0 = (Assignment)cAlternatives_3.eContents().get(0);
		private final RuleCall cNumberExactNumberParserRuleCall_3_0_0 = (RuleCall)cNumberAssignment_3_0.eContents().get(0);
		private final Assignment cNumberAssignment_3_1 = (Assignment)cAlternatives_3.eContents().get(1);
		private final RuleCall cNumberIntervallNumberParserRuleCall_3_1_0 = (RuleCall)cNumberAssignment_3_1.eContents().get(0);
		private final Assignment cNumberAssignment_3_2 = (Assignment)cAlternatives_3.eContents().get(2);
		private final RuleCall cNumberStringEnumerationParserRuleCall_3_2_0 = (RuleCall)cNumberAssignment_3_2.eContents().get(0);
		
		//StringTypeScope:
		//	'#' type=StringReference (setsNew?='+=' | setsSum?='=') (number=ExactNumber | number=IntervallNumber |
		//	number=StringEnumeration);
		@Override public ParserRule getRule() { return rule; }
		
		//'#' type=StringReference (setsNew?='+=' | setsSum?='=') (number=ExactNumber | number=IntervallNumber |
		//number=StringEnumeration)
		public Group getGroup() { return cGroup; }
		
		//'#'
		public Keyword getNumberSignKeyword_0() { return cNumberSignKeyword_0; }
		
		//type=StringReference
		public Assignment getTypeAssignment_1() { return cTypeAssignment_1; }
		
		//StringReference
		public RuleCall getTypeStringReferenceParserRuleCall_1_0() { return cTypeStringReferenceParserRuleCall_1_0; }
		
		//(setsNew?='+=' | setsSum?='=')
		public Alternatives getAlternatives_2() { return cAlternatives_2; }
		
		//setsNew?='+='
		public Assignment getSetsNewAssignment_2_0() { return cSetsNewAssignment_2_0; }
		
		//'+='
		public Keyword getSetsNewPlusSignEqualsSignKeyword_2_0_0() { return cSetsNewPlusSignEqualsSignKeyword_2_0_0; }
		
		//setsSum?='='
		public Assignment getSetsSumAssignment_2_1() { return cSetsSumAssignment_2_1; }
		
		//'='
		public Keyword getSetsSumEqualsSignKeyword_2_1_0() { return cSetsSumEqualsSignKeyword_2_1_0; }
		
		//(number=ExactNumber | number=IntervallNumber | number=StringEnumeration)
		public Alternatives getAlternatives_3() { return cAlternatives_3; }
		
		//number=ExactNumber
		public Assignment getNumberAssignment_3_0() { return cNumberAssignment_3_0; }
		
		//ExactNumber
		public RuleCall getNumberExactNumberParserRuleCall_3_0_0() { return cNumberExactNumberParserRuleCall_3_0_0; }
		
		//number=IntervallNumber
		public Assignment getNumberAssignment_3_1() { return cNumberAssignment_3_1; }
		
		//IntervallNumber
		public RuleCall getNumberIntervallNumberParserRuleCall_3_1_0() { return cNumberIntervallNumberParserRuleCall_3_1_0; }
		
		//number=StringEnumeration
		public Assignment getNumberAssignment_3_2() { return cNumberAssignment_3_2; }
		
		//StringEnumeration
		public RuleCall getNumberStringEnumerationParserRuleCall_3_2_0() { return cNumberStringEnumerationParserRuleCall_3_2_0; }
	}
	public class TypeReferenceElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.TypeReference");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cClassReferenceParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cObjectReferenceParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		private final RuleCall cIntegerReferenceParserRuleCall_2 = (RuleCall)cAlternatives.eContents().get(2);
		private final RuleCall cRealReferenceParserRuleCall_3 = (RuleCall)cAlternatives.eContents().get(3);
		private final RuleCall cStringReferenceParserRuleCall_4 = (RuleCall)cAlternatives.eContents().get(4);
		
		//TypeReference:
		//	ClassReference | ObjectReference | IntegerReference | RealReference | StringReference;
		@Override public ParserRule getRule() { return rule; }
		
		//ClassReference | ObjectReference | IntegerReference | RealReference | StringReference
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//ClassReference
		public RuleCall getClassReferenceParserRuleCall_0() { return cClassReferenceParserRuleCall_0; }
		
		//ObjectReference
		public RuleCall getObjectReferenceParserRuleCall_1() { return cObjectReferenceParserRuleCall_1; }
		
		//IntegerReference
		public RuleCall getIntegerReferenceParserRuleCall_2() { return cIntegerReferenceParserRuleCall_2; }
		
		//RealReference
		public RuleCall getRealReferenceParserRuleCall_3() { return cRealReferenceParserRuleCall_3; }
		
		//StringReference
		public RuleCall getStringReferenceParserRuleCall_4() { return cStringReferenceParserRuleCall_4; }
	}
	public class ClassReferenceElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ClassReference");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cLessThanSignKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cElementAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cElementMetamodelElementParserRuleCall_1_0 = (RuleCall)cElementAssignment_1.eContents().get(0);
		private final Keyword cGreaterThanSignKeyword_2 = (Keyword)cGroup.eContents().get(2);
		
		//ClassReference:
		//	'<' element=MetamodelElement '>';
		@Override public ParserRule getRule() { return rule; }
		
		//'<' element=MetamodelElement '>'
		public Group getGroup() { return cGroup; }
		
		//'<'
		public Keyword getLessThanSignKeyword_0() { return cLessThanSignKeyword_0; }
		
		//element=MetamodelElement
		public Assignment getElementAssignment_1() { return cElementAssignment_1; }
		
		//MetamodelElement
		public RuleCall getElementMetamodelElementParserRuleCall_1_0() { return cElementMetamodelElementParserRuleCall_1_0; }
		
		//'>'
		public Keyword getGreaterThanSignKeyword_2() { return cGreaterThanSignKeyword_2; }
	}
	public class ObjectReferenceElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ObjectReference");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Action cObjectReferenceAction_0 = (Action)cGroup.eContents().get(0);
		private final Keyword cNodeKeyword_1 = (Keyword)cGroup.eContents().get(1);
		
		//ObjectReference:
		//	{ObjectReference} 'node';
		@Override public ParserRule getRule() { return rule; }
		
		//{ObjectReference} 'node'
		public Group getGroup() { return cGroup; }
		
		//{ObjectReference}
		public Action getObjectReferenceAction_0() { return cObjectReferenceAction_0; }
		
		//'node'
		public Keyword getNodeKeyword_1() { return cNodeKeyword_1; }
	}
	public class IntegerReferenceElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.IntegerReference");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Action cIntegerScopeAction_0 = (Action)cGroup.eContents().get(0);
		private final Keyword cIntKeyword_1 = (Keyword)cGroup.eContents().get(1);
		
		//IntegerReference:
		//	{IntegerScope} 'int';
		@Override public ParserRule getRule() { return rule; }
		
		//{IntegerScope} 'int'
		public Group getGroup() { return cGroup; }
		
		//{IntegerScope}
		public Action getIntegerScopeAction_0() { return cIntegerScopeAction_0; }
		
		//'int'
		public Keyword getIntKeyword_1() { return cIntKeyword_1; }
	}
	public class RealReferenceElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.RealReference");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Action cRealScopeAction_0 = (Action)cGroup.eContents().get(0);
		private final Keyword cRealKeyword_1 = (Keyword)cGroup.eContents().get(1);
		
		//RealReference:
		//	{RealScope} 'real';
		@Override public ParserRule getRule() { return rule; }
		
		//{RealScope} 'real'
		public Group getGroup() { return cGroup; }
		
		//{RealScope}
		public Action getRealScopeAction_0() { return cRealScopeAction_0; }
		
		//'real'
		public Keyword getRealKeyword_1() { return cRealKeyword_1; }
	}
	public class StringReferenceElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.StringReference");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Action cStringScopeAction_0 = (Action)cGroup.eContents().get(0);
		private final Keyword cStringKeyword_1 = (Keyword)cGroup.eContents().get(1);
		
		//StringReference:
		//	{StringScope} 'string';
		@Override public ParserRule getRule() { return rule; }
		
		//{StringScope} 'string'
		public Group getGroup() { return cGroup; }
		
		//{StringScope}
		public Action getStringScopeAction_0() { return cStringScopeAction_0; }
		
		//'string'
		public Keyword getStringKeyword_1() { return cStringKeyword_1; }
	}
	public class NumberSpecificationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.NumberSpecification");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cExactNumberParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cIntervallNumberParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		private final RuleCall cIntEnumberationParserRuleCall_2 = (RuleCall)cAlternatives.eContents().get(2);
		private final RuleCall cRealEnumerationParserRuleCall_3 = (RuleCall)cAlternatives.eContents().get(3);
		private final RuleCall cStringEnumerationParserRuleCall_4 = (RuleCall)cAlternatives.eContents().get(4);
		
		//NumberSpecification:
		//	ExactNumber | IntervallNumber | IntEnumberation | RealEnumeration | StringEnumeration;
		@Override public ParserRule getRule() { return rule; }
		
		//ExactNumber | IntervallNumber | IntEnumberation | RealEnumeration | StringEnumeration
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//ExactNumber
		public RuleCall getExactNumberParserRuleCall_0() { return cExactNumberParserRuleCall_0; }
		
		//IntervallNumber
		public RuleCall getIntervallNumberParserRuleCall_1() { return cIntervallNumberParserRuleCall_1; }
		
		//IntEnumberation
		public RuleCall getIntEnumberationParserRuleCall_2() { return cIntEnumberationParserRuleCall_2; }
		
		//RealEnumeration
		public RuleCall getRealEnumerationParserRuleCall_3() { return cRealEnumerationParserRuleCall_3; }
		
		//StringEnumeration
		public RuleCall getStringEnumerationParserRuleCall_4() { return cStringEnumerationParserRuleCall_4; }
	}
	public class ExactNumberElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ExactNumber");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final Assignment cExactNumberAssignment_0 = (Assignment)cAlternatives.eContents().get(0);
		private final RuleCall cExactNumberINTTerminalRuleCall_0_0 = (RuleCall)cExactNumberAssignment_0.eContents().get(0);
		private final Assignment cExactUnlimitedAssignment_1 = (Assignment)cAlternatives.eContents().get(1);
		private final Keyword cExactUnlimitedAsteriskKeyword_1_0 = (Keyword)cExactUnlimitedAssignment_1.eContents().get(0);
		
		//ExactNumber:
		//	exactNumber=INT | exactUnlimited?='*';
		@Override public ParserRule getRule() { return rule; }
		
		//exactNumber=INT | exactUnlimited?='*'
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//exactNumber=INT
		public Assignment getExactNumberAssignment_0() { return cExactNumberAssignment_0; }
		
		//INT
		public RuleCall getExactNumberINTTerminalRuleCall_0_0() { return cExactNumberINTTerminalRuleCall_0_0; }
		
		//exactUnlimited?='*'
		public Assignment getExactUnlimitedAssignment_1() { return cExactUnlimitedAssignment_1; }
		
		//'*'
		public Keyword getExactUnlimitedAsteriskKeyword_1_0() { return cExactUnlimitedAsteriskKeyword_1_0; }
	}
	public class IntervallNumberElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.IntervallNumber");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Assignment cMinAssignment_0 = (Assignment)cGroup.eContents().get(0);
		private final RuleCall cMinINTTerminalRuleCall_0_0 = (RuleCall)cMinAssignment_0.eContents().get(0);
		private final Keyword cFullStopFullStopKeyword_1 = (Keyword)cGroup.eContents().get(1);
		private final Alternatives cAlternatives_2 = (Alternatives)cGroup.eContents().get(2);
		private final Assignment cMaxNumberAssignment_2_0 = (Assignment)cAlternatives_2.eContents().get(0);
		private final RuleCall cMaxNumberINTTerminalRuleCall_2_0_0 = (RuleCall)cMaxNumberAssignment_2_0.eContents().get(0);
		private final Assignment cMaxUnlimitedAssignment_2_1 = (Assignment)cAlternatives_2.eContents().get(1);
		private final Keyword cMaxUnlimitedAsteriskKeyword_2_1_0 = (Keyword)cMaxUnlimitedAssignment_2_1.eContents().get(0);
		
		//IntervallNumber:
		//	min=INT '..' (maxNumber=INT | maxUnlimited?='*');
		@Override public ParserRule getRule() { return rule; }
		
		//min=INT '..' (maxNumber=INT | maxUnlimited?='*')
		public Group getGroup() { return cGroup; }
		
		//min=INT
		public Assignment getMinAssignment_0() { return cMinAssignment_0; }
		
		//INT
		public RuleCall getMinINTTerminalRuleCall_0_0() { return cMinINTTerminalRuleCall_0_0; }
		
		//'..'
		public Keyword getFullStopFullStopKeyword_1() { return cFullStopFullStopKeyword_1; }
		
		//(maxNumber=INT | maxUnlimited?='*')
		public Alternatives getAlternatives_2() { return cAlternatives_2; }
		
		//maxNumber=INT
		public Assignment getMaxNumberAssignment_2_0() { return cMaxNumberAssignment_2_0; }
		
		//INT
		public RuleCall getMaxNumberINTTerminalRuleCall_2_0_0() { return cMaxNumberINTTerminalRuleCall_2_0_0; }
		
		//maxUnlimited?='*'
		public Assignment getMaxUnlimitedAssignment_2_1() { return cMaxUnlimitedAssignment_2_1; }
		
		//'*'
		public Keyword getMaxUnlimitedAsteriskKeyword_2_1_0() { return cMaxUnlimitedAsteriskKeyword_2_1_0; }
	}
	public class IntEnumberationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.IntEnumberation");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Action cIntEnumberationAction_0 = (Action)cGroup.eContents().get(0);
		private final Keyword cLeftCurlyBracketKeyword_1 = (Keyword)cGroup.eContents().get(1);
		private final Group cGroup_2 = (Group)cGroup.eContents().get(2);
		private final Assignment cEntryAssignment_2_0 = (Assignment)cGroup_2.eContents().get(0);
		private final RuleCall cEntryINTLiteralParserRuleCall_2_0_0 = (RuleCall)cEntryAssignment_2_0.eContents().get(0);
		private final Group cGroup_2_1 = (Group)cGroup_2.eContents().get(1);
		private final Keyword cCommaKeyword_2_1_0 = (Keyword)cGroup_2_1.eContents().get(0);
		private final Assignment cEntryAssignment_2_1_1 = (Assignment)cGroup_2_1.eContents().get(1);
		private final RuleCall cEntryINTLiteralParserRuleCall_2_1_1_0 = (RuleCall)cEntryAssignment_2_1_1.eContents().get(0);
		private final Keyword cRightCurlyBracketKeyword_3 = (Keyword)cGroup.eContents().get(3);
		
		//IntEnumberation:
		//	{IntEnumberation} '{' (entry+=INTLiteral (',' entry+=INTLiteral)*)? '}';
		@Override public ParserRule getRule() { return rule; }
		
		//{IntEnumberation} '{' (entry+=INTLiteral (',' entry+=INTLiteral)*)? '}'
		public Group getGroup() { return cGroup; }
		
		//{IntEnumberation}
		public Action getIntEnumberationAction_0() { return cIntEnumberationAction_0; }
		
		//'{'
		public Keyword getLeftCurlyBracketKeyword_1() { return cLeftCurlyBracketKeyword_1; }
		
		//(entry+=INTLiteral (',' entry+=INTLiteral)*)?
		public Group getGroup_2() { return cGroup_2; }
		
		//entry+=INTLiteral
		public Assignment getEntryAssignment_2_0() { return cEntryAssignment_2_0; }
		
		//INTLiteral
		public RuleCall getEntryINTLiteralParserRuleCall_2_0_0() { return cEntryINTLiteralParserRuleCall_2_0_0; }
		
		//(',' entry+=INTLiteral)*
		public Group getGroup_2_1() { return cGroup_2_1; }
		
		//','
		public Keyword getCommaKeyword_2_1_0() { return cCommaKeyword_2_1_0; }
		
		//entry+=INTLiteral
		public Assignment getEntryAssignment_2_1_1() { return cEntryAssignment_2_1_1; }
		
		//INTLiteral
		public RuleCall getEntryINTLiteralParserRuleCall_2_1_1_0() { return cEntryINTLiteralParserRuleCall_2_1_1_0; }
		
		//'}'
		public Keyword getRightCurlyBracketKeyword_3() { return cRightCurlyBracketKeyword_3; }
	}
	public class RealEnumerationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.RealEnumeration");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Action cRealEnumerationAction_0 = (Action)cGroup.eContents().get(0);
		private final Keyword cLeftCurlyBracketKeyword_1 = (Keyword)cGroup.eContents().get(1);
		private final Group cGroup_2 = (Group)cGroup.eContents().get(2);
		private final Assignment cEntryAssignment_2_0 = (Assignment)cGroup_2.eContents().get(0);
		private final RuleCall cEntryREALLiteralParserRuleCall_2_0_0 = (RuleCall)cEntryAssignment_2_0.eContents().get(0);
		private final Group cGroup_2_1 = (Group)cGroup_2.eContents().get(1);
		private final Keyword cCommaKeyword_2_1_0 = (Keyword)cGroup_2_1.eContents().get(0);
		private final Assignment cEntryAssignment_2_1_1 = (Assignment)cGroup_2_1.eContents().get(1);
		private final RuleCall cEntryREALLiteralParserRuleCall_2_1_1_0 = (RuleCall)cEntryAssignment_2_1_1.eContents().get(0);
		private final Keyword cRightCurlyBracketKeyword_3 = (Keyword)cGroup.eContents().get(3);
		
		//RealEnumeration:
		//	{RealEnumeration} '{' (entry+=REALLiteral (',' entry+=REALLiteral)*)? '}';
		@Override public ParserRule getRule() { return rule; }
		
		//{RealEnumeration} '{' (entry+=REALLiteral (',' entry+=REALLiteral)*)? '}'
		public Group getGroup() { return cGroup; }
		
		//{RealEnumeration}
		public Action getRealEnumerationAction_0() { return cRealEnumerationAction_0; }
		
		//'{'
		public Keyword getLeftCurlyBracketKeyword_1() { return cLeftCurlyBracketKeyword_1; }
		
		//(entry+=REALLiteral (',' entry+=REALLiteral)*)?
		public Group getGroup_2() { return cGroup_2; }
		
		//entry+=REALLiteral
		public Assignment getEntryAssignment_2_0() { return cEntryAssignment_2_0; }
		
		//REALLiteral
		public RuleCall getEntryREALLiteralParserRuleCall_2_0_0() { return cEntryREALLiteralParserRuleCall_2_0_0; }
		
		//(',' entry+=REALLiteral)*
		public Group getGroup_2_1() { return cGroup_2_1; }
		
		//','
		public Keyword getCommaKeyword_2_1_0() { return cCommaKeyword_2_1_0; }
		
		//entry+=REALLiteral
		public Assignment getEntryAssignment_2_1_1() { return cEntryAssignment_2_1_1; }
		
		//REALLiteral
		public RuleCall getEntryREALLiteralParserRuleCall_2_1_1_0() { return cEntryREALLiteralParserRuleCall_2_1_1_0; }
		
		//'}'
		public Keyword getRightCurlyBracketKeyword_3() { return cRightCurlyBracketKeyword_3; }
	}
	public class StringEnumerationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.StringEnumeration");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Action cStringEnumerationAction_0 = (Action)cGroup.eContents().get(0);
		private final Keyword cLeftCurlyBracketKeyword_1 = (Keyword)cGroup.eContents().get(1);
		private final Group cGroup_2 = (Group)cGroup.eContents().get(2);
		private final Assignment cEntryAssignment_2_0 = (Assignment)cGroup_2.eContents().get(0);
		private final RuleCall cEntrySTRINGTerminalRuleCall_2_0_0 = (RuleCall)cEntryAssignment_2_0.eContents().get(0);
		private final Group cGroup_2_1 = (Group)cGroup_2.eContents().get(1);
		private final Keyword cCommaKeyword_2_1_0 = (Keyword)cGroup_2_1.eContents().get(0);
		private final Assignment cEntryAssignment_2_1_1 = (Assignment)cGroup_2_1.eContents().get(1);
		private final RuleCall cEntrySTRINGTerminalRuleCall_2_1_1_0 = (RuleCall)cEntryAssignment_2_1_1.eContents().get(0);
		private final Keyword cRightCurlyBracketKeyword_3 = (Keyword)cGroup.eContents().get(3);
		
		//StringEnumeration:
		//	{StringEnumeration} '{' (entry+=STRING (',' entry+=STRING)*)? '}';
		@Override public ParserRule getRule() { return rule; }
		
		//{StringEnumeration} '{' (entry+=STRING (',' entry+=STRING)*)? '}'
		public Group getGroup() { return cGroup; }
		
		//{StringEnumeration}
		public Action getStringEnumerationAction_0() { return cStringEnumerationAction_0; }
		
		//'{'
		public Keyword getLeftCurlyBracketKeyword_1() { return cLeftCurlyBracketKeyword_1; }
		
		//(entry+=STRING (',' entry+=STRING)*)?
		public Group getGroup_2() { return cGroup_2; }
		
		//entry+=STRING
		public Assignment getEntryAssignment_2_0() { return cEntryAssignment_2_0; }
		
		//STRING
		public RuleCall getEntrySTRINGTerminalRuleCall_2_0_0() { return cEntrySTRINGTerminalRuleCall_2_0_0; }
		
		//(',' entry+=STRING)*
		public Group getGroup_2_1() { return cGroup_2_1; }
		
		//','
		public Keyword getCommaKeyword_2_1_0() { return cCommaKeyword_2_1_0; }
		
		//entry+=STRING
		public Assignment getEntryAssignment_2_1_1() { return cEntryAssignment_2_1_1; }
		
		//STRING
		public RuleCall getEntrySTRINGTerminalRuleCall_2_1_1_0() { return cEntrySTRINGTerminalRuleCall_2_1_1_0; }
		
		//'}'
		public Keyword getRightCurlyBracketKeyword_3() { return cRightCurlyBracketKeyword_3; }
	}
	public class ScopeDeclarationElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ScopeDeclaration");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cScopeKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Assignment cNameAssignment_1 = (Assignment)cGroup.eContents().get(1);
		private final RuleCall cNameIDTerminalRuleCall_1_0 = (RuleCall)cNameAssignment_1.eContents().get(0);
		private final Assignment cSpecificationAssignment_2 = (Assignment)cGroup.eContents().get(2);
		private final RuleCall cSpecificationScopeSpecificationParserRuleCall_2_0 = (RuleCall)cSpecificationAssignment_2.eContents().get(0);
		
		//ScopeDeclaration:
		//	'scope' name=ID specification=ScopeSpecification;
		@Override public ParserRule getRule() { return rule; }
		
		//'scope' name=ID specification=ScopeSpecification
		public Group getGroup() { return cGroup; }
		
		//'scope'
		public Keyword getScopeKeyword_0() { return cScopeKeyword_0; }
		
		//name=ID
		public Assignment getNameAssignment_1() { return cNameAssignment_1; }
		
		//ID
		public RuleCall getNameIDTerminalRuleCall_1_0() { return cNameIDTerminalRuleCall_1_0; }
		
		//specification=ScopeSpecification
		public Assignment getSpecificationAssignment_2() { return cSpecificationAssignment_2; }
		
		//ScopeSpecification
		public RuleCall getSpecificationScopeSpecificationParserRuleCall_2_0() { return cSpecificationScopeSpecificationParserRuleCall_2_0; }
	}
	public class ScopeReferenceElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ScopeReference");
		private final Assignment cReferredAssignment = (Assignment)rule.eContents().get(1);
		private final CrossReference cReferredScopeDeclarationCrossReference_0 = (CrossReference)cReferredAssignment.eContents().get(0);
		private final RuleCall cReferredScopeDeclarationIDTerminalRuleCall_0_1 = (RuleCall)cReferredScopeDeclarationCrossReference_0.eContents().get(1);
		
		//ScopeReference:
		//	referred=[ScopeDeclaration];
		@Override public ParserRule getRule() { return rule; }
		
		//referred=[ScopeDeclaration]
		public Assignment getReferredAssignment() { return cReferredAssignment; }
		
		//[ScopeDeclaration]
		public CrossReference getReferredScopeDeclarationCrossReference_0() { return cReferredScopeDeclarationCrossReference_0; }
		
		//ID
		public RuleCall getReferredScopeDeclarationIDTerminalRuleCall_0_1() { return cReferredScopeDeclarationIDTerminalRuleCall_0_1; }
	}
	public class ScopeElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.Scope");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final RuleCall cScopeSpecificationParserRuleCall_0 = (RuleCall)cAlternatives.eContents().get(0);
		private final RuleCall cScopeReferenceParserRuleCall_1 = (RuleCall)cAlternatives.eContents().get(1);
		
		//Scope:
		//	ScopeSpecification | ScopeReference;
		@Override public ParserRule getRule() { return rule; }
		
		//ScopeSpecification | ScopeReference
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//ScopeSpecification
		public RuleCall getScopeSpecificationParserRuleCall_0() { return cScopeSpecificationParserRuleCall_0; }
		
		//ScopeReference
		public RuleCall getScopeReferenceParserRuleCall_1() { return cScopeReferenceParserRuleCall_1; }
	}
	public class TaskElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.Task");
		private final RuleCall cGenerationTaskParserRuleCall = (RuleCall)rule.eContents().get(1);
		
		//Task:
		//	GenerationTask /*| CoverageCalculation | ValidationTask*/;
		@Override public ParserRule getRule() { return rule; }
		
		//GenerationTask
		public RuleCall getGenerationTaskParserRuleCall() { return cGenerationTaskParserRuleCall; }
	}
	public class GenerationTaskElements extends AbstractParserRuleElementFinder {
		private final ParserRule rule = (ParserRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.GenerationTask");
		private final Group cGroup = (Group)rule.eContents().get(1);
		private final Keyword cGenerateKeyword_0 = (Keyword)cGroup.eContents().get(0);
		private final Action cGenerationTaskAction_1 = (Action)cGroup.eContents().get(1);
		private final Keyword cLeftCurlyBracketKeyword_2 = (Keyword)cGroup.eContents().get(2);
		private final UnorderedGroup cUnorderedGroup_3 = (UnorderedGroup)cGroup.eContents().get(3);
		private final Group cGroup_3_0 = (Group)cUnorderedGroup_3.eContents().get(0);
		private final Keyword cMetamodelKeyword_3_0_0 = (Keyword)cGroup_3_0.eContents().get(0);
		private final Keyword cEqualsSignKeyword_3_0_1 = (Keyword)cGroup_3_0.eContents().get(1);
		private final Assignment cMetamodelAssignment_3_0_2 = (Assignment)cGroup_3_0.eContents().get(2);
		private final RuleCall cMetamodelMetamodelParserRuleCall_3_0_2_0 = (RuleCall)cMetamodelAssignment_3_0_2.eContents().get(0);
		private final Group cGroup_3_1 = (Group)cUnorderedGroup_3.eContents().get(1);
		private final Keyword cPartialModelKeyword_3_1_0 = (Keyword)cGroup_3_1.eContents().get(0);
		private final Keyword cEqualsSignKeyword_3_1_1 = (Keyword)cGroup_3_1.eContents().get(1);
		private final Assignment cPartialModelAssignment_3_1_2 = (Assignment)cGroup_3_1.eContents().get(2);
		private final RuleCall cPartialModelPartialModelParserRuleCall_3_1_2_0 = (RuleCall)cPartialModelAssignment_3_1_2.eContents().get(0);
		private final Group cGroup_3_2 = (Group)cUnorderedGroup_3.eContents().get(2);
		private final Keyword cConstraintsKeyword_3_2_0 = (Keyword)cGroup_3_2.eContents().get(0);
		private final Keyword cEqualsSignKeyword_3_2_1 = (Keyword)cGroup_3_2.eContents().get(1);
		private final Assignment cPatternsAssignment_3_2_2 = (Assignment)cGroup_3_2.eContents().get(2);
		private final RuleCall cPatternsGraphPatternParserRuleCall_3_2_2_0 = (RuleCall)cPatternsAssignment_3_2_2.eContents().get(0);
		private final Group cGroup_3_3 = (Group)cUnorderedGroup_3.eContents().get(3);
		private final Keyword cObjectivesKeyword_3_3_0 = (Keyword)cGroup_3_3.eContents().get(0);
		private final Keyword cEqualsSignKeyword_3_3_1 = (Keyword)cGroup_3_3.eContents().get(1);
		private final Assignment cObjectivesAssignment_3_3_2 = (Assignment)cGroup_3_3.eContents().get(2);
		private final RuleCall cObjectivesObjectiveParserRuleCall_3_3_2_0 = (RuleCall)cObjectivesAssignment_3_3_2.eContents().get(0);
		private final Group cGroup_3_4 = (Group)cUnorderedGroup_3.eContents().get(4);
		private final Keyword cScopeKeyword_3_4_0 = (Keyword)cGroup_3_4.eContents().get(0);
		private final Keyword cEqualsSignKeyword_3_4_1 = (Keyword)cGroup_3_4.eContents().get(1);
		private final Assignment cScopeAssignment_3_4_2 = (Assignment)cGroup_3_4.eContents().get(2);
		private final RuleCall cScopeScopeParserRuleCall_3_4_2_0 = (RuleCall)cScopeAssignment_3_4_2.eContents().get(0);
		private final Group cGroup_3_5 = (Group)cUnorderedGroup_3.eContents().get(5);
		private final Assignment cNumberSpecifiedAssignment_3_5_0 = (Assignment)cGroup_3_5.eContents().get(0);
		private final Keyword cNumberSpecifiedNumberKeyword_3_5_0_0 = (Keyword)cNumberSpecifiedAssignment_3_5_0.eContents().get(0);
		private final Keyword cEqualsSignKeyword_3_5_1 = (Keyword)cGroup_3_5.eContents().get(1);
		private final Assignment cNumberAssignment_3_5_2 = (Assignment)cGroup_3_5.eContents().get(2);
		private final RuleCall cNumberINTTerminalRuleCall_3_5_2_0 = (RuleCall)cNumberAssignment_3_5_2.eContents().get(0);
		private final Group cGroup_3_6 = (Group)cUnorderedGroup_3.eContents().get(6);
		private final Assignment cRunSpecifiedAssignment_3_6_0 = (Assignment)cGroup_3_6.eContents().get(0);
		private final Keyword cRunSpecifiedRunsKeyword_3_6_0_0 = (Keyword)cRunSpecifiedAssignment_3_6_0.eContents().get(0);
		private final Keyword cEqualsSignKeyword_3_6_1 = (Keyword)cGroup_3_6.eContents().get(1);
		private final Assignment cRunsAssignment_3_6_2 = (Assignment)cGroup_3_6.eContents().get(2);
		private final RuleCall cRunsINTTerminalRuleCall_3_6_2_0 = (RuleCall)cRunsAssignment_3_6_2.eContents().get(0);
		private final Group cGroup_3_7 = (Group)cUnorderedGroup_3.eContents().get(7);
		private final Keyword cSolverKeyword_3_7_0 = (Keyword)cGroup_3_7.eContents().get(0);
		private final Keyword cEqualsSignKeyword_3_7_1 = (Keyword)cGroup_3_7.eContents().get(1);
		private final Assignment cSolverAssignment_3_7_2 = (Assignment)cGroup_3_7.eContents().get(2);
		private final RuleCall cSolverSolverEnumRuleCall_3_7_2_0 = (RuleCall)cSolverAssignment_3_7_2.eContents().get(0);
		private final Group cGroup_3_8 = (Group)cUnorderedGroup_3.eContents().get(8);
		private final Keyword cConfigKeyword_3_8_0 = (Keyword)cGroup_3_8.eContents().get(0);
		private final Keyword cEqualsSignKeyword_3_8_1 = (Keyword)cGroup_3_8.eContents().get(1);
		private final Assignment cConfigAssignment_3_8_2 = (Assignment)cGroup_3_8.eContents().get(2);
		private final RuleCall cConfigConfigParserRuleCall_3_8_2_0 = (RuleCall)cConfigAssignment_3_8_2.eContents().get(0);
		private final Group cGroup_3_9 = (Group)cUnorderedGroup_3.eContents().get(9);
		private final Keyword cDebugKeyword_3_9_0 = (Keyword)cGroup_3_9.eContents().get(0);
		private final Keyword cEqualsSignKeyword_3_9_1 = (Keyword)cGroup_3_9.eContents().get(1);
		private final Assignment cDebugFolderAssignment_3_9_2 = (Assignment)cGroup_3_9.eContents().get(2);
		private final RuleCall cDebugFolderFileParserRuleCall_3_9_2_0 = (RuleCall)cDebugFolderAssignment_3_9_2.eContents().get(0);
		private final Group cGroup_3_10 = (Group)cUnorderedGroup_3.eContents().get(10);
		private final Keyword cLogKeyword_3_10_0 = (Keyword)cGroup_3_10.eContents().get(0);
		private final Keyword cEqualsSignKeyword_3_10_1 = (Keyword)cGroup_3_10.eContents().get(1);
		private final Assignment cTargetLogFileAssignment_3_10_2 = (Assignment)cGroup_3_10.eContents().get(2);
		private final RuleCall cTargetLogFileFileParserRuleCall_3_10_2_0 = (RuleCall)cTargetLogFileAssignment_3_10_2.eContents().get(0);
		private final Group cGroup_3_11 = (Group)cUnorderedGroup_3.eContents().get(11);
		private final Keyword cStatisticsKeyword_3_11_0 = (Keyword)cGroup_3_11.eContents().get(0);
		private final Keyword cEqualsSignKeyword_3_11_1 = (Keyword)cGroup_3_11.eContents().get(1);
		private final Assignment cTargetStatisticsFileAssignment_3_11_2 = (Assignment)cGroup_3_11.eContents().get(2);
		private final RuleCall cTargetStatisticsFileFileParserRuleCall_3_11_2_0 = (RuleCall)cTargetStatisticsFileAssignment_3_11_2.eContents().get(0);
		private final Group cGroup_3_12 = (Group)cUnorderedGroup_3.eContents().get(12);
		private final Keyword cOutputKeyword_3_12_0 = (Keyword)cGroup_3_12.eContents().get(0);
		private final Keyword cEqualsSignKeyword_3_12_1 = (Keyword)cGroup_3_12.eContents().get(1);
		private final Assignment cTagetFolderAssignment_3_12_2 = (Assignment)cGroup_3_12.eContents().get(2);
		private final RuleCall cTagetFolderFileParserRuleCall_3_12_2_0 = (RuleCall)cTagetFolderAssignment_3_12_2.eContents().get(0);
		private final Keyword cRightCurlyBracketKeyword_4 = (Keyword)cGroup.eContents().get(4);
		
		//GenerationTask:
		//	'generate' {GenerationTask} '{' (('metamodel' '=' metamodel=Metamodel)? & ('partial-model' '='
		//	partialModel=PartialModel)? & ('constraints' '=' patterns=GraphPattern)? & ('objectives' '=' objectives=Objective)? &
		//	('scope' '=' scope=Scope)? & (numberSpecified?='number' '=' number=INT)? & (runSpecified?='runs' '=' runs=INT)? &
		//	('solver' '=' solver=Solver)? & ('config' '=' config=Config)? & ('debug' '=' debugFolder=File)? & ('log' '='
		//	targetLogFile=File)? & ('statistics' '=' targetStatisticsFile=File)? & ('output' '=' tagetFolder=File)?) '}';
		@Override public ParserRule getRule() { return rule; }
		
		//'generate' {GenerationTask} '{' (('metamodel' '=' metamodel=Metamodel)? & ('partial-model' '='
		//partialModel=PartialModel)? & ('constraints' '=' patterns=GraphPattern)? & ('objectives' '=' objectives=Objective)? &
		//('scope' '=' scope=Scope)? & (numberSpecified?='number' '=' number=INT)? & (runSpecified?='runs' '=' runs=INT)? &
		//('solver' '=' solver=Solver)? & ('config' '=' config=Config)? & ('debug' '=' debugFolder=File)? & ('log' '='
		//targetLogFile=File)? & ('statistics' '=' targetStatisticsFile=File)? & ('output' '=' tagetFolder=File)?) '}'
		public Group getGroup() { return cGroup; }
		
		//'generate'
		public Keyword getGenerateKeyword_0() { return cGenerateKeyword_0; }
		
		//{GenerationTask}
		public Action getGenerationTaskAction_1() { return cGenerationTaskAction_1; }
		
		//'{'
		public Keyword getLeftCurlyBracketKeyword_2() { return cLeftCurlyBracketKeyword_2; }
		
		//(('metamodel' '=' metamodel=Metamodel)? & ('partial-model' '=' partialModel=PartialModel)? & ('constraints' '='
		//patterns=GraphPattern)? & ('objectives' '=' objectives=Objective)? & ('scope' '=' scope=Scope)? &
		//(numberSpecified?='number' '=' number=INT)? & (runSpecified?='runs' '=' runs=INT)? & ('solver' '=' solver=Solver)? &
		//('config' '=' config=Config)? & ('debug' '=' debugFolder=File)? & ('log' '=' targetLogFile=File)? & ('statistics' '='
		//targetStatisticsFile=File)? & ('output' '=' tagetFolder=File)?)
		public UnorderedGroup getUnorderedGroup_3() { return cUnorderedGroup_3; }
		
		//('metamodel' '=' metamodel=Metamodel)?
		public Group getGroup_3_0() { return cGroup_3_0; }
		
		//'metamodel'
		public Keyword getMetamodelKeyword_3_0_0() { return cMetamodelKeyword_3_0_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_3_0_1() { return cEqualsSignKeyword_3_0_1; }
		
		//metamodel=Metamodel
		public Assignment getMetamodelAssignment_3_0_2() { return cMetamodelAssignment_3_0_2; }
		
		//Metamodel
		public RuleCall getMetamodelMetamodelParserRuleCall_3_0_2_0() { return cMetamodelMetamodelParserRuleCall_3_0_2_0; }
		
		//('partial-model' '=' partialModel=PartialModel)?
		public Group getGroup_3_1() { return cGroup_3_1; }
		
		//'partial-model'
		public Keyword getPartialModelKeyword_3_1_0() { return cPartialModelKeyword_3_1_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_3_1_1() { return cEqualsSignKeyword_3_1_1; }
		
		//partialModel=PartialModel
		public Assignment getPartialModelAssignment_3_1_2() { return cPartialModelAssignment_3_1_2; }
		
		//PartialModel
		public RuleCall getPartialModelPartialModelParserRuleCall_3_1_2_0() { return cPartialModelPartialModelParserRuleCall_3_1_2_0; }
		
		//('constraints' '=' patterns=GraphPattern)?
		public Group getGroup_3_2() { return cGroup_3_2; }
		
		//'constraints'
		public Keyword getConstraintsKeyword_3_2_0() { return cConstraintsKeyword_3_2_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_3_2_1() { return cEqualsSignKeyword_3_2_1; }
		
		//patterns=GraphPattern
		public Assignment getPatternsAssignment_3_2_2() { return cPatternsAssignment_3_2_2; }
		
		//GraphPattern
		public RuleCall getPatternsGraphPatternParserRuleCall_3_2_2_0() { return cPatternsGraphPatternParserRuleCall_3_2_2_0; }
		
		//('objectives' '=' objectives=Objective)?
		public Group getGroup_3_3() { return cGroup_3_3; }
		
		//'objectives'
		public Keyword getObjectivesKeyword_3_3_0() { return cObjectivesKeyword_3_3_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_3_3_1() { return cEqualsSignKeyword_3_3_1; }
		
		//objectives=Objective
		public Assignment getObjectivesAssignment_3_3_2() { return cObjectivesAssignment_3_3_2; }
		
		//Objective
		public RuleCall getObjectivesObjectiveParserRuleCall_3_3_2_0() { return cObjectivesObjectiveParserRuleCall_3_3_2_0; }
		
		//('scope' '=' scope=Scope)?
		public Group getGroup_3_4() { return cGroup_3_4; }
		
		//'scope'
		public Keyword getScopeKeyword_3_4_0() { return cScopeKeyword_3_4_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_3_4_1() { return cEqualsSignKeyword_3_4_1; }
		
		//scope=Scope
		public Assignment getScopeAssignment_3_4_2() { return cScopeAssignment_3_4_2; }
		
		//Scope
		public RuleCall getScopeScopeParserRuleCall_3_4_2_0() { return cScopeScopeParserRuleCall_3_4_2_0; }
		
		//(numberSpecified?='number' '=' number=INT)?
		public Group getGroup_3_5() { return cGroup_3_5; }
		
		//numberSpecified?='number'
		public Assignment getNumberSpecifiedAssignment_3_5_0() { return cNumberSpecifiedAssignment_3_5_0; }
		
		//'number'
		public Keyword getNumberSpecifiedNumberKeyword_3_5_0_0() { return cNumberSpecifiedNumberKeyword_3_5_0_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_3_5_1() { return cEqualsSignKeyword_3_5_1; }
		
		//number=INT
		public Assignment getNumberAssignment_3_5_2() { return cNumberAssignment_3_5_2; }
		
		//INT
		public RuleCall getNumberINTTerminalRuleCall_3_5_2_0() { return cNumberINTTerminalRuleCall_3_5_2_0; }
		
		//(runSpecified?='runs' '=' runs=INT)?
		public Group getGroup_3_6() { return cGroup_3_6; }
		
		//runSpecified?='runs'
		public Assignment getRunSpecifiedAssignment_3_6_0() { return cRunSpecifiedAssignment_3_6_0; }
		
		//'runs'
		public Keyword getRunSpecifiedRunsKeyword_3_6_0_0() { return cRunSpecifiedRunsKeyword_3_6_0_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_3_6_1() { return cEqualsSignKeyword_3_6_1; }
		
		//runs=INT
		public Assignment getRunsAssignment_3_6_2() { return cRunsAssignment_3_6_2; }
		
		//INT
		public RuleCall getRunsINTTerminalRuleCall_3_6_2_0() { return cRunsINTTerminalRuleCall_3_6_2_0; }
		
		//('solver' '=' solver=Solver)?
		public Group getGroup_3_7() { return cGroup_3_7; }
		
		//'solver'
		public Keyword getSolverKeyword_3_7_0() { return cSolverKeyword_3_7_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_3_7_1() { return cEqualsSignKeyword_3_7_1; }
		
		//solver=Solver
		public Assignment getSolverAssignment_3_7_2() { return cSolverAssignment_3_7_2; }
		
		//Solver
		public RuleCall getSolverSolverEnumRuleCall_3_7_2_0() { return cSolverSolverEnumRuleCall_3_7_2_0; }
		
		//('config' '=' config=Config)?
		public Group getGroup_3_8() { return cGroup_3_8; }
		
		//'config'
		public Keyword getConfigKeyword_3_8_0() { return cConfigKeyword_3_8_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_3_8_1() { return cEqualsSignKeyword_3_8_1; }
		
		//config=Config
		public Assignment getConfigAssignment_3_8_2() { return cConfigAssignment_3_8_2; }
		
		//Config
		public RuleCall getConfigConfigParserRuleCall_3_8_2_0() { return cConfigConfigParserRuleCall_3_8_2_0; }
		
		//('debug' '=' debugFolder=File)?
		public Group getGroup_3_9() { return cGroup_3_9; }
		
		//'debug'
		public Keyword getDebugKeyword_3_9_0() { return cDebugKeyword_3_9_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_3_9_1() { return cEqualsSignKeyword_3_9_1; }
		
		//debugFolder=File
		public Assignment getDebugFolderAssignment_3_9_2() { return cDebugFolderAssignment_3_9_2; }
		
		//File
		public RuleCall getDebugFolderFileParserRuleCall_3_9_2_0() { return cDebugFolderFileParserRuleCall_3_9_2_0; }
		
		//('log' '=' targetLogFile=File)?
		public Group getGroup_3_10() { return cGroup_3_10; }
		
		//'log'
		public Keyword getLogKeyword_3_10_0() { return cLogKeyword_3_10_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_3_10_1() { return cEqualsSignKeyword_3_10_1; }
		
		//targetLogFile=File
		public Assignment getTargetLogFileAssignment_3_10_2() { return cTargetLogFileAssignment_3_10_2; }
		
		//File
		public RuleCall getTargetLogFileFileParserRuleCall_3_10_2_0() { return cTargetLogFileFileParserRuleCall_3_10_2_0; }
		
		//('statistics' '=' targetStatisticsFile=File)?
		public Group getGroup_3_11() { return cGroup_3_11; }
		
		//'statistics'
		public Keyword getStatisticsKeyword_3_11_0() { return cStatisticsKeyword_3_11_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_3_11_1() { return cEqualsSignKeyword_3_11_1; }
		
		//targetStatisticsFile=File
		public Assignment getTargetStatisticsFileAssignment_3_11_2() { return cTargetStatisticsFileAssignment_3_11_2; }
		
		//File
		public RuleCall getTargetStatisticsFileFileParserRuleCall_3_11_2_0() { return cTargetStatisticsFileFileParserRuleCall_3_11_2_0; }
		
		//('output' '=' tagetFolder=File)?
		public Group getGroup_3_12() { return cGroup_3_12; }
		
		//'output'
		public Keyword getOutputKeyword_3_12_0() { return cOutputKeyword_3_12_0; }
		
		//'='
		public Keyword getEqualsSignKeyword_3_12_1() { return cEqualsSignKeyword_3_12_1; }
		
		//tagetFolder=File
		public Assignment getTagetFolderAssignment_3_12_2() { return cTagetFolderAssignment_3_12_2; }
		
		//File
		public RuleCall getTagetFolderFileParserRuleCall_3_12_2_0() { return cTagetFolderFileParserRuleCall_3_12_2_0; }
		
		//'}'
		public Keyword getRightCurlyBracketKeyword_4() { return cRightCurlyBracketKeyword_4; }
	}
	
	public class OptimizationDirectionElements extends AbstractEnumRuleElementFinder {
		private final EnumRule rule = (EnumRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.OptimizationDirection");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final EnumLiteralDeclaration cMINIMIZEEnumLiteralDeclaration_0 = (EnumLiteralDeclaration)cAlternatives.eContents().get(0);
		private final Keyword cMINIMIZEMinimizeKeyword_0_0 = (Keyword)cMINIMIZEEnumLiteralDeclaration_0.eContents().get(0);
		private final EnumLiteralDeclaration cMAXIMIZEEnumLiteralDeclaration_1 = (EnumLiteralDeclaration)cAlternatives.eContents().get(1);
		private final Keyword cMAXIMIZEMaximizeKeyword_1_0 = (Keyword)cMAXIMIZEEnumLiteralDeclaration_1.eContents().get(0);
		
		//enum OptimizationDirection:
		//	MINIMIZE='minimize' | MAXIMIZE='maximize';
		public EnumRule getRule() { return rule; }
		
		//MINIMIZE='minimize' | MAXIMIZE='maximize'
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//MINIMIZE='minimize'
		public EnumLiteralDeclaration getMINIMIZEEnumLiteralDeclaration_0() { return cMINIMIZEEnumLiteralDeclaration_0; }
		
		//'minimize'
		public Keyword getMINIMIZEMinimizeKeyword_0_0() { return cMINIMIZEMinimizeKeyword_0_0; }
		
		//MAXIMIZE='maximize'
		public EnumLiteralDeclaration getMAXIMIZEEnumLiteralDeclaration_1() { return cMAXIMIZEEnumLiteralDeclaration_1; }
		
		//'maximize'
		public Keyword getMAXIMIZEMaximizeKeyword_1_0() { return cMAXIMIZEMaximizeKeyword_1_0; }
	}
	public class ComparisonOperatorElements extends AbstractEnumRuleElementFinder {
		private final EnumRule rule = (EnumRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.ComparisonOperator");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final EnumLiteralDeclaration cLESSEnumLiteralDeclaration_0 = (EnumLiteralDeclaration)cAlternatives.eContents().get(0);
		private final Keyword cLESSLessThanSignKeyword_0_0 = (Keyword)cLESSEnumLiteralDeclaration_0.eContents().get(0);
		private final EnumLiteralDeclaration cGREATEREnumLiteralDeclaration_1 = (EnumLiteralDeclaration)cAlternatives.eContents().get(1);
		private final Keyword cGREATERGreaterThanSignKeyword_1_0 = (Keyword)cGREATEREnumLiteralDeclaration_1.eContents().get(0);
		private final EnumLiteralDeclaration cLESS_EQUALSEnumLiteralDeclaration_2 = (EnumLiteralDeclaration)cAlternatives.eContents().get(2);
		private final Keyword cLESS_EQUALSLessThanSignEqualsSignKeyword_2_0 = (Keyword)cLESS_EQUALSEnumLiteralDeclaration_2.eContents().get(0);
		private final EnumLiteralDeclaration cGREATER_EQUALSEnumLiteralDeclaration_3 = (EnumLiteralDeclaration)cAlternatives.eContents().get(3);
		private final Keyword cGREATER_EQUALSGreaterThanSignEqualsSignKeyword_3_0 = (Keyword)cGREATER_EQUALSEnumLiteralDeclaration_3.eContents().get(0);
		
		//enum ComparisonOperator:
		//	LESS='<' | GREATER='>' | LESS_EQUALS='<=' | GREATER_EQUALS='>=';
		public EnumRule getRule() { return rule; }
		
		//LESS='<' | GREATER='>' | LESS_EQUALS='<=' | GREATER_EQUALS='>='
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//LESS='<'
		public EnumLiteralDeclaration getLESSEnumLiteralDeclaration_0() { return cLESSEnumLiteralDeclaration_0; }
		
		//'<'
		public Keyword getLESSLessThanSignKeyword_0_0() { return cLESSLessThanSignKeyword_0_0; }
		
		//GREATER='>'
		public EnumLiteralDeclaration getGREATEREnumLiteralDeclaration_1() { return cGREATEREnumLiteralDeclaration_1; }
		
		//'>'
		public Keyword getGREATERGreaterThanSignKeyword_1_0() { return cGREATERGreaterThanSignKeyword_1_0; }
		
		//LESS_EQUALS='<='
		public EnumLiteralDeclaration getLESS_EQUALSEnumLiteralDeclaration_2() { return cLESS_EQUALSEnumLiteralDeclaration_2; }
		
		//'<='
		public Keyword getLESS_EQUALSLessThanSignEqualsSignKeyword_2_0() { return cLESS_EQUALSLessThanSignEqualsSignKeyword_2_0; }
		
		//GREATER_EQUALS='>='
		public EnumLiteralDeclaration getGREATER_EQUALSEnumLiteralDeclaration_3() { return cGREATER_EQUALSEnumLiteralDeclaration_3; }
		
		//'>='
		public Keyword getGREATER_EQUALSGreaterThanSignEqualsSignKeyword_3_0() { return cGREATER_EQUALSGreaterThanSignEqualsSignKeyword_3_0; }
	}
	public class DocumentLevelSpecificationElements extends AbstractEnumRuleElementFinder {
		private final EnumRule rule = (EnumRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.DocumentLevelSpecification");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final EnumLiteralDeclaration cNoneEnumLiteralDeclaration_0 = (EnumLiteralDeclaration)cAlternatives.eContents().get(0);
		private final Keyword cNoneNoneKeyword_0_0 = (Keyword)cNoneEnumLiteralDeclaration_0.eContents().get(0);
		private final EnumLiteralDeclaration cNormalEnumLiteralDeclaration_1 = (EnumLiteralDeclaration)cAlternatives.eContents().get(1);
		private final Keyword cNormalNormalKeyword_1_0 = (Keyword)cNormalEnumLiteralDeclaration_1.eContents().get(0);
		private final EnumLiteralDeclaration cFullEnumLiteralDeclaration_2 = (EnumLiteralDeclaration)cAlternatives.eContents().get(2);
		private final Keyword cFullFullKeyword_2_0 = (Keyword)cFullEnumLiteralDeclaration_2.eContents().get(0);
		
		//enum DocumentLevelSpecification:
		//	none | normal | full;
		public EnumRule getRule() { return rule; }
		
		//none | normal | full
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//none
		public EnumLiteralDeclaration getNoneEnumLiteralDeclaration_0() { return cNoneEnumLiteralDeclaration_0; }
		
		//"none"
		public Keyword getNoneNoneKeyword_0_0() { return cNoneNoneKeyword_0_0; }
		
		//normal
		public EnumLiteralDeclaration getNormalEnumLiteralDeclaration_1() { return cNormalEnumLiteralDeclaration_1; }
		
		//"normal"
		public Keyword getNormalNormalKeyword_1_0() { return cNormalNormalKeyword_1_0; }
		
		//full
		public EnumLiteralDeclaration getFullEnumLiteralDeclaration_2() { return cFullEnumLiteralDeclaration_2; }
		
		//"full"
		public Keyword getFullFullKeyword_2_0() { return cFullFullKeyword_2_0; }
	}
	public class SolverElements extends AbstractEnumRuleElementFinder {
		private final EnumRule rule = (EnumRule) GrammarUtil.findRuleForName(getGrammar(), "hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration.Solver");
		private final Alternatives cAlternatives = (Alternatives)rule.eContents().get(1);
		private final EnumLiteralDeclaration cSMTSolverEnumLiteralDeclaration_0 = (EnumLiteralDeclaration)cAlternatives.eContents().get(0);
		private final Keyword cSMTSolverSMTSolverKeyword_0_0 = (Keyword)cSMTSolverEnumLiteralDeclaration_0.eContents().get(0);
		private final EnumLiteralDeclaration cAlloySolverEnumLiteralDeclaration_1 = (EnumLiteralDeclaration)cAlternatives.eContents().get(1);
		private final Keyword cAlloySolverAlloySolverKeyword_1_0 = (Keyword)cAlloySolverEnumLiteralDeclaration_1.eContents().get(0);
		private final EnumLiteralDeclaration cViatraSolverEnumLiteralDeclaration_2 = (EnumLiteralDeclaration)cAlternatives.eContents().get(2);
		private final Keyword cViatraSolverViatraSolverKeyword_2_0 = (Keyword)cViatraSolverEnumLiteralDeclaration_2.eContents().get(0);
		
		//enum Solver:
		//	SMTSolver | AlloySolver | ViatraSolver;
		public EnumRule getRule() { return rule; }
		
		//SMTSolver | AlloySolver | ViatraSolver
		public Alternatives getAlternatives() { return cAlternatives; }
		
		//SMTSolver
		public EnumLiteralDeclaration getSMTSolverEnumLiteralDeclaration_0() { return cSMTSolverEnumLiteralDeclaration_0; }
		
		//"SMTSolver"
		public Keyword getSMTSolverSMTSolverKeyword_0_0() { return cSMTSolverSMTSolverKeyword_0_0; }
		
		//AlloySolver
		public EnumLiteralDeclaration getAlloySolverEnumLiteralDeclaration_1() { return cAlloySolverEnumLiteralDeclaration_1; }
		
		//"AlloySolver"
		public Keyword getAlloySolverAlloySolverKeyword_1_0() { return cAlloySolverAlloySolverKeyword_1_0; }
		
		//ViatraSolver
		public EnumLiteralDeclaration getViatraSolverEnumLiteralDeclaration_2() { return cViatraSolverEnumLiteralDeclaration_2; }
		
		//"ViatraSolver"
		public Keyword getViatraSolverViatraSolverKeyword_2_0() { return cViatraSolverViatraSolverKeyword_2_0; }
	}
	
	private final ConfigurationScriptElements pConfigurationScript;
	private final CommandElements pCommand;
	private final QualifiedNameElements pQualifiedName;
	private final REALLiteralElements pREALLiteral;
	private final INTLiteralElements pINTLiteral;
	private final ImportElements pImport;
	private final EPackageImportElements pEPackageImport;
	private final ViatraImportElements pViatraImport;
	private final DeclarationElements pDeclaration;
	private final FileSpecificationElements pFileSpecification;
	private final FileDeclarationElements pFileDeclaration;
	private final FileReferenceElements pFileReference;
	private final FileElements pFile;
	private final MetamodelSpecificationElements pMetamodelSpecification;
	private final MetamodelEntryElements pMetamodelEntry;
	private final AllPackageEntryElements pAllPackageEntry;
	private final MetamodelElementElements pMetamodelElement;
	private final MetamodelDeclarationElements pMetamodelDeclaration;
	private final MetamodelReferenceElements pMetamodelReference;
	private final MetamodelElements pMetamodel;
	private final PartialModelSpecificationElements pPartialModelSpecification;
	private final PartialModelEntryElements pPartialModelEntry;
	private final ModelEntryElements pModelEntry;
	private final FolderEntryElements pFolderEntry;
	private final PartialModelDeclarationElements pPartialModelDeclaration;
	private final PartialModelReferenceElements pPartialModelReference;
	private final PartialModelElements pPartialModel;
	private final PatternSpecificationElements pPatternSpecification;
	private final PatternEntryElements pPatternEntry;
	private final AllPatternEntryElements pAllPatternEntry;
	private final PatternElementElements pPatternElement;
	private final GraphPatternDeclarationElements pGraphPatternDeclaration;
	private final GraphPatternReferenceElements pGraphPatternReference;
	private final GraphPatternElements pGraphPattern;
	private final ObjectiveSpecificationElements pObjectiveSpecification;
	private final ObjectiveEntryElements pObjectiveEntry;
	private final OptimizationDirectionElements eOptimizationDirection;
	private final OptimizationEntryElements pOptimizationEntry;
	private final ComparisonOperatorElements eComparisonOperator;
	private final ThresholdEntryElements pThresholdEntry;
	private final ObjectiveFunctionElements pObjectiveFunction;
	private final CostObjectiveFunctionElements pCostObjectiveFunction;
	private final CostEntryElements pCostEntry;
	private final ObjectiveDeclarationElements pObjectiveDeclaration;
	private final ObjectiveReferenceElements pObjectiveReference;
	private final ObjectiveElements pObjective;
	private final ConfigSpecificationElements pConfigSpecification;
	private final ConfigDeclarationElements pConfigDeclaration;
	private final ConfigEntryElements pConfigEntry;
	private final DocumentationEntryElements pDocumentationEntry;
	private final DocumentLevelSpecificationElements eDocumentLevelSpecification;
	private final RuntimeEntryElements pRuntimeEntry;
	private final MemoryEntryElements pMemoryEntry;
	private final CustomEntryElements pCustomEntry;
	private final ConfigReferenceElements pConfigReference;
	private final ConfigElements pConfig;
	private final SolverElements eSolver;
	private final ScopeSpecificationElements pScopeSpecification;
	private final TypeScopeElements pTypeScope;
	private final ClassTypeScopeElements pClassTypeScope;
	private final ObjectTypeScopeElements pObjectTypeScope;
	private final IntegerTypeScopeElements pIntegerTypeScope;
	private final RealTypeScopeElements pRealTypeScope;
	private final StringTypeScopeElements pStringTypeScope;
	private final TypeReferenceElements pTypeReference;
	private final ClassReferenceElements pClassReference;
	private final ObjectReferenceElements pObjectReference;
	private final IntegerReferenceElements pIntegerReference;
	private final RealReferenceElements pRealReference;
	private final StringReferenceElements pStringReference;
	private final NumberSpecificationElements pNumberSpecification;
	private final ExactNumberElements pExactNumber;
	private final IntervallNumberElements pIntervallNumber;
	private final IntEnumberationElements pIntEnumberation;
	private final RealEnumerationElements pRealEnumeration;
	private final StringEnumerationElements pStringEnumeration;
	private final ScopeDeclarationElements pScopeDeclaration;
	private final ScopeReferenceElements pScopeReference;
	private final ScopeElements pScope;
	private final TaskElements pTask;
	private final GenerationTaskElements pGenerationTask;
	
	private final Grammar grammar;
	
	private final TerminalsGrammarAccess gaTerminals;

	@Inject
	public ApplicationConfigurationGrammarAccess(GrammarProvider grammarProvider,
			TerminalsGrammarAccess gaTerminals) {
		this.grammar = internalFindGrammar(grammarProvider);
		this.gaTerminals = gaTerminals;
		this.pConfigurationScript = new ConfigurationScriptElements();
		this.pCommand = new CommandElements();
		this.pQualifiedName = new QualifiedNameElements();
		this.pREALLiteral = new REALLiteralElements();
		this.pINTLiteral = new INTLiteralElements();
		this.pImport = new ImportElements();
		this.pEPackageImport = new EPackageImportElements();
		this.pViatraImport = new ViatraImportElements();
		this.pDeclaration = new DeclarationElements();
		this.pFileSpecification = new FileSpecificationElements();
		this.pFileDeclaration = new FileDeclarationElements();
		this.pFileReference = new FileReferenceElements();
		this.pFile = new FileElements();
		this.pMetamodelSpecification = new MetamodelSpecificationElements();
		this.pMetamodelEntry = new MetamodelEntryElements();
		this.pAllPackageEntry = new AllPackageEntryElements();
		this.pMetamodelElement = new MetamodelElementElements();
		this.pMetamodelDeclaration = new MetamodelDeclarationElements();
		this.pMetamodelReference = new MetamodelReferenceElements();
		this.pMetamodel = new MetamodelElements();
		this.pPartialModelSpecification = new PartialModelSpecificationElements();
		this.pPartialModelEntry = new PartialModelEntryElements();
		this.pModelEntry = new ModelEntryElements();
		this.pFolderEntry = new FolderEntryElements();
		this.pPartialModelDeclaration = new PartialModelDeclarationElements();
		this.pPartialModelReference = new PartialModelReferenceElements();
		this.pPartialModel = new PartialModelElements();
		this.pPatternSpecification = new PatternSpecificationElements();
		this.pPatternEntry = new PatternEntryElements();
		this.pAllPatternEntry = new AllPatternEntryElements();
		this.pPatternElement = new PatternElementElements();
		this.pGraphPatternDeclaration = new GraphPatternDeclarationElements();
		this.pGraphPatternReference = new GraphPatternReferenceElements();
		this.pGraphPattern = new GraphPatternElements();
		this.pObjectiveSpecification = new ObjectiveSpecificationElements();
		this.pObjectiveEntry = new ObjectiveEntryElements();
		this.eOptimizationDirection = new OptimizationDirectionElements();
		this.pOptimizationEntry = new OptimizationEntryElements();
		this.eComparisonOperator = new ComparisonOperatorElements();
		this.pThresholdEntry = new ThresholdEntryElements();
		this.pObjectiveFunction = new ObjectiveFunctionElements();
		this.pCostObjectiveFunction = new CostObjectiveFunctionElements();
		this.pCostEntry = new CostEntryElements();
		this.pObjectiveDeclaration = new ObjectiveDeclarationElements();
		this.pObjectiveReference = new ObjectiveReferenceElements();
		this.pObjective = new ObjectiveElements();
		this.pConfigSpecification = new ConfigSpecificationElements();
		this.pConfigDeclaration = new ConfigDeclarationElements();
		this.pConfigEntry = new ConfigEntryElements();
		this.pDocumentationEntry = new DocumentationEntryElements();
		this.eDocumentLevelSpecification = new DocumentLevelSpecificationElements();
		this.pRuntimeEntry = new RuntimeEntryElements();
		this.pMemoryEntry = new MemoryEntryElements();
		this.pCustomEntry = new CustomEntryElements();
		this.pConfigReference = new ConfigReferenceElements();
		this.pConfig = new ConfigElements();
		this.eSolver = new SolverElements();
		this.pScopeSpecification = new ScopeSpecificationElements();
		this.pTypeScope = new TypeScopeElements();
		this.pClassTypeScope = new ClassTypeScopeElements();
		this.pObjectTypeScope = new ObjectTypeScopeElements();
		this.pIntegerTypeScope = new IntegerTypeScopeElements();
		this.pRealTypeScope = new RealTypeScopeElements();
		this.pStringTypeScope = new StringTypeScopeElements();
		this.pTypeReference = new TypeReferenceElements();
		this.pClassReference = new ClassReferenceElements();
		this.pObjectReference = new ObjectReferenceElements();
		this.pIntegerReference = new IntegerReferenceElements();
		this.pRealReference = new RealReferenceElements();
		this.pStringReference = new StringReferenceElements();
		this.pNumberSpecification = new NumberSpecificationElements();
		this.pExactNumber = new ExactNumberElements();
		this.pIntervallNumber = new IntervallNumberElements();
		this.pIntEnumberation = new IntEnumberationElements();
		this.pRealEnumeration = new RealEnumerationElements();
		this.pStringEnumeration = new StringEnumerationElements();
		this.pScopeDeclaration = new ScopeDeclarationElements();
		this.pScopeReference = new ScopeReferenceElements();
		this.pScope = new ScopeElements();
		this.pTask = new TaskElements();
		this.pGenerationTask = new GenerationTaskElements();
	}
	
	protected Grammar internalFindGrammar(GrammarProvider grammarProvider) {
		Grammar grammar = grammarProvider.getGrammar(this);
		while (grammar != null) {
			if ("hu.bme.mit.inf.dslreasoner.application.ApplicationConfiguration".equals(grammar.getName())) {
				return grammar;
			}
			List<Grammar> grammars = grammar.getUsedGrammars();
			if (!grammars.isEmpty()) {
				grammar = grammars.iterator().next();
			} else {
				return null;
			}
		}
		return grammar;
	}
	
	@Override
	public Grammar getGrammar() {
		return grammar;
	}
	
	
	public TerminalsGrammarAccess getTerminalsGrammarAccess() {
		return gaTerminals;
	}

	
	//ConfigurationScript:
	//	imports+=Import*
	//	commands+=Command*;
	public ConfigurationScriptElements getConfigurationScriptAccess() {
		return pConfigurationScript;
	}
	
	public ParserRule getConfigurationScriptRule() {
		return getConfigurationScriptAccess().getRule();
	}
	
	//Command:
	//	Declaration | Task;
	public CommandElements getCommandAccess() {
		return pCommand;
	}
	
	public ParserRule getCommandRule() {
		return getCommandAccess().getRule();
	}
	
	//QualifiedName:
	//	ID ('.' ID)*;
	public QualifiedNameElements getQualifiedNameAccess() {
		return pQualifiedName;
	}
	
	public ParserRule getQualifiedNameRule() {
		return getQualifiedNameAccess().getRule();
	}
	
	//REALLiteral ecore::EBigDecimal:
	//	'-'? INT '.' INT;
	public REALLiteralElements getREALLiteralAccess() {
		return pREALLiteral;
	}
	
	public ParserRule getREALLiteralRule() {
		return getREALLiteralAccess().getRule();
	}
	
	//INTLiteral ecore::EInt:
	//	'-'? INT;
	public INTLiteralElements getINTLiteralAccess() {
		return pINTLiteral;
	}
	
	public ParserRule getINTLiteralRule() {
		return getINTLiteralAccess().getRule();
	}
	
	/////////////////////////////////////////////////////
	//// Imports
	/////////////////////////////////////////////////////
	//Import:
	//	EPackageImport | ViatraImport;
	public ImportElements getImportAccess() {
		return pImport;
	}
	
	public ParserRule getImportRule() {
		return getImportAccess().getRule();
	}
	
	//EPackageImport:
	//	"import" "epackage" importedPackage=[ecore::EPackage|STRING];
	public EPackageImportElements getEPackageImportAccess() {
		return pEPackageImport;
	}
	
	public ParserRule getEPackageImportRule() {
		return getEPackageImportAccess().getRule();
	}
	
	//ViatraImport:
	//	"import" "viatra" importedViatra=[viatra::PatternModel|STRING];
	public ViatraImportElements getViatraImportAccess() {
		return pViatraImport;
	}
	
	public ParserRule getViatraImportRule() {
		return getViatraImportAccess().getRule();
	}
	
	/////////////////////////////////////////////////////
	//// Declaration
	/////////////////////////////////////////////////////
	//Declaration:
	//	FileDeclaration
	//	| MetamodelDeclaration
	//	| PartialModelDeclaration
	//	| GraphPatternDeclaration
	//	| ConfigDeclaration
	//	| ScopeDeclaration
	//	| ObjectiveDeclaration;
	public DeclarationElements getDeclarationAccess() {
		return pDeclaration;
	}
	
	public ParserRule getDeclarationRule() {
		return getDeclarationAccess().getRule();
	}
	
	/////////////////////////////////////////////////////
	//// Files and Folders
	/////////////////////////////////////////////////////
	//FileSpecification:
	//	path=STRING;
	public FileSpecificationElements getFileSpecificationAccess() {
		return pFileSpecification;
	}
	
	public ParserRule getFileSpecificationRule() {
		return getFileSpecificationAccess().getRule();
	}
	
	//FileDeclaration:
	//	'file' name=ID '=' specification=FileSpecification;
	public FileDeclarationElements getFileDeclarationAccess() {
		return pFileDeclaration;
	}
	
	public ParserRule getFileDeclarationRule() {
		return getFileDeclarationAccess().getRule();
	}
	
	//FileReference:
	//	referred=[FileDeclaration];
	public FileReferenceElements getFileReferenceAccess() {
		return pFileReference;
	}
	
	public ParserRule getFileReferenceRule() {
		return getFileReferenceAccess().getRule();
	}
	
	//File:
	//	FileSpecification | FileReference;
	public FileElements getFileAccess() {
		return pFile;
	}
	
	public ParserRule getFileRule() {
		return getFileAccess().getRule();
	}
	
	/////////////////////////////////////////////////////
	//// Metamodel
	/////////////////////////////////////////////////////
	//MetamodelSpecification:
	//	'{' entries+=MetamodelEntry (',' entries+=MetamodelEntry)* '}';
	public MetamodelSpecificationElements getMetamodelSpecificationAccess() {
		return pMetamodelSpecification;
	}
	
	public ParserRule getMetamodelSpecificationRule() {
		return getMetamodelSpecificationAccess().getRule();
	}
	
	//MetamodelEntry:
	//	MetamodelElement | AllPackageEntry;
	public MetamodelEntryElements getMetamodelEntryAccess() {
		return pMetamodelEntry;
	}
	
	public ParserRule getMetamodelEntryRule() {
		return getMetamodelEntryAccess().getRule();
	}
	
	//AllPackageEntry:
	//	"package" package=[ecore::EPackage|QualifiedName] ("excluding" '{' exclusion+=MetamodelElement (','
	//	exclusion+=MetamodelElement)* '}')?;
	public AllPackageEntryElements getAllPackageEntryAccess() {
		return pAllPackageEntry;
	}
	
	public ParserRule getAllPackageEntryRule() {
		return getAllPackageEntryAccess().getRule();
	}
	
	//MetamodelElement:
	//	(package=[ecore::EPackage|QualifiedName] '::')? classifier=[ecore::EClassifier] ('.'
	//	feature=[ecore::ENamedElement])?;
	public MetamodelElementElements getMetamodelElementAccess() {
		return pMetamodelElement;
	}
	
	public ParserRule getMetamodelElementRule() {
		return getMetamodelElementAccess().getRule();
	}
	
	//MetamodelDeclaration:
	//	'metamodel' name=ID specification=MetamodelSpecification;
	public MetamodelDeclarationElements getMetamodelDeclarationAccess() {
		return pMetamodelDeclaration;
	}
	
	public ParserRule getMetamodelDeclarationRule() {
		return getMetamodelDeclarationAccess().getRule();
	}
	
	//MetamodelReference:
	//	referred=[MetamodelDeclaration];
	public MetamodelReferenceElements getMetamodelReferenceAccess() {
		return pMetamodelReference;
	}
	
	public ParserRule getMetamodelReferenceRule() {
		return getMetamodelReferenceAccess().getRule();
	}
	
	//Metamodel:
	//	MetamodelReference | MetamodelSpecification;
	public MetamodelElements getMetamodelAccess() {
		return pMetamodel;
	}
	
	public ParserRule getMetamodelRule() {
		return getMetamodelAccess().getRule();
	}
	
	/////////////////////////////////////////////////////
	//// Partial Model
	/////////////////////////////////////////////////////
	//PartialModelSpecification:
	//	'{' entry+=PartialModelEntry (',' entry+=PartialModelEntry)? '}';
	public PartialModelSpecificationElements getPartialModelSpecificationAccess() {
		return pPartialModelSpecification;
	}
	
	public ParserRule getPartialModelSpecificationRule() {
		return getPartialModelSpecificationAccess().getRule();
	}
	
	//PartialModelEntry:
	//	ModelEntry | FolderEntry;
	public PartialModelEntryElements getPartialModelEntryAccess() {
		return pPartialModelEntry;
	}
	
	public ParserRule getPartialModelEntryRule() {
		return getPartialModelEntryAccess().getRule();
	}
	
	//ModelEntry:
	//	path=File;
	public ModelEntryElements getModelEntryAccess() {
		return pModelEntry;
	}
	
	public ParserRule getModelEntryRule() {
		return getModelEntryAccess().getRule();
	}
	
	//FolderEntry:
	//	"folder" path=File ("excluding" "{" exclusion+=ModelEntry ("," exclusion+=ModelEntry)* "}")?;
	public FolderEntryElements getFolderEntryAccess() {
		return pFolderEntry;
	}
	
	public ParserRule getFolderEntryRule() {
		return getFolderEntryAccess().getRule();
	}
	
	//PartialModelDeclaration:
	//	'models' name=ID specification=PartialModelSpecification;
	public PartialModelDeclarationElements getPartialModelDeclarationAccess() {
		return pPartialModelDeclaration;
	}
	
	public ParserRule getPartialModelDeclarationRule() {
		return getPartialModelDeclarationAccess().getRule();
	}
	
	//PartialModelReference:
	//	referred=[PartialModelDeclaration];
	public PartialModelReferenceElements getPartialModelReferenceAccess() {
		return pPartialModelReference;
	}
	
	public ParserRule getPartialModelReferenceRule() {
		return getPartialModelReferenceAccess().getRule();
	}
	
	//PartialModel:
	//	PartialModelSpecification | PartialModelReference;
	public PartialModelElements getPartialModelAccess() {
		return pPartialModel;
	}
	
	public ParserRule getPartialModelRule() {
		return getPartialModelAccess().getRule();
	}
	
	/////////////////////////////////////////////////////
	//// Patterns
	/////////////////////////////////////////////////////
	//PatternSpecification:
	//	'{' entries+=PatternEntry (',' entries+=PatternEntry)* '}';
	public PatternSpecificationElements getPatternSpecificationAccess() {
		return pPatternSpecification;
	}
	
	public ParserRule getPatternSpecificationRule() {
		return getPatternSpecificationAccess().getRule();
	}
	
	//PatternEntry:
	//	PatternElement | AllPatternEntry;
	public PatternEntryElements getPatternEntryAccess() {
		return pPatternEntry;
	}
	
	public ParserRule getPatternEntryRule() {
		return getPatternEntryAccess().getRule();
	}
	
	//AllPatternEntry:
	//	'package' package=[viatra::PatternModel|QualifiedName] ('excluding' '{' exclusuion+=PatternElement (','
	//	exclusuion+=PatternElement)* '}')?;
	public AllPatternEntryElements getAllPatternEntryAccess() {
		return pAllPatternEntry;
	}
	
	public ParserRule getAllPatternEntryRule() {
		return getAllPatternEntryAccess().getRule();
	}
	
	//PatternElement:
	//	(package=[viatra::PatternModel|QualifiedName] '::')? pattern=[viatra::Pattern];
	public PatternElementElements getPatternElementAccess() {
		return pPatternElement;
	}
	
	public ParserRule getPatternElementRule() {
		return getPatternElementAccess().getRule();
	}
	
	//GraphPatternDeclaration:
	//	'constraints' name=ID specification=PatternSpecification;
	public GraphPatternDeclarationElements getGraphPatternDeclarationAccess() {
		return pGraphPatternDeclaration;
	}
	
	public ParserRule getGraphPatternDeclarationRule() {
		return getGraphPatternDeclarationAccess().getRule();
	}
	
	//GraphPatternReference:
	//	referred=[GraphPatternDeclaration];
	public GraphPatternReferenceElements getGraphPatternReferenceAccess() {
		return pGraphPatternReference;
	}
	
	public ParserRule getGraphPatternReferenceRule() {
		return getGraphPatternReferenceAccess().getRule();
	}
	
	//GraphPattern:
	//	GraphPatternReference | PatternSpecification;
	public GraphPatternElements getGraphPatternAccess() {
		return pGraphPattern;
	}
	
	public ParserRule getGraphPatternRule() {
		return getGraphPatternAccess().getRule();
	}
	
	/////////////////////////////////////////////////////
	//// Objectives
	/////////////////////////////////////////////////////
	//ObjectiveSpecification:
	//	'{' entries+=ObjectiveEntry (',' entries+=ObjectiveEntry)* '}';
	public ObjectiveSpecificationElements getObjectiveSpecificationAccess() {
		return pObjectiveSpecification;
	}
	
	public ParserRule getObjectiveSpecificationRule() {
		return getObjectiveSpecificationAccess().getRule();
	}
	
	//ObjectiveEntry:
	//	OptimizationEntry | ThresholdEntry;
	public ObjectiveEntryElements getObjectiveEntryAccess() {
		return pObjectiveEntry;
	}
	
	public ParserRule getObjectiveEntryRule() {
		return getObjectiveEntryAccess().getRule();
	}
	
	//enum OptimizationDirection:
	//	MINIMIZE='minimize' | MAXIMIZE='maximize';
	public OptimizationDirectionElements getOptimizationDirectionAccess() {
		return eOptimizationDirection;
	}
	
	public EnumRule getOptimizationDirectionRule() {
		return getOptimizationDirectionAccess().getRule();
	}
	
	//OptimizationEntry:
	//	direction=OptimizationDirection function=ObjectiveFunction;
	public OptimizationEntryElements getOptimizationEntryAccess() {
		return pOptimizationEntry;
	}
	
	public ParserRule getOptimizationEntryRule() {
		return getOptimizationEntryAccess().getRule();
	}
	
	//enum ComparisonOperator:
	//	LESS='<' | GREATER='>' | LESS_EQUALS='<=' | GREATER_EQUALS='>=';
	public ComparisonOperatorElements getComparisonOperatorAccess() {
		return eComparisonOperator;
	}
	
	public EnumRule getComparisonOperatorRule() {
		return getComparisonOperatorAccess().getRule();
	}
	
	//ThresholdEntry:
	//	function=ObjectiveFunction operator=ComparisonOperator threshold=REALLiteral;
	public ThresholdEntryElements getThresholdEntryAccess() {
		return pThresholdEntry;
	}
	
	public ParserRule getThresholdEntryRule() {
		return getThresholdEntryAccess().getRule();
	}
	
	//ObjectiveFunction:
	//	CostObjectiveFunction;
	public ObjectiveFunctionElements getObjectiveFunctionAccess() {
		return pObjectiveFunction;
	}
	
	public ParserRule getObjectiveFunctionRule() {
		return getObjectiveFunctionAccess().getRule();
	}
	
	//CostObjectiveFunction:
	//	'cost' '{' entries+=CostEntry (',' entries+=CostEntry)* '}';
	public CostObjectiveFunctionElements getCostObjectiveFunctionAccess() {
		return pCostObjectiveFunction;
	}
	
	public ParserRule getCostObjectiveFunctionRule() {
		return getCostObjectiveFunctionAccess().getRule();
	}
	
	//CostEntry:
	//	patternElement=PatternElement '=' weight=INTLiteral;
	public CostEntryElements getCostEntryAccess() {
		return pCostEntry;
	}
	
	public ParserRule getCostEntryRule() {
		return getCostEntryAccess().getRule();
	}
	
	//ObjectiveDeclaration:
	//	'objectives' name=ID specification=ObjectiveSpecification;
	public ObjectiveDeclarationElements getObjectiveDeclarationAccess() {
		return pObjectiveDeclaration;
	}
	
	public ParserRule getObjectiveDeclarationRule() {
		return getObjectiveDeclarationAccess().getRule();
	}
	
	//ObjectiveReference:
	//	referred=[ObjectiveDeclaration];
	public ObjectiveReferenceElements getObjectiveReferenceAccess() {
		return pObjectiveReference;
	}
	
	public ParserRule getObjectiveReferenceRule() {
		return getObjectiveReferenceAccess().getRule();
	}
	
	//Objective:
	//	ObjectiveReference | ObjectiveSpecification;
	public ObjectiveElements getObjectiveAccess() {
		return pObjective;
	}
	
	public ParserRule getObjectiveRule() {
		return getObjectiveAccess().getRule();
	}
	
	/////////////////////////////////////////////////////
	//// SolverConfig
	/////////////////////////////////////////////////////
	//ConfigSpecification:
	//	{ConfigSpecification} '{' (entries+=ConfigEntry ("," entries+=ConfigEntry)*)?
	//	'}';
	public ConfigSpecificationElements getConfigSpecificationAccess() {
		return pConfigSpecification;
	}
	
	public ParserRule getConfigSpecificationRule() {
		return getConfigSpecificationAccess().getRule();
	}
	
	//ConfigDeclaration:
	//	'config' name=ID specification=ConfigSpecification;
	public ConfigDeclarationElements getConfigDeclarationAccess() {
		return pConfigDeclaration;
	}
	
	public ParserRule getConfigDeclarationRule() {
		return getConfigDeclarationAccess().getRule();
	}
	
	//ConfigEntry:
	//	DocumentationEntry | RuntimeEntry | MemoryEntry | CustomEntry;
	public ConfigEntryElements getConfigEntryAccess() {
		return pConfigEntry;
	}
	
	public ParserRule getConfigEntryRule() {
		return getConfigEntryAccess().getRule();
	}
	
	//DocumentationEntry:
	//	"log-level" '=' level=DocumentLevelSpecification;
	public DocumentationEntryElements getDocumentationEntryAccess() {
		return pDocumentationEntry;
	}
	
	public ParserRule getDocumentationEntryRule() {
		return getDocumentationEntryAccess().getRule();
	}
	
	//enum DocumentLevelSpecification:
	//	none | normal | full;
	public DocumentLevelSpecificationElements getDocumentLevelSpecificationAccess() {
		return eDocumentLevelSpecification;
	}
	
	public EnumRule getDocumentLevelSpecificationRule() {
		return getDocumentLevelSpecificationAccess().getRule();
	}
	
	//RuntimeEntry:
	//	"runtime" "=" millisecLimit=INT;
	public RuntimeEntryElements getRuntimeEntryAccess() {
		return pRuntimeEntry;
	}
	
	public ParserRule getRuntimeEntryRule() {
		return getRuntimeEntryAccess().getRule();
	}
	
	//MemoryEntry:
	//	"memory" "=" megabyteLimit=INT;
	public MemoryEntryElements getMemoryEntryAccess() {
		return pMemoryEntry;
	}
	
	public ParserRule getMemoryEntryRule() {
		return getMemoryEntryAccess().getRule();
	}
	
	//CustomEntry:
	//	key=STRING "=" value=STRING;
	public CustomEntryElements getCustomEntryAccess() {
		return pCustomEntry;
	}
	
	public ParserRule getCustomEntryRule() {
		return getCustomEntryAccess().getRule();
	}
	
	//ConfigReference:
	//	config=[ConfigDeclaration];
	public ConfigReferenceElements getConfigReferenceAccess() {
		return pConfigReference;
	}
	
	public ParserRule getConfigReferenceRule() {
		return getConfigReferenceAccess().getRule();
	}
	
	//Config:
	//	ConfigSpecification | ConfigReference;
	public ConfigElements getConfigAccess() {
		return pConfig;
	}
	
	public ParserRule getConfigRule() {
		return getConfigAccess().getRule();
	}
	
	//enum Solver:
	//	SMTSolver | AlloySolver | ViatraSolver;
	public SolverElements getSolverAccess() {
		return eSolver;
	}
	
	public EnumRule getSolverRule() {
		return getSolverAccess().getRule();
	}
	
	//ScopeSpecification:
	//	{ScopeSpecification} '{' (scopes+=TypeScope (',' scopes+=TypeScope)*)?
	//	'}';
	public ScopeSpecificationElements getScopeSpecificationAccess() {
		return pScopeSpecification;
	}
	
	public ParserRule getScopeSpecificationRule() {
		return getScopeSpecificationAccess().getRule();
	}
	
	//TypeScope:
	//	ClassTypeScope | ObjectTypeScope | IntegerTypeScope | RealTypeScope | StringTypeScope;
	public TypeScopeElements getTypeScopeAccess() {
		return pTypeScope;
	}
	
	public ParserRule getTypeScopeRule() {
		return getTypeScopeAccess().getRule();
	}
	
	//ClassTypeScope:
	//	'#' type=ClassReference (setsNew?='+=' | setsSum?='=') (number=ExactNumber | number=IntervallNumber);
	public ClassTypeScopeElements getClassTypeScopeAccess() {
		return pClassTypeScope;
	}
	
	public ParserRule getClassTypeScopeRule() {
		return getClassTypeScopeAccess().getRule();
	}
	
	//ObjectTypeScope:
	//	'#' type=ObjectReference (setsNew?='+=' | setsSum?='=') (number=ExactNumber | number=IntervallNumber);
	public ObjectTypeScopeElements getObjectTypeScopeAccess() {
		return pObjectTypeScope;
	}
	
	public ParserRule getObjectTypeScopeRule() {
		return getObjectTypeScopeAccess().getRule();
	}
	
	//IntegerTypeScope:
	//	'#' type=IntegerReference (setsNew?='+=' | setsSum?='=') (number=ExactNumber | number=IntervallNumber |
	//	number=IntEnumberation);
	public IntegerTypeScopeElements getIntegerTypeScopeAccess() {
		return pIntegerTypeScope;
	}
	
	public ParserRule getIntegerTypeScopeRule() {
		return getIntegerTypeScopeAccess().getRule();
	}
	
	//RealTypeScope:
	//	'#' type=RealReference (setsNew?='+=' | setsSum?='=') (number=ExactNumber | number=IntervallNumber |
	//	number=RealEnumeration);
	public RealTypeScopeElements getRealTypeScopeAccess() {
		return pRealTypeScope;
	}
	
	public ParserRule getRealTypeScopeRule() {
		return getRealTypeScopeAccess().getRule();
	}
	
	//StringTypeScope:
	//	'#' type=StringReference (setsNew?='+=' | setsSum?='=') (number=ExactNumber | number=IntervallNumber |
	//	number=StringEnumeration);
	public StringTypeScopeElements getStringTypeScopeAccess() {
		return pStringTypeScope;
	}
	
	public ParserRule getStringTypeScopeRule() {
		return getStringTypeScopeAccess().getRule();
	}
	
	//TypeReference:
	//	ClassReference | ObjectReference | IntegerReference | RealReference | StringReference;
	public TypeReferenceElements getTypeReferenceAccess() {
		return pTypeReference;
	}
	
	public ParserRule getTypeReferenceRule() {
		return getTypeReferenceAccess().getRule();
	}
	
	//ClassReference:
	//	'<' element=MetamodelElement '>';
	public ClassReferenceElements getClassReferenceAccess() {
		return pClassReference;
	}
	
	public ParserRule getClassReferenceRule() {
		return getClassReferenceAccess().getRule();
	}
	
	//ObjectReference:
	//	{ObjectReference} 'node';
	public ObjectReferenceElements getObjectReferenceAccess() {
		return pObjectReference;
	}
	
	public ParserRule getObjectReferenceRule() {
		return getObjectReferenceAccess().getRule();
	}
	
	//IntegerReference:
	//	{IntegerScope} 'int';
	public IntegerReferenceElements getIntegerReferenceAccess() {
		return pIntegerReference;
	}
	
	public ParserRule getIntegerReferenceRule() {
		return getIntegerReferenceAccess().getRule();
	}
	
	//RealReference:
	//	{RealScope} 'real';
	public RealReferenceElements getRealReferenceAccess() {
		return pRealReference;
	}
	
	public ParserRule getRealReferenceRule() {
		return getRealReferenceAccess().getRule();
	}
	
	//StringReference:
	//	{StringScope} 'string';
	public StringReferenceElements getStringReferenceAccess() {
		return pStringReference;
	}
	
	public ParserRule getStringReferenceRule() {
		return getStringReferenceAccess().getRule();
	}
	
	//NumberSpecification:
	//	ExactNumber | IntervallNumber | IntEnumberation | RealEnumeration | StringEnumeration;
	public NumberSpecificationElements getNumberSpecificationAccess() {
		return pNumberSpecification;
	}
	
	public ParserRule getNumberSpecificationRule() {
		return getNumberSpecificationAccess().getRule();
	}
	
	//ExactNumber:
	//	exactNumber=INT | exactUnlimited?='*';
	public ExactNumberElements getExactNumberAccess() {
		return pExactNumber;
	}
	
	public ParserRule getExactNumberRule() {
		return getExactNumberAccess().getRule();
	}
	
	//IntervallNumber:
	//	min=INT '..' (maxNumber=INT | maxUnlimited?='*');
	public IntervallNumberElements getIntervallNumberAccess() {
		return pIntervallNumber;
	}
	
	public ParserRule getIntervallNumberRule() {
		return getIntervallNumberAccess().getRule();
	}
	
	//IntEnumberation:
	//	{IntEnumberation} '{' (entry+=INTLiteral (',' entry+=INTLiteral)*)? '}';
	public IntEnumberationElements getIntEnumberationAccess() {
		return pIntEnumberation;
	}
	
	public ParserRule getIntEnumberationRule() {
		return getIntEnumberationAccess().getRule();
	}
	
	//RealEnumeration:
	//	{RealEnumeration} '{' (entry+=REALLiteral (',' entry+=REALLiteral)*)? '}';
	public RealEnumerationElements getRealEnumerationAccess() {
		return pRealEnumeration;
	}
	
	public ParserRule getRealEnumerationRule() {
		return getRealEnumerationAccess().getRule();
	}
	
	//StringEnumeration:
	//	{StringEnumeration} '{' (entry+=STRING (',' entry+=STRING)*)? '}';
	public StringEnumerationElements getStringEnumerationAccess() {
		return pStringEnumeration;
	}
	
	public ParserRule getStringEnumerationRule() {
		return getStringEnumerationAccess().getRule();
	}
	
	//ScopeDeclaration:
	//	'scope' name=ID specification=ScopeSpecification;
	public ScopeDeclarationElements getScopeDeclarationAccess() {
		return pScopeDeclaration;
	}
	
	public ParserRule getScopeDeclarationRule() {
		return getScopeDeclarationAccess().getRule();
	}
	
	//ScopeReference:
	//	referred=[ScopeDeclaration];
	public ScopeReferenceElements getScopeReferenceAccess() {
		return pScopeReference;
	}
	
	public ParserRule getScopeReferenceRule() {
		return getScopeReferenceAccess().getRule();
	}
	
	//Scope:
	//	ScopeSpecification | ScopeReference;
	public ScopeElements getScopeAccess() {
		return pScope;
	}
	
	public ParserRule getScopeRule() {
		return getScopeAccess().getRule();
	}
	
	//Task:
	//	GenerationTask /*| CoverageCalculation | ValidationTask*/;
	public TaskElements getTaskAccess() {
		return pTask;
	}
	
	public ParserRule getTaskRule() {
		return getTaskAccess().getRule();
	}
	
	//GenerationTask:
	//	'generate' {GenerationTask} '{' (('metamodel' '=' metamodel=Metamodel)? & ('partial-model' '='
	//	partialModel=PartialModel)? & ('constraints' '=' patterns=GraphPattern)? & ('objectives' '=' objectives=Objective)? &
	//	('scope' '=' scope=Scope)? & (numberSpecified?='number' '=' number=INT)? & (runSpecified?='runs' '=' runs=INT)? &
	//	('solver' '=' solver=Solver)? & ('config' '=' config=Config)? & ('debug' '=' debugFolder=File)? & ('log' '='
	//	targetLogFile=File)? & ('statistics' '=' targetStatisticsFile=File)? & ('output' '=' tagetFolder=File)?) '}';
	public GenerationTaskElements getGenerationTaskAccess() {
		return pGenerationTask;
	}
	
	public ParserRule getGenerationTaskRule() {
		return getGenerationTaskAccess().getRule();
	}
	
	//terminal ID:
	//	'^'? ('a'..'z' | 'A'..'Z' | '_') ('a'..'z' | 'A'..'Z' | '_' | '0'..'9')*;
	public TerminalRule getIDRule() {
		return gaTerminals.getIDRule();
	}
	
	//terminal INT returns ecore::EInt:
	//	'0'..'9'+;
	public TerminalRule getINTRule() {
		return gaTerminals.getINTRule();
	}
	
	//terminal STRING:
	//	'"' ('\\' . | !('\\' | '"'))* '"' |
	//	"'" ('\\' . | !('\\' | "'"))* "'";
	public TerminalRule getSTRINGRule() {
		return gaTerminals.getSTRINGRule();
	}
	
	//terminal ML_COMMENT:
	//	'/*'->'*/';
	public TerminalRule getML_COMMENTRule() {
		return gaTerminals.getML_COMMENTRule();
	}
	
	//terminal SL_COMMENT:
	//	'//' !('\n' | '\r')* ('\r'? '\n')?;
	public TerminalRule getSL_COMMENTRule() {
		return gaTerminals.getSL_COMMENTRule();
	}
	
	//terminal WS:
	//	' ' | '\t' | '\r' | '\n'+;
	public TerminalRule getWSRule() {
		return gaTerminals.getWSRule();
	}
	
	//terminal ANY_OTHER:
	//	.;
	public TerminalRule getANY_OTHERRule() {
		return gaTerminals.getANY_OTHERRule();
	}
}