Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6ceae10423eba155d628fa1a76d5f75eafa5900d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
/***************************************************************************************************
 * Copyright (c) 2005, 2006 IBM Corporation and others. 
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors: 
 *   IBM Corporation - initial API and implementation
 *   Oracle Corporation - revision
 **************************************************************************************************/
package org.eclipse.jst.jsf.facesconfig.emf;

import org.eclipse.emf.common.util.EMap;

import org.eclipse.emf.ecore.EObject;

import org.eclipse.emf.ecore.util.FeatureMap;

/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Document Root</b></em>'.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following features are supported:
 * <ul>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getMixed <em>Mixed</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getXMLNSPrefixMap <em>XMLNS Prefix Map</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getXSISchemaLocation <em>XSI Schema Location</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getActionListener <em>Action Listener</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getApplication <em>Application</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getApplicationFactory <em>Application Factory</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getAttribute <em>Attribute</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getAttributeClass <em>Attribute Class</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getAttributeExtension <em>Attribute Extension</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getAttributeName <em>Attribute Name</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getComponent <em>Component</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getComponentClass <em>Component Class</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getComponentExtension <em>Component Extension</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getComponentFamily <em>Component Family</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getComponentType <em>Component Type</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getConverter <em>Converter</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getConverterClass <em>Converter Class</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getConverterForClass <em>Converter For Class</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getConverterId <em>Converter Id</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getDefaultLocale <em>Default Locale</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getDefaultRenderKitId <em>Default Render Kit Id</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getDefaultValue <em>Default Value</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getDescription <em>Description</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getDisplayName <em>Display Name</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFacesConfig <em>Faces Config</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFacesContextFactory <em>Faces Context Factory</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFacet <em>Facet</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFacetExtension <em>Facet Extension</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFacetName <em>Facet Name</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFactory <em>Factory</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFromAction <em>From Action</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFromOutcome <em>From Outcome</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFromViewId <em>From View Id</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getIcon <em>Icon</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getKey <em>Key</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getKeyClass <em>Key Class</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getLargeIcon <em>Large Icon</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getLifecycle <em>Lifecycle</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getLifecycleFactory <em>Lifecycle Factory</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getListEntries <em>List Entries</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getLocaleConfig <em>Locale Config</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getManagedBean <em>Managed Bean</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getManagedBeanClass <em>Managed Bean Class</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getManagedBeanName <em>Managed Bean Name</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getManagedBeanScope <em>Managed Bean Scope</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getManagedProperty <em>Managed Property</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getMapEntries <em>Map Entries</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getMapEntry <em>Map Entry</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getMessageBundle <em>Message Bundle</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getNavigationCase <em>Navigation Case</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getNavigationHandler <em>Navigation Handler</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getNavigationRule <em>Navigation Rule</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getNullValue <em>Null Value</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getPhaseListener <em>Phase Listener</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getProperty <em>Property</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getPropertyClass <em>Property Class</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getPropertyExtension <em>Property Extension</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getPropertyName <em>Property Name</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getPropertyResolver <em>Property Resolver</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRedirect <em>Redirect</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getReferencedBean <em>Referenced Bean</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getReferencedBeanClass <em>Referenced Bean Class</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getReferencedBeanName <em>Referenced Bean Name</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRenderer <em>Renderer</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRendererClass <em>Renderer Class</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRendererExtension <em>Renderer Extension</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRendererType <em>Renderer Type</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRenderKit <em>Render Kit</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRenderKitClass <em>Render Kit Class</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRenderKitFactory <em>Render Kit Factory</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRenderKitId <em>Render Kit Id</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getSmallIcon <em>Small Icon</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getStateManager <em>State Manager</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getSuggestedValue <em>Suggested Value</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getSupportedLocale <em>Supported Locale</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getToViewId <em>To View Id</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getValidator <em>Validator</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getValidatorClass <em>Validator Class</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getValidatorId <em>Validator Id</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getValue <em>Value</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getValueClass <em>Value Class</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getVariableResolver <em>Variable Resolver</em>}</li>
 *   <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getViewHandler <em>View Handler</em>}</li>
 * </ul>
 * </p>
 *
 * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot()
 * @model extendedMetaData="name='' kind='mixed'"
 * @generated
 */
public interface DocumentRoot extends EObject {
    /**
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @generated
     */
	String copyright = "Copyright (c) 2005, 2006 IBM Corporation and others";

    /**
     * Returns the value of the '<em><b>Mixed</b></em>' attribute list.
     * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
     * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>Mixed</em>' attribute list isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
     * @return the value of the '<em>Mixed</em>' attribute list.
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Mixed()
     * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
     *        extendedMetaData="kind='elementWildcard' name=':mixed'"
     * @generated
     */
	FeatureMap getMixed();

    /**
     * Returns the value of the '<em><b>XMLNS Prefix Map</b></em>' map.
     * The key is of type {@link java.lang.String},
     * and the value is of type {@link java.lang.String},
     * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>XMLNS Prefix Map</em>' map isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
     * @return the value of the '<em>XMLNS Prefix Map</em>' map.
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_XMLNSPrefixMap()
     * @model mapType="org.eclipse.emf.ecore.EStringToStringMapEntry" keyType="java.lang.String" valueType="java.lang.String" transient="true"
     *        extendedMetaData="kind='attribute' name='xmlns:prefix'"
     * @generated
     */
	EMap getXMLNSPrefixMap();

    /**
     * Returns the value of the '<em><b>XSI Schema Location</b></em>' map.
     * The key is of type {@link java.lang.String},
     * and the value is of type {@link java.lang.String},
     * <!-- begin-user-doc -->
	 * <p>
	 * If the meaning of the '<em>XSI Schema Location</em>' map isn't clear,
	 * there really should be more of a description here...
	 * </p>
	 * <!-- end-user-doc -->
     * @return the value of the '<em>XSI Schema Location</em>' map.
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_XSISchemaLocation()
     * @model mapType="org.eclipse.emf.ecore.EStringToStringMapEntry" keyType="java.lang.String" valueType="java.lang.String" transient="true"
     *        extendedMetaData="kind='attribute' name='xsi:schemaLocation'"
     * @generated
     */
	EMap getXSISchemaLocation();

    /**
     * Returns the value of the '<em><b>Action Listener</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *  ==================== Subordinate
     *                 Elements ============================       The
     *                 "action-listener" element contains the fully
     *                 qualified class name     of the concrete ActionListener
     *                 implementation class that will be called     during the
     *                 Invoke Application phase of the request processing
     *                 lifecycle.     It must be of type "ClassName". 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Action Listener</em>' containment reference.
     * @see #setActionListener(ActionListenerType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ActionListener()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='action-listener' namespace='##targetNamespace'"
     * @generated
     */
	ActionListenerType getActionListener();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getActionListener <em>Action Listener</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Action Listener</em>' containment reference.
     * @see #getActionListener()
     * @generated
     */
	void setActionListener(ActionListenerType value);

    /**
     * Returns the value of the '<em><b>Application</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *  ==================== Definition Elements
     *                 =============================       The
     *                 "application" element provides a mechanism to
     *                 define the various     per-application-singleton
     *                 implementation classes for a particular web
     *                 application that is utilizing JavaServer Faces.  For
     *                 nested elements     that are not specified, the JSF
     *                 implementation must provide a suitable     default. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Application</em>' containment reference.
     * @see #setApplication(ApplicationType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Application()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='application' namespace='##targetNamespace'"
     * @generated
     */
	ApplicationType getApplication();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getApplication <em>Application</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Application</em>' containment reference.
     * @see #getApplication()
     * @generated
     */
	void setApplication(ApplicationType value);

