summaryrefslogtreecommitdiffstats
path: root/sdo-java/branches/sdo-1.1-incubating/tools/src/main/java/org/apache/tuscany/sdo/generate/templates/model/SDOClass.java
blob: 74e6a7769999c7a3cabe9ad4f8e98b68db5a4552 (plain)
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
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
package org.apache.tuscany.sdo.generate.templates.model;

import org.eclipse.emf.codegen.util.*;
import org.apache.tuscany.sdo.impl.*;
import java.util.*;
import org.eclipse.emf.codegen.ecore.genmodel.*;
import org.apache.tuscany.sdo.generate.util.*;

public class SDOClass
{
  protected static String nl;
  public static synchronized SDOClass create(String lineSeparator)
  {
    nl = lineSeparator;
    SDOClass result = new SDOClass();
    nl = null;
    return result;
  }

  protected final String NL = nl == null ? (System.getProperties().getProperty("line.separator")) : nl;
  protected final String TEXT_1 = "";
  protected final String TEXT_2 = "/**" + NL + " * <copyright>" + NL + " * </copyright>" + NL + " *" + NL + " * ";
  protected final String TEXT_3 = "Id";
  protected final String TEXT_4 = NL + " */";
  protected final String TEXT_5 = NL + "package ";
  protected final String TEXT_6 = ";";
  protected final String TEXT_7 = NL + "package ";
  protected final String TEXT_8 = ";";
  protected final String TEXT_9 = NL;
  protected final String TEXT_10 = NL;
  protected final String TEXT_11 = NL + "  // EYECATCHER 1";
  protected final String TEXT_12 = NL + "/**" + NL + " * <!-- begin-user-doc -->" + NL + " * A representation of the model object '<em><b>";
  protected final String TEXT_13 = "</b></em>'." + NL + " * <!-- end-user-doc -->";
  protected final String TEXT_14 = NL + " *" + NL + " * <!-- begin-model-doc -->" + NL + " * ";
  protected final String TEXT_15 = NL + " * <!-- end-model-doc -->";
  protected final String TEXT_16 = NL + " *";
  protected final String TEXT_17 = NL + " * <p>" + NL + " * The following features are supported:" + NL + " * <ul>";
  protected final String TEXT_18 = NL + " *   <li>{@link ";
  protected final String TEXT_19 = "#";
  protected final String TEXT_20 = " <em>";
  protected final String TEXT_21 = "</em>}</li>";
  protected final String TEXT_22 = NL + " * </ul>" + NL + " * </p>";
  protected final String TEXT_23 = NL + " *";
  protected final String TEXT_24 = NL + " * @see ";
  protected final String TEXT_25 = "#get";
  protected final String TEXT_26 = "()";
  protected final String TEXT_27 = NL + " * @model ";
  protected final String TEXT_28 = NL + " *        ";
  protected final String TEXT_29 = NL + " * @model";
  protected final String TEXT_30 = NL + " * @extends ";
  protected final String TEXT_31 = NL + " * @generated" + NL + " */";
  protected final String TEXT_32 = NL + "/**" + NL + " * <!-- begin-user-doc -->" + NL + " * An implementation of the model object '<em><b>";
  protected final String TEXT_33 = "</b></em>'." + NL + " * <!-- end-user-doc -->" + NL + " * <p>";
  protected final String TEXT_34 = NL + " * The following features are implemented:" + NL + " * <ul>";
  protected final String TEXT_35 = NL + " *   <li>{@link ";
  protected final String TEXT_36 = "#";
  protected final String TEXT_37 = " <em>";
  protected final String TEXT_38 = "</em>}</li>";
  protected final String TEXT_39 = NL + " * </ul>";
  protected final String TEXT_40 = NL + " * </p>" + NL + " *" + NL + " * @generated" + NL + " */";
  protected final String TEXT_41 = NL + "public";
  protected final String TEXT_42 = " abstract";
  protected final String TEXT_43 = " class ";
  protected final String TEXT_44 = NL + "public interface ";
  protected final String TEXT_45 = NL + "{";
  protected final String TEXT_46 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\t";
  protected final String TEXT_47 = " copyright = \"";
  protected final String TEXT_48 = "\";";
  protected final String TEXT_49 = NL;
  protected final String TEXT_50 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic static final ";
  protected final String TEXT_51 = " mofDriverNumber = \"";
  protected final String TEXT_52 = "\";";
  protected final String TEXT_53 = NL;
  protected final String TEXT_54 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tprivate static final long serialVersionUID = 1L;" + NL;
  protected final String TEXT_55 = NL + "\t/**" + NL + "\t * An array of objects representing the values of non-primitive features." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tprotected Object[] ";
  protected final String TEXT_56 = " = null;" + NL;
  protected final String TEXT_57 = NL + "\t/**" + NL + "\t * A bit field representing the indices of non-primitive feature values." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tprotected int ";
  protected final String TEXT_58 = " = 0;" + NL;
  protected final String TEXT_59 = NL + "\t/**" + NL + "\t * A set of bit flags representing the values of boolean attributes and whether unsettable features have been set." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t * @ordered" + NL + "\t */" + NL + "\tprotected int ";
  protected final String TEXT_60 = " = 0;" + NL;
  protected final String TEXT_61 = NL;
  protected final String TEXT_62 = NL + "\tpublic final static int ";
  protected final String TEXT_63 = " = ";
  protected final String TEXT_64 = ";" + NL;
  protected final String TEXT_65 = NL + "\tpublic final static int ";
  protected final String TEXT_66 = " = ";
  protected final String TEXT_67 = ";" + NL;
  protected final String TEXT_68 = NL + "\tpublic final static int SDO_PROPERTY_COUNT = ";
  protected final String TEXT_69 = ";" + NL;
  protected final String TEXT_70 = NL + "\tpublic final static int EXTENDED_PROPERTY_COUNT = ";
  protected final String TEXT_71 = ";" + NL + NL;
  protected final String TEXT_72 = NL + "\t/**" + NL + "\t * The internal feature id for the '<em><b>";
  protected final String TEXT_73 = "</b></em>' ";
  protected final String TEXT_74 = "." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t * @ordered" + NL + "\t */";
  protected final String TEXT_75 = " " + NL + "\tpublic final static int _INTERNAL_";
  protected final String TEXT_76 = " = ";
  protected final String TEXT_77 = ";" + NL;
  protected final String TEXT_78 = NL + "\t/**" + NL + "\t * The number of properties for this type." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t * @ordered" + NL + "\t */";
  protected final String TEXT_79 = NL + "\tpublic final static int INTERNAL_PROPERTY_COUNT = ";
  protected final String TEXT_80 = ";" + NL + "" + NL + "\tprotected int internalConvertIndex(int internalIndex)" + NL + "\t{" + NL + "\t\tswitch (internalIndex)" + NL + "\t\t{";
  protected final String TEXT_81 = NL + "\t\t\tcase _INTERNAL_";
  protected final String TEXT_82 = ": return ";
  protected final String TEXT_83 = ";";
  protected final String TEXT_84 = NL + "\t\t}" + NL + "\t\treturn super.internalConvertIndex(internalIndex);" + NL + "\t}" + NL + NL;
  protected final String TEXT_85 = NL + "\t/**" + NL + "\t * The cached value of the '{@link #";
  protected final String TEXT_86 = "() <em>";
  protected final String TEXT_87 = "</em>}' ";
  protected final String TEXT_88 = "." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @see #";
  protected final String TEXT_89 = "()" + NL + "\t * @generated" + NL + "\t * @ordered" + NL + "\t */" + NL + "\t" + NL + "\tprotected ";
  protected final String TEXT_90 = " ";
  protected final String TEXT_91 = " = null;" + NL + "\t";
  protected final String TEXT_92 = NL + "\t/**" + NL + "\t * The empty value for the '{@link #";
  protected final String TEXT_93 = "() <em>";
  protected final String TEXT_94 = "</em>}' array accessor." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @see #";
  protected final String TEXT_95 = "()" + NL + "\t * @generated" + NL + "\t * @ordered" + NL + "\t */" + NL + "\tprotected static final ";
  protected final String TEXT_96 = "[] ";
  protected final String TEXT_97 = "_EEMPTY_ARRAY = new ";
  protected final String TEXT_98 = " [0];" + NL;
  protected final String TEXT_99 = NL + "\t/**" + NL + "\t * The default value of the '{@link #";
  protected final String TEXT_100 = "() <em>";
  protected final String TEXT_101 = "</em>}' ";
  protected final String TEXT_102 = "." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @see #";
  protected final String TEXT_103 = "()" + NL + "\t * @generated" + NL + "\t * @ordered" + NL + "\t */" + NL + "\tprotected static final ";
  protected final String TEXT_104 = " ";
  protected final String TEXT_105 = "_DEFAULT_ = ";
  protected final String TEXT_106 = ";";
  protected final String TEXT_107 = NL;
  protected final String TEXT_108 = NL + "\t/**" + NL + "\t * An additional set of bit flags representing the values of boolean attributes and whether unsettable features have been set." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t * @ordered" + NL + "\t */" + NL + "\tprotected int ";
  protected final String TEXT_109 = " = 0;" + NL;
  protected final String TEXT_110 = NL + "\t/**" + NL + "\t * The flag representing the value of the '{@link #";
  protected final String TEXT_111 = "() <em>";
  protected final String TEXT_112 = "</em>}' ";
  protected final String TEXT_113 = "." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @see #";
  protected final String TEXT_114 = "()" + NL + "\t * @generated" + NL + "\t * @ordered" + NL + "\t */" + NL + "\tprotected static final int ";
  protected final String TEXT_115 = "_EFLAG = 1 ";
  protected final String TEXT_116 = ";" + NL;
  protected final String TEXT_117 = NL + "\t/**" + NL + "\t * The cached value of the '{@link #";
  protected final String TEXT_118 = "() <em>";
  protected final String TEXT_119 = "</em>}' ";
  protected final String TEXT_120 = "." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @see #";
  protected final String TEXT_121 = "()" + NL + "\t * @generated" + NL + "\t * @ordered" + NL + "\t */" + NL + "\tprotected ";
  protected final String TEXT_122 = " ";
  protected final String TEXT_123 = " = ";
  protected final String TEXT_124 = "_DEFAULT_;" + NL;
  protected final String TEXT_125 = NL + "\t/**" + NL + "\t * An additional set of bit flags representing the values of boolean attributes and whether unsettable features have been set." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t * @ordered" + NL + "\t */" + NL + "\tprotected int ";
  protected final String TEXT_126 = " = 0;" + NL;
  protected final String TEXT_127 = NL + "\t/**" + NL + "\t * The flag representing whether the ";
  protected final String TEXT_128 = " ";
  protected final String TEXT_129 = " has been set." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t * @ordered" + NL + "\t */" + NL + "\tprotected static final int ";
  protected final String TEXT_130 = "_ESETFLAG = 1 ";
  protected final String TEXT_131 = ";" + NL;
  protected final String TEXT_132 = NL + "\t/**" + NL + "\t * This is true if the ";
  protected final String TEXT_133 = " ";
  protected final String TEXT_134 = " has been set." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t * @ordered" + NL + "\t */" + NL + "\tprotected boolean ";
  protected final String TEXT_135 = "_set_ = false;" + NL;
  protected final String TEXT_136 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic ";
  protected final String TEXT_137 = "()" + NL + "\t{" + NL + "\t\tsuper();";
  protected final String TEXT_138 = NL + "\t\t";
  protected final String TEXT_139 = " |= ";
  protected final String TEXT_140 = "_EFLAG;";
  protected final String TEXT_141 = NL + "\t\tcreateChangeSummary(";
  protected final String TEXT_142 = ");";
  protected final String TEXT_143 = NL + "\t}" + NL + "" + NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic ";
  protected final String TEXT_144 = " getStaticType()" + NL + "\t{" + NL + "\t\treturn ((";
  protected final String TEXT_145 = ")";
  protected final String TEXT_146 = ".INSTANCE).get";
  protected final String TEXT_147 = "();" + NL + "\t}" + NL + "" + NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic int getStaticPropertyCount()" + NL + "\t{" + NL + "\t\treturn INTERNAL_PROPERTY_COUNT;" + NL + "\t}" + NL;
  protected final String TEXT_148 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */";
  protected final String TEXT_149 = NL + "\t";
  protected final String TEXT_150 = "[] ";
  protected final String TEXT_151 = "();" + NL;
  protected final String TEXT_152 = NL + "\tpublic ";
  protected final String TEXT_153 = "[] ";
  protected final String TEXT_154 = "()" + NL + "\t{";
  protected final String TEXT_155 = NL + "\t\t";
  protected final String TEXT_156 = " list = (";
  protected final String TEXT_157 = ")";
  protected final String TEXT_158 = "();" + NL + "\t\tif (list.isEmpty()) return ";
  protected final String TEXT_159 = "_EEMPTY_ARRAY;";
  protected final String TEXT_160 = NL + "\t\tif (";
  protected final String TEXT_161 = " == null || ";
  protected final String TEXT_162 = ".isEmpty()) return ";
  protected final String TEXT_163 = "_EEMPTY_ARRAY;" + NL + "\t\t";
  protected final String TEXT_164 = " list = (";
  protected final String TEXT_165 = ")";
  protected final String TEXT_166 = ";";
  protected final String TEXT_167 = NL + "\t\tlist.shrink();" + NL + "\t\treturn (";
  protected final String TEXT_168 = "[])list.data();" + NL + "\t}" + NL;
  protected final String TEXT_169 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */";
  protected final String TEXT_170 = NL + "\t";
  protected final String TEXT_171 = " get";
  protected final String TEXT_172 = "(int index);";
  protected final String TEXT_173 = NL + "\tpublic ";
  protected final String TEXT_174 = " get";
  protected final String TEXT_175 = "(int index)" + NL + "\t{" + NL + "\t\treturn (";
  protected final String TEXT_176 = ")";
  protected final String TEXT_177 = "().get(index);" + NL + "\t}";
  protected final String TEXT_178 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */";
  protected final String TEXT_179 = NL + "\tint get";
  protected final String TEXT_180 = "Length();" + NL;
  protected final String TEXT_181 = NL + "\tpublic int get";
  protected final String TEXT_182 = "Length()" + NL + "\t{";
  protected final String TEXT_183 = NL + "\t\treturn ";
  protected final String TEXT_184 = "().size();";
  protected final String TEXT_185 = NL + "\t\treturn ";
  protected final String TEXT_186 = " == null ? 0 : ";
  protected final String TEXT_187 = ".size();";
  protected final String TEXT_188 = NL + "\t}" + NL;
  protected final String TEXT_189 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */";
  protected final String TEXT_190 = NL + "\tvoid set";
  protected final String TEXT_191 = "(";
  protected final String TEXT_192 = "[] new";
  protected final String TEXT_193 = ");" + NL;
  protected final String TEXT_194 = NL + "\tpublic void set";
  protected final String TEXT_195 = "(";
  protected final String TEXT_196 = "[] new";
  protected final String TEXT_197 = ")" + NL + "\t{" + NL + "\t\t((";
  protected final String TEXT_198 = ")";
  protected final String TEXT_199 = "()).setData(new";
  protected final String TEXT_200 = ".length, new";
  protected final String TEXT_201 = ");" + NL + "\t}" + NL;
  protected final String TEXT_202 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */";
  protected final String TEXT_203 = NL + "\tvoid set";
  protected final String TEXT_204 = "(int index, ";
  protected final String TEXT_205 = " element);" + NL;
  protected final String TEXT_206 = NL + "\tpublic void set";
  protected final String TEXT_207 = "(int index, ";
  protected final String TEXT_208 = " element)" + NL + "\t{" + NL + "\t\t";
  protected final String TEXT_209 = "().set(index, element);" + NL + "\t}" + NL;
  protected final String TEXT_210 = NL + "\t/**" + NL + "\t * Returns the value of the '<em><b>";
  protected final String TEXT_211 = "</b></em>' ";
  protected final String TEXT_212 = ".";
  protected final String TEXT_213 = NL + "\t * The key is of type ";
  protected final String TEXT_214 = "list of {@link ";
  protected final String TEXT_215 = "}";
  protected final String TEXT_216 = "{@link ";
  protected final String TEXT_217 = "}";
  protected final String TEXT_218 = "," + NL + "\t * and the value is of type ";
  protected final String TEXT_219 = "list of {@link ";
  protected final String TEXT_220 = "}";
  protected final String TEXT_221 = "{@link ";
  protected final String TEXT_222 = "}";
  protected final String TEXT_223 = ",";
  protected final String TEXT_224 = NL + "\t * The list contents are of type {@link ";
  protected final String TEXT_225 = "}.";
  protected final String TEXT_226 = NL + "\t * The default value is <code>";
  protected final String TEXT_227 = "</code>.";
  protected final String TEXT_228 = NL + "\t * The literals are from the enumeration {@link ";
  protected final String TEXT_229 = "}.";
  protected final String TEXT_230 = NL + "\t * It is bidirectional and its opposite is '{@link ";
  protected final String TEXT_231 = "#";
  protected final String TEXT_232 = " <em>";
  protected final String TEXT_233 = "</em>}'.";
  protected final String TEXT_234 = NL + "\t * <!-- begin-user-doc -->";
  protected final String TEXT_235 = NL + "\t * <p>" + NL + "\t * If the meaning of the '<em>";
  protected final String TEXT_236 = "</em>' ";
  protected final String TEXT_237 = " isn't clear," + NL + "\t * there really should be more of a description here..." + NL + "\t * </p>";
  protected final String TEXT_238 = NL + "\t * <!-- end-user-doc -->";
  protected final String TEXT_239 = NL + "\t * <!-- begin-model-doc -->" + NL + "\t * ";
  protected final String TEXT_240 = NL + "\t * <!-- end-model-doc -->";
  protected final String TEXT_241 = NL + "\t * @return the value of the '<em>";
  protected final String TEXT_242 = "</em>' ";
  protected final String TEXT_243 = ".";
  protected final String TEXT_244 = NL + "\t * @see ";
  protected final String TEXT_245 = NL + "\t * @see #isSet";
  protected final String TEXT_246 = "()";
  protected final String TEXT_247 = NL + "\t * @see #unset";
  protected final String TEXT_248 = "()";
  protected final String TEXT_249 = NL + "\t * @see #set";
  protected final String TEXT_250 = "(";
  protected final String TEXT_251 = ")";
  protected final String TEXT_252 = NL + "\t * @see ";
  protected final String TEXT_253 = "#get";
  protected final String TEXT_254 = "()";
  protected final String TEXT_255 = NL + "\t * @see ";
  protected final String TEXT_256 = "#";
  protected final String TEXT_257 = NL + "\t * @model ";
  protected final String TEXT_258 = NL + "\t *        ";
  protected final String TEXT_259 = NL + "\t * @model";
  protected final String TEXT_260 = NL + "\t * @generated" + NL + "\t */";
  protected final String TEXT_261 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */";
  protected final String TEXT_262 = NL + "\t";
  protected final String TEXT_263 = " ";
  protected final String TEXT_264 = "();" + NL;
  protected final String TEXT_265 = NL + "\tpublic ";
  protected final String TEXT_266 = " ";
  protected final String TEXT_267 = "()" + NL + "\t{";
  protected final String TEXT_268 = NL + "\t\treturn ";
  protected final String TEXT_269 = "(";
  protected final String TEXT_270 = "(";
  protected final String TEXT_271 = ")get(";
  protected final String TEXT_272 = ", true)";
  protected final String TEXT_273 = ").";
  protected final String TEXT_274 = "()";
  protected final String TEXT_275 = ";";
  protected final String TEXT_276 = NL + "\t\t";
  protected final String TEXT_277 = " ";
  protected final String TEXT_278 = " = (";
  protected final String TEXT_279 = ")eVirtualGet(";
  protected final String TEXT_280 = ");";
  protected final String TEXT_281 = NL + "\t\tif (";
  protected final String TEXT_282 = " == null)" + NL + "\t\t{";
  protected final String TEXT_283 = NL + "\t\t\teVirtualSet(";
  protected final String TEXT_284 = ", ";
  protected final String TEXT_285 = " = new ";
  protected final String TEXT_286 = ");";
  protected final String TEXT_287 = NL + "\t\t  ";
  protected final String TEXT_288 = " = createSequence(_INTERNAL_";
  protected final String TEXT_289 = ");";
  protected final String TEXT_290 = NL + "\t\t  ";
  protected final String TEXT_291 = " = createPropertyList(";
  protected final String TEXT_292 = ", ";
  protected final String TEXT_293 = ".class, ";
  protected final String TEXT_294 = ", ";
  protected final String TEXT_295 = ");";
  protected final String TEXT_296 = NL + "\t\t}" + NL + "\t\treturn ";
  protected final String TEXT_297 = ";";
  protected final String TEXT_298 = NL + "\t\tif (eContainerFeatureID != ";
  protected final String TEXT_299 = ") return null;" + NL + "\t\treturn (";
  protected final String TEXT_300 = ")eContainer();";
  protected final String TEXT_301 = NL + "\t\t";
  protected final String TEXT_302 = " ";
  protected final String TEXT_303 = " = (";
  protected final String TEXT_304 = ")eVirtualGet(";
  protected final String TEXT_305 = ", ";
  protected final String TEXT_306 = "_DEFAULT_";
  protected final String TEXT_307 = ");";
  protected final String TEXT_308 = NL + "\t\tif (";
  protected final String TEXT_309 = " != null && isProxy(";
  protected final String TEXT_310 = "))" + NL + "\t\t{" + NL + "\t\t\tObject old";
  protected final String TEXT_311 = " = ";
  protected final String TEXT_312 = ";" + NL + "\t\t\t";
  protected final String TEXT_313 = " = ";
  protected final String TEXT_314 = "resolveProxy(old";
  protected final String TEXT_315 = ");" + NL + "\t\t\tif (";
  protected final String TEXT_316 = " != old";
  protected final String TEXT_317 = ")" + NL + "\t\t\t{";
  protected final String TEXT_318 = NL + "\t\t\t\t";
  protected final String TEXT_319 = " new";
  protected final String TEXT_320 = " = (";
  protected final String TEXT_321 = ")";
  protected final String TEXT_322 = ";";
  protected final String TEXT_323 = NL + "\t\t\t\tChangeContext changeContext = old";
  protected final String TEXT_324 = ".eInverseRemove(this, EOPPOSITE_FEATURE_BASE - ";
  protected final String TEXT_325 = ", null, null);";
  protected final String TEXT_326 = NL + "\t\t\t\t";
  protected final String TEXT_327 = " changeContext =  old";
  protected final String TEXT_328 = ".eInverseRemove(this, ";
  protected final String TEXT_329 = ", ";
  protected final String TEXT_330 = ".class, null);";
  protected final String TEXT_331 = NL + "\t\t\t\tif (new";
  protected final String TEXT_332 = ".eInternalContainer() == null)" + NL + "\t\t\t\t{";
  protected final String TEXT_333 = NL + "\t\t\t\t\tchangeContext = new";
  protected final String TEXT_334 = ".eInverseAdd(this, EOPPOSITE_FEATURE_BASE - ";
  protected final String TEXT_335 = ", null, changeContext);";
  protected final String TEXT_336 = NL + "\t\t\t\t\tchangeContext =  new";
  protected final String TEXT_337 = ".eInverseAdd(this, ";
  protected final String TEXT_338 = ", ";
  protected final String TEXT_339 = ".class, changeContext);";
  protected final String TEXT_340 = NL + "\t\t\t\t}" + NL + "\t\t\t\tif (changeContext != null) dispatch(changeContext);";
  protected final String TEXT_341 = NL + "\t\t\t\teVirtualSet(";
  protected final String TEXT_342 = ", ";
  protected final String TEXT_343 = ");";
  protected final String TEXT_344 = NL + "\t\t\t\tif (isNotifying())" + NL + "\t\t\t\t\tnotify(ChangeKind.RESOLVE, _INTERNAL_";
  protected final String TEXT_345 = ", old";
  protected final String TEXT_346 = ", ";
  protected final String TEXT_347 = ");";
  protected final String TEXT_348 = NL + "\t\t\t}" + NL + "\t\t}";
  protected final String TEXT_349 = NL + "\t\treturn (";
  protected final String TEXT_350 = ")eVirtualGet(";
  protected final String TEXT_351 = ", ";
  protected final String TEXT_352 = "_DEFAULT_";
  protected final String TEXT_353 = ");";
  protected final String TEXT_354 = NL + "\t\treturn (";
  protected final String TEXT_355 = " & ";
  protected final String TEXT_356 = "_EFLAG) != 0;";
  protected final String TEXT_357 = NL + "\t\treturn ";
  protected final String TEXT_358 = ";";
  protected final String TEXT_359 = NL + "\t\t";
  protected final String TEXT_360 = " ";
  protected final String TEXT_361 = " = basicGet";
  protected final String TEXT_362 = "();" + NL + "\t\treturn ";
  protected final String TEXT_363 = " != null && ";
  protected final String TEXT_364 = ".isProxy() ? ";
  protected final String TEXT_365 = "eResolveProxy((";
  protected final String TEXT_366 = ")";
  protected final String TEXT_367 = ") : ";
  protected final String TEXT_368 = ";";
  protected final String TEXT_369 = NL + "\t\treturn create";
  protected final String TEXT_370 = "(get";
  protected final String TEXT_371 = "(), getType(), _INTERNAL_";
  protected final String TEXT_372 = ");";
  protected final String TEXT_373 = NL + "\t\treturn (";
  protected final String TEXT_374 = ")((";
  protected final String TEXT_375 = ")get";
  protected final String TEXT_376 = "()).list(";
  protected final String TEXT_377 = ");";
  protected final String TEXT_378 = NL + "\t\treturn get";
  protected final String TEXT_379 = "(get";
  protected final String TEXT_380 = "(), getType(), _INTERNAL_";
  protected final String TEXT_381 = ");";
  protected final String TEXT_382 = NL + "\t\treturn ((";
  protected final String TEXT_383 = ")get";
  protected final String TEXT_384 = "()).list(";
  protected final String TEXT_385 = ");";
  protected final String TEXT_386 = NL + "\t\treturn ";
  protected final String TEXT_387 = "(";
  protected final String TEXT_388 = "(";
  protected final String TEXT_389 = ")get(get";
  protected final String TEXT_390 = "(), getType(), _INTERNAL_";
  protected final String TEXT_391 = ")";
  protected final String TEXT_392 = ").";
  protected final String TEXT_393 = "()";
  protected final String TEXT_394 = ";";
  protected final String TEXT_395 = NL + "\t\treturn ";
  protected final String TEXT_396 = "(";
  protected final String TEXT_397 = "(";
  protected final String TEXT_398 = ")get(get";
  protected final String TEXT_399 = "(), getType(), _INTERNAL_";
  protected final String TEXT_400 = ")";
  protected final String TEXT_401 = ").";
  protected final String TEXT_402 = "()";
  protected final String TEXT_403 = ";";
  protected final String TEXT_404 = NL + "\t\t// TODO: implement this method to return the '";
  protected final String TEXT_405 = "' ";
  protected final String TEXT_406 = NL + "\t\t// Ensure that you remove @generated or mark it @generated NOT" + NL + "\t\tthrow new UnsupportedOperationException();";
  protected final String TEXT_407 = NL + "\t}";
  protected final String TEXT_408 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic ";
  protected final String TEXT_409 = " basicGet";
  protected final String TEXT_410 = "()" + NL + "\t{";
  protected final String TEXT_411 = NL + "\t\tif (eContainerFeatureID != ";
  protected final String TEXT_412 = ") return null;" + NL + "\t\treturn (";
  protected final String TEXT_413 = ")eInternalContainer();";
  protected final String TEXT_414 = NL + "\t\treturn (";
  protected final String TEXT_415 = ")eVirtualGet(";
  protected final String TEXT_416 = ");";
  protected final String TEXT_417 = NL + "\t\treturn ";
  protected final String TEXT_418 = ";";
  protected final String TEXT_419 = NL + "\t\treturn (";
  protected final String TEXT_420 = ")get(get";
  protected final String TEXT_421 = "(), getType(), _INTERNAL_";
  protected final String TEXT_422 = ");";
  protected final String TEXT_423 = NL + "\t\treturn (";
  protected final String TEXT_424 = ")get";
  protected final String TEXT_425 = "().get(";
  protected final String TEXT_426 = ", false);";
  protected final String TEXT_427 = NL + "\t\t// TODO: implement this method to return the '";
  protected final String TEXT_428 = "' ";
  protected final String TEXT_429 = NL + "\t\t// -> do not perform proxy resolution" + NL + "\t\t// Ensure that you remove @generated or mark it @generated NOT" + NL + "\t\tthrow new UnsupportedOperationException();";
  protected final String TEXT_430 = NL + "\t}" + NL;
  protected final String TEXT_431 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic ChangeContext basicSet";
  protected final String TEXT_432 = "(";
  protected final String TEXT_433 = " new";
  protected final String TEXT_434 = ", ChangeContext changeContext)" + NL + "\t{";
  protected final String TEXT_435 = NL + "\t\tObject old";
  protected final String TEXT_436 = " = eVirtualSet(";
  protected final String TEXT_437 = ", new";
  protected final String TEXT_438 = ");";
  protected final String TEXT_439 = NL + "\t\t";
  protected final String TEXT_440 = " old";
  protected final String TEXT_441 = " = ";
  protected final String TEXT_442 = ";" + NL + "\t\t";
  protected final String TEXT_443 = " = new";
  protected final String TEXT_444 = ";";
  protected final String TEXT_445 = NL + "\t\tboolean isSetChange = old";
  protected final String TEXT_446 = " == EVIRTUAL_NO_VALUE;";
  protected final String TEXT_447 = NL + "\t\tboolean old";
  protected final String TEXT_448 = "_set_ = (";
  protected final String TEXT_449 = " & ";
  protected final String TEXT_450 = "_ESETFLAG) != 0;" + NL + "\t\t";
  protected final String TEXT_451 = " |= ";
  protected final String TEXT_452 = "_ESETFLAG;";
  protected final String TEXT_453 = NL + "\t\tboolean old";
  protected final String TEXT_454 = "_set_ = ";
  protected final String TEXT_455 = "_set_;" + NL + "\t\t";
  protected final String TEXT_456 = "_set_ = true;";
  protected final String TEXT_457 = NL + "\t\tif (isNotifying())" + NL + "\t\t{";
  protected final String TEXT_458 = NL + "\t\t\taddNotification(this, ChangeKind.SET, _INTERNAL_";
  protected final String TEXT_459 = ", ";
  protected final String TEXT_460 = "isSetChange ? null : old";
  protected final String TEXT_461 = "old";
  protected final String TEXT_462 = ", new";
  protected final String TEXT_463 = ", ";
  protected final String TEXT_464 = "isSetChange";
  protected final String TEXT_465 = "!old";
  protected final String TEXT_466 = "_set_";
  protected final String TEXT_467 = ", changeContext);";
  protected final String TEXT_468 = NL + "\t\t\taddNotification(this, ChangeKind.SET, _INTERNAL_";
  protected final String TEXT_469 = ", ";
  protected final String TEXT_470 = "old";
  protected final String TEXT_471 = " == EVIRTUAL_NO_VALUE ? null : old";
  protected final String TEXT_472 = "old";
  protected final String TEXT_473 = ", new";
  protected final String TEXT_474 = ", changeContext);";
  protected final String TEXT_475 = NL + "\t\t}";
  protected final String TEXT_476 = NL + "\t\treturn changeContext;";
  protected final String TEXT_477 = NL + "\t\treturn basicAdd(get";
  protected final String TEXT_478 = "(), getType(), _INTERNAL_";
  protected final String TEXT_479 = ", new";
  protected final String TEXT_480 = ", changeContext);";
  protected final String TEXT_481 = NL + "\t\treturn basicAdd(get";
  protected final String TEXT_482 = "(), getType(), _INTERNAL_";
  protected final String TEXT_483 = ", new";
  protected final String TEXT_484 = ", changeContext);";
  protected final String TEXT_485 = NL + "\t\t// TODO: implement this method to set the contained '";
  protected final String TEXT_486 = "' ";
  protected final String TEXT_487 = NL + "\t\t// -> this method is automatically invoked to keep the containment relationship in synch" + NL + "\t\t// -> do not modify other features" + NL + "\t\t// -> return changeContext, after adding any generated Notification to it (if it is null, a NotificationChain object must be created first)" + NL + "\t\t// Ensure that you remove @generated or mark it @generated NOT" + NL + "\t\tthrow new UnsupportedOperationException();";
  protected final String TEXT_488 = NL + "\t}" + NL;
  protected final String TEXT_489 = NL + "\t/**" + NL + "\t * Sets the value of the '{@link ";
  protected final String TEXT_490 = "#";
  protected final String TEXT_491 = " <em>";
  protected final String TEXT_492 = "</em>}' ";
  protected final String TEXT_493 = "." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @param value the new value of the '<em>";
  protected final String TEXT_494 = "</em>' ";
  protected final String TEXT_495 = ".";
  protected final String TEXT_496 = NL + "\t * @see ";
  protected final String TEXT_497 = NL + "\t * @see #isSet";
  protected final String TEXT_498 = "()";
  protected final String TEXT_499 = NL + "\t * @see #unset";
  protected final String TEXT_500 = "()";
  protected final String TEXT_501 = NL + "\t * @see #";
  protected final String TEXT_502 = "()" + NL + "\t * @generated" + NL + "\t */";
  protected final String TEXT_503 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */";
  protected final String TEXT_504 = NL + "\tvoid set";
  protected final String TEXT_505 = "(";
  protected final String TEXT_506 = " value);" + NL;
  protected final String TEXT_507 = NL + "\tpublic void set";
  protected final String TEXT_508 = "(";
  protected final String TEXT_509 = " new";
  protected final String TEXT_510 = ")" + NL + "\t{";
  protected final String TEXT_511 = NL + "\t\t_set_(";
  protected final String TEXT_512 = ", ";
  protected final String TEXT_513 = "new ";
  protected final String TEXT_514 = "(";
  protected final String TEXT_515 = "new";
  protected final String TEXT_516 = ")";
  protected final String TEXT_517 = ");";
  protected final String TEXT_518 = NL + "\t\tif (new";
  protected final String TEXT_519 = " != eInternalContainer() || (eContainerFeatureID != ";
  protected final String TEXT_520 = " && new";
  protected final String TEXT_521 = " != null))" + NL + "\t\t{" + NL + "\t\t\tif (";
  protected final String TEXT_522 = ".isAncestor(this, ";
  protected final String TEXT_523 = "new";
  protected final String TEXT_524 = "))" + NL + "\t\t\t\tthrow new ";
  protected final String TEXT_525 = "(\"Recursive containment not allowed for \" + toString());";
  protected final String TEXT_526 = NL + "\t\t\tChangeContext changeContext = null;" + NL + "\t\t\tif (eInternalContainer() != null)" + NL + "\t\t\t\tchangeContext = eBasicRemoveFromContainer(changeContext);" + NL + "\t\t\tif (new";
  protected final String TEXT_527 = " != null)" + NL + "\t\t\t\tchangeContext = ((";
  protected final String TEXT_528 = ")new";
  protected final String TEXT_529 = ").eInverseAdd(this, ";
  protected final String TEXT_530 = ", ";
  protected final String TEXT_531 = ".class, changeContext);" + NL + "\t\t\tchangeContext = eBasicSetContainer((";
  protected final String TEXT_532 = ")new";
  protected final String TEXT_533 = ", ";
  protected final String TEXT_534 = ", changeContext);" + NL + "\t\t\tif (changeContext != null) dispatch(changeContext);" + NL + "\t\t}";
  protected final String TEXT_535 = NL + "\t\telse if (isNotifying())" + NL + "\t\t\tnotify(ChangeKind.SET, _INTERNAL_";
  protected final String TEXT_536 = ", new";
  protected final String TEXT_537 = ", new";
  protected final String TEXT_538 = ");";
  protected final String TEXT_539 = NL + "\t\t";
  protected final String TEXT_540 = " ";
  protected final String TEXT_541 = " = (";
  protected final String TEXT_542 = ")eVirtualGet(";
  protected final String TEXT_543 = ");";
  protected final String TEXT_544 = NL + "\t\tif (new";
  protected final String TEXT_545 = " != ";
  protected final String TEXT_546 = ")" + NL + "\t\t{" + NL + "\t\t\tChangeContext changeContext = null;" + NL + "\t\t\tif (";
  protected final String TEXT_547 = " != null)";
  protected final String TEXT_548 = NL + "\t\t\t\tchangeContext = inverseRemove(";
  protected final String TEXT_549 = ", this, OPPOSITE_FEATURE_BASE - _INTERNAL_";
  protected final String TEXT_550 = ", null, changeContext);" + NL + "\t\t\tif (new";
  protected final String TEXT_551 = " != null)" + NL + "\t\t\t\tchangeContext = inverseAdd(new";
  protected final String TEXT_552 = ", this, OPPOSITE_FEATURE_BASE - _INTERNAL_";
  protected final String TEXT_553 = ", null, changeContext);";
  protected final String TEXT_554 = NL + "\t\t\t\tchangeContext = inverseRemove(";
  protected final String TEXT_555 = ", this, ";
  protected final String TEXT_556 = ", ";
  protected final String TEXT_557 = ".class, changeContext);" + NL + "\t\t\tif (new";
  protected final String TEXT_558 = " != null)" + NL + "\t\t\t\tchangeContext = inverseAdd(new";
  protected final String TEXT_559 = ", this, ";
  protected final String TEXT_560 = ", ";
  protected final String TEXT_561 = ".class, changeContext);";
  protected final String TEXT_562 = NL + "\t\t\tchangeContext = basicSet";
  protected final String TEXT_563 = "(";
  protected final String TEXT_564 = "new";
  protected final String TEXT_565 = ", changeContext);" + NL + "\t\t\tif (changeContext != null) dispatch(changeContext);" + NL + "\t\t}";
  protected final String TEXT_566 = NL + "\t\telse" + NL + "\t\t{";
  protected final String TEXT_567 = NL + "\t\t\tboolean old";
  protected final String TEXT_568 = "_set_ = eVirtualIsSet(";
  protected final String TEXT_569 = ");";
  protected final String TEXT_570 = NL + "\t\t\tboolean old";
  protected final String TEXT_571 = "_set_ = (";
  protected final String TEXT_572 = " & ";
  protected final String TEXT_573 = "_ESETFLAG) != 0;";
  protected final String TEXT_574 = NL + "\t\t\t";
  protected final String TEXT_575 = " |= ";
  protected final String TEXT_576 = "_ESETFLAG;";
  protected final String TEXT_577 = NL + "\t\t\tboolean old";
  protected final String TEXT_578 = "_set_ = ";
  protected final String TEXT_579 = "_set_;";
  protected final String TEXT_580 = NL + "\t\t\t";
  protected final String TEXT_581 = "_set_ = true;";
  protected final String TEXT_582 = NL + "\t\t\tif (isNotifying())" + NL + "\t\t\t\tnotify(ChangeKind.SET, _INTERNAL_";
  protected final String TEXT_583 = ", new";
  protected final String TEXT_584 = ", new";
  protected final String TEXT_585 = ", !old";
  protected final String TEXT_586 = "_set_);";
  protected final String TEXT_587 = NL + "\t\t}";
  protected final String TEXT_588 = NL + "\t\telse if (isNotifying())" + NL + "\t\t\tnotify(ChangeKind.SET, _INTERNAL_";
  protected final String TEXT_589 = ", new";
  protected final String TEXT_590 = ", new";
  protected final String TEXT_591 = ");";
  protected final String TEXT_592 = NL + "\t\t";
  protected final String TEXT_593 = " old";
  protected final String TEXT_594 = " = (";
  protected final String TEXT_595 = " & ";
  protected final String TEXT_596 = "_EFLAG) != 0;";
  protected final String TEXT_597 = NL + "\t\tif (new";
  protected final String TEXT_598 = ") ";
  protected final String TEXT_599 = " |= ";
  protected final String TEXT_600 = "_EFLAG; else ";
  protected final String TEXT_601 = " &= ~";
  protected final String TEXT_602 = "_EFLAG;";
  protected final String TEXT_603 = NL + "\t\t";
  protected final String TEXT_604 = " old";
  protected final String TEXT_605 = " = ";
  protected final String TEXT_606 = ";";
  protected final String TEXT_607 = NL + "\t\t";
  protected final String TEXT_608 = " ";
  protected final String TEXT_609 = " = new";
  protected final String TEXT_610 = " == null ? ";
  protected final String TEXT_611 = "_DEFAULT_ : new";
  protected final String TEXT_612 = ";";
  protected final String TEXT_613 = NL + "\t\t";
  protected final String TEXT_614 = " = new";
  protected final String TEXT_615 = " == null ? ";
  protected final String TEXT_616 = "_DEFAULT_ : new";
  protected final String TEXT_617 = ";";
  protected final String TEXT_618 = NL + "\t\t";
  protected final String TEXT_619 = " ";
  protected final String TEXT_620 = " = ";
  protected final String TEXT_621 = "new";
  protected final String TEXT_622 = ";";
  protected final String TEXT_623 = NL + "\t\t";
  protected final String TEXT_624 = " = ";
  protected final String TEXT_625 = "new";
  protected final String TEXT_626 = ";";
  protected final String TEXT_627 = NL + "\t\tObject old";
  protected final String TEXT_628 = " = eVirtualSet(";
  protected final String TEXT_629 = ", ";
  protected final String TEXT_630 = ");";
  protected final String TEXT_631 = NL + "\t\tboolean isSetChange = old";
  protected final String TEXT_632 = " == EVIRTUAL_NO_VALUE;";
  protected final String TEXT_633 = NL + "\t\tboolean old";
  protected final String TEXT_634 = "_set_ = (";
  protected final String TEXT_635 = " & ";
  protected final String TEXT_636 = "_ESETFLAG) != 0;";
  protected final String TEXT_637 = NL + "\t\t";
  protected final String TEXT_638 = " |= ";
  protected final String TEXT_639 = "_ESETFLAG;";
  protected final String TEXT_640 = NL + "\t\tboolean old";
  protected final String TEXT_641 = "_set_ = ";
  protected final String TEXT_642 = "_set_;";
  protected final String TEXT_643 = NL + "\t\t";
  protected final String TEXT_644 = "_set_ = true;";
  protected final String TEXT_645 = NL + "\t\tif (isNotifying())" + NL + "\t\t\tnotify(ChangeKind.SET, _INTERNAL_";
  protected final String TEXT_646 = ", ";
  protected final String TEXT_647 = "isSetChange ? ";
  protected final String TEXT_648 = "null";
  protected final String TEXT_649 = "_DEFAULT_";
  protected final String TEXT_650 = " : old";
  protected final String TEXT_651 = "old";
  protected final String TEXT_652 = ", ";
  protected final String TEXT_653 = "new";
  protected final String TEXT_654 = ", ";
  protected final String TEXT_655 = "isSetChange";
  protected final String TEXT_656 = "!old";
  protected final String TEXT_657 = "_set_";
  protected final String TEXT_658 = ");";
  protected final String TEXT_659 = NL + "\t\tif (isNotifying())" + NL + "\t\t\tnotify(ChangeKind.SET, _INTERNAL_";
  protected final String TEXT_660 = ", ";
  protected final String TEXT_661 = "old";
  protected final String TEXT_662 = " == EVIRTUAL_NO_VALUE ? ";
  protected final String TEXT_663 = "null";
  protected final String TEXT_664 = "_DEFAULT_";
  protected final String TEXT_665 = " : old";
  protected final String TEXT_666 = "old";
  protected final String TEXT_667 = ", ";
  protected final String TEXT_668 = "new";
  protected final String TEXT_669 = ");";
  protected final String TEXT_670 = NL + "\t\tset(get";
  protected final String TEXT_671 = "(), getType(), _INTERNAL_";
  protected final String TEXT_672 = ", ";
  protected final String TEXT_673 = " new ";
  protected final String TEXT_674 = "(";
  protected final String TEXT_675 = "new";
  protected final String TEXT_676 = ")";
  protected final String TEXT_677 = ");";
  protected final String TEXT_678 = NL + "\t\t((";
  protected final String TEXT_679 = ".Internal)get";
  protected final String TEXT_680 = "()).set(";
  protected final String TEXT_681 = ", ";
  protected final String TEXT_682 = "new ";
  protected final String TEXT_683 = "(";
  protected final String TEXT_684 = "new";
  protected final String TEXT_685 = ")";
  protected final String TEXT_686 = ");";
  protected final String TEXT_687 = NL + "\t\t// TODO: implement this method to set the '";
  protected final String TEXT_688 = "' ";
  protected final String TEXT_689 = NL + "\t\t// Ensure that you remove @generated or mark it @generated NOT" + NL + "\t\tthrow new UnsupportedOperationException();";
  protected final String TEXT_690 = NL + "\t}" + NL;
  protected final String TEXT_691 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic ChangeContext basicUnset";
  protected final String TEXT_692 = "(ChangeContext changeContext)" + NL + "\t{";
  protected final String TEXT_693 = NL + "\t\tObject old";
  protected final String TEXT_694 = " = eVirtualUnset(";
  protected final String TEXT_695 = ");";
  protected final String TEXT_696 = NL + "\t\t";
  protected final String TEXT_697 = " old";
  protected final String TEXT_698 = " = ";
  protected final String TEXT_699 = ";" + NL + "\t\t";
  protected final String TEXT_700 = " = null;";
  protected final String TEXT_701 = NL + "\t\tboolean isSetChange = old";
  protected final String TEXT_702 = " != EVIRTUAL_NO_VALUE;";
  protected final String TEXT_703 = NL + "\t\tboolean old";
  protected final String TEXT_704 = "_set_ = (";
  protected final String TEXT_705 = " & ";
  protected final String TEXT_706 = "_ESETFLAG) != 0;" + NL + "\t\t";
  protected final String TEXT_707 = " &= ~";
  protected final String TEXT_708 = "_ESETFLAG;";
  protected final String TEXT_709 = NL + "\t\tboolean old";
  protected final String TEXT_710 = "_set_ = ";
  protected final String TEXT_711 = "_set_;" + NL + "\t\t";
  protected final String TEXT_712 = "_set_ = false;";
  protected final String TEXT_713 = NL + "\t\tif (isNotifying())" + NL + "\t\t{";
  protected final String TEXT_714 = NL + "\t\t\taddNotification(this, ChangeKind.UNSET, _INTERNAL_";
  protected final String TEXT_715 = ", ";
  protected final String TEXT_716 = "isSetChange ? null : old";
  protected final String TEXT_717 = "old";
  protected final String TEXT_718 = ", null, ";
  protected final String TEXT_719 = "isSetChange";
  protected final String TEXT_720 = "!old";
  protected final String TEXT_721 = "_set_";
  protected final String TEXT_722 = ", changeContext);";
  protected final String TEXT_723 = NL + "\t\t\taddNotification(this, ChangeKind.UNSET, _INTERNAL_";
  protected final String TEXT_724 = ", ";
  protected final String TEXT_725 = "old";
  protected final String TEXT_726 = " == EVIRTUAL_NO_VALUE ? null : old";
  protected final String TEXT_727 = "old";
  protected final String TEXT_728 = ", null, changeContext);";
  protected final String TEXT_729 = NL + "\t\t}";
  protected final String TEXT_730 = NL + "\t\treturn changeContext;";
  protected final String TEXT_731 = NL + "\t\t// TODO: implement this method to unset the contained '";
  protected final String TEXT_732 = "' ";
  protected final String TEXT_733 = NL + "\t\t// -> this method is automatically invoked to keep the containment relationship in synch" + NL + "\t\t// -> do not modify other features" + NL + "\t\t// -> return changeContext, after adding any generated Notification to it (if it is null, a NotificationChain object must be created first)" + NL + "\t\t// Ensure that you remove @generated or mark it @generated NOT" + NL + "\t\tthrow new UnsupportedOperationException();";
  protected final String TEXT_734 = NL + "\t}" + NL;
  protected final String TEXT_735 = NL + "\t/**" + NL + "\t * Unsets the value of the '{@link ";
  protected final String TEXT_736 = "#";
  protected final String TEXT_737 = " <em>";
  protected final String TEXT_738 = "</em>}' ";
  protected final String TEXT_739 = "." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->";
  protected final String TEXT_740 = NL + "\t * @see #isSet";
  protected final String TEXT_741 = "()";
  protected final String TEXT_742 = NL + "\t * @see #";
  protected final String TEXT_743 = "()";
  protected final String TEXT_744 = NL + "\t * @see #set";
  protected final String TEXT_745 = "(";
  protected final String TEXT_746 = ")";
  protected final String TEXT_747 = NL + "\t * @generated" + NL + "\t */";
  protected final String TEXT_748 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */";
  protected final String TEXT_749 = NL + "\tvoid unset";
  protected final String TEXT_750 = "();" + NL;
  protected final String TEXT_751 = NL + "\tpublic void unset";
  protected final String TEXT_752 = "()" + NL + "\t{";
  protected final String TEXT_753 = NL + "\t\tunset(";
  protected final String TEXT_754 = ");";
  protected final String TEXT_755 = NL + "\t\t((";
  protected final String TEXT_756 = ".Unsettable)get";
  protected final String TEXT_757 = "()).unset();";
  protected final String TEXT_758 = NL + "\t\t";
  protected final String TEXT_759 = " ";
  protected final String TEXT_760 = " = (";
  protected final String TEXT_761 = ")eVirtualGet(";
  protected final String TEXT_762 = ");";
  protected final String TEXT_763 = NL + "\t\tif (";
  protected final String TEXT_764 = " != null)" + NL + "\t\t{" + NL + "\t\t\tChangeContext changeContext = null;";
  protected final String TEXT_765 = NL + "\t\t\tchangeContext = inverseRemove(";
  protected final String TEXT_766 = ", this, EOPPOSITE_FEATURE_BASE - _INTERNAL_";
  protected final String TEXT_767 = ", null, changeContext);";
  protected final String TEXT_768 = NL + "\t\t\tchangeContext = inverseRemove(";
  protected final String TEXT_769 = ", this, ";
  protected final String TEXT_770 = ", ";
  protected final String TEXT_771 = ".class, changeContext);";
  protected final String TEXT_772 = NL + "\t\t\tchangeContext = basicUnset";
  protected final String TEXT_773 = "(changeContext);" + NL + "\t\t\tif (changeContext != null) dispatch(changeContext);" + NL + "\t\t}" + NL + "\t\telse" + NL + "    \t{";
  protected final String TEXT_774 = NL + "\t\t\tboolean old";
  protected final String TEXT_775 = "_set_ = eVirtualIsSet(";
  protected final String TEXT_776 = ");";
  protected final String TEXT_777 = NL + "\t\t\tboolean old";
  protected final String TEXT_778 = "_set_ = (";
  protected final String TEXT_779 = " & ";
  protected final String TEXT_780 = "_ESETFLAG) != 0;";
  protected final String TEXT_781 = NL + "\t\t\t";
  protected final String TEXT_782 = " &= ~";
  protected final String TEXT_783 = "_ESETFLAG;";
  protected final String TEXT_784 = NL + "\t\t\tboolean old";
  protected final String TEXT_785 = "_set_ = ";
  protected final String TEXT_786 = "_set_;";
  protected final String TEXT_787 = NL + "\t\t\t";
  protected final String TEXT_788 = "_set_ = false;";
  protected final String TEXT_789 = NL + "\t\t\tif (isNotifying())" + NL + "\t\t\t\tnotify(ChangeKind.UNSET, _INTERNAL_";
  protected final String TEXT_790 = ", null, null, old";
  protected final String TEXT_791 = "_set_);";
  protected final String TEXT_792 = NL + "    \t}";
  protected final String TEXT_793 = NL + "\t\t";
  protected final String TEXT_794 = " old";
  protected final String TEXT_795 = " = (";
  protected final String TEXT_796 = " & ";
  protected final String TEXT_797 = "_EFLAG) != 0;";
  protected final String TEXT_798 = NL + "\t\tObject old";
  protected final String TEXT_799 = " = eVirtualUnset(";
  protected final String TEXT_800 = ");";
  protected final String TEXT_801 = NL + "\t\t";
  protected final String TEXT_802 = " old";
  protected final String TEXT_803 = " = ";
  protected final String TEXT_804 = ";";
  protected final String TEXT_805 = NL + "\t\tboolean isSetChange = old";
  protected final String TEXT_806 = " != EVIRTUAL_NO_VALUE;";
  protected final String TEXT_807 = NL + "\t\tboolean old";
  protected final String TEXT_808 = "_set_ = (";
  protected final String TEXT_809 = " & ";
  protected final String TEXT_810 = "_ESETFLAG) != 0;";
  protected final String TEXT_811 = NL + "\t\tboolean old";
  protected final String TEXT_812 = "_set_ = ";
  protected final String TEXT_813 = "_set_;";
  protected final String TEXT_814 = NL + "\t\t";
  protected final String TEXT_815 = " = null;";
  protected final String TEXT_816 = NL + "\t\t";
  protected final String TEXT_817 = " &= ~";
  protected final String TEXT_818 = "_ESETFLAG;";
  protected final String TEXT_819 = NL + "\t\t";
  protected final String TEXT_820 = "_set_ = false;";
  protected final String TEXT_821 = NL + "\t\tif (isNotifying())" + NL + "\t\t\tnotify(ChangeKind.UNSET, _INTERNAL_";
  protected final String TEXT_822 = ", ";
  protected final String TEXT_823 = "isSetChange ? old";
  protected final String TEXT_824 = " : null";
  protected final String TEXT_825 = "old";
  protected final String TEXT_826 = ", null, ";
  protected final String TEXT_827 = "isSetChange";
  protected final String TEXT_828 = "old";
  protected final String TEXT_829 = "_set_";
  protected final String TEXT_830 = ");";
  protected final String TEXT_831 = NL + "\t\tif (";
  protected final String TEXT_832 = "_DEFAULT_) ";
  protected final String TEXT_833 = " |= ";
  protected final String TEXT_834 = "_EFLAG; else ";
  protected final String TEXT_835 = " &= ~";
  protected final String TEXT_836 = "_EFLAG;";
  protected final String TEXT_837 = NL + "\t\t";
  protected final String TEXT_838 = " = ";
  protected final String TEXT_839 = "_DEFAULT_;";
  protected final String TEXT_840 = NL + "\t\t";
  protected final String TEXT_841 = " &= ~";
  protected final String TEXT_842 = "_ESETFLAG;";
  protected final String TEXT_843 = NL + "\t\t";
  protected final String TEXT_844 = "_set_ = false;";
  protected final String TEXT_845 = NL + "\t\tif (isNotifying())" + NL + "\t\t\tnotify(ChangeKind.UNSET, _INTERNAL_";
  protected final String TEXT_846 = ", ";
  protected final String TEXT_847 = "isSetChange ? old";
  protected final String TEXT_848 = " : ";
  protected final String TEXT_849 = "_DEFAULT_";
  protected final String TEXT_850 = "old";
  protected final String TEXT_851 = ", ";
  protected final String TEXT_852 = "_DEFAULT_, ";
  protected final String TEXT_853 = "isSetChange";
  protected final String TEXT_854 = "old";
  protected final String TEXT_855 = "_set_";
  protected final String TEXT_856 = ");";
  protected final String TEXT_857 = NL + "        unset(get";
  protected final String TEXT_858 = "(), getType(), _INTERNAL_";
  protected final String TEXT_859 = ");";
  protected final String TEXT_860 = NL + "        unset";
  protected final String TEXT_861 = "(get";
  protected final String TEXT_862 = "());";
  protected final String TEXT_863 = NL + "\t\t// TODO: implement this method to unset the '";
  protected final String TEXT_864 = "' ";
  protected final String TEXT_865 = NL + "\t\t// Ensure that you remove @generated or mark it @generated NOT" + NL + "\t\tthrow new UnsupportedOperationException();";
  protected final String TEXT_866 = NL + "\t}" + NL;
  protected final String TEXT_867 = NL + "\t/**" + NL + "\t * Returns whether the value of the '{@link ";
  protected final String TEXT_868 = "#";
  protected final String TEXT_869 = " <em>";
  protected final String TEXT_870 = "</em>}' ";
  protected final String TEXT_871 = " is set." + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @return whether the value of the '<em>";
  protected final String TEXT_872 = "</em>' ";
  protected final String TEXT_873 = " is set.";
  protected final String TEXT_874 = NL + "\t * @see #unset";
  protected final String TEXT_875 = "()";
  protected final String TEXT_876 = NL + "\t * @see #";
  protected final String TEXT_877 = "()";
  protected final String TEXT_878 = NL + "\t * @see #set";
  protected final String TEXT_879 = "(";
  protected final String TEXT_880 = ")";
  protected final String TEXT_881 = NL + "\t * @generated" + NL + "\t */";
  protected final String TEXT_882 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */";
  protected final String TEXT_883 = NL + "\tboolean isSet";
  protected final String TEXT_884 = "();" + NL;
  protected final String TEXT_885 = NL + "\tpublic boolean isSet";
  protected final String TEXT_886 = "()" + NL + "\t{";
  protected final String TEXT_887 = NL + "\t\treturn isSet(";
  protected final String TEXT_888 = ");";
  protected final String TEXT_889 = NL + "\t\t";
  protected final String TEXT_890 = " ";
  protected final String TEXT_891 = " = (";
  protected final String TEXT_892 = ")eVirtualGet(";
  protected final String TEXT_893 = ");";
  protected final String TEXT_894 = NL + "\t\treturn ";
  protected final String TEXT_895 = " != null && ((";
  protected final String TEXT_896 = ".Unsettable)";
  protected final String TEXT_897 = ").isSet();";
  protected final String TEXT_898 = NL + "\t\treturn eVirtualIsSet(";
  protected final String TEXT_899 = ");";
  protected final String TEXT_900 = NL + "\t\treturn (";
  protected final String TEXT_901 = " & ";
  protected final String TEXT_902 = "_ESETFLAG) != 0;";
  protected final String TEXT_903 = NL + "\t\treturn ";
  protected final String TEXT_904 = "_set_;";
  protected final String TEXT_905 = NL + "        return isSet(get";
  protected final String TEXT_906 = "(), getType(), _INTERNAL_";
  protected final String TEXT_907 = ");";
  protected final String TEXT_908 = NL + "\t\treturn !((";
  protected final String TEXT_909 = ".Internal)get";
  protected final String TEXT_910 = "()).isEmpty(";
  protected final String TEXT_911 = ");";
  protected final String TEXT_912 = NL + "\t\t// TODO: implement this method to return whether the '";
  protected final String TEXT_913 = "' ";
  protected final String TEXT_914 = " is set" + NL + "\t\t// Ensure that you remove @generated or mark it @generated NOT" + NL + "\t\tthrow new UnsupportedOperationException();";
  protected final String TEXT_915 = NL + "\t}" + NL;
  protected final String TEXT_916 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->";
  protected final String TEXT_917 = NL + "\t * <!-- begin-model-doc -->" + NL + "\t * ";
  protected final String TEXT_918 = NL + "\t * <!-- end-model-doc -->";
  protected final String TEXT_919 = NL + "\t * @model ";
  protected final String TEXT_920 = NL + "\t *        ";
  protected final String TEXT_921 = NL + "\t * @model";
  protected final String TEXT_922 = NL + "\t * @generated" + NL + "\t */";
  protected final String TEXT_923 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */";
  protected final String TEXT_924 = NL + "\t";
  protected final String TEXT_925 = " ";
  protected final String TEXT_926 = "(";
  protected final String TEXT_927 = ")";
  protected final String TEXT_928 = ";" + NL;
  protected final String TEXT_929 = NL + "\tpublic ";
  protected final String TEXT_930 = " ";
  protected final String TEXT_931 = "(";
  protected final String TEXT_932 = ")";
  protected final String TEXT_933 = NL + "\t{";
  protected final String TEXT_934 = NL + "\t\t";
  protected final String TEXT_935 = NL + "\t\t// TODO: implement this method" + NL + "\t\t// -> specify the condition that violates the invariant" + NL + "\t\t// -> verify the details of the diagnostic, including severity and message" + NL + "\t\t// Ensure that you remove @generated or mark it @generated NOT" + NL + "\t\tif (false)" + NL + "\t\t{" + NL + "\t\t\tif (";
  protected final String TEXT_936 = " != null)" + NL + "\t\t\t{" + NL + "\t\t\t\t";
  protected final String TEXT_937 = ".add" + NL + "\t\t\t\t\t(new ";
  protected final String TEXT_938 = NL + "\t\t\t\t\t\t(";
  protected final String TEXT_939 = ".ERROR," + NL + "\t\t\t\t\t\t ";
  protected final String TEXT_940 = ".DIAGNOSTIC_SOURCE," + NL + "\t\t\t\t\t\t ";
  protected final String TEXT_941 = ".";
  protected final String TEXT_942 = "," + NL + "\t\t\t\t\t\t ";
  protected final String TEXT_943 = ".INSTANCE.getString(\"_UI_GenericInvariant_diagnostic\", new Object[] { \"";
  protected final String TEXT_944 = "\", ";
  protected final String TEXT_945 = ".getObjectLabel(this, ";
  protected final String TEXT_946 = ") }),";
  protected final String TEXT_947 = NL + "\t\t\t\t\t\t new Object [] { this }));" + NL + "\t\t\t}" + NL + "\t\t\treturn false;" + NL + "\t\t}" + NL + "\t\treturn true;";
  protected final String TEXT_948 = NL + "\t\t// TODO: implement this method" + NL + "\t\t// Ensure that you remove @generated or mark it @generated NOT" + NL + "\t\tthrow new UnsupportedOperationException();";
  protected final String TEXT_949 = NL + "\t}" + NL;
  protected final String TEXT_950 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic ChangeContext eInverseAdd(";
  protected final String TEXT_951 = " otherEnd, int propertyIndex, ChangeContext changeContext)" + NL + "\t{" + NL + "\t\tswitch (propertyIndex)" + NL + "\t\t{";
  protected final String TEXT_952 = NL + "\t\t\tcase ";
  protected final String TEXT_953 = ":";
  protected final String TEXT_954 = NL + "\t\t\t\treturn ((";
  protected final String TEXT_955 = ")((";
  protected final String TEXT_956 = ".InternalMapView)";
  protected final String TEXT_957 = "()).eMap()).basicAdd(otherEnd, changeContext);";
  protected final String TEXT_958 = NL + "\t\t\t\treturn ((";
  protected final String TEXT_959 = ")";
  protected final String TEXT_960 = "()).basicAdd(otherEnd, changeContext);";
  protected final String TEXT_961 = NL + "\t\t\t\tif (eInternalContainer() != null)" + NL + "\t\t\t\t\tchangeContext = eBasicRemoveFromContainer(changeContext);" + NL + "\t\t\t\treturn eBasicSetContainer(otherEnd, ";
  protected final String TEXT_962 = ", changeContext);";
  protected final String TEXT_963 = NL + "\t\t\t\t";
  protected final String TEXT_964 = " ";
  protected final String TEXT_965 = " = (";
  protected final String TEXT_966 = ")eVirtualGet(";
  protected final String TEXT_967 = ");";
  protected final String TEXT_968 = NL + "\t\t\t\tif (";
  protected final String TEXT_969 = " != null)";
  protected final String TEXT_970 = NL + "\t\t\t\t\tchangeContext = ((";
  protected final String TEXT_971 = ")";
  protected final String TEXT_972 = ").eInverseRemove(this, EOPPOSITE_FEATURE_BASE - ";
  protected final String TEXT_973 = ", null, changeContext);";
  protected final String TEXT_974 = NL + "\t\t\t\t\tchangeContext = ((";
  protected final String TEXT_975 = ")";
  protected final String TEXT_976 = ").eInverseRemove(this, ";
  protected final String TEXT_977 = ", ";
  protected final String TEXT_978 = ".class, changeContext);";
  protected final String TEXT_979 = NL + "\t\t\t\treturn basicSet";
  protected final String TEXT_980 = "((";
  protected final String TEXT_981 = ")otherEnd, changeContext);";
  protected final String TEXT_982 = NL + "\t\t}";
  protected final String TEXT_983 = NL + "\t\treturn super.eInverseAdd(otherEnd, propertyIndex, changeContext);";
  protected final String TEXT_984 = NL + "\t\treturn eDynamicInverseAdd(otherEnd, propertyIndex, changeContext);";
  protected final String TEXT_985 = NL + "\t}" + NL;
  protected final String TEXT_986 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic ChangeContext inverseRemove(";
  protected final String TEXT_987 = " otherEnd, int propertyIndex, ChangeContext changeContext)" + NL + "\t{" + NL + "\t\tswitch (propertyIndex)" + NL + "\t\t{";
  protected final String TEXT_988 = NL + "\t\t\tcase ";
  protected final String TEXT_989 = ":";
  protected final String TEXT_990 = NL + "\t\t\t\treturn ((";
  protected final String TEXT_991 = ")((";
  protected final String TEXT_992 = ".InternalMapView)";
  protected final String TEXT_993 = "()).eMap()).basicRemove(otherEnd, changeContext);";
  protected final String TEXT_994 = NL + "\t\t\t\treturn removeFrom";
  protected final String TEXT_995 = "(";
  protected final String TEXT_996 = "(), otherEnd, changeContext);";
  protected final String TEXT_997 = NL + "\t\t\t\treturn removeFromList(";
  protected final String TEXT_998 = "(), otherEnd, changeContext);";
  protected final String TEXT_999 = NL + "\t\t\t\treturn eBasicSetContainer(null, ";
  protected final String TEXT_1000 = ", changeContext);";
  protected final String TEXT_1001 = NL + "\t\t\t\treturn basicUnset";
  protected final String TEXT_1002 = "(changeContext);";
  protected final String TEXT_1003 = NL + "\t\t\t\treturn basicSet";
  protected final String TEXT_1004 = "(null, changeContext);";
  protected final String TEXT_1005 = NL + "\t\t}";
  protected final String TEXT_1006 = NL + "\t\treturn super.inverseRemove(otherEnd, propertyIndex, changeContext);";
  protected final String TEXT_1007 = NL + "\t\treturn eDynamicInverseRemove(otherEnd, propertyIndex, changeContext);";
  protected final String TEXT_1008 = NL + "\t}" + NL;
  protected final String TEXT_1009 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic ChangeContext eBasicRemoveFromContainerFeature(ChangeContext changeContext)" + NL + "\t{" + NL + "\t\tswitch (eContainerFeatureID)" + NL + "\t\t{";
  protected final String TEXT_1010 = NL + "\t\t\tcase ";
  protected final String TEXT_1011 = ":" + NL + "\t\t\t\treturn eInternalContainer().eInverseRemove(this, ";
  protected final String TEXT_1012 = ", ";
  protected final String TEXT_1013 = ".class, changeContext);";
  protected final String TEXT_1014 = NL + "\t\t}";
  protected final String TEXT_1015 = NL + "\t\treturn super.eBasicRemoveFromContainerFeature(changeContext);";
  protected final String TEXT_1016 = NL + "\t\treturn eDynamicBasicRemoveFromContainer(changeContext);";
  protected final String TEXT_1017 = NL + "\t}" + NL;
  protected final String TEXT_1018 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic Object get(int propertyIndex, boolean resolve)" + NL + "\t{" + NL + "\t\tswitch (propertyIndex)" + NL + "\t\t{";
  protected final String TEXT_1019 = NL + "\t\t\tcase ";
  protected final String TEXT_1020 = ":";
  protected final String TEXT_1021 = NL + "\t\t\t\treturn ";
  protected final String TEXT_1022 = "() ? Boolean.TRUE : Boolean.FALSE;";
  protected final String TEXT_1023 = NL + "\t\t\t\treturn new ";
  protected final String TEXT_1024 = "(";
  protected final String TEXT_1025 = "());";
  protected final String TEXT_1026 = NL + "\t\t\t\tif (resolve) return ";
  protected final String TEXT_1027 = "();" + NL + "\t\t\t\treturn basicGet";
  protected final String TEXT_1028 = "();";
  protected final String TEXT_1029 = NL + "\t\t\t\tif (coreType) return ((";
  protected final String TEXT_1030 = ".InternalMapView)";
  protected final String TEXT_1031 = "()).eMap();" + NL + "\t\t\t\telse return ";
  protected final String TEXT_1032 = "();";
  protected final String TEXT_1033 = NL + "\t\t\t\tif (coreType) return ";
  protected final String TEXT_1034 = "();" + NL + "\t\t\t\telse return ";
  protected final String TEXT_1035 = "().map();";
  protected final String TEXT_1036 = NL + "\t\t\t\t// XXX query introduce coreType as an argument? -- semantic = if true -- coreType - return the core EMF object if value is a non-EMF wrapper/view" + NL + "\t\t\t\t//if (coreType) " + NL + "\t\t\t\treturn ";
  protected final String TEXT_1037 = "();";
  protected final String TEXT_1038 = NL + "\t\t\t\tif (coreType) return ";
  protected final String TEXT_1039 = "();" + NL + "\t\t\t\treturn ((";
  protected final String TEXT_1040 = ".Internal)";
  protected final String TEXT_1041 = "()).getWrapper();";
  protected final String TEXT_1042 = NL + "\t\t\t\treturn ";
  protected final String TEXT_1043 = "();";
  protected final String TEXT_1044 = NL + "\t\t}";
  protected final String TEXT_1045 = NL + "\t\treturn super.get(propertyIndex, resolve);";
  protected final String TEXT_1046 = NL + "\t\treturn eDynamicGet(propertyIndex, resolve, coreType);";
  protected final String TEXT_1047 = NL + "\t}" + NL;
  protected final String TEXT_1048 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic void set(int propertyIndex, Object newValue)" + NL + "\t{" + NL + "\t\tswitch (propertyIndex)" + NL + "\t\t{";
  protected final String TEXT_1049 = NL + "\t\t\tcase ";
  protected final String TEXT_1050 = ":";
  protected final String TEXT_1051 = NL + "      \tset";
  protected final String TEXT_1052 = "(";
  protected final String TEXT_1053 = "(), newValue);";
  protected final String TEXT_1054 = NL + "\t\t\t\t((";
  protected final String TEXT_1055 = ".Internal)";
  protected final String TEXT_1056 = "()).set(newValue);";
  protected final String TEXT_1057 = NL + "\t\t\t\t((";
  protected final String TEXT_1058 = ".Setting)((";
  protected final String TEXT_1059 = ".InternalMapView)";
  protected final String TEXT_1060 = "()).eMap()).set(newValue);";
  protected final String TEXT_1061 = NL + "\t\t\t\t((";
  protected final String TEXT_1062 = ".Setting)";
  protected final String TEXT_1063 = "()).set(newValue);";
  protected final String TEXT_1064 = NL + "\t\t\t\t";
  protected final String TEXT_1065 = "().clear();" + NL + "\t\t\t\t";
  protected final String TEXT_1066 = "().addAll((";
  protected final String TEXT_1067 = ")newValue);";
  protected final String TEXT_1068 = NL + "\t\t\t\tset";
  protected final String TEXT_1069 = "(((";
  protected final String TEXT_1070 = ")newValue).";
  protected final String TEXT_1071 = "());";
  protected final String TEXT_1072 = NL + "\t\t\t\tset";
  protected final String TEXT_1073 = "((";
  protected final String TEXT_1074 = ")newValue);";
  protected final String TEXT_1075 = NL + "\t\t\t\treturn;";
  protected final String TEXT_1076 = NL + "\t\t}";
  protected final String TEXT_1077 = NL + "\t\tsuper.set(propertyIndex, newValue);";
  protected final String TEXT_1078 = NL + "\t\teDynamicSet(propertyIndex, newValue);";
  protected final String TEXT_1079 = NL + "\t}" + NL + "" + NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic void unset(int propertyIndex)" + NL + "\t{" + NL + "\t\tswitch (propertyIndex)" + NL + "\t\t{";
  protected final String TEXT_1080 = NL + "\t\t\tcase ";
  protected final String TEXT_1081 = ":";
  protected final String TEXT_1082 = NL + "\t\t\t\tunset";
  protected final String TEXT_1083 = "(";
  protected final String TEXT_1084 = "());";
  protected final String TEXT_1085 = NL + "\t\t\t\t";
  protected final String TEXT_1086 = "().clear();";
  protected final String TEXT_1087 = NL + "\t\t\t\tunset";
  protected final String TEXT_1088 = "();";
  protected final String TEXT_1089 = NL + "\t\t\t\tset";
  protected final String TEXT_1090 = "((";
  protected final String TEXT_1091 = ")null);";
  protected final String TEXT_1092 = NL + "\t\t\t\tset";
  protected final String TEXT_1093 = "(";
  protected final String TEXT_1094 = "_DEFAULT_);";
  protected final String TEXT_1095 = NL + "\t\t\t\treturn;";
  protected final String TEXT_1096 = NL + "\t\t}";
  protected final String TEXT_1097 = NL + "\t\tsuper.unset(propertyIndex);";
  protected final String TEXT_1098 = NL + "\t\teDynamicUnset(propertyIndex);";
  protected final String TEXT_1099 = NL + "\t}" + NL;
  protected final String TEXT_1100 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic boolean isSet(int propertyIndex)" + NL + "\t{" + NL + "\t\tswitch (propertyIndex)" + NL + "\t\t{";
  protected final String TEXT_1101 = NL + "\t\t\tcase ";
  protected final String TEXT_1102 = ":";
  protected final String TEXT_1103 = NL + "\t\t\t\treturn !is";
  protected final String TEXT_1104 = "Empty(";
  protected final String TEXT_1105 = "());";
  protected final String TEXT_1106 = NL + "\t\t\t\treturn ";
  protected final String TEXT_1107 = " != null && !is";
  protected final String TEXT_1108 = "Empty(";
  protected final String TEXT_1109 = "());";
  protected final String TEXT_1110 = NL + "\t\t\t\treturn ";
  protected final String TEXT_1111 = " != null && !";
  protected final String TEXT_1112 = ".isEmpty();";
  protected final String TEXT_1113 = NL + "\t\t\t\t";
  protected final String TEXT_1114 = " ";
  protected final String TEXT_1115 = " = (";
  protected final String TEXT_1116 = ")eVirtualGet(";
  protected final String TEXT_1117 = ");" + NL + "\t\t\t\treturn ";
  protected final String TEXT_1118 = " != null && !";
  protected final String TEXT_1119 = ".isEmpty();";
  protected final String TEXT_1120 = NL + "\t\t\t\treturn !";
  protected final String TEXT_1121 = "().isEmpty();";
  protected final String TEXT_1122 = NL + "\t\t\t\treturn isSet";
  protected final String TEXT_1123 = "();";
  protected final String TEXT_1124 = NL + "\t\t\t\treturn ";
  protected final String TEXT_1125 = " != null;";
  protected final String TEXT_1126 = NL + "\t\t\t\treturn eVirtualGet(";
  protected final String TEXT_1127 = ") != null;";
  protected final String TEXT_1128 = NL + "\t\t\t\treturn basicGet";
  protected final String TEXT_1129 = "() != null;";
  protected final String TEXT_1130 = NL + "\t\t\t\treturn ";
  protected final String TEXT_1131 = " != null;";
  protected final String TEXT_1132 = NL + "\t\t\t\treturn eVirtualGet(";
  protected final String TEXT_1133 = ") != null;";
  protected final String TEXT_1134 = NL + "\t\t\t\treturn ";
  protected final String TEXT_1135 = "() != null;";
  protected final String TEXT_1136 = NL + "\t\t\t\treturn ((";
  protected final String TEXT_1137 = " & ";
  protected final String TEXT_1138 = "_EFLAG) != 0) != ";
  protected final String TEXT_1139 = "_DEFAULT_;";
  protected final String TEXT_1140 = NL + "\t\t\t\treturn ";
  protected final String TEXT_1141 = " != ";
  protected final String TEXT_1142 = "_DEFAULT_;";
  protected final String TEXT_1143 = NL + "\t\t\t\treturn eVirtualGet(";
  protected final String TEXT_1144 = ", ";
  protected final String TEXT_1145 = "_DEFAULT_) != ";
  protected final String TEXT_1146 = "_DEFAULT_;";
  protected final String TEXT_1147 = NL + "\t\t\t\treturn ";
  protected final String TEXT_1148 = "() != ";
  protected final String TEXT_1149 = "_DEFAULT_;";
  protected final String TEXT_1150 = NL + "\t\t\t\treturn ";
  protected final String TEXT_1151 = "_DEFAULT_ == null ? ";
  protected final String TEXT_1152 = " != null : !";
  protected final String TEXT_1153 = "_DEFAULT_.equals(";
  protected final String TEXT_1154 = ");";
  protected final String TEXT_1155 = NL + "\t\t\t\t";
  protected final String TEXT_1156 = " ";
  protected final String TEXT_1157 = " = (";
  protected final String TEXT_1158 = ")eVirtualGet(";
  protected final String TEXT_1159 = ", ";
  protected final String TEXT_1160 = "_DEFAULT_);" + NL + "\t\t\t\treturn ";
  protected final String TEXT_1161 = "_DEFAULT_ == null ? ";
  protected final String TEXT_1162 = " != null : !";
  protected final String TEXT_1163 = "_DEFAULT_.equals(";
  protected final String TEXT_1164 = ");";
  protected final String TEXT_1165 = NL + "\t\t\t\treturn ";
  protected final String TEXT_1166 = "_DEFAULT_ == null ? ";
  protected final String TEXT_1167 = "() != null : !";
  protected final String TEXT_1168 = "_DEFAULT_.equals(";
  protected final String TEXT_1169 = "());";
  protected final String TEXT_1170 = NL + "\t\t}";
  protected final String TEXT_1171 = NL + "\t\treturn super.isSet(propertyIndex);";
  protected final String TEXT_1172 = NL + "\t\treturn eDynamicIsSet(propertyIndex);";
  protected final String TEXT_1173 = NL + "\t}" + NL;
  protected final String TEXT_1174 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass)" + NL + "\t{";
  protected final String TEXT_1175 = NL + "\t\tif (baseClass == ";
  protected final String TEXT_1176 = ".class)" + NL + "\t\t{" + NL + "\t\t\tswitch (derivedFeatureID)" + NL + "\t\t\t{";
  protected final String TEXT_1177 = NL + "\t\t\t\tcase ";
  protected final String TEXT_1178 = ": return ";
  protected final String TEXT_1179 = ";";
  protected final String TEXT_1180 = NL + "\t\t\t\tdefault: return -1;" + NL + "\t\t\t}" + NL + "\t\t}";
  protected final String TEXT_1181 = NL + "\t\treturn super.eBaseStructuralFeatureID(derivedFeatureID, baseClass);" + NL + "\t}" + NL + "" + NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass)" + NL + "\t{";
  protected final String TEXT_1182 = NL + "\t\tif (baseClass == ";
  protected final String TEXT_1183 = ".class)" + NL + "\t\t{" + NL + "\t\t\tswitch (baseFeatureID)" + NL + "\t\t\t{";
  protected final String TEXT_1184 = NL + "\t\t\t\tcase ";
  protected final String TEXT_1185 = ": return ";
  protected final String TEXT_1186 = ";";
  protected final String TEXT_1187 = NL + "\t\t\t\tdefault: return -1;" + NL + "\t\t\t}" + NL + "\t\t}";
  protected final String TEXT_1188 = NL + "\t\treturn super.eDerivedStructuralFeatureID(baseFeatureID, baseClass);" + NL + "\t}" + NL;
  protected final String TEXT_1189 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tprotected Object[] eVirtualValues()" + NL + "\t{" + NL + "\t\treturn ";
  protected final String TEXT_1190 = ";" + NL + "\t}" + NL + "" + NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tprotected void setVirtualValues(Object[] newValues)" + NL + "\t{" + NL + "\t\t";
  protected final String TEXT_1191 = " = newValues;" + NL + "\t}" + NL;
  protected final String TEXT_1192 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tprotected int eVirtualIndexBits(int offset)" + NL + "\t{" + NL + "\t\tswitch (offset)" + NL + "\t\t{";
  protected final String TEXT_1193 = NL + "\t\t\tcase ";
  protected final String TEXT_1194 = " :" + NL + "\t\t\t\treturn ";
  protected final String TEXT_1195 = ";";
  protected final String TEXT_1196 = NL + "\t\t\tdefault :" + NL + "\t\t\t\tthrow new IndexOutOfBoundsException();" + NL + "\t\t}" + NL + "\t}" + NL + "" + NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tprotected void setVirtualIndexBits(int offset, int newIndexBits)" + NL + "\t{" + NL + "\t\tswitch (offset)" + NL + "\t\t{";
  protected final String TEXT_1197 = NL + "\t\t\tcase ";
  protected final String TEXT_1198 = " :" + NL + "\t\t\t\t";
  protected final String TEXT_1199 = " = newIndexBits;" + NL + "\t\t\t\tbreak;";
  protected final String TEXT_1200 = NL + "\t\t\tdefault :" + NL + "\t\t\t\tthrow new IndexOutOfBoundsException();" + NL + "\t\t}" + NL + "\t}" + NL;
  protected final String TEXT_1201 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic String toString()" + NL + "\t{" + NL + "\t\tif (isProxy(this)) return super.toString();" + NL + "" + NL + "\t\tStringBuffer result = new StringBuffer(super.toString());";
  protected final String TEXT_1202 = NL + "\t\tresult.append(\" (";
  protected final String TEXT_1203 = ": \");";
  protected final String TEXT_1204 = NL + "\t\tresult.append(\", ";
  protected final String TEXT_1205 = ": \");";
  protected final String TEXT_1206 = NL + "\t\tif (eVirtualIsSet(";
  protected final String TEXT_1207 = ")) result.append(eVirtualGet(";
  protected final String TEXT_1208 = ")); else result.append(\"<unset>\");";
  protected final String TEXT_1209 = NL + "\t\tif (";
  protected final String TEXT_1210 = "(";
  protected final String TEXT_1211 = " & ";
  protected final String TEXT_1212 = "_ESETFLAG) != 0";
  protected final String TEXT_1213 = "_set_";
  protected final String TEXT_1214 = ") result.append((";
  protected final String TEXT_1215 = " & ";
  protected final String TEXT_1216 = "_EFLAG) != 0); else result.append(\"<unset>\");";
  protected final String TEXT_1217 = NL + "\t\tif (";
  protected final String TEXT_1218 = "(";
  protected final String TEXT_1219 = " & ";
  protected final String TEXT_1220 = "_ESETFLAG) != 0";
  protected final String TEXT_1221 = "_set_";
  protected final String TEXT_1222 = ") result.append(";
  protected final String TEXT_1223 = "); else result.append(\"<unset>\");";
  protected final String TEXT_1224 = NL + "\t\tresult.append(eVirtualGet(";
  protected final String TEXT_1225 = ", ";
  protected final String TEXT_1226 = "_DEFAULT_";
  protected final String TEXT_1227 = "));";
  protected final String TEXT_1228 = NL + "\t\tresult.append((";
  protected final String TEXT_1229 = " & ";
  protected final String TEXT_1230 = "_EFLAG) != 0);";
  protected final String TEXT_1231 = NL + "\t\tresult.append(";
  protected final String TEXT_1232 = ");";
  protected final String TEXT_1233 = NL + "\t\tresult.append(')');" + NL + "\t\treturn result.toString();" + NL + "\t}" + NL;
  protected final String TEXT_1234 = NL + "\tpublic static class ConcreteBase extends ";
  protected final String TEXT_1235 = NL + "\t{" + NL + "\t\tpublic ConcreteBase()" + NL + "\t\t{" + NL + "\t\t\tsuper();" + NL + "\t\t}" + NL + "\t}" + NL + "\t";
  protected final String TEXT_1236 = NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tprotected int hash = -1;" + NL + "" + NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + " \t * @generated" + NL + " \t */" + NL + "\tpublic int getHash()" + NL + "\t{" + NL + "\t\tif (hash == -1)" + NL + "\t\t{" + NL + "\t\t\tObject theKey = getKey();" + NL + "\t\t\thash = (theKey == null ? 0 : theKey.hashCode());" + NL + "\t\t}" + NL + "\t\treturn hash;" + NL + "\t}" + NL + "" + NL + "\t/**" + NL + " \t * <!-- begin-user-doc -->" + NL + " \t * <!-- end-user-doc -->" + NL + " \t * @generated" + NL + " \t */" + NL + "\tpublic void setHash(int hash)" + NL + "\t{" + NL + "\t\tthis.hash = hash;" + NL + "\t}" + NL + "" + NL + "\t/**" + NL + " \t * <!-- begin-user-doc -->" + NL + " \t * <!-- end-user-doc -->" + NL + " \t * @generated" + NL + " \t */" + NL + "\tpublic Object getKey()" + NL + "\t{" + NL + "  \t";
  protected final String TEXT_1237 = NL + "\t\treturn new ";
  protected final String TEXT_1238 = "(getTypedKey());" + NL + " \t";
  protected final String TEXT_1239 = NL + "\t\treturn getTypedKey();" + NL + "  \t";
  protected final String TEXT_1240 = NL + "\t}" + NL + "" + NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic void setKey(Object key)" + NL + "\t{";
  protected final String TEXT_1241 = NL + "\t\tgetTypedKey().addAll((";
  protected final String TEXT_1242 = ")key);";
  protected final String TEXT_1243 = NL + "\t\tsetTypedKey(((";
  protected final String TEXT_1244 = ")key).";
  protected final String TEXT_1245 = "());";
  protected final String TEXT_1246 = NL + "\t\tsetTypedKey((";
  protected final String TEXT_1247 = ")key);";
  protected final String TEXT_1248 = NL + "\t}" + NL + "" + NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic Object getValue()" + NL + "\t{" + NL + " \t";
  protected final String TEXT_1249 = NL + "\t\treturn new ";
  protected final String TEXT_1250 = "(getTypedValue());" + NL + " \t";
  protected final String TEXT_1251 = NL + "\t\treturn getTypedValue();" + NL + " \t";
  protected final String TEXT_1252 = NL + "\t}" + NL + "" + NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic Object setValue(Object value)" + NL + "\t{" + NL + "\t\tObject oldValue = getValue();" + NL + "  \t";
  protected final String TEXT_1253 = NL + "\t\tgetTypedValue().clear();" + NL + "\t\tgetTypedValue().addAll((";
  protected final String TEXT_1254 = ")value);" + NL + "  \t";
  protected final String TEXT_1255 = NL + "\t\tsetTypedValue(((";
  protected final String TEXT_1256 = ")value).";
  protected final String TEXT_1257 = "());" + NL + "  \t";
  protected final String TEXT_1258 = NL + "\t\tsetTypedValue((";
  protected final String TEXT_1259 = ")value);" + NL + "  \t";
  protected final String TEXT_1260 = NL + "\t\treturn oldValue;" + NL + "\t}" + NL + "" + NL + "\t/**" + NL + "\t * <!-- begin-user-doc -->" + NL + "\t * <!-- end-user-doc -->" + NL + "\t * @generated" + NL + "\t */" + NL + "\tpublic ";
  protected final String TEXT_1261 = " getEMap()" + NL + "\t{" + NL + "\t\t";
  protected final String TEXT_1262 = " container = eContainer();" + NL + "\t\treturn container == null ? null : (";
  protected final String TEXT_1263 = ")container.get(eContainmentFeature());" + NL + "\t}";
  protected final String TEXT_1264 = NL + "} //";
  protected final String TEXT_1265 = NL;

  public String generate(Object argument)
  {
    final StringBuffer stringBuffer = new StringBuffer();
    
/**
 *
 *  Licensed to the Apache Software Foundation (ASF) under one
 *  or more contributor license agreements.  See the NOTICE file
 *  distributed with this work for additional information
 *  regarding copyright ownership.  The ASF licenses this file
 *  to you under the Apache License, Version 2.0 (the
 *  "License"); you may not use this file except in compliance
 *  with the License.  You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing,
 *  software distributed under the License is distributed on an
 *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 *  KIND, either express or implied.  See the License for the
 *  specific language governing permissions and limitations
 *  under the License.
 */

    GenClass genClass = (GenClass)((Object[])argument)[0]; GenPackage genPackage = genClass.getGenPackage(); GenModel genModel=genPackage.getGenModel();
    boolean isInterface = Boolean.TRUE.equals(((Object[])argument)[1]); boolean isImplementation = Boolean.TRUE.equals(((Object[])argument)[2]);
    boolean isDebug = false;
    String publicStaticFinalFlag = isImplementation ? "public static final " : "";
    /*
     * Output preamble and javadoc header
     */
    stringBuffer.append(TEXT_1);
    stringBuffer.append(TEXT_2);
    stringBuffer.append("$");
    stringBuffer.append(TEXT_3);
    stringBuffer.append("$");
    stringBuffer.append(TEXT_4);
    if (isInterface) {
    stringBuffer.append(TEXT_5);
    stringBuffer.append(genPackage.getInterfacePackageName());
    stringBuffer.append(TEXT_6);
    } else {
    stringBuffer.append(TEXT_7);
    stringBuffer.append(genPackage.getClassPackageName());
    stringBuffer.append(TEXT_8);
    }
    stringBuffer.append(TEXT_9);
    genModel.markImportLocation(stringBuffer, genPackage);
    stringBuffer.append(TEXT_10);
    if (isDebug) { // EYECATCHER 1 
    stringBuffer.append(TEXT_11);
    }
    if (isInterface) {
    stringBuffer.append(TEXT_12);
    stringBuffer.append(genClass.getFormattedName());
    stringBuffer.append(TEXT_13);
    if (genClass.hasDocumentation()) {
    stringBuffer.append(TEXT_14);
    stringBuffer.append(genClass.getDocumentation(genModel.getIndentation(stringBuffer)));
    stringBuffer.append(TEXT_15);
    }
    stringBuffer.append(TEXT_16);
    if (!genClass.getGenFeatures().isEmpty()) {
    stringBuffer.append(TEXT_17);
    for (Iterator i=genClass.getGenFeatures().iterator(); i.hasNext();) { GenFeature genFeature = (GenFeature)i.next();
    if (!genFeature.isSuppressedGetVisibility()) {
    stringBuffer.append(TEXT_18);
    stringBuffer.append(genClass.getQualifiedInterfaceName());
    stringBuffer.append(TEXT_19);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_20);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_21);
    }
    }
    stringBuffer.append(TEXT_22);
    }
    stringBuffer.append(TEXT_23);
    if (!genModel.isSuppressEMFMetaData()) {
    stringBuffer.append(TEXT_24);
    stringBuffer.append(genPackage.getQualifiedPackageInterfaceName());
    stringBuffer.append(TEXT_25);
    stringBuffer.append(genClass.getClassifierAccessorName());
    stringBuffer.append(TEXT_26);
    }
    if (!genModel.isSuppressEMFModelTags()) { boolean first = true; for (StringTokenizer stringTokenizer = new StringTokenizer(genClass.getModelInfo(), "\n\r"); stringTokenizer.hasMoreTokens(); ) { String modelInfo = stringTokenizer.nextToken(); if (first) { first = false;
    stringBuffer.append(TEXT_27);
    stringBuffer.append(modelInfo);
    } else {
    stringBuffer.append(TEXT_28);
    stringBuffer.append(modelInfo);
    }} if (first) {
    stringBuffer.append(TEXT_29);
    }}
    if (genClass.needsRootExtendsInterfaceExtendsTag()) { // does it need an @extends tag 
    stringBuffer.append(TEXT_30);
    stringBuffer.append(genModel.getImportedName(genModel.getRootExtendsInterface()));
    }
    stringBuffer.append(TEXT_31);
    } else {
    stringBuffer.append(TEXT_32);
    stringBuffer.append(genClass.getFormattedName());
    stringBuffer.append(TEXT_33);
    if (!genClass.getImplementedGenFeatures().isEmpty()) {
    stringBuffer.append(TEXT_34);
    for (Iterator i=genClass.getImplementedGenFeatures().iterator(); i.hasNext();) { GenFeature genFeature = (GenFeature)i.next();
    stringBuffer.append(TEXT_35);
    stringBuffer.append(genClass.getQualifiedClassName());
    stringBuffer.append(TEXT_36);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_37);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_38);
    }
    stringBuffer.append(TEXT_39);
    }
    stringBuffer.append(TEXT_40);
    }
    if (isImplementation) {
    stringBuffer.append(TEXT_41);
    if (genClass.isAbstract()) {
    stringBuffer.append(TEXT_42);
    }
    stringBuffer.append(TEXT_43);
    stringBuffer.append(genClass.getClassName());
    stringBuffer.append(genClass.getClassExtends());
    stringBuffer.append(genClass.getClassImplements());
    } else {
    stringBuffer.append(TEXT_44);
    stringBuffer.append(genClass.getInterfaceName());
    stringBuffer.append(genClass.getInterfaceExtends());
    }
    stringBuffer.append(TEXT_45);
    if (genModel.getCopyrightText() != null) {
    stringBuffer.append(TEXT_46);
    stringBuffer.append(publicStaticFinalFlag);
    stringBuffer.append(genModel.getImportedName("java.lang.String"));
    stringBuffer.append(TEXT_47);
    stringBuffer.append(genModel.getCopyrightText());
    stringBuffer.append(TEXT_48);
    stringBuffer.append(genModel.getNonNLS());
    stringBuffer.append(TEXT_49);
    }
    if (isImplementation && genModel.getDriverNumber() != null) {
    stringBuffer.append(TEXT_50);
    stringBuffer.append(genModel.getImportedName("java.lang.String"));
    stringBuffer.append(TEXT_51);
    stringBuffer.append(genModel.getDriverNumber());
    stringBuffer.append(TEXT_52);
    stringBuffer.append(genModel.getNonNLS());
    stringBuffer.append(TEXT_53);
    }
    if (isImplementation && genClass.isJavaIOSerializable()) {
    stringBuffer.append(TEXT_54);
    }
    if (isImplementation && genModel.isVirtualDelegation()) { String eVirtualValuesField = genClass.getEVirtualValuesField();
    if (eVirtualValuesField != null) {
    stringBuffer.append(TEXT_55);
    stringBuffer.append(eVirtualValuesField);
    stringBuffer.append(TEXT_56);
    }
    { List eVirtualIndexBitFields = genClass.getEVirtualIndexBitFields(new ArrayList());
    if (!eVirtualIndexBitFields.isEmpty()) {
    for (Iterator i = eVirtualIndexBitFields.iterator(); i.hasNext();) { String eVirtualIndexBitField = (String)i.next();
    stringBuffer.append(TEXT_57);
    stringBuffer.append(eVirtualIndexBitField);
    stringBuffer.append(TEXT_58);
    }
    }
    }
    }
    if (isImplementation && genClass.isModelRoot() && genModel.isBooleanFlagsEnabled() && genModel.getBooleanFlagsReservedBits() == -1) {
    stringBuffer.append(TEXT_59);
    stringBuffer.append(genModel.getBooleanFlagsField());
    stringBuffer.append(TEXT_60);
    }
    if (isImplementation && !genModel.isReflectiveDelegation()) {
    stringBuffer.append(TEXT_61);
    ClassImpl classImpl = (ClassImpl) genClass.getEcoreClass();
    List declaredProperties = classImpl.getDeclaredProperties();
    List extendedProperties = classImpl.getExtendedProperties();
    int declaredPropertiesCount = 0;
    int extendedPropertiesCount = 0;
    for (Iterator f=genClass.getAllGenFeatures().iterator(); f.hasNext();) { GenFeature genFeature = (GenFeature)f.next();
    if (declaredProperties.contains(genFeature.getEcoreFeature())){
    declaredPropertiesCount++;
    String featureValue = "";
       List allFeatures = genClass.getAllGenFeatures();
       int g = allFeatures.indexOf(genFeature);
       GenClass base = genClass.getBaseGenClass();
       if (base == null)
       {
         featureValue = Integer.toString(declaredProperties.indexOf(genFeature.getEcoreFeature()));
       } else {
         int baseCount = base.getFeatureCount();    
         if (g < baseCount)
         {
           featureValue = base.getImportedClassName() + "." + genFeature.getUpperName();
         } else {
           String baseCountID = base.getImportedClassName() + "." + "SDO_PROPERTY_COUNT";
           featureValue =  baseCountID + " + " + Integer.toString(declaredProperties.indexOf(genFeature.getEcoreFeature()));
          }
       }
    stringBuffer.append(TEXT_62);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_63);
    stringBuffer.append(featureValue);
    stringBuffer.append(TEXT_64);
    } else if (extendedProperties.contains(genFeature.getEcoreFeature())){
    extendedPropertiesCount++;
    String featureValue = "";
       List allFeatures = genClass.getAllGenFeatures();
       int g = allFeatures.indexOf(genFeature);
       GenClass base = genClass.getBaseGenClass();
       if (base == null)
       {
         featureValue = Integer.toString(-1 - extendedProperties.indexOf(genFeature.getEcoreFeature()));
       } else {
         int baseCount = base.getFeatureCount();    
         if (g < baseCount)
         {
           featureValue = base.getImportedClassName() + "." + genFeature.getUpperName();
         } else {
           String baseCountID = base.getImportedClassName() + "." + "EXTENDED_PROPERTY_COUNT";
           featureValue =  baseCountID + " + " + Integer.toString(-1 - extendedProperties.indexOf(genFeature.getEcoreFeature()));
          }
       }
    stringBuffer.append(TEXT_65);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_66);
    stringBuffer.append(featureValue);
    stringBuffer.append(TEXT_67);
    }
    }
    String featureCount = "";
    GenClass base = genClass.getBaseGenClass();
    if (base == null)
    {
    featureCount = Integer.toString(declaredPropertiesCount);
    }
    else {
    String baseCountID = base.getImportedClassName() + "." + "SDO_PROPERTY_COUNT";
    featureCount = baseCountID + " + " + Integer.toString(declaredPropertiesCount);
    }
    stringBuffer.append(TEXT_68);
    stringBuffer.append(featureCount);
    stringBuffer.append(TEXT_69);
    featureCount = "";
    base = genClass.getBaseGenClass();
    if (base == null)
    {
    featureCount = Integer.toString(extendedPropertiesCount*-1);
    }
    else {
    String baseCountID = base.getImportedClassName() + "." + "EXTENDED_PROPERTY_COUNT";
    featureCount = baseCountID + " - " + Integer.toString(extendedPropertiesCount);
    }
    stringBuffer.append(TEXT_70);
    stringBuffer.append(featureCount);
    stringBuffer.append(TEXT_71);
    for (Iterator f=genClass.getAllGenFeatures().iterator(); f.hasNext();) { GenFeature genFeature = (GenFeature)f.next();
    stringBuffer.append(TEXT_72);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_73);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_74);
    String featureValue = "";
    List allFeatures = genClass.getAllGenFeatures();
    int g = allFeatures.indexOf(genFeature);
    base = genClass.getBaseGenClass();
    if (base == null)
    {
    featureValue = Integer.toString(g);
    } else {
    int baseCount = base.getFeatureCount();
    if (g < baseCount)
    {
    featureValue = base.getImportedClassName() + "._INTERNAL_" + genFeature.getUpperName();
    } else {
    String baseCountID = base.getImportedClassName() + "." + "INTERNAL_PROPERTY_COUNT";
    featureValue =  baseCountID + " + " + Integer.toString(g - baseCount);
    }
    }
    stringBuffer.append(TEXT_75);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_76);
    stringBuffer.append(featureValue);
    stringBuffer.append(TEXT_77);
    }
    stringBuffer.append(TEXT_78);
    featureCount = "";
    base = genClass.getBaseGenClass();
    if (base == null)
    {
      featureCount = Integer.toString(genClass.getFeatureCount());
    } 
    else {
      String baseCountID = base.getImportedClassName() + "." + "INTERNAL_PROPERTY_COUNT";
      featureCount = baseCountID + " + " + Integer.toString(genClass.getFeatureCount() - base.getFeatureCount());
    }
    stringBuffer.append(TEXT_79);
    stringBuffer.append(featureCount);
    stringBuffer.append(TEXT_80);
    for (Iterator f=genClass.getAllGenFeatures().iterator(); f.hasNext();) { GenFeature genFeature = (GenFeature)f.next();
    stringBuffer.append(TEXT_81);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_82);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_83);
    }
    stringBuffer.append(TEXT_84);
    for (Iterator i=genClass.getDeclaredFieldGenFeatures().iterator(); i.hasNext();) { GenFeature genFeature = (GenFeature)i.next();
    if (genFeature.isListType() || genFeature.isReferenceType()) {
    if (genClass.isField(genFeature)) {
    stringBuffer.append(TEXT_85);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_86);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_87);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_88);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_89);
    stringBuffer.append(genModel.getImportedName(genFeature.getType()));
    stringBuffer.append(TEXT_90);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_91);
    }
    if (genModel.isArrayAccessors() && !genFeature.isFeatureMapType() && !genFeature.isMapType()) {
    stringBuffer.append(TEXT_92);
    stringBuffer.append(genFeature.getGetArrayAccessor());
    stringBuffer.append(TEXT_93);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_94);
    stringBuffer.append(genFeature.getGetArrayAccessor());
    stringBuffer.append(TEXT_95);
    stringBuffer.append(genFeature.getListItemType());
    stringBuffer.append(TEXT_96);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_97);
    stringBuffer.append(genFeature.getListItemType());
    stringBuffer.append(TEXT_98);
    }
    } else {
    if (!genFeature.isVolatile() || !genModel.isReflectiveDelegation() && (!genFeature.hasDelegateFeature() || !genFeature.isUnsettable())) {
    stringBuffer.append(TEXT_99);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_100);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_101);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_102);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_103);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_104);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_105);
    stringBuffer.append(SDOGenUtil.getStaticDefaultValue(genFeature));
    stringBuffer.append(TEXT_106);
    stringBuffer.append(genModel.getNonNLS(genFeature.getStaticDefaultValue()));
    stringBuffer.append(TEXT_107);
    }
    if (genClass.isField(genFeature)) {
    if (genClass.isFlag(genFeature)) {
    if (genClass.getFlagIndex(genFeature) > 31 && genClass.getFlagIndex(genFeature) % 32 == 0) {
    stringBuffer.append(TEXT_108);
    stringBuffer.append(genClass.getFlagsField(genFeature));
    stringBuffer.append(TEXT_109);
    }
    stringBuffer.append(TEXT_110);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_111);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_112);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_113);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_114);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_115);
    stringBuffer.append("<< " + genClass.getFlagIndex(genFeature) % 32 );
    stringBuffer.append(TEXT_116);
    } else {
    stringBuffer.append(TEXT_117);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_118);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_119);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_120);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_121);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_122);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_123);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_124);
    }
    }
    }
    if (genClass.isESetField(genFeature)) {
    if (genClass.isESetFlag(genFeature)) {
    if (genClass.getESetFlagIndex(genFeature) > 31 && genClass.getESetFlagIndex(genFeature) % 32 == 0) {
    stringBuffer.append(TEXT_125);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_126);
    }
    stringBuffer.append(TEXT_127);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_128);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_129);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_130);
    stringBuffer.append("<< " + genClass.getESetFlagIndex(genFeature) % 32 );
    stringBuffer.append(TEXT_131);
    } else {
    stringBuffer.append(TEXT_132);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_133);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_134);
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_135);
    }
    }
    }
    //Class/declaredFieldGenFeature.override.javajetinc
    }
    if (isImplementation) { // create constructor 
    stringBuffer.append(TEXT_136);
    stringBuffer.append(genClass.getClassName());
    stringBuffer.append(TEXT_137);
    for (Iterator i=genClass.getFlagGenFeatures("true").iterator(); i.hasNext();) { GenFeature genFeature = (GenFeature)i.next();
    stringBuffer.append(TEXT_138);
    stringBuffer.append(genClass.getFlagsField(genFeature));
    stringBuffer.append(TEXT_139);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_140);
    }
    if (SDOGenUtil.hasChangeSummaryProperty(genClass)) {
    stringBuffer.append(TEXT_141);
    stringBuffer.append(SDOGenUtil.getChangeSummaryProperty(genClass));
    stringBuffer.append(TEXT_142);
    }
    stringBuffer.append(TEXT_143);
    stringBuffer.append(genModel.getImportedName("commonj.sdo.Type"));
    stringBuffer.append(TEXT_144);
    stringBuffer.append(genPackage.getImportedFactoryClassName());
    stringBuffer.append(TEXT_145);
    stringBuffer.append(genPackage.getImportedFactoryInterfaceName());
    stringBuffer.append(TEXT_146);
    stringBuffer.append(genClass.getClassifierAccessorName());
    stringBuffer.append(TEXT_147);
    }
    /*
     * Output getter and setter interfaces / impls
     */
    
    for (Iterator i=(isImplementation ? genClass.getImplementedGenFeatures() : genClass.getDeclaredGenFeatures()).iterator(); i.hasNext();) { GenFeature genFeature = (GenFeature)i.next();
    if (genModel.isArrayAccessors() && genFeature.isListType() && !genFeature.isFeatureMapType() && !genFeature.isMapType()) {
    stringBuffer.append(TEXT_148);
    if (!isImplementation) {
    stringBuffer.append(TEXT_149);
    stringBuffer.append(genFeature.getListItemType());
    stringBuffer.append(TEXT_150);
    stringBuffer.append(genFeature.getGetArrayAccessor());
    stringBuffer.append(TEXT_151);
    } else {
    stringBuffer.append(TEXT_152);
    stringBuffer.append(genFeature.getListItemType());
    stringBuffer.append(TEXT_153);
    stringBuffer.append(genFeature.getGetArrayAccessor());
    stringBuffer.append(TEXT_154);
    if (genFeature.isVolatile()) {
    stringBuffer.append(TEXT_155);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.common.util.BasicEList"));
    stringBuffer.append(TEXT_156);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.common.util.BasicEList"));
    stringBuffer.append(TEXT_157);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_158);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_159);
    } else {
    stringBuffer.append(TEXT_160);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_161);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_162);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_163);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.common.util.BasicEList"));
    stringBuffer.append(TEXT_164);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.common.util.BasicEList"));
    stringBuffer.append(TEXT_165);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_166);
    }
    stringBuffer.append(TEXT_167);
    stringBuffer.append(genFeature.getListItemType());
    stringBuffer.append(TEXT_168);
    }
    stringBuffer.append(TEXT_169);
    if (!isImplementation) {
    stringBuffer.append(TEXT_170);
    stringBuffer.append(genFeature.getListItemType());
    stringBuffer.append(TEXT_171);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_172);
    } else {
    stringBuffer.append(TEXT_173);
    stringBuffer.append(genFeature.getListItemType());
    stringBuffer.append(TEXT_174);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_175);
    stringBuffer.append(genFeature.getListItemType());
    stringBuffer.append(TEXT_176);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_177);
    }
    stringBuffer.append(TEXT_178);
    if (!isImplementation) {
    stringBuffer.append(TEXT_179);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_180);
    } else {
    stringBuffer.append(TEXT_181);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_182);
    if (genFeature.isVolatile()) {
    stringBuffer.append(TEXT_183);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_184);
    } else {
    stringBuffer.append(TEXT_185);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_186);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_187);
    }
    stringBuffer.append(TEXT_188);
    }
    stringBuffer.append(TEXT_189);
    if (!isImplementation) {
    stringBuffer.append(TEXT_190);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_191);
    stringBuffer.append(genFeature.getListItemType());
    stringBuffer.append(TEXT_192);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_193);
    } else {
    stringBuffer.append(TEXT_194);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_195);
    stringBuffer.append(genFeature.getListItemType());
    stringBuffer.append(TEXT_196);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_197);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.common.util.BasicEList"));
    stringBuffer.append(TEXT_198);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_199);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_200);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_201);
    }
    stringBuffer.append(TEXT_202);
    if (!isImplementation) {
    stringBuffer.append(TEXT_203);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_204);
    stringBuffer.append(genFeature.getListItemType());
    stringBuffer.append(TEXT_205);
    } else {
    stringBuffer.append(TEXT_206);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_207);
    stringBuffer.append(genFeature.getListItemType());
    stringBuffer.append(TEXT_208);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_209);
    }
    }
    if (genFeature.isGet() && (isImplementation || !genFeature.isSuppressedGetVisibility())) {
    if (isInterface) {
    stringBuffer.append(TEXT_210);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_211);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_212);
    if (genFeature.isListType()) {
    if (genFeature.isMapType()) { GenFeature keyFeature = genFeature.getMapEntryTypeGenClass().getMapEntryKeyFeature(); GenFeature valueFeature = genFeature.getMapEntryTypeGenClass().getMapEntryValueFeature(); 
    stringBuffer.append(TEXT_213);
    if (keyFeature.isListType()) {
    stringBuffer.append(TEXT_214);
    stringBuffer.append(keyFeature.getQualifiedListItemType());
    stringBuffer.append(TEXT_215);
    } else {
    stringBuffer.append(TEXT_216);
    stringBuffer.append(keyFeature.getType());
    stringBuffer.append(TEXT_217);
    }
    stringBuffer.append(TEXT_218);
    if (valueFeature.isListType()) {
    stringBuffer.append(TEXT_219);
    stringBuffer.append(valueFeature.getQualifiedListItemType());
    stringBuffer.append(TEXT_220);
    } else {
    stringBuffer.append(TEXT_221);
    stringBuffer.append(valueFeature.getType());
    stringBuffer.append(TEXT_222);
    }
    stringBuffer.append(TEXT_223);
    } else if (!genFeature.isWrappedFeatureMapType() && !(genModel.isSuppressEMFMetaData() && "org.eclipse.emf.ecore.EObject".equals(genFeature.getQualifiedListItemType()))) {
    stringBuffer.append(TEXT_224);
    stringBuffer.append(genFeature.getQualifiedListItemType());
    stringBuffer.append(TEXT_225);
    }
    } else if (genFeature.isSetDefaultValue()) {
    stringBuffer.append(TEXT_226);
    stringBuffer.append(genFeature.getDefaultValue());
    stringBuffer.append(TEXT_227);
    }
    if (genFeature.getTypeGenEnum() != null) {
    stringBuffer.append(TEXT_228);
    stringBuffer.append(genFeature.getTypeGenEnum().getQualifiedName());
    stringBuffer.append(TEXT_229);
    }
    if (genFeature.isBidirectional() && !genFeature.getReverse().getGenClass().isMapEntry()) { GenFeature reverseGenFeature = genFeature.getReverse(); 
    if (!reverseGenFeature.isSuppressedGetVisibility()) {
    stringBuffer.append(TEXT_230);
    stringBuffer.append(reverseGenFeature.getGenClass().getQualifiedInterfaceName());
    stringBuffer.append(TEXT_231);
    stringBuffer.append(reverseGenFeature.getGetAccessor());
    stringBuffer.append(TEXT_232);
    stringBuffer.append(reverseGenFeature.getFormattedName());
    stringBuffer.append(TEXT_233);
    }
    }
    stringBuffer.append(TEXT_234);
    if (!genFeature.hasDocumentation()) {
    stringBuffer.append(TEXT_235);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_236);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_237);
    }
    stringBuffer.append(TEXT_238);
    if (genFeature.hasDocumentation()) {
    stringBuffer.append(TEXT_239);
    stringBuffer.append(genFeature.getDocumentation(genModel.getIndentation(stringBuffer)));
    stringBuffer.append(TEXT_240);
    }
    stringBuffer.append(TEXT_241);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_242);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_243);
    if (genFeature.getTypeGenEnum() != null) {
    stringBuffer.append(TEXT_244);
    stringBuffer.append(genFeature.getTypeGenEnum().getQualifiedName());
    }
    if (genFeature.isUnsettable()) {
    if (!genFeature.isSuppressedIsSetVisibility()) {
    stringBuffer.append(TEXT_245);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_246);
    }
    if (genFeature.isChangeable() && !genFeature.isSuppressedUnsetVisibility()) {
    stringBuffer.append(TEXT_247);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_248);
    }
    }
    if (genFeature.isChangeable() && !genFeature.isListType() && !genFeature.isSuppressedSetVisibility()) {
    stringBuffer.append(TEXT_249);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_250);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_251);
    }
    if (!genModel.isSuppressEMFMetaData()) {
    stringBuffer.append(TEXT_252);
    stringBuffer.append(genPackage.getQualifiedPackageInterfaceName());
    stringBuffer.append(TEXT_253);
    stringBuffer.append(genFeature.getFeatureAccessorName());
    stringBuffer.append(TEXT_254);
    }
    if (genFeature.isBidirectional() && !genFeature.getReverse().getGenClass().isMapEntry()) { GenFeature reverseGenFeature = genFeature.getReverse(); 
    if (!reverseGenFeature.isSuppressedGetVisibility()) {
    stringBuffer.append(TEXT_255);
    stringBuffer.append(reverseGenFeature.getGenClass().getQualifiedInterfaceName());
    stringBuffer.append(TEXT_256);
    stringBuffer.append(reverseGenFeature.getGetAccessor());
    }
    }
    if (!genModel.isSuppressEMFModelTags()) { boolean first = true; for (StringTokenizer stringTokenizer = new StringTokenizer(genFeature.getModelInfo(), "\n\r"); stringTokenizer.hasMoreTokens(); ) { String modelInfo = stringTokenizer.nextToken(); if (first) { first = false;
    stringBuffer.append(TEXT_257);
    stringBuffer.append(modelInfo);
    } else {
    stringBuffer.append(TEXT_258);
    stringBuffer.append(modelInfo);
    }} if (first) {
    stringBuffer.append(TEXT_259);
    }}
    stringBuffer.append(TEXT_260);
    } else {
    stringBuffer.append(TEXT_261);
    }
    if (!isImplementation) {
    stringBuffer.append(TEXT_262);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_263);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_264);
    } else {
    stringBuffer.append(TEXT_265);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_266);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_267);
    if (genModel.isReflectiveDelegation()) {
    stringBuffer.append(TEXT_268);
    if (genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_269);
    }
    stringBuffer.append(TEXT_270);
    stringBuffer.append(genFeature.getObjectType());
    stringBuffer.append(TEXT_271);
    stringBuffer.append(genFeature.getQualifiedFeatureAccessor());
    stringBuffer.append(TEXT_272);
    if (genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_273);
    stringBuffer.append(genFeature.getPrimitiveValueFunction());
    stringBuffer.append(TEXT_274);
    }
    stringBuffer.append(TEXT_275);
    } else if (!genFeature.isVolatile()) {
    if (genFeature.isListType()) {
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_276);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_277);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_278);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_279);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_280);
    }
    stringBuffer.append(TEXT_281);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_282);
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_283);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_284);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_285);
    stringBuffer.append(genClass.getListConstructor(genFeature));
    stringBuffer.append(TEXT_286);
    } else {
                if (genFeature.getType().equals("commonj.sdo.Sequence")){
    stringBuffer.append(TEXT_287);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_288);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_289);
    } else {
    stringBuffer.append(TEXT_290);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_291);
    stringBuffer.append(SDOGenUtil.getListKind(genFeature, genFeature.isUnsettable()));
    stringBuffer.append(TEXT_292);
    stringBuffer.append(genFeature.getListItemType());
    stringBuffer.append(TEXT_293);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_294);
    stringBuffer.append(genFeature.isBidirectional()?genFeature.getReverse().getUpperName():"0" );
    stringBuffer.append(TEXT_295);
    }}
    stringBuffer.append(TEXT_296);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(genFeature.isMapType() && genFeature.isEffectiveSuppressEMFTypes() ? ".map()" : "");
    stringBuffer.append(TEXT_297);
    } else if (genFeature.isContainer()) {
    stringBuffer.append(TEXT_298);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_299);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_300);
    } else {
    if (genFeature.isResolveProxies()) {
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_301);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_302);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_303);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_304);
    stringBuffer.append(genFeature.getUpperName());
    if (!genFeature.isReferenceType()) {
    stringBuffer.append(TEXT_305);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_306);
    }
    stringBuffer.append(TEXT_307);
    }
    stringBuffer.append(TEXT_308);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_309);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_310);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_311);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_312);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_313);
    stringBuffer.append(genFeature.getNonEObjectInternalTypeCast());
    stringBuffer.append(TEXT_314);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_315);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_316);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_317);
    if (genFeature.isEffectiveContains()) {
    stringBuffer.append(TEXT_318);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.InternalEObject"));
    stringBuffer.append(TEXT_319);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_320);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.InternalEObject"));
    stringBuffer.append(TEXT_321);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_322);
    if (!genFeature.isBidirectional()) {
    stringBuffer.append(TEXT_323);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_324);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_325);
    } else { GenFeature reverseFeature = genFeature.getReverse(); GenClass targetClass = reverseFeature.getGenClass();
    stringBuffer.append(TEXT_326);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.common.notify.ChangeContext"));
    stringBuffer.append(TEXT_327);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_328);
    stringBuffer.append(targetClass.getQualifiedFeatureID(reverseFeature));
    stringBuffer.append(TEXT_329);
    stringBuffer.append(targetClass.getImportedInterfaceName());
    stringBuffer.append(TEXT_330);
    }
    stringBuffer.append(TEXT_331);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_332);
    if (!genFeature.isBidirectional()) {
    stringBuffer.append(TEXT_333);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_334);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_335);
    } else { GenFeature reverseFeature = genFeature.getReverse(); GenClass targetClass = reverseFeature.getGenClass();
    stringBuffer.append(TEXT_336);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_337);
    stringBuffer.append(targetClass.getQualifiedFeatureID(reverseFeature));
    stringBuffer.append(TEXT_338);
    stringBuffer.append(targetClass.getImportedInterfaceName());
    stringBuffer.append(TEXT_339);
    }
    stringBuffer.append(TEXT_340);
    } else if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_341);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_342);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_343);
    }
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_344);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_345);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_346);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_347);
    }
    stringBuffer.append(TEXT_348);
    }
    if (!genFeature.isResolveProxies() && genModel.isVirtualDelegation() && !genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_349);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_350);
    stringBuffer.append(genFeature.getUpperName());
    if (!genFeature.isReferenceType()) {
    stringBuffer.append(TEXT_351);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_352);
    }
    stringBuffer.append(TEXT_353);
    } else if (genClass.isFlag(genFeature)) {
    stringBuffer.append(TEXT_354);
    stringBuffer.append(genClass.getFlagsField(genFeature));
    stringBuffer.append(TEXT_355);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_356);
    } else {
    stringBuffer.append(TEXT_357);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_358);
    }
    }
    } else {//volatile
    if (genFeature.isResolveProxies() && !genFeature.isListType()) {
    stringBuffer.append(TEXT_359);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_360);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_361);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_362);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_363);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_364);
    stringBuffer.append(genFeature.getNonEObjectInternalTypeCast());
    stringBuffer.append(TEXT_365);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.InternalEObject"));
    stringBuffer.append(TEXT_366);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_367);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_368);
    } else if (genFeature.hasDelegateFeature()) { GenFeature delegateFeature = genFeature.getDelegateFeature(); // AAAA
    if (genFeature.isFeatureMapType()) {
    if (delegateFeature.isWrappedFeatureMapType()) {
    stringBuffer.append(TEXT_369);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_370);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_371);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_372);
    } else {
    stringBuffer.append(TEXT_373);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.util.FeatureMap"));
    stringBuffer.append(TEXT_374);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.util.FeatureMap"));
    stringBuffer.append(TEXT_375);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_376);
    stringBuffer.append(genFeature.getQualifiedFeatureAccessor());
    stringBuffer.append(TEXT_377);
    }
    } else if (genFeature.isListType()) {
    if (delegateFeature.isWrappedFeatureMapType()) {
    stringBuffer.append(TEXT_378);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_379);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_380);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_381);
    } else {
    stringBuffer.append(TEXT_382);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.util.FeatureMap"));
    stringBuffer.append(TEXT_383);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_384);
    stringBuffer.append(genFeature.getQualifiedFeatureAccessor());
    stringBuffer.append(TEXT_385);
    }
    } else {
    if (delegateFeature.isWrappedFeatureMapType()) {
    stringBuffer.append(TEXT_386);
    if (genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_387);
    }
    stringBuffer.append(TEXT_388);
    stringBuffer.append(genFeature.getObjectType());
    stringBuffer.append(TEXT_389);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_390);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_391);
    if (genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_392);
    stringBuffer.append(genFeature.getPrimitiveValueFunction());
    stringBuffer.append(TEXT_393);
    }
    stringBuffer.append(TEXT_394);
    } else {
    stringBuffer.append(TEXT_395);
    if (genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_396);
    }
    stringBuffer.append(TEXT_397);
    stringBuffer.append(genFeature.getObjectType());
    stringBuffer.append(TEXT_398);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_399);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_400);
    if (genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_401);
    stringBuffer.append(genFeature.getPrimitiveValueFunction());
    stringBuffer.append(TEXT_402);
    }
    stringBuffer.append(TEXT_403);
    }
    }
    } else {
    stringBuffer.append(TEXT_404);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_405);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_406);
    //Class/getGenFeature.todo.override.javajetinc
    }
    }
    stringBuffer.append(TEXT_407);
    }
    //Class/getGenFeature.override.javajetinc
    }
    if (isImplementation && !genModel.isReflectiveDelegation() && genFeature.isBasicGet()) {
    stringBuffer.append(TEXT_408);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_409);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_410);
    if (genFeature.isContainer()) {
    stringBuffer.append(TEXT_411);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_412);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_413);
    } else if (!genFeature.isVolatile()) {
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_414);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_415);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_416);
    } else {
    stringBuffer.append(TEXT_417);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_418);
    }
    } else if (genFeature.hasDelegateFeature()) { GenFeature delegateFeature = genFeature.getDelegateFeature(); //BBBB
    if (delegateFeature.isWrappedFeatureMapType()) {
    stringBuffer.append(TEXT_419);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_420);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_421);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_422);
    } else {
    stringBuffer.append(TEXT_423);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_424);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_425);
    stringBuffer.append(genFeature.getQualifiedFeatureAccessor());
    stringBuffer.append(TEXT_426);
    }
    } else {
    stringBuffer.append(TEXT_427);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_428);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_429);
    //Class/basicGetGenFeature.todo.override.javajetinc
    }
    stringBuffer.append(TEXT_430);
    //Class/basicGetGenFeature.override.javajetinc
    }
    if (isImplementation && !genModel.isReflectiveDelegation() && genFeature.isBasicSet()) {
    stringBuffer.append(TEXT_431);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_432);
    stringBuffer.append(genFeature.getImportedInternalType());
    stringBuffer.append(TEXT_433);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_434);
    if (!genFeature.isVolatile()) {
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_435);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_436);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_437);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_438);
    } else {
    stringBuffer.append(TEXT_439);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_440);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_441);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_442);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_443);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_444);
    }
    if (genFeature.isUnsettable()) {
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_445);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_446);
    } else if (genClass.isESetFlag(genFeature)) {
    stringBuffer.append(TEXT_447);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_448);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_449);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_450);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_451);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_452);
    } else {
    stringBuffer.append(TEXT_453);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_454);
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_455);
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_456);
    }
    }
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_457);
    if (genFeature.isUnsettable()) {
    stringBuffer.append(TEXT_458);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_459);
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_460);
    stringBuffer.append(genFeature.getCapName());
    } else {
    stringBuffer.append(TEXT_461);
    stringBuffer.append(genFeature.getCapName());
    }
    stringBuffer.append(TEXT_462);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_463);
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_464);
    } else {
    stringBuffer.append(TEXT_465);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_466);
    }
    stringBuffer.append(TEXT_467);
    } else {
    stringBuffer.append(TEXT_468);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_469);
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_470);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_471);
    stringBuffer.append(genFeature.getCapName());
    } else {
    stringBuffer.append(TEXT_472);
    stringBuffer.append(genFeature.getCapName());
    }
    stringBuffer.append(TEXT_473);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_474);
    }
    stringBuffer.append(TEXT_475);
    }
    stringBuffer.append(TEXT_476);
    } else if (genFeature.hasDelegateFeature()) { GenFeature delegateFeature = genFeature.getDelegateFeature(); //CCCC
    if (delegateFeature.isWrappedFeatureMapType()) {
    stringBuffer.append(TEXT_477);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_478);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_479);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_480);
    } else {
    stringBuffer.append(TEXT_481);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_482);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_483);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_484);
    }
    } else {
    stringBuffer.append(TEXT_485);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_486);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_487);
    //Class/basicSetGenFeature.todo.override.javajetinc
    }
    stringBuffer.append(TEXT_488);
    //Class/basicSetGenFeature.override.javajetinc
    }
    if (genFeature.isSet() && (isImplementation || !genFeature.isSuppressedSetVisibility())) {
    if (isInterface) { 
    stringBuffer.append(TEXT_489);
    stringBuffer.append(genClass.getQualifiedInterfaceName());
    stringBuffer.append(TEXT_490);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_491);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_492);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_493);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_494);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_495);
    if (genFeature.isEnumType()) {
    stringBuffer.append(TEXT_496);
    stringBuffer.append(genFeature.getTypeGenEnum().getQualifiedName());
    }
    if (genFeature.isUnsettable()) {
    if (!genFeature.isSuppressedIsSetVisibility()) {
    stringBuffer.append(TEXT_497);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_498);
    }
    if (!genFeature.isSuppressedUnsetVisibility()) {
    stringBuffer.append(TEXT_499);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_500);
    }
    }
    stringBuffer.append(TEXT_501);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_502);
    } else {
    stringBuffer.append(TEXT_503);
    }
    if (!isImplementation) { 
    stringBuffer.append(TEXT_504);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_505);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_506);
    } else {
    stringBuffer.append(TEXT_507);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_508);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_509);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_510);
    if (genModel.isReflectiveDelegation()) {
    stringBuffer.append(TEXT_511);
    stringBuffer.append(genFeature.getQualifiedFeatureAccessor());
    stringBuffer.append(TEXT_512);
    if (genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_513);
    stringBuffer.append(genFeature.getObjectType());
    stringBuffer.append(TEXT_514);
    }
    stringBuffer.append(TEXT_515);
    stringBuffer.append(genFeature.getCapName());
    if (genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_516);
    }
    stringBuffer.append(TEXT_517);
    } else if (!genFeature.isVolatile()) {
    if (genFeature.isContainer()) { GenFeature reverseFeature = genFeature.getReverse(); GenClass targetClass = reverseFeature.getGenClass();
    stringBuffer.append(TEXT_518);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_519);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_520);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_521);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.util.EcoreUtil"));
    stringBuffer.append(TEXT_522);
    stringBuffer.append(genFeature.getEObjectCast());
    stringBuffer.append(TEXT_523);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_524);
    stringBuffer.append(genModel.getImportedName("java.lang.IllegalArgumentException"));
    stringBuffer.append(TEXT_525);
    stringBuffer.append(genModel.getNonNLS());
    stringBuffer.append(TEXT_526);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_527);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.InternalEObject"));
    stringBuffer.append(TEXT_528);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_529);
    stringBuffer.append(targetClass.getQualifiedFeatureID(reverseFeature));
    stringBuffer.append(TEXT_530);
    stringBuffer.append(targetClass.getImportedInterfaceName());
    stringBuffer.append(TEXT_531);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.InternalEObject"));
    stringBuffer.append(TEXT_532);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_533);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_534);
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_535);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_536);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_537);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_538);
    }
    } else if (genFeature.isBidirectional() || genFeature.isEffectiveContains()) {
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_539);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_540);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_541);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_542);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_543);
    }
    stringBuffer.append(TEXT_544);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_545);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_546);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_547);
    if (!genFeature.isBidirectional()) {
    stringBuffer.append(TEXT_548);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_549);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_550);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_551);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_552);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_553);
    } else { GenFeature reverseFeature = genFeature.getReverse(); GenClass targetClass = reverseFeature.getGenClass();
    stringBuffer.append(TEXT_554);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_555);
    stringBuffer.append(SDOGenUtil.getQualifiedInternalPropertyID(reverseFeature));
    stringBuffer.append(TEXT_556);
    stringBuffer.append(targetClass.getImportedInterfaceName());
    stringBuffer.append(TEXT_557);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_558);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_559);
    stringBuffer.append(SDOGenUtil.getQualifiedInternalPropertyID(reverseFeature));
    stringBuffer.append(TEXT_560);
    stringBuffer.append(targetClass.getImportedInterfaceName());
    stringBuffer.append(TEXT_561);
    }
    stringBuffer.append(TEXT_562);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_563);
    stringBuffer.append(genFeature.getInternalTypeCast());
    stringBuffer.append(TEXT_564);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_565);
    if (genFeature.isUnsettable()) {
    stringBuffer.append(TEXT_566);
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_567);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_568);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_569);
    } else if (genClass.isESetFlag(genFeature)) {
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_570);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_571);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_572);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_573);
    }
    stringBuffer.append(TEXT_574);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_575);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_576);
    } else {
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_577);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_578);
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_579);
    }
    stringBuffer.append(TEXT_580);
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_581);
    }
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_582);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_583);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_584);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_585);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_586);
    }
    stringBuffer.append(TEXT_587);
    } else {
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_588);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_589);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_590);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_591);
    }
    }
    } else {
    if (genClass.isFlag(genFeature)) {
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_592);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_593);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_594);
    stringBuffer.append(genClass.getFlagsField(genFeature));
    stringBuffer.append(TEXT_595);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_596);
    }
    stringBuffer.append(TEXT_597);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_598);
    stringBuffer.append(genClass.getFlagsField(genFeature));
    stringBuffer.append(TEXT_599);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_600);
    stringBuffer.append(genClass.getFlagsField(genFeature));
    stringBuffer.append(TEXT_601);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_602);
    } else {
    if (!genModel.isVirtualDelegation() || genFeature.isPrimitiveType()) {
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_603);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_604);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_605);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_606);
    }
    }
    if (genFeature.isEnumType()) {
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_607);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_608);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_609);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_610);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_611);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_612);
    } else {
    stringBuffer.append(TEXT_613);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_614);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_615);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_616);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_617);
    }
    } else {
    if (genModel.isVirtualDelegation() && !genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_618);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_619);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_620);
    stringBuffer.append(genFeature.getInternalTypeCast());
    stringBuffer.append(TEXT_621);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_622);
    } else {
    stringBuffer.append(TEXT_623);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_624);
    stringBuffer.append(genFeature.getInternalTypeCast());
    stringBuffer.append(TEXT_625);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_626);
    }
    }
    if (genModel.isVirtualDelegation() && !genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_627);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_628);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_629);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_630);
    }
    }
    if (genFeature.isUnsettable()) {
    if (genModel.isVirtualDelegation() && !genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_631);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_632);
    } else if (genClass.isESetFlag(genFeature)) {
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_633);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_634);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_635);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_636);
    }
    stringBuffer.append(TEXT_637);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_638);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_639);
    } else {
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_640);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_641);
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_642);
    }
    stringBuffer.append(TEXT_643);
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_644);
    }
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_645);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_646);
    if (genModel.isVirtualDelegation() && !genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_647);
    if (genFeature.isReferenceType()) {
    stringBuffer.append(TEXT_648);
    } else {
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_649);
    }
    stringBuffer.append(TEXT_650);
    stringBuffer.append(genFeature.getCapName());
    } else {
    stringBuffer.append(TEXT_651);
    stringBuffer.append(genFeature.getCapName());
    }
    stringBuffer.append(TEXT_652);
    if (genClass.isFlag(genFeature)) {
    stringBuffer.append(TEXT_653);
    stringBuffer.append(genFeature.getCapName());
    } else {
    stringBuffer.append(genFeature.getSafeName());
    }
    stringBuffer.append(TEXT_654);
    if (genModel.isVirtualDelegation() && !genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_655);
    } else {
    stringBuffer.append(TEXT_656);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_657);
    }
    stringBuffer.append(TEXT_658);
    }
    } else {
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_659);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_660);
    if (genModel.isVirtualDelegation() && !genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_661);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_662);
    if (genFeature.isReferenceType()) {
    stringBuffer.append(TEXT_663);
    } else {
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_664);
    }
    stringBuffer.append(TEXT_665);
    stringBuffer.append(genFeature.getCapName());
    } else {
    stringBuffer.append(TEXT_666);
    stringBuffer.append(genFeature.getCapName());
    }
    stringBuffer.append(TEXT_667);
    if (genClass.isFlag(genFeature)) {
    stringBuffer.append(TEXT_668);
    stringBuffer.append(genFeature.getCapName());
    } else {
    stringBuffer.append(genFeature.getSafeName());
    }
    stringBuffer.append(TEXT_669);
    }
    }
    }
    } else if (genFeature.hasDelegateFeature()) { GenFeature delegateFeature = genFeature.getDelegateFeature(); // DDDD
    if (delegateFeature.isWrappedFeatureMapType()) {
    stringBuffer.append(TEXT_670);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_671);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_672);
    if (genFeature.isPrimitiveType()){
    stringBuffer.append(TEXT_673);
    stringBuffer.append(genFeature.getObjectType());
    stringBuffer.append(TEXT_674);
    }
    stringBuffer.append(TEXT_675);
    stringBuffer.append(genFeature.getCapName());
    if (genFeature.isPrimitiveType()){
    stringBuffer.append(TEXT_676);
    }
    stringBuffer.append(TEXT_677);
    } else {
    stringBuffer.append(TEXT_678);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.util.FeatureMap"));
    stringBuffer.append(TEXT_679);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_680);
    stringBuffer.append(genFeature.getQualifiedFeatureAccessor());
    stringBuffer.append(TEXT_681);
    if (genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_682);
    stringBuffer.append(genFeature.getObjectType());
    stringBuffer.append(TEXT_683);
    }
    stringBuffer.append(TEXT_684);
    stringBuffer.append(genFeature.getCapName());
    if (genFeature.isPrimitiveType()){
    stringBuffer.append(TEXT_685);
    }
    stringBuffer.append(TEXT_686);
    }
    } else {
    stringBuffer.append(TEXT_687);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_688);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_689);
    //Class/setGenFeature.todo.override.javajetinc
    }
    stringBuffer.append(TEXT_690);
    }
    //Class/setGenFeature.override.javajetinc
    }
    if (isImplementation && !genModel.isReflectiveDelegation() && genFeature.isBasicUnset()) {
    stringBuffer.append(TEXT_691);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_692);
    if (!genFeature.isVolatile()) {
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_693);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_694);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_695);
    } else {
    stringBuffer.append(TEXT_696);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_697);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_698);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_699);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_700);
    }
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_701);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_702);
    } else if (genClass.isESetFlag(genFeature)) {
    stringBuffer.append(TEXT_703);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_704);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_705);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_706);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_707);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_708);
    } else {
    stringBuffer.append(TEXT_709);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_710);
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_711);
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_712);
    }
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_713);
    if (genFeature.isUnsettable()) {
    stringBuffer.append(TEXT_714);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_715);
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_716);
    stringBuffer.append(genFeature.getCapName());
    } else {
    stringBuffer.append(TEXT_717);
    stringBuffer.append(genFeature.getCapName());
    }
    stringBuffer.append(TEXT_718);
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_719);
    } else {
    stringBuffer.append(TEXT_720);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_721);
    }
    stringBuffer.append(TEXT_722);
    } else {
    stringBuffer.append(TEXT_723);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_724);
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_725);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_726);
    stringBuffer.append(genFeature.getCapName());
    } else {
    stringBuffer.append(TEXT_727);
    stringBuffer.append(genFeature.getCapName());
    }
    stringBuffer.append(TEXT_728);
    }
    stringBuffer.append(TEXT_729);
    }
    stringBuffer.append(TEXT_730);
    } else {
    stringBuffer.append(TEXT_731);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_732);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_733);
    //Class/basicUnsetGenFeature.todo.override.javajetinc
    }
    stringBuffer.append(TEXT_734);
    //Class.basicUnsetGenFeature.override.javajetinc
    }
    if (genFeature.isUnset() && (isImplementation || !genFeature.isSuppressedUnsetVisibility())) {
    if (isInterface) {
    stringBuffer.append(TEXT_735);
    stringBuffer.append(genClass.getQualifiedInterfaceName());
    stringBuffer.append(TEXT_736);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_737);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_738);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_739);
    if (!genFeature.isSuppressedIsSetVisibility()) {
    stringBuffer.append(TEXT_740);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_741);
    }
    stringBuffer.append(TEXT_742);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_743);
    if (!genFeature.isListType() && !genFeature.isSuppressedSetVisibility()) {
    stringBuffer.append(TEXT_744);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_745);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_746);
    }
    stringBuffer.append(TEXT_747);
    } else {
    stringBuffer.append(TEXT_748);
    }
    if (!isImplementation) {
    stringBuffer.append(TEXT_749);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_750);
    } else {
    stringBuffer.append(TEXT_751);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_752);
    if (genModel.isReflectiveDelegation()) {
    stringBuffer.append(TEXT_753);
    stringBuffer.append(genFeature.getQualifiedFeatureAccessor());
    stringBuffer.append(TEXT_754);
    } else if (!genFeature.isVolatile()) {
    if (genFeature.isListType()) {
    stringBuffer.append(TEXT_755);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.util.InternalEList"));
    stringBuffer.append(TEXT_756);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_757);
    } else if (genFeature.isBidirectional() || genFeature.isEffectiveContains()) {
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_758);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_759);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_760);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_761);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_762);
    }
    stringBuffer.append(TEXT_763);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_764);
    if (!genFeature.isBidirectional()) {
    stringBuffer.append(TEXT_765);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_766);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_767);
    } else { GenFeature reverseFeature = genFeature.getReverse(); GenClass targetClass = reverseFeature.getGenClass();
    stringBuffer.append(TEXT_768);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_769);
    stringBuffer.append(SDOGenUtil.getQualifiedInternalPropertyID(reverseFeature));
    stringBuffer.append(TEXT_770);
    stringBuffer.append(targetClass.getImportedInterfaceName());
    stringBuffer.append(TEXT_771);
    }
    stringBuffer.append(TEXT_772);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_773);
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_774);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_775);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_776);
    } else if (genClass.isESetFlag(genFeature)) {
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_777);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_778);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_779);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_780);
    }
    stringBuffer.append(TEXT_781);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_782);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_783);
    } else {
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_784);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_785);
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_786);
    }
    stringBuffer.append(TEXT_787);
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_788);
    }
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_789);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_790);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_791);
    }
    stringBuffer.append(TEXT_792);
    } else {
    if (genClass.isFlag(genFeature)) {
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_793);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_794);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_795);
    stringBuffer.append(genClass.getFlagsField(genFeature));
    stringBuffer.append(TEXT_796);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_797);
    }
    } else if (genModel.isVirtualDelegation() && !genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_798);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_799);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_800);
    } else {
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_801);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_802);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_803);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_804);
    }
    }
    if (genModel.isVirtualDelegation() && !genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_805);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_806);
    } else if (genClass.isESetFlag(genFeature)) {
    stringBuffer.append(TEXT_807);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_808);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_809);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_810);
    } else {
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_811);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_812);
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_813);
    }
    }
    if (genFeature.isReferenceType()) {
    stringBuffer.append(TEXT_814);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_815);
    if (!genModel.isVirtualDelegation()) {
    if (genClass.isESetFlag(genFeature)) {
    stringBuffer.append(TEXT_816);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_817);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_818);
    } else {
    stringBuffer.append(TEXT_819);
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_820);
    }
    }
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_821);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_822);
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_823);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_824);
    } else {
    stringBuffer.append(TEXT_825);
    stringBuffer.append(genFeature.getCapName());
    }
    stringBuffer.append(TEXT_826);
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_827);
    } else {
    stringBuffer.append(TEXT_828);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_829);
    }
    stringBuffer.append(TEXT_830);
    }
    } else {
    if (genClass.isFlag(genFeature)) {
    stringBuffer.append(TEXT_831);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_832);
    stringBuffer.append(genClass.getFlagsField(genFeature));
    stringBuffer.append(TEXT_833);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_834);
    stringBuffer.append(genClass.getFlagsField(genFeature));
    stringBuffer.append(TEXT_835);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_836);
    } else if (!genModel.isVirtualDelegation() || genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_837);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_838);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_839);
    }
    if (!genModel.isVirtualDelegation() || genFeature.isPrimitiveType()) {
    if (genClass.isESetFlag(genFeature)) {
    stringBuffer.append(TEXT_840);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_841);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_842);
    } else {
    stringBuffer.append(TEXT_843);
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_844);
    }
    }
    if (!genModel.isSuppressNotification()) {
    stringBuffer.append(TEXT_845);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_846);
    if (genModel.isVirtualDelegation() && !genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_847);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_848);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_849);
    } else {
    stringBuffer.append(TEXT_850);
    stringBuffer.append(genFeature.getCapName());
    }
    stringBuffer.append(TEXT_851);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_852);
    if (genModel.isVirtualDelegation() && !genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_853);
    } else {
    stringBuffer.append(TEXT_854);
    stringBuffer.append(genFeature.getCapName());
    stringBuffer.append(TEXT_855);
    }
    stringBuffer.append(TEXT_856);
    }
    }
    }
    } else if (genFeature.hasDelegateFeature()) { GenFeature delegateFeature = genFeature.getDelegateFeature(); //EEEE
    if (delegateFeature.isWrappedFeatureMapType()) {
    stringBuffer.append(TEXT_857);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_858);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_859);
    } else {
    stringBuffer.append(TEXT_860);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_861);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_862);
    }
    } else {
    stringBuffer.append(TEXT_863);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_864);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_865);
    //Class/unsetGenFeature.todo.override.javajetinc
    }
    stringBuffer.append(TEXT_866);
    }
    //Class/unsetGenFeature.override.javajetinc
    }
    if (genFeature.isIsSet() && (isImplementation || !genFeature.isSuppressedIsSetVisibility())) {
    if (isInterface) {
    stringBuffer.append(TEXT_867);
    stringBuffer.append(genClass.getQualifiedInterfaceName());
    stringBuffer.append(TEXT_868);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_869);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_870);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_871);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_872);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_873);
    if (genFeature.isChangeable() && !genFeature.isSuppressedUnsetVisibility()) {
    stringBuffer.append(TEXT_874);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_875);
    }
    stringBuffer.append(TEXT_876);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_877);
    if (!genFeature.isListType() && genFeature.isChangeable() && !genFeature.isSuppressedSetVisibility()) {
    stringBuffer.append(TEXT_878);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_879);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_880);
    }
    stringBuffer.append(TEXT_881);
    } else {
    stringBuffer.append(TEXT_882);
    }
    if (!isImplementation) {
    stringBuffer.append(TEXT_883);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_884);
    } else {
    stringBuffer.append(TEXT_885);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_886);
    if (genModel.isReflectiveDelegation()) {
    stringBuffer.append(TEXT_887);
    stringBuffer.append(genFeature.getQualifiedFeatureAccessor());
    stringBuffer.append(TEXT_888);
    } else if (!genFeature.isVolatile()) {
    if (genFeature.isListType()) {
    if (genModel.isVirtualDelegation()) {
    stringBuffer.append(TEXT_889);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_890);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_891);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_892);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_893);
    }
    stringBuffer.append(TEXT_894);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_895);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.util.InternalEList"));
    stringBuffer.append(TEXT_896);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_897);
    } else {
    if (genModel.isVirtualDelegation() && !genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_898);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_899);
    } else if (genClass.isESetFlag(genFeature)) {
    stringBuffer.append(TEXT_900);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_901);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_902);
    } else {
    stringBuffer.append(TEXT_903);
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_904);
    }
    }
    } else if (genFeature.hasDelegateFeature()) { GenFeature delegateFeature = genFeature.getDelegateFeature(); //FFFF
    if (delegateFeature.isWrappedFeatureMapType()) {
    stringBuffer.append(TEXT_905);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_906);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_907);
    } else {
    stringBuffer.append(TEXT_908);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.util.FeatureMap"));
    stringBuffer.append(TEXT_909);
    stringBuffer.append(delegateFeature.getAccessorName());
    stringBuffer.append(TEXT_910);
    stringBuffer.append(genFeature.getQualifiedFeatureAccessor());
    stringBuffer.append(TEXT_911);
    }
    } else {
    stringBuffer.append(TEXT_912);
    stringBuffer.append(genFeature.getFormattedName());
    stringBuffer.append(TEXT_913);
    stringBuffer.append(genFeature.getFeatureKind());
    stringBuffer.append(TEXT_914);
    //Class/isSetGenFeature.todo.override.javajetinc
    }
    stringBuffer.append(TEXT_915);
    }
    //Class/isSetGenFeature.override.javajetinc
    }
    //Class/genFeature.override.javajetinc
    }// end output getter and setter interfaces or impls
    for (Iterator i= (isImplementation ? genClass.getImplementedGenOperations() : genClass.getDeclaredGenOperations()).iterator(); i.hasNext();) { GenOperation genOperation = (GenOperation)i.next();
    if (isInterface) {
    stringBuffer.append(TEXT_916);
    if (genOperation.hasDocumentation()) {
    stringBuffer.append(TEXT_917);
    stringBuffer.append(genOperation.getDocumentation(genModel.getIndentation(stringBuffer)));
    stringBuffer.append(TEXT_918);
    }
    if (!genModel.isSuppressEMFModelTags()) { boolean first = true; for (StringTokenizer stringTokenizer = new StringTokenizer(genOperation.getModelInfo(), "\n\r"); stringTokenizer.hasMoreTokens(); ) { String modelInfo = stringTokenizer.nextToken(); if (first) { first = false;
    stringBuffer.append(TEXT_919);
    stringBuffer.append(modelInfo);
    } else {
    stringBuffer.append(TEXT_920);
    stringBuffer.append(modelInfo);
    }} if (first) {
    stringBuffer.append(TEXT_921);
    }}
    stringBuffer.append(TEXT_922);
    } else {
    stringBuffer.append(TEXT_923);
    }
    if (!isImplementation) {
    stringBuffer.append(TEXT_924);
    stringBuffer.append(genOperation.getImportedType());
    stringBuffer.append(TEXT_925);
    stringBuffer.append(genOperation.getName());
    stringBuffer.append(TEXT_926);
    stringBuffer.append(genOperation.getParameters());
    stringBuffer.append(TEXT_927);
    stringBuffer.append(genOperation.getThrows());
    stringBuffer.append(TEXT_928);
    } else {
    stringBuffer.append(TEXT_929);
    stringBuffer.append(genOperation.getImportedType());
    stringBuffer.append(TEXT_930);
    stringBuffer.append(genOperation.getName());
    stringBuffer.append(TEXT_931);
    stringBuffer.append(genOperation.getParameters());
    stringBuffer.append(TEXT_932);
    stringBuffer.append(genOperation.getThrows());
    stringBuffer.append(TEXT_933);
    if (genOperation.hasBody()) {
    stringBuffer.append(TEXT_934);
    stringBuffer.append(genOperation.getBody(genModel.getIndentation(stringBuffer)));
    } else if (genOperation.isInvariant()) {GenClass opClass = genOperation.getGenClass(); String diagnostics = ((GenParameter)genOperation.getGenParameters().get(0)).getName(); String context = ((GenParameter)genOperation.getGenParameters().get(1)).getName();
    stringBuffer.append(TEXT_935);
    stringBuffer.append(diagnostics);
    stringBuffer.append(TEXT_936);
    stringBuffer.append(diagnostics);
    stringBuffer.append(TEXT_937);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.common.util.BasicDiagnostic"));
    stringBuffer.append(TEXT_938);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.common.util.Diagnostic"));
    stringBuffer.append(TEXT_939);
    stringBuffer.append(opClass.getGenPackage().getImportedValidatorClassName());
    stringBuffer.append(TEXT_940);
    stringBuffer.append(opClass.getGenPackage().getImportedValidatorClassName());
    stringBuffer.append(TEXT_941);
    stringBuffer.append(opClass.getOperationID(genOperation));
    stringBuffer.append(TEXT_942);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.plugin.EcorePlugin"));
    stringBuffer.append(TEXT_943);
    stringBuffer.append(genOperation.getName());
    stringBuffer.append(TEXT_944);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.util.EObjectValidator"));
    stringBuffer.append(TEXT_945);
    stringBuffer.append(context);
    stringBuffer.append(TEXT_946);
    stringBuffer.append(genModel.getNonNLS());
    stringBuffer.append(genModel.getNonNLS(2));
    stringBuffer.append(TEXT_947);
    } else {
    stringBuffer.append(TEXT_948);
    //Class/implementedGenOperation.todo.override.javajetinc
    }
    stringBuffer.append(TEXT_949);
    }
    //Class/implementedGenOperation.override.javajetinc
    }//for
    if (isImplementation && !genModel.isReflectiveDelegation() && genClass.implementsAny(genClass.getEInverseAddGenFeatures())) {
    stringBuffer.append(TEXT_950);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.InternalEObject"));
    stringBuffer.append(TEXT_951);
    for (Iterator i=genClass.getEInverseAddGenFeatures().iterator(); i.hasNext();) { GenFeature genFeature = (GenFeature)i.next();
    if (!genModel.isMinimalReflectiveMethods() || genClass.getImplementedGenFeatures().contains(genFeature)) {
    stringBuffer.append(TEXT_952);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_953);
    if (genFeature.isListType()) {
    if (genFeature.isMapType() && genFeature.isEffectiveSuppressEMFTypes()) {
    stringBuffer.append(TEXT_954);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.util.InternalEList"));
    stringBuffer.append(TEXT_955);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.common.util.EMap"));
    stringBuffer.append(TEXT_956);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_957);
    } else {
    stringBuffer.append(TEXT_958);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.util.InternalEList"));
    stringBuffer.append(TEXT_959);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_960);
    }
    } else if (genFeature.isContainer()) {
    stringBuffer.append(TEXT_961);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_962);
    } else {
    if (genClass.getImplementingGenModel(genFeature).isVirtualDelegation()) {
    stringBuffer.append(TEXT_963);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_964);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_965);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_966);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_967);
    }
    stringBuffer.append(TEXT_968);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_969);
    if (genFeature.isEffectiveContains()) {
    stringBuffer.append(TEXT_970);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.InternalEObject"));
    stringBuffer.append(TEXT_971);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_972);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_973);
    } else { GenFeature reverseFeature = genFeature.getReverse(); GenClass targetClass = reverseFeature.getGenClass();
    stringBuffer.append(TEXT_974);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.InternalEObject"));
    stringBuffer.append(TEXT_975);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_976);
    stringBuffer.append(targetClass.getQualifiedFeatureID(reverseFeature));
    stringBuffer.append(TEXT_977);
    stringBuffer.append(targetClass.getImportedInterfaceName());
    stringBuffer.append(TEXT_978);
    }
    stringBuffer.append(TEXT_979);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_980);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_981);
    }
    }
    }
    stringBuffer.append(TEXT_982);
    if (genModel.isMinimalReflectiveMethods()) {
    stringBuffer.append(TEXT_983);
    } else {
    stringBuffer.append(TEXT_984);
    }
    stringBuffer.append(TEXT_985);
    }
    if (isImplementation && !genModel.isReflectiveDelegation() && genClass.implementsAny(genClass.getEInverseRemoveGenFeatures())) {
    stringBuffer.append(TEXT_986);
    stringBuffer.append(genModel.getImportedName("java.lang.Object"));
    stringBuffer.append(TEXT_987);
    for (Iterator i=genClass.getEInverseRemoveGenFeatures().iterator(); i.hasNext();) { GenFeature genFeature = (GenFeature)i.next();
    if (!genModel.isMinimalReflectiveMethods() || genClass.getImplementedGenFeatures().contains(genFeature)) {
    stringBuffer.append(TEXT_988);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_989);
    if (genFeature.isListType()) {
    if (genFeature.isMapType() && genFeature.isEffectiveSuppressEMFTypes()) {
    stringBuffer.append(TEXT_990);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.util.InternalEList"));
    stringBuffer.append(TEXT_991);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.common.util.EMap"));
    stringBuffer.append(TEXT_992);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_993);
    } else if (genFeature.isWrappedFeatureMapType()) {
    stringBuffer.append(TEXT_994);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_995);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_996);
    } else {
    stringBuffer.append(TEXT_997);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_998);
    }
    } else if (genFeature.isContainer()) {
    stringBuffer.append(TEXT_999);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1000);
    } else if (genFeature.isUnsettable()) {
    stringBuffer.append(TEXT_1001);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_1002);
    } else {
    stringBuffer.append(TEXT_1003);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_1004);
    }
    }
    }
    stringBuffer.append(TEXT_1005);
    if (genModel.isMinimalReflectiveMethods()) {
    stringBuffer.append(TEXT_1006);
    } else {
    stringBuffer.append(TEXT_1007);
    }
    stringBuffer.append(TEXT_1008);
    }
    if (isImplementation && !genModel.isReflectiveDelegation() && genClass.implementsAny(genClass.getEBasicRemoveFromContainerGenFeatures())) {
    stringBuffer.append(TEXT_1009);
    for (Iterator i=genClass.getEBasicRemoveFromContainerGenFeatures().iterator(); i.hasNext();) { GenFeature genFeature = (GenFeature)i.next();
    GenFeature reverseFeature = genFeature.getReverse(); GenClass targetClass = reverseFeature.getGenClass();
    if (!genModel.isMinimalReflectiveMethods() || genClass.getImplementedGenFeatures().contains(genFeature)) {
    stringBuffer.append(TEXT_1010);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1011);
    stringBuffer.append(targetClass.getQualifiedFeatureID(reverseFeature));
    stringBuffer.append(TEXT_1012);
    stringBuffer.append(targetClass.getImportedInterfaceName());
    stringBuffer.append(TEXT_1013);
    }
    }
    stringBuffer.append(TEXT_1014);
    if (genModel.isMinimalReflectiveMethods()) {
    stringBuffer.append(TEXT_1015);
    } else {
    stringBuffer.append(TEXT_1016);
    }
    stringBuffer.append(TEXT_1017);
    }
    if (isImplementation && !genModel.isReflectiveDelegation() && !genClass.getImplementedGenFeatures().isEmpty()) {
    stringBuffer.append(TEXT_1018);
    for (Iterator i=genClass.getAllGenFeatures().iterator(); i.hasNext();) { GenFeature genFeature = (GenFeature)i.next();
    if (!genModel.isMinimalReflectiveMethods() || genClass.getImplementedGenFeatures().contains(genFeature)) {
    stringBuffer.append(TEXT_1019);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1020);
    if (genFeature.isPrimitiveType()) {
    if (genFeature.isBooleanType()) {
    stringBuffer.append(TEXT_1021);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1022);
    } else {
    stringBuffer.append(TEXT_1023);
    stringBuffer.append(genFeature.getObjectType());
    stringBuffer.append(TEXT_1024);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1025);
    }
    } else if (genFeature.isResolveProxies() && !genFeature.isListType()) {
    stringBuffer.append(TEXT_1026);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1027);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_1028);
    } else if (genFeature.isMapType()) {
    if (genFeature.isEffectiveSuppressEMFTypes()) {
    stringBuffer.append(TEXT_1029);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.common.util.EMap"));
    stringBuffer.append(TEXT_1030);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1031);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1032);
    } else {
    stringBuffer.append(TEXT_1033);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1034);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1035);
    }
    } else if (genFeature.isWrappedFeatureMapType()) {
    stringBuffer.append(TEXT_1036);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1037);
    } else if (genFeature.isFeatureMapType()) {
    stringBuffer.append(TEXT_1038);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1039);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.util.FeatureMap"));
    stringBuffer.append(TEXT_1040);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1041);
    } else {
    stringBuffer.append(TEXT_1042);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1043);
    }
    }
    }
    stringBuffer.append(TEXT_1044);
    if (genModel.isMinimalReflectiveMethods()) {
    stringBuffer.append(TEXT_1045);
    } else {
    stringBuffer.append(TEXT_1046);
    }
    stringBuffer.append(TEXT_1047);
    }
    if (isImplementation && !genModel.isReflectiveDelegation() && genClass.implementsAny(genClass.getESetGenFeatures())) {
    stringBuffer.append(TEXT_1048);
    for (Iterator i=genClass.getESetGenFeatures().iterator(); i.hasNext();) { GenFeature genFeature = (GenFeature)i.next();
    if (!genModel.isMinimalReflectiveMethods() || genClass.getImplementedGenFeatures().contains(genFeature)) {
    stringBuffer.append(TEXT_1049);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1050);
    if (genFeature.isListType()) {
    if (genFeature.isWrappedFeatureMapType()) {
    stringBuffer.append(TEXT_1051);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_1052);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1053);
    } else if (genFeature.isFeatureMapType()) {
    stringBuffer.append(TEXT_1054);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.util.FeatureMap"));
    stringBuffer.append(TEXT_1055);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1056);
    } else if (genFeature.isMapType()) {
    if (genFeature.isEffectiveSuppressEMFTypes()) {
    stringBuffer.append(TEXT_1057);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.EStructuralFeature"));
    stringBuffer.append(TEXT_1058);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.common.util.EMap"));
    stringBuffer.append(TEXT_1059);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1060);
    } else {
    stringBuffer.append(TEXT_1061);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.EStructuralFeature"));
    stringBuffer.append(TEXT_1062);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1063);
    }
    } else {
    stringBuffer.append(TEXT_1064);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1065);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1066);
    stringBuffer.append(genModel.getImportedName("java.util.Collection"));
    stringBuffer.append(TEXT_1067);
    }
    } else if (genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_1068);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_1069);
    stringBuffer.append(genFeature.getObjectType());
    stringBuffer.append(TEXT_1070);
    stringBuffer.append(genFeature.getPrimitiveValueFunction());
    stringBuffer.append(TEXT_1071);
    } else {
    stringBuffer.append(TEXT_1072);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_1073);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_1074);
    }
    stringBuffer.append(TEXT_1075);
    }
    }
    stringBuffer.append(TEXT_1076);
    if (genModel.isMinimalReflectiveMethods()) {
    stringBuffer.append(TEXT_1077);
    } else {
    stringBuffer.append(TEXT_1078);
    }
    stringBuffer.append(TEXT_1079);
    for (Iterator i=genClass.getESetGenFeatures().iterator(); i.hasNext();) { GenFeature genFeature = (GenFeature)i.next();
    if (!genModel.isMinimalReflectiveMethods() || genClass.getImplementedGenFeatures().contains(genFeature)) {
    stringBuffer.append(TEXT_1080);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1081);
    if (genFeature.isListType() && !genFeature.isUnsettable()) {
    if (genFeature.isWrappedFeatureMapType()) {
    stringBuffer.append(TEXT_1082);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_1083);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1084);
    } else {
    stringBuffer.append(TEXT_1085);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1086);
    }
    } else if (genFeature.isUnsettable()) {
    stringBuffer.append(TEXT_1087);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_1088);
    } else if (genFeature.isReferenceType()) {
    stringBuffer.append(TEXT_1089);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_1090);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_1091);
    } else {
    stringBuffer.append(TEXT_1092);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_1093);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1094);
    }
    stringBuffer.append(TEXT_1095);
    }
    }
    stringBuffer.append(TEXT_1096);
    if (genModel.isMinimalReflectiveMethods()) {
    stringBuffer.append(TEXT_1097);
    } else {
    stringBuffer.append(TEXT_1098);
    }
    stringBuffer.append(TEXT_1099);
    }
    if (isImplementation && !genModel.isReflectiveDelegation() && !genClass.getImplementedGenFeatures().isEmpty()) {
    stringBuffer.append(TEXT_1100);
    for (Iterator i=genClass.getAllGenFeatures().iterator(); i.hasNext();) { GenFeature genFeature = (GenFeature)i.next();
    if (!genModel.isMinimalReflectiveMethods() || genClass.getImplementedGenFeatures().contains(genFeature)) {
    stringBuffer.append(TEXT_1101);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1102);
    if (genFeature.isListType() && !genFeature.isUnsettable()) {
    if (genFeature.isWrappedFeatureMapType()) {
    if (genFeature.isVolatile()) {
    stringBuffer.append(TEXT_1103);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_1104);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1105);
    } else {
    stringBuffer.append(TEXT_1106);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1107);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_1108);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1109);
    }
    } else {
    if (genClass.isField(genFeature)) {
    stringBuffer.append(TEXT_1110);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1111);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1112);
    } else {
    if (genFeature.isField() && genClass.getImplementingGenModel(genFeature).isVirtualDelegation()) {
    stringBuffer.append(TEXT_1113);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_1114);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1115);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_1116);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1117);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1118);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1119);
    } else {
    stringBuffer.append(TEXT_1120);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1121);
    }
    }
    }
    } else if (genFeature.isUnsettable()) {
    stringBuffer.append(TEXT_1122);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_1123);
    } else if (genFeature.isResolveProxies()) {
    if (genClass.isField(genFeature)) {
    stringBuffer.append(TEXT_1124);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1125);
    } else {
    if (genFeature.isField() && genClass.getImplementingGenModel(genFeature).isVirtualDelegation()) {
    stringBuffer.append(TEXT_1126);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1127);
    } else {
    stringBuffer.append(TEXT_1128);
    stringBuffer.append(genFeature.getAccessorName());
    stringBuffer.append(TEXT_1129);
    }
    }
    } else if (genFeature.isReferenceType()) {
    if (genClass.isField(genFeature)) {
    stringBuffer.append(TEXT_1130);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1131);
    } else {
    if (genFeature.isField() && genClass.getImplementingGenModel(genFeature).isVirtualDelegation()) {
    stringBuffer.append(TEXT_1132);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1133);
    } else {
    stringBuffer.append(TEXT_1134);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1135);
    }
    }
    } else if (genFeature.isPrimitiveType() || genFeature.isEnumType()) {
    if (genClass.isField(genFeature)) {
    if (genClass.isFlag(genFeature)) {
    stringBuffer.append(TEXT_1136);
    stringBuffer.append(genClass.getFlagsField(genFeature));
    stringBuffer.append(TEXT_1137);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1138);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1139);
    } else {
    stringBuffer.append(TEXT_1140);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1141);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1142);
    }
    } else {
    if (genFeature.isEnumType() && genFeature.isField() && genClass.getImplementingGenModel(genFeature).isVirtualDelegation()) {
    stringBuffer.append(TEXT_1143);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1144);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1145);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1146);
    } else {
    stringBuffer.append(TEXT_1147);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1148);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1149);
    }
    }
    } else {//datatype
    if (genClass.isField(genFeature)) {
    stringBuffer.append(TEXT_1150);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1151);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1152);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1153);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1154);
    } else {
    if (genFeature.isField() && genClass.getImplementingGenModel(genFeature).isVirtualDelegation()) {
    stringBuffer.append(TEXT_1155);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_1156);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1157);
    stringBuffer.append(genFeature.getImportedType());
    stringBuffer.append(TEXT_1158);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1159);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1160);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1161);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1162);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1163);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1164);
    } else {
    stringBuffer.append(TEXT_1165);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1166);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1167);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1168);
    stringBuffer.append(genFeature.getGetAccessor());
    stringBuffer.append(TEXT_1169);
    }
    }
    }
    }
    }
    stringBuffer.append(TEXT_1170);
    if (genModel.isMinimalReflectiveMethods()) {
    stringBuffer.append(TEXT_1171);
    } else {
    stringBuffer.append(TEXT_1172);
    }
    stringBuffer.append(TEXT_1173);
    //Class/eIsSet.override.javajetinc
    }
    if (isImplementation && !genClass.getMixinGenFeatures().isEmpty()) {
    stringBuffer.append(TEXT_1174);
    for (Iterator m=genClass.getMixinGenClasses().iterator(); m.hasNext();) { GenClass mixinGenClass = (GenClass)m.next(); 
    stringBuffer.append(TEXT_1175);
    stringBuffer.append(mixinGenClass.getImportedInterfaceName());
    stringBuffer.append(TEXT_1176);
    for (Iterator f=mixinGenClass.getGenFeatures().iterator(); f.hasNext();) { GenFeature genFeature = (GenFeature)f.next(); 
    stringBuffer.append(TEXT_1177);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1178);
    stringBuffer.append(mixinGenClass.getQualifiedFeatureID(genFeature));
    stringBuffer.append(TEXT_1179);
    }
    stringBuffer.append(TEXT_1180);
    }
    stringBuffer.append(TEXT_1181);
    for (Iterator m=genClass.getMixinGenClasses().iterator(); m.hasNext();) { GenClass mixinGenClass = (GenClass)m.next(); 
    stringBuffer.append(TEXT_1182);
    stringBuffer.append(mixinGenClass.getImportedInterfaceName());
    stringBuffer.append(TEXT_1183);
    for (Iterator f=mixinGenClass.getGenFeatures().iterator(); f.hasNext();) { GenFeature genFeature = (GenFeature)f.next(); 
    stringBuffer.append(TEXT_1184);
    stringBuffer.append(mixinGenClass.getQualifiedFeatureID(genFeature));
    stringBuffer.append(TEXT_1185);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1186);
    }
    stringBuffer.append(TEXT_1187);
    }
    stringBuffer.append(TEXT_1188);
    }
    if (isImplementation && genModel.isVirtualDelegation()) { String eVirtualValuesField = genClass.getEVirtualValuesField();
    if (eVirtualValuesField != null) {
    stringBuffer.append(TEXT_1189);
    stringBuffer.append(eVirtualValuesField);
    stringBuffer.append(TEXT_1190);
    stringBuffer.append(eVirtualValuesField);
    stringBuffer.append(TEXT_1191);
    }
    { List eVirtualIndexBitFields = genClass.getEVirtualIndexBitFields(new ArrayList());
    if (!eVirtualIndexBitFields.isEmpty()) { List allEVirtualIndexBitFields = genClass.getAllEVirtualIndexBitFields(new ArrayList());
    stringBuffer.append(TEXT_1192);
    for (int i = 0; i < allEVirtualIndexBitFields.size(); i++) {
    stringBuffer.append(TEXT_1193);
    stringBuffer.append(i);
    stringBuffer.append(TEXT_1194);
    stringBuffer.append(allEVirtualIndexBitFields.get(i));
    stringBuffer.append(TEXT_1195);
    }
    stringBuffer.append(TEXT_1196);
    for (int i = 0; i < allEVirtualIndexBitFields.size(); i++) {
    stringBuffer.append(TEXT_1197);
    stringBuffer.append(i);
    stringBuffer.append(TEXT_1198);
    stringBuffer.append(allEVirtualIndexBitFields.get(i));
    stringBuffer.append(TEXT_1199);
    }
    stringBuffer.append(TEXT_1200);
    }
    }
    }
    if (isImplementation && !genModel.isReflectiveDelegation() && !genClass.getToStringGenFeatures().isEmpty()) {
    stringBuffer.append(TEXT_1201);
    { boolean first = true;
    for (Iterator i=genClass.getToStringGenFeatures().iterator(); i.hasNext(); ) { GenFeature genFeature = (GenFeature)i.next();
    if (first) { first = false;
    stringBuffer.append(TEXT_1202);
    stringBuffer.append(genFeature.getName());
    stringBuffer.append(TEXT_1203);
    stringBuffer.append(genModel.getNonNLS());
    } else {
    stringBuffer.append(TEXT_1204);
    stringBuffer.append(genFeature.getName());
    stringBuffer.append(TEXT_1205);
    stringBuffer.append(genModel.getNonNLS());
    }
    if (genFeature.isUnsettable() && !genFeature.isListType()) {
    if (genModel.isVirtualDelegation() && !genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_1206);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1207);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1208);
    stringBuffer.append(genModel.getNonNLS());
    } else {
    if (genClass.isFlag(genFeature)) {
    stringBuffer.append(TEXT_1209);
    if (genClass.isESetFlag(genFeature)) {
    stringBuffer.append(TEXT_1210);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_1211);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1212);
    } else {
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_1213);
    }
    stringBuffer.append(TEXT_1214);
    stringBuffer.append(genClass.getFlagsField(genFeature));
    stringBuffer.append(TEXT_1215);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1216);
    stringBuffer.append(genModel.getNonNLS());
    } else {
    stringBuffer.append(TEXT_1217);
    if (genClass.isESetFlag(genFeature)) {
    stringBuffer.append(TEXT_1218);
    stringBuffer.append(genClass.getESetFlagsField(genFeature));
    stringBuffer.append(TEXT_1219);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1220);
    } else {
    stringBuffer.append(genFeature.getUncapName());
    stringBuffer.append(TEXT_1221);
    }
    stringBuffer.append(TEXT_1222);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1223);
    stringBuffer.append(genModel.getNonNLS());
    }
    }
    } else {
    if (genModel.isVirtualDelegation() && !genFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_1224);
    stringBuffer.append(genFeature.getUpperName());
    if (!genFeature.isListType() && !genFeature.isReferenceType()){
    stringBuffer.append(TEXT_1225);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1226);
    }
    stringBuffer.append(TEXT_1227);
    } else {
    if (genClass.isFlag(genFeature)) {
    stringBuffer.append(TEXT_1228);
    stringBuffer.append(genClass.getFlagsField(genFeature));
    stringBuffer.append(TEXT_1229);
    stringBuffer.append(genFeature.getUpperName());
    stringBuffer.append(TEXT_1230);
    } else {
    stringBuffer.append(TEXT_1231);
    stringBuffer.append(genFeature.getSafeName());
    stringBuffer.append(TEXT_1232);
    }
    }
    }
    }
    }
    stringBuffer.append(TEXT_1233);
    }
    if (isImplementation && !genModel.isReflectiveDelegation() && genClass.isAbstract()) {
    stringBuffer.append(TEXT_1234);
    stringBuffer.append(genClass.getClassName());
    stringBuffer.append(TEXT_1235);
    }
    if (isImplementation && genClass.isMapEntry()) { GenFeature keyFeature = genClass.getMapEntryKeyFeature(); GenFeature valueFeature = genClass.getMapEntryValueFeature();
    stringBuffer.append(TEXT_1236);
    if (keyFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_1237);
    stringBuffer.append(keyFeature.getObjectType());
    stringBuffer.append(TEXT_1238);
    } else {
    stringBuffer.append(TEXT_1239);
    }
    stringBuffer.append(TEXT_1240);
    if (keyFeature.isListType()) {
    stringBuffer.append(TEXT_1241);
    stringBuffer.append(genModel.getImportedName("java.util.Collection"));
    stringBuffer.append(TEXT_1242);
    } else if (keyFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_1243);
    stringBuffer.append(keyFeature.getObjectType());
    stringBuffer.append(TEXT_1244);
    stringBuffer.append(keyFeature.getPrimitiveValueFunction());
    stringBuffer.append(TEXT_1245);
    } else {
    stringBuffer.append(TEXT_1246);
    stringBuffer.append(keyFeature.getImportedType());
    stringBuffer.append(TEXT_1247);
    }
    stringBuffer.append(TEXT_1248);
    if (valueFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_1249);
    stringBuffer.append(valueFeature.getObjectType());
    stringBuffer.append(TEXT_1250);
    } else {
    stringBuffer.append(TEXT_1251);
    }
    stringBuffer.append(TEXT_1252);
    if (valueFeature.isListType()) {
    stringBuffer.append(TEXT_1253);
    stringBuffer.append(genModel.getImportedName("java.util.Collection"));
    stringBuffer.append(TEXT_1254);
    } else if (valueFeature.isPrimitiveType()) {
    stringBuffer.append(TEXT_1255);
    stringBuffer.append(valueFeature.getObjectType());
    stringBuffer.append(TEXT_1256);
    stringBuffer.append(valueFeature.getPrimitiveValueFunction());
    stringBuffer.append(TEXT_1257);
    } else {
    stringBuffer.append(TEXT_1258);
    stringBuffer.append(valueFeature.getImportedType());
    stringBuffer.append(TEXT_1259);
    }
    stringBuffer.append(TEXT_1260);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.common.util.EMap"));
    stringBuffer.append(TEXT_1261);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.ecore.EObject"));
    stringBuffer.append(TEXT_1262);
    stringBuffer.append(genModel.getImportedName("org.eclipse.emf.common.util.EMap"));
    stringBuffer.append(TEXT_1263);
    }
    stringBuffer.append(TEXT_1264);
    stringBuffer.append(isInterface ? " " + genClass.getInterfaceName() : genClass.getClassName());
    // TODO fix the space above
    genModel.emitSortedImports();
    stringBuffer.append(TEXT_1265);
    return stringBuffer.toString();
  }
}