    /**
     * Returns the value of the '<em><b>Application Factory</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "application-factory"
     *                 element contains the fully qualified class     name of
     *                 the concrete ApplicationFactory implementation class
     *                 that     will be called when
     *                 FactoryFinder.getFactory(APPLICATION_FACTORY) is
     *                 called. It must be of type "ClassName". 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Application Factory</em>' containment reference.
     * @see #setApplicationFactory(ApplicationFactoryType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ApplicationFactory()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='application-factory' namespace='##targetNamespace'"
     * @generated
     */
	ApplicationFactoryType getApplicationFactory();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getApplicationFactory <em>Application Factory</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Application Factory</em>' containment reference.
     * @see #getApplicationFactory()
     * @generated
     */
	void setApplicationFactory(ApplicationFactoryType value);

    /**
     * Returns the value of the '<em><b>Attribute</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "attribute" element
     *                 represents a named, typed, value associated with     the
     *                 parent UIComponent via the generic attributes mechanism.
     *                 Attribute names must be unique within the scope of the
     *                 parent (or related)     component. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Attribute</em>' containment reference.
     * @see #setAttribute(AttributeType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Attribute()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='attribute' namespace='##targetNamespace'"
     * @generated
     */
	AttributeType getAttribute();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getAttribute <em>Attribute</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Attribute</em>' containment reference.
     * @see #getAttribute()
     * @generated
     */
	void setAttribute(AttributeType value);

    /**
     * Returns the value of the '<em><b>Attribute Class</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "attribute-class" element represents the Java type of the value
     *     associated with this attribute name.  It must be of type "ClassName".
     * <!-- end-model-doc -->
     * @return the value of the '<em>Attribute Class</em>' containment reference.
     * @see #setAttributeClass(AttributeClassType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_AttributeClass()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='attribute-class' namespace='##targetNamespace'"
     * @generated
     */
	AttributeClassType getAttributeClass();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getAttributeClass <em>Attribute Class</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Attribute Class</em>' containment reference.
     * @see #getAttributeClass()
     * @generated
     */
	void setAttributeClass(AttributeClassType value);

    /**
     * Returns the value of the '<em><b>Attribute Extension</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *       Extension element for attribute.
     *                 May contain implementation     specific content. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Attribute Extension</em>' containment reference.
     * @see #setAttributeExtension(AttributeExtensionType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_AttributeExtension()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='attribute-extension' namespace='##targetNamespace'"
     * @generated
     */
	AttributeExtensionType getAttributeExtension();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getAttributeExtension <em>Attribute Extension</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Attribute Extension</em>' containment reference.
     * @see #getAttributeExtension()
     * @generated
     */
	void setAttributeExtension(AttributeExtensionType value);

    /**
     * Returns the value of the '<em><b>Attribute Name</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "attribute-name"
     *                 element represents the name under which the
     *                 corresponding value will be stored, in the generic
     *                 attributes of the     UIComponent we are related to. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Attribute Name</em>' containment reference.
     * @see #setAttributeName(AttributeNameType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_AttributeName()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='attribute-name' namespace='##targetNamespace'"
     * @generated
     */
	AttributeNameType getAttributeName();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getAttributeName <em>Attribute Name</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Attribute Name</em>' containment reference.
     * @see #getAttributeName()
     * @generated
     */
	void setAttributeName(AttributeNameType value);

    /**
     * Returns the value of the '<em><b>Component</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "component" element
     *                 represents a concrete UIComponent implementation
     *                 class that should be registered under the specified type
     *                 identifier,     along with its associated properties and
     *                 attributes.  Component types must     be unique within
     *                 the entire web application.      Nested
     *                 "attribute" elements identify generic
     *                 attributes that are recognized     by the implementation
     *                 logic of this component.  Nested "property"
     *                 elements     identify JavaBeans properties of the
     *                 component class that may be exposed     for manipulation
     *                 via tools. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Component</em>' containment reference.
     * @see #setComponent(ComponentType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Component()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='component' namespace='##targetNamespace'"
     * @generated
     */
	ComponentType getComponent();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getComponent <em>Component</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Component</em>' containment reference.
     * @see #getComponent()
     * @generated
     */
	void setComponent(ComponentType value);

    /**
     * Returns the value of the '<em><b>Component Class</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "component-class"
     *                 element represents the fully qualified class name     of
     *                 a concrete UIComponent implementation class.  It must be
     *                 of     type "ClassName". 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Component Class</em>' containment reference.
     * @see #setComponentClass(ComponentClassType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ComponentClass()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='component-class' namespace='##targetNamespace'"
     * @generated
     */
	ComponentClassType getComponentClass();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getComponentClass <em>Component Class</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Component Class</em>' containment reference.
     * @see #getComponentClass()
     * @generated
     */
	void setComponentClass(ComponentClassType value);

    /**
     * Returns the value of the '<em><b>Component Extension</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *       Extension element for component.
     *                 May contain implementation     specific content. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Component Extension</em>' containment reference.
     * @see #setComponentExtension(ComponentExtensionType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ComponentExtension()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='component-extension' namespace='##targetNamespace'"
     * @generated
     */
	ComponentExtensionType getComponentExtension();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getComponentExtension <em>Component Extension</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Component Extension</em>' containment reference.
     * @see #getComponentExtension()
     * @generated
     */
	void setComponentExtension(ComponentExtensionType value);

    /**
     * Returns the value of the '<em><b>Component Family</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "component-family" element represents the component family for
     *     which the Renderer represented by the parent "renderer" element will be
     *     used.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Component Family</em>' containment reference.
     * @see #setComponentFamily(ComponentFamilyType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ComponentFamily()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='component-family' namespace='##targetNamespace'"
     * @generated
     */
	ComponentFamilyType getComponentFamily();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getComponentFamily <em>Component Family</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Component Family</em>' containment reference.
     * @see #getComponentFamily()
     * @generated
     */
	void setComponentFamily(ComponentFamilyType value);

    /**
     * Returns the value of the '<em><b>Component Type</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "component-type"
     *                 element represents the name under which the
     *                 corresponding UIComponent class should be registered. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Component Type</em>' containment reference.
     * @see #setComponentType(ComponentTypeType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ComponentType()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='component-type' namespace='##targetNamespace'"
     * @generated
     */
	ComponentTypeType getComponentType();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getComponentType <em>Component Type</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Component Type</em>' containment reference.
     * @see #getComponentType()
     * @generated
     */
	void setComponentType(ComponentTypeType value);

    /**
     * Returns the value of the '<em><b>Converter</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "converter" element
     *                 represents a concrete Converter implementation     class
     *                 that should be registered under the specified converter
     *                 identifier.     Converter identifiers must be unique
     *                 within the entire web application.      Nested
     *                 "attribute" elements identify generic
     *                 attributes that may be     configured on the
     *                 corresponding UIComponent in order to affect the
     *                 operation of the Converter.  Nested "property"
     *                 elements identify JavaBeans     properties of the
     *                 Converter implementation class that may be configured
     *                 to affect the operation of the Converter. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Converter</em>' containment reference.
     * @see #setConverter(ConverterType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Converter()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='converter' namespace='##targetNamespace'"
     * @generated
     */
	ConverterType getConverter();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getConverter <em>Converter</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Converter</em>' containment reference.
     * @see #getConverter()
     * @generated
     */
	void setConverter(ConverterType value);

    /**
     * Returns the value of the '<em><b>Converter Class</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "converter-class" element represents the fully qualified class name
     *     of a concrete Converter implementation class.  It must be of
     *     type "ClassName".
     * <!-- end-model-doc -->
     * @return the value of the '<em>Converter Class</em>' containment reference.
     * @see #setConverterClass(ConverterClassType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ConverterClass()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='converter-class' namespace='##targetNamespace'"
     * @generated
     */
	ConverterClassType getConverterClass();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getConverterClass <em>Converter Class</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Converter Class</em>' containment reference.
     * @see #getConverterClass()
     * @generated
     */
	void setConverterClass(ConverterClassType value);

    /**
     * Returns the value of the '<em><b>Converter For Class</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "converter-for-class" element represents the fully qualified class name
     *     for which a Converter class will be registered.  It must be of
     *     type "ClassName".
     * <!-- end-model-doc -->
     * @return the value of the '<em>Converter For Class</em>' containment reference.
     * @see #setConverterForClass(ConverterForClassType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ConverterForClass()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='converter-for-class' namespace='##targetNamespace'"
     * @generated
     */
	ConverterForClassType getConverterForClass();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getConverterForClass <em>Converter For Class</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Converter For Class</em>' containment reference.
     * @see #getConverterForClass()
     * @generated
     */
	void setConverterForClass(ConverterForClassType value);

    /**
     * Returns the value of the '<em><b>Converter Id</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "converter-id" element represents the identifier under which the
     *     corresponding Converter class should be registered.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Converter Id</em>' containment reference.
     * @see #setConverterId(ConverterIdType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ConverterId()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='converter-id' namespace='##targetNamespace'"
     * @generated
     */
	ConverterIdType getConverterId();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getConverterId <em>Converter Id</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Converter Id</em>' containment reference.
     * @see #getConverterId()
     * @generated
     */
	void setConverterId(ConverterIdType value);

    /**
     * Returns the value of the '<em><b>Default Locale</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *       The "default-locale"
     *                 element declares the default locale for this
     *                 application instance.  It must be specified as
     *                 :language:[_:country:[_:variant:]] without the colons,
     *                 for example      "ja_JP_SJIS".  The separators
     *                 between the segments may be '-' or
     *                 '_'. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Default Locale</em>' containment reference.
     * @see #setDefaultLocale(DefaultLocaleType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_DefaultLocale()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='default-locale' namespace='##targetNamespace'"
     * @generated
     */
	DefaultLocaleType getDefaultLocale();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getDefaultLocale <em>Default Locale</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Default Locale</em>' containment reference.
     * @see #getDefaultLocale()
     * @generated
     */
	void setDefaultLocale(DefaultLocaleType value);

    /**
     * Returns the value of the '<em><b>Default Render Kit Id</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "default-render-kit-id" element allows the application to define
     *     a renderkit to be used other than the standard one. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Default Render Kit Id</em>' containment reference.
     * @see #setDefaultRenderKitId(DefaultRenderKitIdType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_DefaultRenderKitId()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='default-render-kit-id' namespace='##targetNamespace'"
     * @generated
     */
	DefaultRenderKitIdType getDefaultRenderKitId();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getDefaultRenderKitId <em>Default Render Kit Id</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Default Render Kit Id</em>' containment reference.
     * @see #getDefaultRenderKitId()
     * @generated
     */
	void setDefaultRenderKitId(DefaultRenderKitIdType value);

    /**
     * Returns the value of the '<em><b>Default Value</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "default-value" contains the value for the property or attribute
     *     in which this element resides.  This value differs from the
     *     "suggested-value" in that the property or attribute must take the
     *     value, whereas in "suggested-value" taking the value is optional.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Default Value</em>' containment reference.
     * @see #setDefaultValue(DefaultValueType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_DefaultValue()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='default-value' namespace='##targetNamespace'"
     * @generated
     */
	DefaultValueType getDefaultValue();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getDefaultValue <em>Default Value</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Default Value</em>' containment reference.
     * @see #getDefaultValue()
     * @generated
     */
	void setDefaultValue(DefaultValueType value);

    /**
     * Returns the value of the '<em><b>Description</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "description" element
     *                 contains a textual description of the element     it is
     *                 nested in, optionally flagged with a language code using
     *                 the     "xml:lang" attribute. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Description</em>' containment reference.
     * @see #setDescription(DescriptionType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Description()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='description' namespace='##targetNamespace'"
     * @generated
     */
	DescriptionType getDescription();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getDescription <em>Description</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Description</em>' containment reference.
     * @see #getDescription()
     * @generated
     */
	void setDescription(DescriptionType value);

    /**
     * Returns the value of the '<em><b>Display Name</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "display-name" element
     *                 is a short descriptive name describing the     entity
     *                 associated with the element it is nested in, intended to
     *                 be     displayed by tools, and optionally flagged with a
     *                 language code using     the "xml:lang"
     *                 attribute. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Display Name</em>' containment reference.
     * @see #setDisplayName(DisplayNameType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_DisplayName()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='display-name' namespace='##targetNamespace'"
     * @generated
     */
	DisplayNameType getDisplayName();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getDisplayName <em>Display Name</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Display Name</em>' containment reference.
     * @see #getDisplayName()
     * @generated
     */
	void setDisplayName(DisplayNameType value);

    /**
     * Returns the value of the '<em><b>Faces Config</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *  ==================== Top Level Elements
     *                 ==============================       The
     *                 "faces-config" element is the root of the
     *                 configuration information     hierarchy, and contains
     *                 nested elements for all of the other configuration
     *                 settings. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Faces Config</em>' containment reference.
     * @see #setFacesConfig(FacesConfigType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_FacesConfig()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='faces-config' namespace='##targetNamespace'"
     * @generated
     */
	FacesConfigType getFacesConfig();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFacesConfig <em>Faces Config</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Faces Config</em>' containment reference.
     * @see #getFacesConfig()
     * @generated
     */
	void setFacesConfig(FacesConfigType value);

    /**
     * Returns the value of the '<em><b>Faces Context Factory</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The
     *                 "faces-context-factory" element contains the
     *                 fully qualified     class name of the concrete
     *                 FacesContextFactory implementation class     that will
     *                 be called when
     *                 FactoryFinder.getFactory(FACES_CONTEXT_FACTORY) is
     *                 called. It must     be of type "ClassName". 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Faces Context Factory</em>' containment reference.
     * @see #setFacesContextFactory(FacesContextFactoryType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_FacesContextFactory()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='faces-context-factory' namespace='##targetNamespace'"
     * @generated
     */
	FacesContextFactoryType getFacesContextFactory();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFacesContextFactory <em>Faces Context Factory</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Faces Context Factory</em>' containment reference.
     * @see #getFacesContextFactory()
     * @generated
     */
	void setFacesContextFactory(FacesContextFactoryType value);

    /**
     * Returns the value of the '<em><b>Facet</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *    Define the name and other design-time information for a facet that is
     *    associated with a renderer or a component.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Facet</em>' containment reference.
     * @see #setFacet(FacetType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Facet()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='facet' namespace='##targetNamespace'"
     * @generated
     */
	FacetType getFacet();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFacet <em>Facet</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Facet</em>' containment reference.
     * @see #getFacet()
     * @generated
     */
	void setFacet(FacetType value);

    /**
     * Returns the value of the '<em><b>Facet Extension</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     Extension element for facet.  May contain implementation
     *     specific content.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Facet Extension</em>' containment reference.
     * @see #setFacetExtension(FacetExtensionType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_FacetExtension()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='facet-extension' namespace='##targetNamespace'"
     * @generated
     */
	FacetExtensionType getFacetExtension();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFacetExtension <em>Facet Extension</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Facet Extension</em>' containment reference.
     * @see #getFacetExtension()
     * @generated
     */
	void setFacetExtension(FacetExtensionType value);

    /**
     * Returns the value of the '<em><b>Facet Name</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "facet-name" element represents the facet name under which a
     *     UIComponent will be added to its parent.  It must be of type
     *     "Identifier".
     * <!-- end-model-doc -->
     * @return the value of the '<em>Facet Name</em>' containment reference.
     * @see #setFacetName(FacetNameType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_FacetName()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='facet-name' namespace='##targetNamespace'"
     * @generated
     */
	FacetNameType getFacetName();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFacetName <em>Facet Name</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Facet Name</em>' containment reference.
     * @see #getFacetName()
     * @generated
     */
	void setFacetName(FacetNameType value);

    /**
     * Returns the value of the '<em><b>Factory</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "factory" element
     *                 provides a mechanism to define the various     Factories
     *                 that comprise parts of the implementation of JavaServer
     *                 Faces.  For nested elements that are not specified, the
     *                 JSF     implementation must provide a suitable default. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Factory</em>' containment reference.
     * @see #setFactory(FactoryType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Factory()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='factory' namespace='##targetNamespace'"
     * @generated
     */
	FactoryType getFactory();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFactory <em>Factory</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Factory</em>' containment reference.
     * @see #getFactory()
     * @generated
     */
	void setFactory(FactoryType value);

    /**
     * Returns the value of the '<em><b>From Action</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "from-action" element contains an action reference expression
     *     that must have been executed (by the default ActionListener for handling
     *     application level events) in order to select this navigation rule.  If
     *     not specified, this rule will be relevant no matter which action reference
     *     was executed (or if no action reference was executed).
     * 
     *     This value must be of type "Action".
     * <!-- end-model-doc -->
     * @return the value of the '<em>From Action</em>' containment reference.
     * @see #setFromAction(FromActionType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_FromAction()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='from-action' namespace='##targetNamespace'"
     * @generated
     */
	FromActionType getFromAction();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFromAction <em>From Action</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>From Action</em>' containment reference.
     * @see #getFromAction()
     * @generated
     */
	void setFromAction(FromActionType value);

    /**
     * Returns the value of the '<em><b>From Outcome</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "from-outcome" element contains a logical outcome string returned
     *     by the execution of an application action method selected via an
     *     "actionRef" property (or a literal value specified by an "action"
     *     property) of a UICommand component.  If specified, this rule will be
     *     relevant only if the outcome value matches this element's value.  If
     *     not specified, this rule will be relevant no matter what the outcome
     *     value was.
     * <!-- end-model-doc -->
     * @return the value of the '<em>From Outcome</em>' containment reference.
     * @see #setFromOutcome(FromOutcomeType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_FromOutcome()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='from-outcome' namespace='##targetNamespace'"
     * @generated
     */
	FromOutcomeType getFromOutcome();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFromOutcome <em>From Outcome</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>From Outcome</em>' containment reference.
     * @see #getFromOutcome()
     * @generated
     */
	void setFromOutcome(FromOutcomeType value);

    /**
     * Returns the value of the '<em><b>From View Id</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "from-view-id" element contains the view identifier of the view
     *     for which the containing navigation rule is relevant.  If no
     *     "from-view" element is specified, this rule applies to navigation
     *     decisions on all views.  If this element is not specified, a value
     *     of "*" is assumed, meaning that this navigation rule applies to all
     *     views.
     * 
     *     This value must be of type "ViewIdPattern".
     * <!-- end-model-doc -->
     * @return the value of the '<em>From View Id</em>' containment reference.
     * @see #setFromViewId(FromViewIdType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_FromViewId()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='from-view-id' namespace='##targetNamespace'"
     * @generated
     */
	FromViewIdType getFromViewId();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getFromViewId <em>From View Id</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>From View Id</em>' containment reference.
     * @see #getFromViewId()
     * @generated
     */
	void setFromViewId(FromViewIdType value);

    /**
     * Returns the value of the '<em><b>Icon</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "icon" element
     *                 contains "small-icon" and
     *                 "large-icon" elements that     specify the
     *                 resoruce paths for small and large GIF or JPG icon
     *                 images     used to represent the parent element in a GUI
     *                 tool. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Icon</em>' containment reference.
     * @see #setIcon(IconType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Icon()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='icon' namespace='##targetNamespace'"
     * @generated
     */
	IconType getIcon();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getIcon <em>Icon</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Icon</em>' containment reference.
     * @see #getIcon()
     * @generated
     */
	void setIcon(IconType value);

    /**
     * Returns the value of the '<em><b>Key</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "key" element is the String representation of a map key that
     *     will be stored in a managed property of type java.util.Map.  
     * <!-- end-model-doc -->
     * @return the value of the '<em>Key</em>' containment reference.
     * @see #setKey(KeyType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Key()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='key' namespace='##targetNamespace'"
     * @generated
     */
	KeyType getKey();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getKey <em>Key</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Key</em>' containment reference.
     * @see #getKey()
     * @generated
     */
	void setKey(KeyType value);

    /**
     * Returns the value of the '<em><b>Key Class</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "key-class" element defines the Java type to which each "key"
     *     element in a set of "map-entry" elements will be converted to.  It
     *     must be of type "ClassName".  If omitted, "java.lang.String"
     *     is assumed.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Key Class</em>' containment reference.
     * @see #setKeyClass(KeyClassType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_KeyClass()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='key-class' namespace='##targetNamespace'"
     * @generated
     */
	KeyClassType getKeyClass();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getKeyClass <em>Key Class</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Key Class</em>' containment reference.
     * @see #getKeyClass()
     * @generated
     */
	void setKeyClass(KeyClassType value);

    /**
     * Returns the value of the '<em><b>Large Icon</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "large-icon" element contains the resource path to a large (32x32)
     *     icon image.  The image may be in either GIF or JPG format.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Large Icon</em>' containment reference.
     * @see #setLargeIcon(LargeIconType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_LargeIcon()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='large-icon' namespace='##targetNamespace'"
     * @generated
     */
	LargeIconType getLargeIcon();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getLargeIcon <em>Large Icon</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Large Icon</em>' containment reference.
     * @see #getLargeIcon()
     * @generated
     */
	void setLargeIcon(LargeIconType value);

    /**
     * Returns the value of the '<em><b>Lifecycle</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "lifecycle" element
     *                 provides a mechanism to specify     modifications to the
     *                 behaviour of the default Lifecycle     implementation
     *                 for this web application. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Lifecycle</em>' containment reference.
     * @see #setLifecycle(LifecycleType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Lifecycle()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='lifecycle' namespace='##targetNamespace'"
     * @generated
     */
	LifecycleType getLifecycle();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getLifecycle <em>Lifecycle</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Lifecycle</em>' containment reference.
     * @see #getLifecycle()
     * @generated
     */
	void setLifecycle(LifecycleType value);

    /**
     * Returns the value of the '<em><b>Lifecycle Factory</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "lifecycle-factory"
     *                 element contains the fully qualified class name     of
     *                 the concrete LifecycleFactory implementation class that
     *                 will be called     when
     *                 FactoryFinder.getFactory(LIFECYCLE_FACTORY) is called.
     *                 It must be      of type "ClassName". 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Lifecycle Factory</em>' containment reference.
     * @see #setLifecycleFactory(LifecycleFactoryType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_LifecycleFactory()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='lifecycle-factory' namespace='##targetNamespace'"
     * @generated
     */
	LifecycleFactoryType getLifecycleFactory();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getLifecycleFactory <em>Lifecycle Factory</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Lifecycle Factory</em>' containment reference.
     * @see #getLifecycleFactory()
     * @generated
     */
	void setLifecycleFactory(LifecycleFactoryType value);

    /**
     * Returns the value of the '<em><b>List Entries</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "list-entries" element
     *                 represents a set of initialization     elements for a
     *                 managed property that is a java.util.List or an
     *                 array.  In the former case, the "value-class"
     *                 element can optionally     be used to declare the Java
     *                 type to which each value should be     converted before
     *                 adding it to the Collection. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>List Entries</em>' containment reference.
     * @see #setListEntries(ListEntriesType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ListEntries()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='list-entries' namespace='##targetNamespace'"
     * @generated
     */
	ListEntriesType getListEntries();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getListEntries <em>List Entries</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>List Entries</em>' containment reference.
     * @see #getListEntries()
     * @generated
     */
	void setListEntries(ListEntriesType value);

    /**
     * Returns the value of the '<em><b>Locale Config</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *       The "locale-config"
     *                 element allows the app developer to declare the
     *                 supported locales for this application.   
     * <!-- end-model-doc -->
     * @return the value of the '<em>Locale Config</em>' containment reference.
     * @see #setLocaleConfig(LocaleConfigType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_LocaleConfig()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='locale-config' namespace='##targetNamespace'"
     * @generated
     */
	LocaleConfigType getLocaleConfig();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getLocaleConfig <em>Locale Config</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Locale Config</em>' containment reference.
     * @see #getLocaleConfig()
     * @generated
     */
	void setLocaleConfig(LocaleConfigType value);

    /**
     * Returns the value of the '<em><b>Managed Bean</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "managed-bean" element
     *                 represents a JavaBean, of a particular class,     that
     *                 will be dynamically instantiated at runtime (by the
     *                 default     VariableResolver implementation) if it is
     *                 referenced as the first element     of a value reference
     *                 expression, and no corresponding bean can be
     *                 identified in any scope.  In addition to the creation of
     *                 the managed bean,     and the optional storing of it
     *                 into the specified scope, the nested
     *                 managed-property elements can be used to initialize the
     *                 contents of     settable JavaBeans properties of the
     *                 created instance. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Managed Bean</em>' containment reference.
     * @see #setManagedBean(ManagedBeanType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ManagedBean()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='managed-bean' namespace='##targetNamespace'"
     * @generated
     */
	ManagedBeanType getManagedBean();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getManagedBean <em>Managed Bean</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Managed Bean</em>' containment reference.
     * @see #getManagedBean()
     * @generated
     */
	void setManagedBean(ManagedBeanType value);

    /**
     * Returns the value of the '<em><b>Managed Bean Class</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "managed-bean-class" element represents the fully qualified class
     *     name of the Java class that will be used to instantiate a new instance
     *     if creation of the specified managed bean is requested.  It must be of
     *     type "ClassName".
     * 
     *     The specified class must conform to standard JavaBeans conventions.
     *     In particular, it must have a public zero-arguments constructor, and
     *     zero or more public property setters.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Managed Bean Class</em>' containment reference.
     * @see #setManagedBeanClass(ManagedBeanClassType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ManagedBeanClass()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='managed-bean-class' namespace='##targetNamespace'"
     * @generated
     */
	ManagedBeanClassType getManagedBeanClass();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getManagedBeanClass <em>Managed Bean Class</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Managed Bean Class</em>' containment reference.
     * @see #getManagedBeanClass()
     * @generated
     */
	void setManagedBeanClass(ManagedBeanClassType value);

    /**
     * Returns the value of the '<em><b>Managed Bean Name</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "managed-bean-name" element represents the attribute name under
     *     which a managed bean will be searched for, as well as stored (unless
     *     the "managed-bean-scope" value is "none").  It must be of type
     *     "Identifier".
     * <!-- end-model-doc -->
     * @return the value of the '<em>Managed Bean Name</em>' containment reference.
     * @see #setManagedBeanName(ManagedBeanNameType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ManagedBeanName()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='managed-bean-name' namespace='##targetNamespace'"
     * @generated
     */
	ManagedBeanNameType getManagedBeanName();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getManagedBeanName <em>Managed Bean Name</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Managed Bean Name</em>' containment reference.
     * @see #getManagedBeanName()
     * @generated
     */
	void setManagedBeanName(ManagedBeanNameType value);

    /**
     * Returns the value of the '<em><b>Managed Bean Scope</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "managed-bean-scope" element represents the scope into which a newly
     *     created instance of the specified managed bean will be stored (unless
     *     the value is "none").  It must be of type "ScopeOrNone".
     * <!-- end-model-doc -->
     * @return the value of the '<em>Managed Bean Scope</em>' containment reference.
     * @see #setManagedBeanScope(ManagedBeanScopeType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ManagedBeanScope()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='managed-bean-scope' namespace='##targetNamespace'"
     * @generated
     */
	ManagedBeanScopeType getManagedBeanScope();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getManagedBeanScope <em>Managed Bean Scope</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Managed Bean Scope</em>' containment reference.
     * @see #getManagedBeanScope()
     * @generated
     */
	void setManagedBeanScope(ManagedBeanScopeType value);

    /**
     * Returns the value of the '<em><b>Managed Property</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "managed-property"
     *                 element represents an individual property of a
     *                 managed bean that will be configured to the specified
     *                 value (or value set)     if the corresponding managed
     *                 bean is automatically created. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Managed Property</em>' containment reference.
     * @see #setManagedProperty(ManagedPropertyType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ManagedProperty()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='managed-property' namespace='##targetNamespace'"
     * @generated
     */
	ManagedPropertyType getManagedProperty();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getManagedProperty <em>Managed Property</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Managed Property</em>' containment reference.
     * @see #getManagedProperty()
     * @generated
     */
	void setManagedProperty(ManagedPropertyType value);

    /**
     * Returns the value of the '<em><b>Map Entries</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "map-entries' element
     *                 represents a set of key-entry pairs that     will be
     *                 added to the computed value of a managed property of
     *                 type     java.util.Map.  In addition, the Java class
     *                 types of the key and entry     values may be optionally
     *                 declared. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Map Entries</em>' containment reference.
     * @see #setMapEntries(MapEntriesType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_MapEntries()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='map-entries' namespace='##targetNamespace'"
     * @generated
     */
	MapEntriesType getMapEntries();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getMapEntries <em>Map Entries</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Map Entries</em>' containment reference.
     * @see #getMapEntries()
     * @generated
     */
	void setMapEntries(MapEntriesType value);

    /**
     * Returns the value of the '<em><b>Map Entry</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "map-entry" element
     *                 reprsents a single key-entry pair that     will be added
     *                 to the computed value of a managed property of type
     *                 java.util.Map. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Map Entry</em>' containment reference.
     * @see #setMapEntry(MapEntryType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_MapEntry()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='map-entry' namespace='##targetNamespace'"
     * @generated
     */
	MapEntryType getMapEntry();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getMapEntry <em>Map Entry</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Map Entry</em>' containment reference.
     * @see #getMapEntry()
     * @generated
     */
	void setMapEntry(MapEntryType value);

    /**
     * Returns the value of the '<em><b>Message Bundle</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The base name of a resource bundle
     *                 representing the message resources     for this
     *                 application.  See the JavaDocs for the
     *                 "java.util.ResourceBundle"     class for more
     *                 information on the syntax of resource bundle names. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Message Bundle</em>' containment reference.
     * @see #setMessageBundle(MessageBundleType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_MessageBundle()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='message-bundle' namespace='##targetNamespace'"
     * @generated
     */
	MessageBundleType getMessageBundle();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getMessageBundle <em>Message Bundle</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Message Bundle</em>' containment reference.
     * @see #getMessageBundle()
     * @generated
     */
	void setMessageBundle(MessageBundleType value);

    /**
     * Returns the value of the '<em><b>Navigation Case</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "navigation-case"
     *                 element describes a particular combination of
     *                 conditions that must match for this case to be executed,
     *                 and the     view id of the component tree that should be
     *                 selected next. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Navigation Case</em>' containment reference.
     * @see #setNavigationCase(NavigationCaseType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_NavigationCase()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='navigation-case' namespace='##targetNamespace'"
     * @generated
     */
	NavigationCaseType getNavigationCase();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getNavigationCase <em>Navigation Case</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Navigation Case</em>' containment reference.
     * @see #getNavigationCase()
     * @generated
     */
	void setNavigationCase(NavigationCaseType value);

    /**
     * Returns the value of the '<em><b>Navigation Handler</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "navigation-handler"
     *                 element contains the fully qualified class name     of
     *                 the concrete NavigationHandler implementation class that
     *                 will be called     during the Invoke Application phase
     *                 of the request processing lifecycle,     if the default
     *                 ActionListener (provided by the JSF implementation) is
     *                 used.     It must be of type "ClassName". 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Navigation Handler</em>' containment reference.
     * @see #setNavigationHandler(NavigationHandlerType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_NavigationHandler()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='navigation-handler' namespace='##targetNamespace'"
     * @generated
     */
	NavigationHandlerType getNavigationHandler();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getNavigationHandler <em>Navigation Handler</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Navigation Handler</em>' containment reference.
     * @see #getNavigationHandler()
     * @generated
     */
	void setNavigationHandler(NavigationHandlerType value);

    /**
     * Returns the value of the '<em><b>Navigation Rule</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "navigation-rule"
     *                 element represents an individual decision rule     that
     *                 will be utilized by the default NavigationHandler
     *                 implementation to make decisions on what view should be
     *                 displayed     next, based on the view id being
     *                 processed. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Navigation Rule</em>' containment reference.
     * @see #setNavigationRule(NavigationRuleType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_NavigationRule()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='navigation-rule' namespace='##targetNamespace'"
     * @generated
     */
	NavigationRuleType getNavigationRule();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getNavigationRule <em>Navigation Rule</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Navigation Rule</em>' containment reference.
     * @see #getNavigationRule()
     * @generated
     */
	void setNavigationRule(NavigationRuleType value);

    /**
     * Returns the value of the '<em><b>Null Value</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "null-value" element
     *                 indicates that the managed property in which we     are
     *                 nested will be explicitly set to null if our managed
     *                 bean is     automatically created.  This is different
     *                 from omitting the managed     property element entirely,
     *                 which will cause no property setter to be     called for
     *                 this property.      The "null-value" element
     *                 can only be used when the associated
     *                 "property-class" identifies a Java class, not
     *                 a Java primitive. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Null Value</em>' containment reference.
     * @see #setNullValue(NullValueType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_NullValue()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='null-value' namespace='##targetNamespace'"
     * @generated
     */
	NullValueType getNullValue();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getNullValue <em>Null Value</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Null Value</em>' containment reference.
     * @see #getNullValue()
     * @generated
     */
	void setNullValue(NullValueType value);

    /**
     * Returns the value of the '<em><b>Phase Listener</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *  The "phase-listener" element
     *                 contains the fully qualified class name of the concrete
     *                 PhaseListener implementation class that will be
     *                 registered on the Lifecycle. It must be of type
     *                 "ClassName". 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Phase Listener</em>' containment reference.
     * @see #setPhaseListener(PhaseListenerType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_PhaseListener()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='phase-listener' namespace='##targetNamespace'"
     * @generated
     */
	PhaseListenerType getPhaseListener();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getPhaseListener <em>Phase Listener</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Phase Listener</em>' containment reference.
     * @see #getPhaseListener()
     * @generated
     */
	void setPhaseListener(PhaseListenerType value);

    /**
     * Returns the value of the '<em><b>Property</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "property" element
     *                 represents a JavaBean property of the Java class
     *                 represented by our parent element.      Property names
     *                 must be unique within the scope of the Java class
     *                 that is represented by the parent element, and must
     *                 correspond to     property names that will be recognized
     *                 when performing introspection     against that class via
     *                 java.beans.Introspector. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Property</em>' containment reference.
     * @see #setProperty(PropertyType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Property()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='property' namespace='##targetNamespace'"
     * @generated
     */
	PropertyType getProperty();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getProperty <em>Property</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Property</em>' containment reference.
     * @see #getProperty()
     * @generated
     */
	void setProperty(PropertyType value);

    /**
     * Returns the value of the '<em><b>Property Class</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "property-class" element represents the Java type of the value
     *     associated with this property name.  It must be of type "JavaType".
     *     If not specified, it can be inferred from existing classes; however,
     *     this element should be specified if the configuration file is going
     *     to be the source for generating the corresponding classes.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Property Class</em>' containment reference.
     * @see #setPropertyClass(PropertyClassType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_PropertyClass()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='property-class' namespace='##targetNamespace'"
     * @generated
     */
	PropertyClassType getPropertyClass();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getPropertyClass <em>Property Class</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Property Class</em>' containment reference.
     * @see #getPropertyClass()
     * @generated
     */
	void setPropertyClass(PropertyClassType value);

    /**
     * Returns the value of the '<em><b>Property Extension</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *       Extension element for property.
     *                 May contain implementation     specific content. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Property Extension</em>' containment reference.
     * @see #setPropertyExtension(PropertyExtensionType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_PropertyExtension()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='property-extension' namespace='##targetNamespace'"
     * @generated
     */
	PropertyExtensionType getPropertyExtension();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getPropertyExtension <em>Property Extension</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Property Extension</em>' containment reference.
     * @see #getPropertyExtension()
     * @generated
     */
	void setPropertyExtension(PropertyExtensionType value);

    /**
     * Returns the value of the '<em><b>Property Name</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "property-name" element represents the JavaBeans property name
     *     under which the corresponding value may be stored.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Property Name</em>' containment reference.
     * @see #setPropertyName(PropertyNameType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_PropertyName()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='property-name' namespace='##targetNamespace'"
     * @generated
     */
	PropertyNameType getPropertyName();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getPropertyName <em>Property Name</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Property Name</em>' containment reference.
     * @see #getPropertyName()
     * @generated
     */
	void setPropertyName(PropertyNameType value);

    /**
     * Returns the value of the '<em><b>Property Resolver</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "property-resolver"
     *                 element contains the fully qualified class name     of
     *                 the concrete PropertyResolver implementation class that
     *                 will be used     during the processing of value
     *                 reference expressions.     It must be of type
     *                 "ClassName". 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Property Resolver</em>' containment reference.
     * @see #setPropertyResolver(PropertyResolverType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_PropertyResolver()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='property-resolver' namespace='##targetNamespace'"
     * @generated
     */
	PropertyResolverType getPropertyResolver();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getPropertyResolver <em>Property Resolver</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Property Resolver</em>' containment reference.
     * @see #getPropertyResolver()
     * @generated
     */
	void setPropertyResolver(PropertyResolverType value);

    /**
     * Returns the value of the '<em><b>Redirect</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "redirect" element
     *                 indicates that navigation to the specified
     *                 "to-view-id" should be accomplished by
     *                 performing an HTTP redirect     rather than the usual
     *                 ViewHandler mechanisms. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Redirect</em>' containment reference.
     * @see #setRedirect(RedirectType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Redirect()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='redirect' namespace='##targetNamespace'"
     * @generated
     */
	RedirectType getRedirect();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRedirect <em>Redirect</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Redirect</em>' containment reference.
     * @see #getRedirect()
     * @generated
     */
	void setRedirect(RedirectType value);

    /**
     * Returns the value of the '<em><b>Referenced Bean</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "referenced-bean"
     *                 element represents at design time the promise     that a
     *                 Java object of the specified type will exist at runtime
     *                 in some     scope, under the specified key.  This can be
     *                 used by design time tools     to construct user
     *                 interface dialogs based on the properties of the
     *                 specified class.  The presence or absence of a
     *                 referenced bean     element has no impact on the
     *                 JavaServer Faces runtime environment     inside a web
     *                 application. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Referenced Bean</em>' containment reference.
     * @see #setReferencedBean(ReferencedBeanType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ReferencedBean()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='referenced-bean' namespace='##targetNamespace'"
     * @generated
     */
	ReferencedBeanType getReferencedBean();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getReferencedBean <em>Referenced Bean</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Referenced Bean</em>' containment reference.
     * @see #getReferencedBean()
     * @generated
     */
	void setReferencedBean(ReferencedBeanType value);

    /**
     * Returns the value of the '<em><b>Referenced Bean Class</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "referenced-bean-class" element represents the fully qualified class
     *     name of the Java class (either abstract or concrete) or Java interface
     *     implemented by the corresponding referenced bean.  It must be of type
     *     "ClassName".
     * <!-- end-model-doc -->
     * @return the value of the '<em>Referenced Bean Class</em>' containment reference.
     * @see #setReferencedBeanClass(ReferencedBeanClassType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ReferencedBeanClass()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='referenced-bean-class' namespace='##targetNamespace'"
     * @generated
     */
	ReferencedBeanClassType getReferencedBeanClass();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getReferencedBeanClass <em>Referenced Bean Class</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Referenced Bean Class</em>' containment reference.
     * @see #getReferencedBeanClass()
     * @generated
     */
	void setReferencedBeanClass(ReferencedBeanClassType value);

    /**
     * Returns the value of the '<em><b>Referenced Bean Name</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "referenced-bean-name" element represents the attribute name under
     *     which the corresponding referenced bean may be assumed to be stored,
     *     in one of the scopes defined by the "Scope" type.  It must be of type
     *     "Identifier".
     * <!-- end-model-doc -->
     * @return the value of the '<em>Referenced Bean Name</em>' containment reference.
     * @see #setReferencedBeanName(ReferencedBeanNameType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ReferencedBeanName()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='referenced-bean-name' namespace='##targetNamespace'"
     * @generated
     */
	ReferencedBeanNameType getReferencedBeanName();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getReferencedBeanName <em>Referenced Bean Name</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Referenced Bean Name</em>' containment reference.
     * @see #getReferencedBeanName()
     * @generated
     */
	void setReferencedBeanName(ReferencedBeanNameType value);

    /**
     * Returns the value of the '<em><b>Renderer</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "renderer" element
     *                 represents a concrete Renderer implementation     class
     *                 that should be registered under the specified type
     *                 identifier,     in the RenderKit associated with the
     *                 parent render-kit element.  Renderer     types must be
     *                 unique within the RenderKit associated with the parent
     *                 "render-kit" element.      Nested
     *                 "attribute" elements identify generic
     *                 component attributes that     are recognized by this
     *                 renderer.  Nested "supported-component-type"
     *                 and     "supported-component-class" elements
     *                 identify supported component classes,     by their type
     *                 identifiers or the implementation class name,
     *                 respectively,     that are supported by this Renderer. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Renderer</em>' containment reference.
     * @see #setRenderer(RendererType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Renderer()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='renderer' namespace='##targetNamespace'"
     * @generated
     */
	RendererType getRenderer();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRenderer <em>Renderer</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Renderer</em>' containment reference.
     * @see #getRenderer()
     * @generated
     */
	void setRenderer(RendererType value);

    /**
     * Returns the value of the '<em><b>Renderer Class</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "renderer-class" element represents the fully qualified class name
     *     of a concrete Renderer implementation class.  It must be of
     *     type "ClassName".
     * <!-- end-model-doc -->
     * @return the value of the '<em>Renderer Class</em>' containment reference.
     * @see #setRendererClass(RendererClassType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_RendererClass()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='renderer-class' namespace='##targetNamespace'"
     * @generated
     */
	RendererClassType getRendererClass();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRendererClass <em>Renderer Class</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Renderer Class</em>' containment reference.
     * @see #getRendererClass()
     * @generated
     */
	void setRendererClass(RendererClassType value);

    /**
     * Returns the value of the '<em><b>Renderer Extension</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *       Extension element for renderer.
     *                 May contain implementation     specific content. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Renderer Extension</em>' containment reference.
     * @see #setRendererExtension(RendererExtensionType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_RendererExtension()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='renderer-extension' namespace='##targetNamespace'"
     * @generated
     */
	RendererExtensionType getRendererExtension();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRendererExtension <em>Renderer Extension</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Renderer Extension</em>' containment reference.
     * @see #getRendererExtension()
     * @generated
     */
	void setRendererExtension(RendererExtensionType value);

    /**
     * Returns the value of the '<em><b>Renderer Type</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "renderer-type" element represents a renderer type identifier for the
     *     Renderer represented by the parent "renderer" element.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Renderer Type</em>' containment reference.
     * @see #setRendererType(RendererTypeType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_RendererType()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='renderer-type' namespace='##targetNamespace'"
     * @generated
     */
	RendererTypeType getRendererType();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRendererType <em>Renderer Type</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Renderer Type</em>' containment reference.
     * @see #getRendererType()
     * @generated
     */
	void setRendererType(RendererTypeType value);

    /**
     * Returns the value of the '<em><b>Render Kit</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "render-kit" element
     *                 represents a concrete RenderKit implementation     that
     *                 should be registered under the specified render-kit-id.
     *                 If no     render-kit-id is specified, the identifier of
     *                 the default RenderKit
     *                 (RenderKitFactory.DEFAULT_RENDER_KIT) is assumed. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Render Kit</em>' containment reference.
     * @see #setRenderKit(RenderKitType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_RenderKit()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='render-kit' namespace='##targetNamespace'"
     * @generated
     */
	RenderKitType getRenderKit();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRenderKit <em>Render Kit</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Render Kit</em>' containment reference.
     * @see #getRenderKit()
     * @generated
     */
	void setRenderKit(RenderKitType value);

    /**
     * Returns the value of the '<em><b>Render Kit Class</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "render-kit-class" element represents the fully qualified class name
     *     of a concrete RenderKit implementation class.  It must be of
     *     type "ClassName".
     * <!-- end-model-doc -->
     * @return the value of the '<em>Render Kit Class</em>' containment reference.
     * @see #setRenderKitClass(RenderKitClassType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_RenderKitClass()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='render-kit-class' namespace='##targetNamespace'"
     * @generated
     */
	RenderKitClassType getRenderKitClass();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRenderKitClass <em>Render Kit Class</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Render Kit Class</em>' containment reference.
     * @see #getRenderKitClass()
     * @generated
     */
	void setRenderKitClass(RenderKitClassType value);

    /**
     * Returns the value of the '<em><b>Render Kit Factory</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "render-kit-factory"
     *                 element contains the fully qualified class name     of
     *                 the concrete RenderKitFactory implementation class that
     *                 will be called     when
     *                 FactoryFinder.getFactory(RENDER_KIT_FACTORY) is called.
     *                 It must be      of type "ClassName". 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Render Kit Factory</em>' containment reference.
     * @see #setRenderKitFactory(RenderKitFactoryType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_RenderKitFactory()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='render-kit-factory' namespace='##targetNamespace'"
     * @generated
     */
	RenderKitFactoryType getRenderKitFactory();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRenderKitFactory <em>Render Kit Factory</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Render Kit Factory</em>' containment reference.
     * @see #getRenderKitFactory()
     * @generated
     */
	void setRenderKitFactory(RenderKitFactoryType value);

    /**
     * Returns the value of the '<em><b>Render Kit Id</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "render-kit-id" element represents an identifier for the
     *     RenderKit represented by the parent "render-kit" element.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Render Kit Id</em>' containment reference.
     * @see #setRenderKitId(RenderKitIdType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_RenderKitId()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='render-kit-id' namespace='##targetNamespace'"
     * @generated
     */
	RenderKitIdType getRenderKitId();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getRenderKitId <em>Render Kit Id</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Render Kit Id</em>' containment reference.
     * @see #getRenderKitId()
     * @generated
     */
	void setRenderKitId(RenderKitIdType value);

    /**
     * Returns the value of the '<em><b>Small Icon</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "small-icon" element contains the resource path to a small (16x16)
     *     icon image.  The image may be in either GIF or JPG format.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Small Icon</em>' containment reference.
     * @see #setSmallIcon(SmallIconType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_SmallIcon()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='small-icon' namespace='##targetNamespace'"
     * @generated
     */
	SmallIconType getSmallIcon();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getSmallIcon <em>Small Icon</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Small Icon</em>' containment reference.
     * @see #getSmallIcon()
     * @generated
     */
	void setSmallIcon(SmallIconType value);

    /**
     * Returns the value of the '<em><b>State Manager</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *       The "state-manager"
     *                 element contains the fully qualified class name     of
     *                 the concrete StateManager implementation class that will
     *                 be called     during the Restore View and Render
     *                 Response phases of the request     processing lifecycle.
     *                 The faces implementation must provide a     default
     *                 implementation of this class 
     * <!-- end-model-doc -->
     * @return the value of the '<em>State Manager</em>' containment reference.
     * @see #setStateManager(StateManagerType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_StateManager()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='state-manager' namespace='##targetNamespace'"
     * @generated
     */
	StateManagerType getStateManager();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getStateManager <em>State Manager</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>State Manager</em>' containment reference.
     * @see #getStateManager()
     * @generated
     */
	void setStateManager(StateManagerType value);

    /**
     * Returns the value of the '<em><b>Suggested Value</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "suggested-value" contains the value for the property or
     *     attribute in which this element resides.  This value is advisory
     *     only and is intended for tools to use when populating pallettes.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Suggested Value</em>' containment reference.
     * @see #setSuggestedValue(SuggestedValueType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_SuggestedValue()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='suggested-value' namespace='##targetNamespace'"
     * @generated
     */
	SuggestedValueType getSuggestedValue();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getSuggestedValue <em>Suggested Value</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Suggested Value</em>' containment reference.
     * @see #getSuggestedValue()
     * @generated
     */
	void setSuggestedValue(SuggestedValueType value);

    /**
     * Returns the value of the '<em><b>Supported Locale</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *       The "supported-locale"
     *                 element allows authors to declare which      locales are
     *                 supported in this application instance.       It must be
     *                 specified as :language:[_:country:[_:variant:]] without
     *                 the colons, for example "ja_JP_SJIS".  The
     *                 separators between the      segments may be
     *                 '-' or '_'. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Supported Locale</em>' containment reference.
     * @see #setSupportedLocale(SupportedLocaleType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_SupportedLocale()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='supported-locale' namespace='##targetNamespace'"
     * @generated
     */
	SupportedLocaleType getSupportedLocale();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getSupportedLocale <em>Supported Locale</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Supported Locale</em>' containment reference.
     * @see #getSupportedLocale()
     * @generated
     */
	void setSupportedLocale(SupportedLocaleType value);

    /**
     * Returns the value of the '<em><b>To View Id</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "to-view" element contains the view identifier of the next view
     *     that should be displayed if this navigation rule is matched.  It
     *     must be of type "ViewId".
     * <!-- end-model-doc -->
     * @return the value of the '<em>To View Id</em>' containment reference.
     * @see #setToViewId(ToViewIdType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ToViewId()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='to-view-id' namespace='##targetNamespace'"
     * @generated
     */
	ToViewIdType getToViewId();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getToViewId <em>To View Id</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>To View Id</em>' containment reference.
     * @see #getToViewId()
     * @generated
     */
	void setToViewId(ToViewIdType value);

    /**
     * Returns the value of the '<em><b>Validator</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "validator" element
     *                 represents a concrete Validator implementation     class
     *                 that should be registered under the specified validator
     *                 identifier.     Validator identifiers must be unique
     *                 within the entire web application.      Nested
     *                 "attribute" elements identify generic
     *                 attributes that may be     configured on the
     *                 corresponding UIComponent in order to affect the
     *                 operation of the Validator.  Nested "property"
     *                 elements identify JavaBeans     properties of the
     *                 Validator implementation class that may be configured
     *                 to affect the operation of the Validator. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Validator</em>' containment reference.
     * @see #setValidator(ValidatorType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Validator()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='validator' namespace='##targetNamespace'"
     * @generated
     */
	ValidatorType getValidator();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getValidator <em>Validator</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Validator</em>' containment reference.
     * @see #getValidator()
     * @generated
     */
	void setValidator(ValidatorType value);

    /**
     * Returns the value of the '<em><b>Validator Class</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "validator-class" element represents the fully qualified class name
     *     of a concrete Validator implementation class.  It must be of
     *     type "ClassName".
     * <!-- end-model-doc -->
     * @return the value of the '<em>Validator Class</em>' containment reference.
     * @see #setValidatorClass(ValidatorClassType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ValidatorClass()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='validator-class' namespace='##targetNamespace'"
     * @generated
     */
	ValidatorClassType getValidatorClass();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getValidatorClass <em>Validator Class</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Validator Class</em>' containment reference.
     * @see #getValidatorClass()
     * @generated
     */
	void setValidatorClass(ValidatorClassType value);

    /**
     * Returns the value of the '<em><b>Validator Id</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "validator-id" element represents the identifier under which the
     *     corresponding Validator class should be registered.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Validator Id</em>' containment reference.
     * @see #setValidatorId(ValidatorIdType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ValidatorId()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='validator-id' namespace='##targetNamespace'"
     * @generated
     */
	ValidatorIdType getValidatorId();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getValidatorId <em>Validator Id</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Validator Id</em>' containment reference.
     * @see #getValidatorId()
     * @generated
     */
	void setValidatorId(ValidatorIdType value);

    /**
     * Returns the value of the '<em><b>Value</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "value" element is the
     *                 String representation of a literal     value to which a
     *                 scalar managed property will be set, or a value
     *                 reference expression ("#{...}") that will be
     *                 used to calculate the     required value.  It will be
     *                 converted as specified for the actual     property type. 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Value</em>' containment reference.
     * @see #setValue(ValueType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_Value()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='value' namespace='##targetNamespace'"
     * @generated
     */
	ValueType getValue();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getValue <em>Value</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Value</em>' containment reference.
     * @see #getValue()
     * @generated
     */
	void setValue(ValueType value);

    /**
     * Returns the value of the '<em><b>Value Class</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *     The "value-class" element defines the Java type to which each
     *     "value" element's value will be converted to, prior to adding it to
     *     the "list-entries" list for a managed property that is a
     *     java.util.List, or a "map-entries" map for a managed property that
     *     is a java.util.Map.  It must be of type "ClassName".  If omitted,
     *     "java.lang.String" is assumed.
     * <!-- end-model-doc -->
     * @return the value of the '<em>Value Class</em>' containment reference.
     * @see #setValueClass(ValueClassType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ValueClass()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='value-class' namespace='##targetNamespace'"
     * @generated
     */
	ValueClassType getValueClass();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getValueClass <em>Value Class</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Value Class</em>' containment reference.
     * @see #getValueClass()
     * @generated
     */
	void setValueClass(ValueClassType value);

    /**
     * Returns the value of the '<em><b>Variable Resolver</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *      The "variable-resolver"
     *                 element contains the fully qualified class name     of
     *                 the concrete VariableResolver implementation class that
     *                 will be used     during the processing of value
     *                 reference expressions.     It must be of type
     *                 "ClassName". 
     * <!-- end-model-doc -->
     * @return the value of the '<em>Variable Resolver</em>' containment reference.
     * @see #setVariableResolver(VariableResolverType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_VariableResolver()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='variable-resolver' namespace='##targetNamespace'"
     * @generated
     */
	VariableResolverType getVariableResolver();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getVariableResolver <em>Variable Resolver</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>Variable Resolver</em>' containment reference.
     * @see #getVariableResolver()
     * @generated
     */
	void setVariableResolver(VariableResolverType value);

    /**
     * Returns the value of the '<em><b>View Handler</b></em>' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * <!-- begin-model-doc -->
     *       The "view-handler"
     *                 element contains the fully qualified class name     of
     *                 the concrete ViewHandler implementation class that will
     *                 be called     during the Restore View and Render
     *                 Response phases of the request     processing lifecycle.
     *                 The faces implementation must provide a     default
     *                 implementation of this class 
     * <!-- end-model-doc -->
     * @return the value of the '<em>View Handler</em>' containment reference.
     * @see #setViewHandler(ViewHandlerType)
     * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDocumentRoot_ViewHandler()
     * @model containment="true" upper="-2" transient="true" volatile="true" derived="true"
     *        extendedMetaData="kind='element' name='view-handler' namespace='##targetNamespace'"
     * @generated
     */
	ViewHandlerType getViewHandler();

    /**
     * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DocumentRoot#getViewHandler <em>View Handler</em>}' containment reference.
     * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
     * @param value the new value of the '<em>View Handler</em>' containment reference.
     * @see #getViewHandler()
     * @generated
     */
	void setViewHandler(ViewHandlerType value);

} // DocumentRoot

Back to the top