Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f33860db9887ff1ea5ea7765353cbeda489c2db2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
<?xml version="1.0" encoding="UTF-8"?>
<contexts:Context xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:constraints="http://www.eclipse.org/papyrus/constraints/0.9" xmlns:contexts="http://www.eclipse.org/papyrus/properties/contexts/0.9" name="simpleUML">
  <tabs label="UML" id="ecoreUML" category="org.eclipse.papyrus" image="" priority="10">
    <sections name="SinglePackage" sectionFile="ui/SinglePackage.xwt">
      <widget href="ui/SinglePackage.xwt#/"/>
    </sections>
    <sections name="MultiplePackage" sectionFile="ui/MultiplePackage.xwt">
      <widget href="ui/MultiplePackage.xwt#/"/>
    </sections>
    <sections name="SinglePackageableElement" sectionFile="ui/SinglePackageableElement.xwt">
      <widget href="ui/SinglePackageableElement.xwt#/"/>
    </sections>
    <sections name="MultiplePackageableElement" sectionFile="ui/MultiplePackageableElement.xwt">
      <widget href="ui/MultiplePackageableElement.xwt#/"/>
    </sections>
    <sections name="SingleNamedElement" sectionFile="ui/SingleNamedElement.xwt">
      <widget href="ui/SingleNamedElement.xwt#/"/>
    </sections>
    <sections name="MultipleNamedElement" sectionFile="ui/MultipleNamedElement.xwt">
      <widget href="ui/MultipleNamedElement.xwt#/"/>
    </sections>
    <sections name="SingleNamespace" sectionFile="ui/SingleNamespace.xwt">
      <widget href="ui/SingleNamespace.xwt#/"/>
    </sections>
    <sections name="MultipleNamespace" sectionFile="ui/MultipleNamespace.xwt">
      <widget href="ui/MultipleNamespace.xwt#/"/>
    </sections>
    <sections name="SingleElementImport" sectionFile="ui/SingleElementImport.xwt">
      <widget href="ui/SingleElementImport.xwt#/"/>
    </sections>
    <sections name="MultipleElementImport" sectionFile="ui/MultipleElementImport.xwt">
      <widget href="ui/MultipleElementImport.xwt#/"/>
    </sections>
    <sections name="SinglePackageImport" sectionFile="ui/SinglePackageImport.xwt">
      <widget href="ui/SinglePackageImport.xwt#/"/>
    </sections>
    <sections name="MultiplePackageImport" sectionFile="ui/MultiplePackageImport.xwt">
      <widget href="ui/MultiplePackageImport.xwt#/"/>
    </sections>
    <sections name="SingleConstraint" sectionFile="ui/SingleConstraint.xwt">
      <widget href="ui/SingleConstraint.xwt#/"/>
    </sections>
    <sections name="MultipleConstraint" sectionFile="ui/MultipleConstraint.xwt">
      <widget href="ui/MultipleConstraint.xwt#/"/>
    </sections>
    <sections name="SingleValueSpecification" sectionFile="ui/SingleValueSpecification.xwt">
      <widget href="ui/SingleValueSpecification.xwt#/"/>
    </sections>
    <sections name="MultipleValueSpecification" sectionFile="ui/MultipleValueSpecification.xwt">
      <widget href="ui/MultipleValueSpecification.xwt#/"/>
    </sections>
    <sections name="SingleTypedElement" sectionFile="ui/SingleTypedElement.xwt">
      <widget href="ui/SingleTypedElement.xwt#/"/>
    </sections>
    <sections name="MultipleTypedElement" sectionFile="ui/MultipleTypedElement.xwt">
      <widget href="ui/MultipleTypedElement.xwt#/"/>
    </sections>
    <sections name="SingleType" sectionFile="ui/SingleType.xwt">
      <widget href="ui/SingleType.xwt#/"/>
    </sections>
    <sections name="MultipleType" sectionFile="ui/MultipleType.xwt">
      <widget href="ui/MultipleType.xwt#/"/>
    </sections>
    <sections name="SingleAssociation" sectionFile="ui/SingleAssociation.xwt">
      <widget href="ui/SingleAssociation.xwt#/"/>
    </sections>
    <sections name="MultipleAssociation" sectionFile="ui/MultipleAssociation.xwt">
      <widget href="ui/MultipleAssociation.xwt#/"/>
    </sections>
    <sections name="SingleClassifier" sectionFile="ui/SingleClassifier.xwt">
      <widget href="ui/SingleClassifier.xwt#/"/>
    </sections>
    <sections name="MultipleClassifier" sectionFile="ui/MultipleClassifier.xwt">
      <widget href="ui/MultipleClassifier.xwt#/"/>
    </sections>
    <sections name="SingleRedefinableElement" sectionFile="ui/SingleRedefinableElement.xwt">
      <widget href="ui/SingleRedefinableElement.xwt#/"/>
    </sections>
    <sections name="MultipleRedefinableElement" sectionFile="ui/MultipleRedefinableElement.xwt">
      <widget href="ui/MultipleRedefinableElement.xwt#/"/>
    </sections>
    <sections name="SingleTemplateParameter" sectionFile="ui/SingleTemplateParameter.xwt">
      <widget href="ui/SingleTemplateParameter.xwt#/"/>
    </sections>
    <sections name="SingleGeneralization" sectionFile="ui/SingleGeneralization.xwt">
      <widget href="ui/SingleGeneralization.xwt#/"/>
    </sections>
    <sections name="MultipleGeneralization" sectionFile="ui/MultipleGeneralization.xwt">
      <widget href="ui/MultipleGeneralization.xwt#/"/>
    </sections>
    <sections name="SingleGeneralizationSet" sectionFile="ui/SingleGeneralizationSet.xwt">
      <widget href="ui/SingleGeneralizationSet.xwt#/"/>
    </sections>
    <sections name="MultipleGeneralizationSet" sectionFile="ui/MultipleGeneralizationSet.xwt">
      <widget href="ui/MultipleGeneralizationSet.xwt#/"/>
    </sections>
    <sections name="SingleFeature" sectionFile="ui/SingleFeature.xwt">
      <widget href="ui/SingleFeature.xwt#/"/>
    </sections>
    <sections name="MultipleFeature" sectionFile="ui/MultipleFeature.xwt">
      <widget href="ui/MultipleFeature.xwt#/"/>
    </sections>
    <sections name="SingleSubstitution" sectionFile="ui/SingleSubstitution.xwt">
      <widget href="ui/SingleSubstitution.xwt#/"/>
    </sections>
    <sections name="MultipleSubstitution" sectionFile="ui/MultipleSubstitution.xwt">
      <widget href="ui/MultipleSubstitution.xwt#/"/>
    </sections>
    <sections name="SingleRealization" sectionFile="ui/SingleRealization.xwt">
      <widget href="ui/SingleRealization.xwt#/"/>
    </sections>
    <sections name="MultipleRealization" sectionFile="ui/MultipleRealization.xwt">
      <widget href="ui/MultipleRealization.xwt#/"/>
    </sections>
    <sections name="SingleAbstraction" sectionFile="ui/SingleAbstraction.xwt">
      <widget href="ui/SingleAbstraction.xwt#/"/>
    </sections>
    <sections name="MultipleAbstraction" sectionFile="ui/MultipleAbstraction.xwt">
      <widget href="ui/MultipleAbstraction.xwt#/"/>
    </sections>
    <sections name="SingleOpaqueExpression" sectionFile="ui/SingleOpaqueExpression.xwt">
      <widget href="ui/SingleOpaqueExpression.xwt#/"/>
    </sections>
    <sections name="MultipleOpaqueExpression" sectionFile="ui/MultipleOpaqueExpression.xwt">
      <widget href="ui/MultipleOpaqueExpression.xwt#/"/>
    </sections>
    <sections name="SingleParameter" sectionFile="ui/SingleParameter.xwt">
      <widget href="ui/SingleParameter.xwt#/"/>
    </sections>
    <sections name="MultipleParameter" sectionFile="ui/MultipleParameter.xwt">
      <widget href="ui/MultipleParameter.xwt#/"/>
    </sections>
    <sections name="SingleMultiplicityElement" sectionFile="ui/SingleMultiplicityElement.xwt">
      <widget href="ui/SingleMultiplicityElement.xwt#/"/>
    </sections>
    <sections name="MultipleMultiplicityElement" sectionFile="ui/MultipleMultiplicityElement.xwt">
      <widget href="ui/MultipleMultiplicityElement.xwt#/"/>
    </sections>
    <sections name="SingleConnectableElement" sectionFile="ui/SingleConnectableElement.xwt">
      <widget href="ui/SingleConnectableElement.xwt#/"/>
    </sections>
    <sections name="MultipleConnectableElement" sectionFile="ui/MultipleConnectableElement.xwt">
      <widget href="ui/MultipleConnectableElement.xwt#/"/>
    </sections>
    <sections name="SingleConnectorEnd" sectionFile="ui/SingleConnectorEnd.xwt">
      <widget href="ui/SingleConnectorEnd.xwt#/"/>
    </sections>
    <sections name="MultipleConnectorEnd" sectionFile="ui/MultipleConnectorEnd.xwt">
      <widget href="ui/MultipleConnectorEnd.xwt#/"/>
    </sections>
    <sections name="SingleProperty" sectionFile="ui/SingleProperty.xwt">
      <widget href="ui/SingleProperty.xwt#/"/>
    </sections>
    <sections name="MultipleProperty" sectionFile="ui/MultipleProperty.xwt">
      <widget href="ui/MultipleProperty.xwt#/"/>
    </sections>
    <sections name="SingleDeploymentTarget" sectionFile="ui/SingleDeploymentTarget.xwt">
      <widget href="ui/SingleDeploymentTarget.xwt#/"/>
    </sections>
    <sections name="MultipleDeploymentTarget" sectionFile="ui/MultipleDeploymentTarget.xwt">
      <widget href="ui/MultipleDeploymentTarget.xwt#/"/>
    </sections>
    <sections name="SingleDeployment" sectionFile="ui/SingleDeployment.xwt">
      <widget href="ui/SingleDeployment.xwt#/"/>
    </sections>
    <sections name="MultipleDeployment" sectionFile="ui/MultipleDeployment.xwt">
      <widget href="ui/MultipleDeployment.xwt#/"/>
    </sections>
    <sections name="SingleDeployedArtifact" sectionFile="ui/SingleDeployedArtifact.xwt">
      <widget href="ui/SingleDeployedArtifact.xwt#/"/>
    </sections>
    <sections name="MultipleDeployedArtifact" sectionFile="ui/MultipleDeployedArtifact.xwt">
      <widget href="ui/MultipleDeployedArtifact.xwt#/"/>
    </sections>
    <sections name="SingleDeploymentSpecification" sectionFile="ui/SingleDeploymentSpecification.xwt">
      <widget href="ui/SingleDeploymentSpecification.xwt#/"/>
    </sections>
    <sections name="MultipleDeploymentSpecification" sectionFile="ui/MultipleDeploymentSpecification.xwt">
      <widget href="ui/MultipleDeploymentSpecification.xwt#/"/>
    </sections>
    <sections name="SingleArtifact" sectionFile="ui/SingleArtifact.xwt">
      <widget href="ui/SingleArtifact.xwt#/"/>
    </sections>
    <sections name="MultipleArtifact" sectionFile="ui/MultipleArtifact.xwt">
      <widget href="ui/MultipleArtifact.xwt#/"/>
    </sections>
    <sections name="SingleManifestation" sectionFile="ui/SingleManifestation.xwt">
      <widget href="ui/SingleManifestation.xwt#/"/>
    </sections>
    <sections name="MultipleManifestation" sectionFile="ui/MultipleManifestation.xwt">
      <widget href="ui/MultipleManifestation.xwt#/"/>
    </sections>
    <sections name="SingleOperation" sectionFile="ui/SingleOperation.xwt">
      <widget href="ui/SingleOperation.xwt#/"/>
    </sections>
    <sections name="MultipleOperation" sectionFile="ui/MultipleOperation.xwt">
      <widget href="ui/MultipleOperation.xwt#/"/>
    </sections>
    <sections name="SingleBehavioralFeature" sectionFile="ui/SingleBehavioralFeature.xwt">
      <widget href="ui/SingleBehavioralFeature.xwt#/"/>
    </sections>
    <sections name="MultipleBehavioralFeature" sectionFile="ui/MultipleBehavioralFeature.xwt">
      <widget href="ui/MultipleBehavioralFeature.xwt#/"/>
    </sections>
    <sections name="SingleBehavior" sectionFile="ui/SingleBehavior.xwt">
      <widget href="ui/SingleBehavior.xwt#/"/>
    </sections>
    <sections name="MultipleBehavior" sectionFile="ui/MultipleBehavior.xwt">
      <widget href="ui/MultipleBehavior.xwt#/"/>
    </sections>
    <sections name="SingleClass" sectionFile="ui/SingleClass.xwt">
      <widget href="ui/SingleClass.xwt#/"/>
    </sections>
    <sections name="MultipleClass" sectionFile="ui/MultipleClass.xwt">
      <widget href="ui/MultipleClass.xwt#/"/>
    </sections>
    <sections name="SingleBehavioredClassifier" sectionFile="ui/SingleBehavioredClassifier.xwt">
      <widget href="ui/SingleBehavioredClassifier.xwt#/"/>
    </sections>
    <sections name="MultipleBehavioredClassifier" sectionFile="ui/MultipleBehavioredClassifier.xwt">
      <widget href="ui/MultipleBehavioredClassifier.xwt#/"/>
    </sections>
    <sections name="SingleInterfaceRealization" sectionFile="ui/SingleInterfaceRealization.xwt">
      <widget href="ui/SingleInterfaceRealization.xwt#/"/>
    </sections>
    <sections name="MultipleInterfaceRealization" sectionFile="ui/MultipleInterfaceRealization.xwt">
      <widget href="ui/MultipleInterfaceRealization.xwt#/"/>
    </sections>
    <sections name="SingleInterface" sectionFile="ui/SingleInterface.xwt">
      <widget href="ui/SingleInterface.xwt#/"/>
    </sections>
    <sections name="MultipleInterface" sectionFile="ui/MultipleInterface.xwt">
      <widget href="ui/MultipleInterface.xwt#/"/>
    </sections>
    <sections name="SingleReception" sectionFile="ui/SingleReception.xwt">
      <widget href="ui/SingleReception.xwt#/"/>
    </sections>
    <sections name="MultipleReception" sectionFile="ui/MultipleReception.xwt">
      <widget href="ui/MultipleReception.xwt#/"/>
    </sections>
    <sections name="SingleSignal" sectionFile="ui/SingleSignal.xwt">
      <widget href="ui/SingleSignal.xwt#/"/>
    </sections>
    <sections name="MultipleSignal" sectionFile="ui/MultipleSignal.xwt">
      <widget href="ui/MultipleSignal.xwt#/"/>
    </sections>
    <sections name="SingleProtocolStateMachine" sectionFile="ui/SingleProtocolStateMachine.xwt">
      <widget href="ui/SingleProtocolStateMachine.xwt#/"/>
    </sections>
    <sections name="MultipleProtocolStateMachine" sectionFile="ui/MultipleProtocolStateMachine.xwt">
      <widget href="ui/MultipleProtocolStateMachine.xwt#/"/>
    </sections>
    <sections name="SingleStateMachine" sectionFile="ui/SingleStateMachine.xwt">
      <widget href="ui/SingleStateMachine.xwt#/"/>
    </sections>
    <sections name="MultipleStateMachine" sectionFile="ui/MultipleStateMachine.xwt">
      <widget href="ui/MultipleStateMachine.xwt#/"/>
    </sections>
    <sections name="SingleRegion" sectionFile="ui/SingleRegion.xwt">
      <widget href="ui/SingleRegion.xwt#/"/>
    </sections>
    <sections name="MultipleRegion" sectionFile="ui/MultipleRegion.xwt">
      <widget href="ui/MultipleRegion.xwt#/"/>
    </sections>
    <sections name="SingleVertex" sectionFile="ui/SingleVertex.xwt">
      <widget href="ui/SingleVertex.xwt#/"/>
    </sections>
    <sections name="MultipleVertex" sectionFile="ui/MultipleVertex.xwt">
      <widget href="ui/MultipleVertex.xwt#/"/>
    </sections>
    <sections name="SingleTransition" sectionFile="ui/SingleTransition.xwt">
      <widget href="ui/SingleTransition.xwt#/"/>
    </sections>
    <sections name="MultipleTransition" sectionFile="ui/MultipleTransition.xwt">
      <widget href="ui/MultipleTransition.xwt#/"/>
    </sections>
    <sections name="SingleTrigger" sectionFile="ui/SingleTrigger.xwt">
      <widget href="ui/SingleTrigger.xwt#/"/>
    </sections>
    <sections name="MultipleTrigger" sectionFile="ui/MultipleTrigger.xwt">
      <widget href="ui/MultipleTrigger.xwt#/"/>
    </sections>
    <sections name="SingleEvent" sectionFile="ui/SingleEvent.xwt">
      <widget href="ui/SingleEvent.xwt#/"/>
    </sections>
    <sections name="MultipleEvent" sectionFile="ui/MultipleEvent.xwt">
      <widget href="ui/MultipleEvent.xwt#/"/>
    </sections>
    <sections name="SinglePort" sectionFile="ui/SinglePort.xwt">
      <widget href="ui/SinglePort.xwt#/"/>
    </sections>
    <sections name="MultiplePort" sectionFile="ui/MultiplePort.xwt">
      <widget href="ui/MultiplePort.xwt#/"/>
    </sections>
    <sections name="SingleState" sectionFile="ui/SingleState.xwt">
      <widget href="ui/SingleState.xwt#/"/>
    </sections>
    <sections name="MultipleState" sectionFile="ui/MultipleState.xwt">
      <widget href="ui/MultipleState.xwt#/"/>
    </sections>
    <sections name="SingleConnectionPointReference" sectionFile="ui/SingleConnectionPointReference.xwt">
      <widget href="ui/SingleConnectionPointReference.xwt#/"/>
    </sections>
    <sections name="MultipleConnectionPointReference" sectionFile="ui/MultipleConnectionPointReference.xwt">
      <widget href="ui/MultipleConnectionPointReference.xwt#/"/>
    </sections>
    <sections name="SinglePseudostate" sectionFile="ui/SinglePseudostate.xwt">
      <widget href="ui/SinglePseudostate.xwt#/"/>
    </sections>
    <sections name="MultiplePseudostate" sectionFile="ui/MultiplePseudostate.xwt">
      <widget href="ui/MultiplePseudostate.xwt#/"/>
    </sections>
    <sections name="SingleEncapsulatedClassifier" sectionFile="ui/SingleEncapsulatedClassifier.xwt">
      <widget href="ui/SingleEncapsulatedClassifier.xwt#/"/>
    </sections>
    <sections name="MultipleEncapsulatedClassifier" sectionFile="ui/MultipleEncapsulatedClassifier.xwt">
      <widget href="ui/MultipleEncapsulatedClassifier.xwt#/"/>
    </sections>
    <sections name="SingleStructuredClassifier" sectionFile="ui/SingleStructuredClassifier.xwt">
      <widget href="ui/SingleStructuredClassifier.xwt#/"/>
    </sections>
    <sections name="MultipleStructuredClassifier" sectionFile="ui/MultipleStructuredClassifier.xwt">
      <widget href="ui/MultipleStructuredClassifier.xwt#/"/>
    </sections>
    <sections name="SingleConnector" sectionFile="ui/SingleConnector.xwt">
      <widget href="ui/SingleConnector.xwt#/"/>
    </sections>
    <sections name="MultipleConnector" sectionFile="ui/MultipleConnector.xwt">
      <widget href="ui/MultipleConnector.xwt#/"/>
    </sections>
    <sections name="SingleExtension" sectionFile="ui/SingleExtension.xwt">
      <widget href="ui/SingleExtension.xwt#/"/>
    </sections>
    <sections name="MultipleExtension" sectionFile="ui/MultipleExtension.xwt">
      <widget href="ui/MultipleExtension.xwt#/"/>
    </sections>
    <sections name="SingleExtensionEnd" sectionFile="ui/SingleExtensionEnd.xwt">
      <widget href="ui/SingleExtensionEnd.xwt#/"/>
    </sections>
    <sections name="MultipleExtensionEnd" sectionFile="ui/MultipleExtensionEnd.xwt">
      <widget href="ui/MultipleExtensionEnd.xwt#/"/>
    </sections>
    <sections name="SingleStereotype" sectionFile="ui/SingleStereotype.xwt">
      <widget href="ui/SingleStereotype.xwt#/"/>
    </sections>
    <sections name="MultipleStereotype" sectionFile="ui/MultipleStereotype.xwt">
      <widget href="ui/MultipleStereotype.xwt#/"/>
    </sections>
    <sections name="SingleProfile" sectionFile="ui/SingleProfile.xwt">
      <widget href="ui/SingleProfile.xwt#/"/>
    </sections>
    <sections name="MultipleProfile" sectionFile="ui/MultipleProfile.xwt">
      <widget href="ui/MultipleProfile.xwt#/"/>
    </sections>
    <sections name="SingleModel" sectionFile="ui/SingleModel.xwt">
      <widget href="ui/SingleModel.xwt#/"/>
    </sections>
    <sections name="MultipleModel" sectionFile="ui/MultipleModel.xwt">
      <widget href="ui/MultipleModel.xwt#/"/>
    </sections>
    <sections name="SingleParameterSet" sectionFile="ui/SingleParameterSet.xwt">
      <widget href="ui/SingleParameterSet.xwt#/"/>
    </sections>
    <sections name="MultipleParameterSet" sectionFile="ui/MultipleParameterSet.xwt">
      <widget href="ui/MultipleParameterSet.xwt#/"/>
    </sections>
    <sections name="SingleDataType" sectionFile="ui/SingleDataType.xwt">
      <widget href="ui/SingleDataType.xwt#/"/>
    </sections>
    <sections name="MultipleDataType" sectionFile="ui/MultipleDataType.xwt">
      <widget href="ui/MultipleDataType.xwt#/"/>
    </sections>
    <sections name="SingleOperationTemplateParameter" sectionFile="ui/SingleOperationTemplateParameter.xwt">
      <widget href="ui/SingleOperationTemplateParameter.xwt#/"/>
    </sections>
    <sections name="SingleStructuralFeature" sectionFile="ui/SingleStructuralFeature.xwt">
      <widget href="ui/SingleStructuralFeature.xwt#/"/>
    </sections>
    <sections name="MultipleStructuralFeature" sectionFile="ui/MultipleStructuralFeature.xwt">
      <widget href="ui/MultipleStructuralFeature.xwt#/"/>
    </sections>
    <sections name="SingleConnectableElementTemplateParameter" sectionFile="ui/SingleConnectableElementTemplateParameter.xwt">
      <widget href="ui/SingleConnectableElementTemplateParameter.xwt#/"/>
    </sections>
    <sections name="SingleCollaborationUse" sectionFile="ui/SingleCollaborationUse.xwt">
      <widget href="ui/SingleCollaborationUse.xwt#/"/>
    </sections>
    <sections name="MultipleCollaborationUse" sectionFile="ui/MultipleCollaborationUse.xwt">
      <widget href="ui/MultipleCollaborationUse.xwt#/"/>
    </sections>
    <sections name="SingleCollaboration" sectionFile="ui/SingleCollaboration.xwt">
      <widget href="ui/SingleCollaboration.xwt#/"/>
    </sections>
    <sections name="MultipleCollaboration" sectionFile="ui/MultipleCollaboration.xwt">
      <widget href="ui/MultipleCollaboration.xwt#/"/>
    </sections>
    <sections name="SingleUseCase" sectionFile="ui/SingleUseCase.xwt">
      <widget href="ui/SingleUseCase.xwt#/"/>
    </sections>
    <sections name="MultipleUseCase" sectionFile="ui/MultipleUseCase.xwt">
      <widget href="ui/MultipleUseCase.xwt#/"/>
    </sections>
    <sections name="SingleInclude" sectionFile="ui/SingleInclude.xwt">
      <widget href="ui/SingleInclude.xwt#/"/>
    </sections>
    <sections name="MultipleInclude" sectionFile="ui/MultipleInclude.xwt">
      <widget href="ui/MultipleInclude.xwt#/"/>
    </sections>
    <sections name="SingleExtend" sectionFile="ui/SingleExtend.xwt">
      <widget href="ui/SingleExtend.xwt#/"/>
    </sections>
    <sections name="MultipleExtend" sectionFile="ui/MultipleExtend.xwt">
      <widget href="ui/MultipleExtend.xwt#/"/>
    </sections>
    <sections name="SingleExtensionPoint" sectionFile="ui/SingleExtensionPoint.xwt">
      <widget href="ui/SingleExtensionPoint.xwt#/"/>
    </sections>
    <sections name="MultipleExtensionPoint" sectionFile="ui/MultipleExtensionPoint.xwt">
      <widget href="ui/MultipleExtensionPoint.xwt#/"/>
    </sections>
    <sections name="SingleRedefinableTemplateSignature" sectionFile="ui/SingleRedefinableTemplateSignature.xwt">
      <widget href="ui/SingleRedefinableTemplateSignature.xwt#/"/>
    </sections>
    <sections name="MultipleRedefinableTemplateSignature" sectionFile="ui/MultipleRedefinableTemplateSignature.xwt">
      <widget href="ui/MultipleRedefinableTemplateSignature.xwt#/"/>
    </sections>
    <sections name="SingleClassifierTemplateParameter" sectionFile="ui/SingleClassifierTemplateParameter.xwt">
      <widget href="ui/SingleClassifierTemplateParameter.xwt#/"/>
    </sections>
    <sections name="MultipleClassifierTemplateParameter" sectionFile="ui/MultipleClassifierTemplateParameter.xwt">
      <widget href="ui/MultipleClassifierTemplateParameter.xwt#/"/>
    </sections>
    <sections name="SingleStringExpression" sectionFile="ui/SingleStringExpression.xwt">
      <widget href="ui/SingleStringExpression.xwt#/"/>
    </sections>
    <sections name="MultipleStringExpression" sectionFile="ui/MultipleStringExpression.xwt">
      <widget href="ui/MultipleStringExpression.xwt#/"/>
    </sections>
    <sections name="SingleExpression" sectionFile="ui/SingleExpression.xwt">
      <widget href="ui/SingleExpression.xwt#/"/>
    </sections>
    <sections name="MultipleExpression" sectionFile="ui/MultipleExpression.xwt">
      <widget href="ui/MultipleExpression.xwt#/"/>
    </sections>
    <sections name="SingleUsage" sectionFile="ui/SingleUsage.xwt">
      <widget href="ui/SingleUsage.xwt#/"/>
    </sections>
    <sections name="MultipleUsage" sectionFile="ui/MultipleUsage.xwt">
      <widget href="ui/MultipleUsage.xwt#/"/>
    </sections>
    <sections name="SingleProfileApplication" sectionFile="ui/SingleProfileApplication.xwt">
      <widget href="ui/SingleProfileApplication.xwt#/"/>
    </sections>
    <sections name="MultipleProfileApplication" sectionFile="ui/MultipleProfileApplication.xwt">
      <widget href="ui/MultipleProfileApplication.xwt#/"/>
    </sections>
    <sections name="SingleEnumeration" sectionFile="ui/SingleEnumeration.xwt">
      <widget href="ui/SingleEnumeration.xwt#/"/>
    </sections>
    <sections name="MultipleEnumeration" sectionFile="ui/MultipleEnumeration.xwt">
      <widget href="ui/MultipleEnumeration.xwt#/"/>
    </sections>
    <sections name="SingleEnumerationLiteral" sectionFile="ui/SingleEnumerationLiteral.xwt">
      <widget href="ui/SingleEnumerationLiteral.xwt#/"/>
    </sections>
    <sections name="MultipleEnumerationLiteral" sectionFile="ui/MultipleEnumerationLiteral.xwt">
      <widget href="ui/MultipleEnumerationLiteral.xwt#/"/>
    </sections>
    <sections name="SingleInstanceSpecification" sectionFile="ui/SingleInstanceSpecification.xwt">
      <widget href="ui/SingleInstanceSpecification.xwt#/"/>
    </sections>
    <sections name="MultipleInstanceSpecification" sectionFile="ui/MultipleInstanceSpecification.xwt">
      <widget href="ui/MultipleInstanceSpecification.xwt#/"/>
    </sections>
    <sections name="SingleSlot" sectionFile="ui/SingleSlot.xwt">
      <widget href="ui/SingleSlot.xwt#/"/>
    </sections>
    <sections name="SinglePrimitiveType" sectionFile="ui/SinglePrimitiveType.xwt">
      <widget href="ui/SinglePrimitiveType.xwt#/"/>
    </sections>
    <sections name="MultiplePrimitiveType" sectionFile="ui/MultiplePrimitiveType.xwt">
      <widget href="ui/MultiplePrimitiveType.xwt#/"/>
    </sections>
    <sections name="SingleLiteralSpecification" sectionFile="ui/SingleLiteralSpecification.xwt">
      <widget href="ui/SingleLiteralSpecification.xwt#/"/>
    </sections>
    <sections name="MultipleLiteralSpecification" sectionFile="ui/MultipleLiteralSpecification.xwt">
      <widget href="ui/MultipleLiteralSpecification.xwt#/"/>
    </sections>
    <sections name="SingleLiteralInteger" sectionFile="ui/SingleLiteralInteger.xwt">
      <widget href="ui/SingleLiteralInteger.xwt#/"/>
    </sections>
    <sections name="MultipleLiteralInteger" sectionFile="ui/MultipleLiteralInteger.xwt">
      <widget href="ui/MultipleLiteralInteger.xwt#/"/>
    </sections>
    <sections name="SingleLiteralString" sectionFile="ui/SingleLiteralString.xwt">
      <widget href="ui/SingleLiteralString.xwt#/"/>
    </sections>
    <sections name="MultipleLiteralString" sectionFile="ui/MultipleLiteralString.xwt">
      <widget href="ui/MultipleLiteralString.xwt#/"/>
    </sections>
    <sections name="SingleLiteralBoolean" sectionFile="ui/SingleLiteralBoolean.xwt">
      <widget href="ui/SingleLiteralBoolean.xwt#/"/>
    </sections>
    <sections name="MultipleLiteralBoolean" sectionFile="ui/MultipleLiteralBoolean.xwt">
      <widget href="ui/MultipleLiteralBoolean.xwt#/"/>
    </sections>
    <sections name="SingleLiteralNull" sectionFile="ui/SingleLiteralNull.xwt">
      <widget href="ui/SingleLiteralNull.xwt#/"/>
    </sections>
    <sections name="MultipleLiteralNull" sectionFile="ui/MultipleLiteralNull.xwt">
      <widget href="ui/MultipleLiteralNull.xwt#/"/>
    </sections>
    <sections name="SingleInstanceValue" sectionFile="ui/SingleInstanceValue.xwt">
      <widget href="ui/SingleInstanceValue.xwt#/"/>
    </sections>
    <sections name="MultipleInstanceValue" sectionFile="ui/MultipleInstanceValue.xwt">
      <widget href="ui/MultipleInstanceValue.xwt#/"/>
    </sections>
    <sections name="SingleLiteralUnlimitedNatural" sectionFile="ui/SingleLiteralUnlimitedNatural.xwt">
      <widget href="ui/SingleLiteralUnlimitedNatural.xwt#/"/>
    </sections>
    <sections name="MultipleLiteralUnlimitedNatural" sectionFile="ui/MultipleLiteralUnlimitedNatural.xwt">
      <widget href="ui/MultipleLiteralUnlimitedNatural.xwt#/"/>
    </sections>
    <sections name="SingleOpaqueBehavior" sectionFile="ui/SingleOpaqueBehavior.xwt">
      <widget href="ui/SingleOpaqueBehavior.xwt#/"/>
    </sections>
    <sections name="MultipleOpaqueBehavior" sectionFile="ui/MultipleOpaqueBehavior.xwt">
      <widget href="ui/MultipleOpaqueBehavior.xwt#/"/>
    </sections>
    <sections name="SingleFunctionBehavior" sectionFile="ui/SingleFunctionBehavior.xwt">
      <widget href="ui/SingleFunctionBehavior.xwt#/"/>
    </sections>
    <sections name="MultipleFunctionBehavior" sectionFile="ui/MultipleFunctionBehavior.xwt">
      <widget href="ui/MultipleFunctionBehavior.xwt#/"/>
    </sections>
    <sections name="SingleOpaqueAction" sectionFile="ui/SingleOpaqueAction.xwt">
      <widget href="ui/SingleOpaqueAction.xwt#/"/>
    </sections>
    <sections name="MultipleOpaqueAction" sectionFile="ui/MultipleOpaqueAction.xwt">
      <widget href="ui/MultipleOpaqueAction.xwt#/"/>
    </sections>
    <sections name="SingleAction" sectionFile="ui/SingleAction.xwt">
      <widget href="ui/SingleAction.xwt#/"/>
    </sections>
    <sections name="MultipleAction" sectionFile="ui/MultipleAction.xwt">
      <widget href="ui/MultipleAction.xwt#/"/>
    </sections>
    <sections name="SingleExecutableNode" sectionFile="ui/SingleExecutableNode.xwt">
      <widget href="ui/SingleExecutableNode.xwt#/"/>
    </sections>
    <sections name="MultipleExecutableNode" sectionFile="ui/MultipleExecutableNode.xwt">
      <widget href="ui/MultipleExecutableNode.xwt#/"/>
    </sections>
    <sections name="SingleActivityNode" sectionFile="ui/SingleActivityNode.xwt">
      <widget href="ui/SingleActivityNode.xwt#/"/>
    </sections>
    <sections name="MultipleActivityNode" sectionFile="ui/MultipleActivityNode.xwt">
      <widget href="ui/MultipleActivityNode.xwt#/"/>
    </sections>
    <sections name="SingleStructuredActivityNode" sectionFile="ui/SingleStructuredActivityNode.xwt">
      <widget href="ui/SingleStructuredActivityNode.xwt#/"/>
    </sections>
    <sections name="MultipleStructuredActivityNode" sectionFile="ui/MultipleStructuredActivityNode.xwt">
      <widget href="ui/MultipleStructuredActivityNode.xwt#/"/>
    </sections>
    <sections name="SingleActivity" sectionFile="ui/SingleActivity.xwt">
      <widget href="ui/SingleActivity.xwt#/"/>
    </sections>
    <sections name="MultipleActivity" sectionFile="ui/MultipleActivity.xwt">
      <widget href="ui/MultipleActivity.xwt#/"/>
    </sections>
    <sections name="SingleVariable" sectionFile="ui/SingleVariable.xwt">
      <widget href="ui/SingleVariable.xwt#/"/>
    </sections>
    <sections name="MultipleVariable" sectionFile="ui/MultipleVariable.xwt">
      <widget href="ui/MultipleVariable.xwt#/"/>
    </sections>
    <sections name="SingleActivityEdge" sectionFile="ui/SingleActivityEdge.xwt">
      <widget href="ui/SingleActivityEdge.xwt#/"/>
    </sections>
    <sections name="MultipleActivityEdge" sectionFile="ui/MultipleActivityEdge.xwt">
      <widget href="ui/MultipleActivityEdge.xwt#/"/>
    </sections>
    <sections name="SingleActivityPartition" sectionFile="ui/SingleActivityPartition.xwt">
      <widget href="ui/SingleActivityPartition.xwt#/"/>
    </sections>
    <sections name="MultipleActivityPartition" sectionFile="ui/MultipleActivityPartition.xwt">
      <widget href="ui/MultipleActivityPartition.xwt#/"/>
    </sections>
    <sections name="SingleInterruptibleActivityRegion" sectionFile="ui/SingleInterruptibleActivityRegion.xwt">
      <widget href="ui/SingleInterruptibleActivityRegion.xwt#/"/>
    </sections>
    <sections name="SingleExceptionHandler" sectionFile="ui/SingleExceptionHandler.xwt">
      <widget href="ui/SingleExceptionHandler.xwt#/"/>
    </sections>
    <sections name="SingleObjectNode" sectionFile="ui/SingleObjectNode.xwt">
      <widget href="ui/SingleObjectNode.xwt#/"/>
    </sections>
    <sections name="MultipleObjectNode" sectionFile="ui/MultipleObjectNode.xwt">
      <widget href="ui/MultipleObjectNode.xwt#/"/>
    </sections>
    <sections name="SingleOutputPin" sectionFile="ui/SingleOutputPin.xwt">
      <widget href="ui/SingleOutputPin.xwt#/"/>
    </sections>
    <sections name="MultipleOutputPin" sectionFile="ui/MultipleOutputPin.xwt">
      <widget href="ui/MultipleOutputPin.xwt#/"/>
    </sections>
    <sections name="SinglePin" sectionFile="ui/SinglePin.xwt">
      <widget href="ui/SinglePin.xwt#/"/>
    </sections>
    <sections name="MultiplePin" sectionFile="ui/MultiplePin.xwt">
      <widget href="ui/MultiplePin.xwt#/"/>
    </sections>
    <sections name="SingleInputPin" sectionFile="ui/SingleInputPin.xwt">
      <widget href="ui/SingleInputPin.xwt#/"/>
    </sections>
    <sections name="MultipleInputPin" sectionFile="ui/MultipleInputPin.xwt">
      <widget href="ui/MultipleInputPin.xwt#/"/>
    </sections>
    <sections name="SingleCallAction" sectionFile="ui/SingleCallAction.xwt">
      <widget href="ui/SingleCallAction.xwt#/"/>
    </sections>
    <sections name="MultipleCallAction" sectionFile="ui/MultipleCallAction.xwt">
      <widget href="ui/MultipleCallAction.xwt#/"/>
    </sections>
    <sections name="SingleInvocationAction" sectionFile="ui/SingleInvocationAction.xwt">
      <widget href="ui/SingleInvocationAction.xwt#/"/>
    </sections>
    <sections name="MultipleInvocationAction" sectionFile="ui/MultipleInvocationAction.xwt">
      <widget href="ui/MultipleInvocationAction.xwt#/"/>
    </sections>
    <sections name="SingleSendSignalAction" sectionFile="ui/SingleSendSignalAction.xwt">
      <widget href="ui/SingleSendSignalAction.xwt#/"/>
    </sections>
    <sections name="MultipleSendSignalAction" sectionFile="ui/MultipleSendSignalAction.xwt">
      <widget href="ui/MultipleSendSignalAction.xwt#/"/>
    </sections>
    <sections name="SingleCallOperationAction" sectionFile="ui/SingleCallOperationAction.xwt">
      <widget href="ui/SingleCallOperationAction.xwt#/"/>
    </sections>
    <sections name="MultipleCallOperationAction" sectionFile="ui/MultipleCallOperationAction.xwt">
      <widget href="ui/MultipleCallOperationAction.xwt#/"/>
    </sections>
    <sections name="SingleCallBehaviorAction" sectionFile="ui/SingleCallBehaviorAction.xwt">
      <widget href="ui/SingleCallBehaviorAction.xwt#/"/>
    </sections>
    <sections name="MultipleCallBehaviorAction" sectionFile="ui/MultipleCallBehaviorAction.xwt">
      <widget href="ui/MultipleCallBehaviorAction.xwt#/"/>
    </sections>
    <sections name="SingleSequenceNode" sectionFile="ui/SingleSequenceNode.xwt">
      <widget href="ui/SingleSequenceNode.xwt#/"/>
    </sections>
    <sections name="MultipleSequenceNode" sectionFile="ui/MultipleSequenceNode.xwt">
      <widget href="ui/MultipleSequenceNode.xwt#/"/>
    </sections>
    <sections name="SingleControlNode" sectionFile="ui/SingleControlNode.xwt">
      <widget href="ui/SingleControlNode.xwt#/"/>
    </sections>
    <sections name="MultipleControlNode" sectionFile="ui/MultipleControlNode.xwt">
      <widget href="ui/MultipleControlNode.xwt#/"/>
    </sections>
    <sections name="SingleControlFlow" sectionFile="ui/SingleControlFlow.xwt">
      <widget href="ui/SingleControlFlow.xwt#/"/>
    </sections>
    <sections name="MultipleControlFlow" sectionFile="ui/MultipleControlFlow.xwt">
      <widget href="ui/MultipleControlFlow.xwt#/"/>
    </sections>
    <sections name="SingleInitialNode" sectionFile="ui/SingleInitialNode.xwt">
      <widget href="ui/SingleInitialNode.xwt#/"/>
    </sections>
    <sections name="MultipleInitialNode" sectionFile="ui/MultipleInitialNode.xwt">
      <widget href="ui/MultipleInitialNode.xwt#/"/>
    </sections>
    <sections name="SingleActivityParameterNode" sectionFile="ui/SingleActivityParameterNode.xwt">
      <widget href="ui/SingleActivityParameterNode.xwt#/"/>
    </sections>
    <sections name="MultipleActivityParameterNode" sectionFile="ui/MultipleActivityParameterNode.xwt">
      <widget href="ui/MultipleActivityParameterNode.xwt#/"/>
    </sections>
    <sections name="SingleValuePin" sectionFile="ui/SingleValuePin.xwt">
      <widget href="ui/SingleValuePin.xwt#/"/>
    </sections>
    <sections name="MultipleValuePin" sectionFile="ui/MultipleValuePin.xwt">
      <widget href="ui/MultipleValuePin.xwt#/"/>
    </sections>
    <sections name="SingleMessage" sectionFile="ui/SingleMessage.xwt">
      <widget href="ui/SingleMessage.xwt#/"/>
    </sections>
    <sections name="MultipleMessage" sectionFile="ui/MultipleMessage.xwt">
      <widget href="ui/MultipleMessage.xwt#/"/>
    </sections>
    <sections name="SingleMessageEnd" sectionFile="ui/SingleMessageEnd.xwt">
      <widget href="ui/SingleMessageEnd.xwt#/"/>
    </sections>
    <sections name="MultipleMessageEnd" sectionFile="ui/MultipleMessageEnd.xwt">
      <widget href="ui/MultipleMessageEnd.xwt#/"/>
    </sections>
    <sections name="SingleInteraction" sectionFile="ui/SingleInteraction.xwt">
      <widget href="ui/SingleInteraction.xwt#/"/>
    </sections>
    <sections name="MultipleInteraction" sectionFile="ui/MultipleInteraction.xwt">
      <widget href="ui/MultipleInteraction.xwt#/"/>
    </sections>
    <sections name="SingleInteractionFragment" sectionFile="ui/SingleInteractionFragment.xwt">
      <widget href="ui/SingleInteractionFragment.xwt#/"/>
    </sections>
    <sections name="MultipleInteractionFragment" sectionFile="ui/MultipleInteractionFragment.xwt">
      <widget href="ui/MultipleInteractionFragment.xwt#/"/>
    </sections>
    <sections name="SingleLifeline" sectionFile="ui/SingleLifeline.xwt">
      <widget href="ui/SingleLifeline.xwt#/"/>
    </sections>
    <sections name="MultipleLifeline" sectionFile="ui/MultipleLifeline.xwt">
      <widget href="ui/MultipleLifeline.xwt#/"/>
    </sections>
    <sections name="SinglePartDecomposition" sectionFile="ui/SinglePartDecomposition.xwt">
      <widget href="ui/SinglePartDecomposition.xwt#/"/>
    </sections>
    <sections name="MultiplePartDecomposition" sectionFile="ui/MultiplePartDecomposition.xwt">
      <widget href="ui/MultiplePartDecomposition.xwt#/"/>
    </sections>
    <sections name="SingleInteractionUse" sectionFile="ui/SingleInteractionUse.xwt">
      <widget href="ui/SingleInteractionUse.xwt#/"/>
    </sections>
    <sections name="MultipleInteractionUse" sectionFile="ui/MultipleInteractionUse.xwt">
      <widget href="ui/MultipleInteractionUse.xwt#/"/>
    </sections>
    <sections name="SingleGate" sectionFile="ui/SingleGate.xwt">
      <widget href="ui/SingleGate.xwt#/"/>
    </sections>
    <sections name="MultipleGate" sectionFile="ui/MultipleGate.xwt">
      <widget href="ui/MultipleGate.xwt#/"/>
    </sections>
    <sections name="SingleGeneralOrdering" sectionFile="ui/SingleGeneralOrdering.xwt">
      <widget href="ui/SingleGeneralOrdering.xwt#/"/>
    </sections>
    <sections name="MultipleGeneralOrdering" sectionFile="ui/MultipleGeneralOrdering.xwt">
      <widget href="ui/MultipleGeneralOrdering.xwt#/"/>
    </sections>
    <sections name="SingleOccurrenceSpecification" sectionFile="ui/SingleOccurrenceSpecification.xwt">
      <widget href="ui/SingleOccurrenceSpecification.xwt#/"/>
    </sections>
    <sections name="MultipleOccurrenceSpecification" sectionFile="ui/MultipleOccurrenceSpecification.xwt">
      <widget href="ui/MultipleOccurrenceSpecification.xwt#/"/>
    </sections>
    <sections name="SingleInteractionOperand" sectionFile="ui/SingleInteractionOperand.xwt">
      <widget href="ui/SingleInteractionOperand.xwt#/"/>
    </sections>
    <sections name="MultipleInteractionOperand" sectionFile="ui/MultipleInteractionOperand.xwt">
      <widget href="ui/MultipleInteractionOperand.xwt#/"/>
    </sections>
    <sections name="SingleInteractionConstraint" sectionFile="ui/SingleInteractionConstraint.xwt">
      <widget href="ui/SingleInteractionConstraint.xwt#/"/>
    </sections>
    <sections name="MultipleInteractionConstraint" sectionFile="ui/MultipleInteractionConstraint.xwt">
      <widget href="ui/MultipleInteractionConstraint.xwt#/"/>
    </sections>
    <sections name="SingleExecutionSpecification" sectionFile="ui/SingleExecutionSpecification.xwt">
      <widget href="ui/SingleExecutionSpecification.xwt#/"/>
    </sections>
    <sections name="MultipleExecutionSpecification" sectionFile="ui/MultipleExecutionSpecification.xwt">
      <widget href="ui/MultipleExecutionSpecification.xwt#/"/>
    </sections>
    <sections name="SingleStateInvariant" sectionFile="ui/SingleStateInvariant.xwt">
      <widget href="ui/SingleStateInvariant.xwt#/"/>
    </sections>
    <sections name="MultipleStateInvariant" sectionFile="ui/MultipleStateInvariant.xwt">
      <widget href="ui/MultipleStateInvariant.xwt#/"/>
    </sections>
    <sections name="SingleActionExecutionSpecification" sectionFile="ui/SingleActionExecutionSpecification.xwt">
      <widget href="ui/SingleActionExecutionSpecification.xwt#/"/>
    </sections>
    <sections name="MultipleActionExecutionSpecification" sectionFile="ui/MultipleActionExecutionSpecification.xwt">
      <widget href="ui/MultipleActionExecutionSpecification.xwt#/"/>
    </sections>
    <sections name="SingleBehaviorExecutionSpecification" sectionFile="ui/SingleBehaviorExecutionSpecification.xwt">
      <widget href="ui/SingleBehaviorExecutionSpecification.xwt#/"/>
    </sections>
    <sections name="MultipleBehaviorExecutionSpecification" sectionFile="ui/MultipleBehaviorExecutionSpecification.xwt">
      <widget href="ui/MultipleBehaviorExecutionSpecification.xwt#/"/>
    </sections>
    <sections name="SingleMessageEvent" sectionFile="ui/SingleMessageEvent.xwt">
      <widget href="ui/SingleMessageEvent.xwt#/"/>
    </sections>
    <sections name="MultipleMessageEvent" sectionFile="ui/MultipleMessageEvent.xwt">
      <widget href="ui/MultipleMessageEvent.xwt#/"/>
    </sections>
    <sections name="SingleMessageOccurrenceSpecification" sectionFile="ui/SingleMessageOccurrenceSpecification.xwt">
      <widget href="ui/SingleMessageOccurrenceSpecification.xwt#/"/>
    </sections>
    <sections name="MultipleMessageOccurrenceSpecification" sectionFile="ui/MultipleMessageOccurrenceSpecification.xwt">
      <widget href="ui/MultipleMessageOccurrenceSpecification.xwt#/"/>
    </sections>
    <sections name="SingleExecutionOccurrenceSpecification" sectionFile="ui/SingleExecutionOccurrenceSpecification.xwt">
      <widget href="ui/SingleExecutionOccurrenceSpecification.xwt#/"/>
    </sections>
    <sections name="MultipleExecutionOccurrenceSpecification" sectionFile="ui/MultipleExecutionOccurrenceSpecification.xwt">
      <widget href="ui/MultipleExecutionOccurrenceSpecification.xwt#/"/>
    </sections>
    <sections name="SingleActor" sectionFile="ui/SingleActor.xwt">
      <widget href="ui/SingleActor.xwt#/"/>
    </sections>
    <sections name="MultipleActor" sectionFile="ui/MultipleActor.xwt">
      <widget href="ui/MultipleActor.xwt#/"/>
    </sections>
    <sections name="SingleCallEvent" sectionFile="ui/SingleCallEvent.xwt">
      <widget href="ui/SingleCallEvent.xwt#/"/>
    </sections>
    <sections name="MultipleCallEvent" sectionFile="ui/MultipleCallEvent.xwt">
      <widget href="ui/MultipleCallEvent.xwt#/"/>
    </sections>
    <sections name="SingleChangeEvent" sectionFile="ui/SingleChangeEvent.xwt">
      <widget href="ui/SingleChangeEvent.xwt#/"/>
    </sections>
    <sections name="MultipleChangeEvent" sectionFile="ui/MultipleChangeEvent.xwt">
      <widget href="ui/MultipleChangeEvent.xwt#/"/>
    </sections>
    <sections name="SingleAnyReceiveEvent" sectionFile="ui/SingleAnyReceiveEvent.xwt">
      <widget href="ui/SingleAnyReceiveEvent.xwt#/"/>
    </sections>
    <sections name="MultipleAnyReceiveEvent" sectionFile="ui/MultipleAnyReceiveEvent.xwt">
      <widget href="ui/MultipleAnyReceiveEvent.xwt#/"/>
    </sections>
    <sections name="SingleForkNode" sectionFile="ui/SingleForkNode.xwt">
      <widget href="ui/SingleForkNode.xwt#/"/>
    </sections>
    <sections name="MultipleForkNode" sectionFile="ui/MultipleForkNode.xwt">
      <widget href="ui/MultipleForkNode.xwt#/"/>
    </sections>
    <sections name="SingleFlowFinalNode" sectionFile="ui/SingleFlowFinalNode.xwt">
      <widget href="ui/SingleFlowFinalNode.xwt#/"/>
    </sections>
    <sections name="MultipleFlowFinalNode" sectionFile="ui/MultipleFlowFinalNode.xwt">
      <widget href="ui/MultipleFlowFinalNode.xwt#/"/>
    </sections>
    <sections name="SingleFinalNode" sectionFile="ui/SingleFinalNode.xwt">
      <widget href="ui/SingleFinalNode.xwt#/"/>
    </sections>
    <sections name="MultipleFinalNode" sectionFile="ui/MultipleFinalNode.xwt">
      <widget href="ui/MultipleFinalNode.xwt#/"/>
    </sections>
    <sections name="SingleCentralBufferNode" sectionFile="ui/SingleCentralBufferNode.xwt">
      <widget href="ui/SingleCentralBufferNode.xwt#/"/>
    </sections>
    <sections name="MultipleCentralBufferNode" sectionFile="ui/MultipleCentralBufferNode.xwt">
      <widget href="ui/MultipleCentralBufferNode.xwt#/"/>
    </sections>
    <sections name="SingleMergeNode" sectionFile="ui/SingleMergeNode.xwt">
      <widget href="ui/SingleMergeNode.xwt#/"/>
    </sections>
    <sections name="MultipleMergeNode" sectionFile="ui/MultipleMergeNode.xwt">
      <widget href="ui/MultipleMergeNode.xwt#/"/>
    </sections>
    <sections name="SingleDecisionNode" sectionFile="ui/SingleDecisionNode.xwt">
      <widget href="ui/SingleDecisionNode.xwt#/"/>
    </sections>
    <sections name="MultipleDecisionNode" sectionFile="ui/MultipleDecisionNode.xwt">
      <widget href="ui/MultipleDecisionNode.xwt#/"/>
    </sections>
    <sections name="SingleObjectFlow" sectionFile="ui/SingleObjectFlow.xwt">
      <widget href="ui/SingleObjectFlow.xwt#/"/>
    </sections>
    <sections name="MultipleObjectFlow" sectionFile="ui/MultipleObjectFlow.xwt">
      <widget href="ui/MultipleObjectFlow.xwt#/"/>
    </sections>
    <sections name="SingleActivityFinalNode" sectionFile="ui/SingleActivityFinalNode.xwt">
      <widget href="ui/SingleActivityFinalNode.xwt#/"/>
    </sections>
    <sections name="MultipleActivityFinalNode" sectionFile="ui/MultipleActivityFinalNode.xwt">
      <widget href="ui/MultipleActivityFinalNode.xwt#/"/>
    </sections>
    <sections name="SingleComponentRealization" sectionFile="ui/SingleComponentRealization.xwt">
      <widget href="ui/SingleComponentRealization.xwt#/"/>
    </sections>
    <sections name="MultipleComponentRealization" sectionFile="ui/MultipleComponentRealization.xwt">
      <widget href="ui/MultipleComponentRealization.xwt#/"/>
    </sections>
    <sections name="SingleComponent" sectionFile="ui/SingleComponent.xwt">
      <widget href="ui/SingleComponent.xwt#/"/>
    </sections>
    <sections name="MultipleComponent" sectionFile="ui/MultipleComponent.xwt">
      <widget href="ui/MultipleComponent.xwt#/"/>
    </sections>
    <sections name="SingleNode" sectionFile="ui/SingleNode.xwt">
      <widget href="ui/SingleNode.xwt#/"/>
    </sections>
    <sections name="MultipleNode" sectionFile="ui/MultipleNode.xwt">
      <widget href="ui/MultipleNode.xwt#/"/>
    </sections>
    <sections name="SingleCommunicationPath" sectionFile="ui/SingleCommunicationPath.xwt">
      <widget href="ui/SingleCommunicationPath.xwt#/"/>
    </sections>
    <sections name="MultipleCommunicationPath" sectionFile="ui/MultipleCommunicationPath.xwt">
      <widget href="ui/MultipleCommunicationPath.xwt#/"/>
    </sections>
    <sections name="SingleDevice" sectionFile="ui/SingleDevice.xwt">
      <widget href="ui/SingleDevice.xwt#/"/>
    </sections>
    <sections name="MultipleDevice" sectionFile="ui/MultipleDevice.xwt">
      <widget href="ui/MultipleDevice.xwt#/"/>
    </sections>
    <sections name="SingleExecutionEnvironment" sectionFile="ui/SingleExecutionEnvironment.xwt">
      <widget href="ui/SingleExecutionEnvironment.xwt#/"/>
    </sections>
    <sections name="MultipleExecutionEnvironment" sectionFile="ui/MultipleExecutionEnvironment.xwt">
      <widget href="ui/MultipleExecutionEnvironment.xwt#/"/>
    </sections>
    <sections name="SingleCombinedFragment" sectionFile="ui/SingleCombinedFragment.xwt">
      <widget href="ui/SingleCombinedFragment.xwt#/"/>
    </sections>
    <sections name="MultipleCombinedFragment" sectionFile="ui/MultipleCombinedFragment.xwt">
      <widget href="ui/MultipleCombinedFragment.xwt#/"/>
    </sections>
    <sections name="SingleContinuation" sectionFile="ui/SingleContinuation.xwt">
      <widget href="ui/SingleContinuation.xwt#/"/>
    </sections>
    <sections name="MultipleContinuation" sectionFile="ui/MultipleContinuation.xwt">
      <widget href="ui/MultipleContinuation.xwt#/"/>
    </sections>
    <sections name="SingleConsiderIgnoreFragment" sectionFile="ui/SingleConsiderIgnoreFragment.xwt">
      <widget href="ui/SingleConsiderIgnoreFragment.xwt#/"/>
    </sections>
    <sections name="MultipleConsiderIgnoreFragment" sectionFile="ui/MultipleConsiderIgnoreFragment.xwt">
      <widget href="ui/MultipleConsiderIgnoreFragment.xwt#/"/>
    </sections>
    <sections name="SingleCreateObjectAction" sectionFile="ui/SingleCreateObjectAction.xwt">
      <widget href="ui/SingleCreateObjectAction.xwt#/"/>
    </sections>
    <sections name="MultipleCreateObjectAction" sectionFile="ui/MultipleCreateObjectAction.xwt">
      <widget href="ui/MultipleCreateObjectAction.xwt#/"/>
    </sections>
    <sections name="SingleDestroyObjectAction" sectionFile="ui/SingleDestroyObjectAction.xwt">
      <widget href="ui/SingleDestroyObjectAction.xwt#/"/>
    </sections>
    <sections name="MultipleDestroyObjectAction" sectionFile="ui/MultipleDestroyObjectAction.xwt">
      <widget href="ui/MultipleDestroyObjectAction.xwt#/"/>
    </sections>
    <sections name="SingleTestIdentityAction" sectionFile="ui/SingleTestIdentityAction.xwt">
      <widget href="ui/SingleTestIdentityAction.xwt#/"/>
    </sections>
    <sections name="MultipleTestIdentityAction" sectionFile="ui/MultipleTestIdentityAction.xwt">
      <widget href="ui/MultipleTestIdentityAction.xwt#/"/>
    </sections>
    <sections name="SingleReadSelfAction" sectionFile="ui/SingleReadSelfAction.xwt">
      <widget href="ui/SingleReadSelfAction.xwt#/"/>
    </sections>
    <sections name="MultipleReadSelfAction" sectionFile="ui/MultipleReadSelfAction.xwt">
      <widget href="ui/MultipleReadSelfAction.xwt#/"/>
    </sections>
    <sections name="SingleStructuralFeatureAction" sectionFile="ui/SingleStructuralFeatureAction.xwt">
      <widget href="ui/SingleStructuralFeatureAction.xwt#/"/>
    </sections>
    <sections name="MultipleStructuralFeatureAction" sectionFile="ui/MultipleStructuralFeatureAction.xwt">
      <widget href="ui/MultipleStructuralFeatureAction.xwt#/"/>
    </sections>
    <sections name="SingleReadStructuralFeatureAction" sectionFile="ui/SingleReadStructuralFeatureAction.xwt">
      <widget href="ui/SingleReadStructuralFeatureAction.xwt#/"/>
    </sections>
    <sections name="MultipleReadStructuralFeatureAction" sectionFile="ui/MultipleReadStructuralFeatureAction.xwt">
      <widget href="ui/MultipleReadStructuralFeatureAction.xwt#/"/>
    </sections>
    <sections name="SingleWriteStructuralFeatureAction" sectionFile="ui/SingleWriteStructuralFeatureAction.xwt">
      <widget href="ui/SingleWriteStructuralFeatureAction.xwt#/"/>
    </sections>
    <sections name="MultipleWriteStructuralFeatureAction" sectionFile="ui/MultipleWriteStructuralFeatureAction.xwt">
      <widget href="ui/MultipleWriteStructuralFeatureAction.xwt#/"/>
    </sections>
    <sections name="SingleClearStructuralFeatureAction" sectionFile="ui/SingleClearStructuralFeatureAction.xwt">
      <widget href="ui/SingleClearStructuralFeatureAction.xwt#/"/>
    </sections>
    <sections name="MultipleClearStructuralFeatureAction" sectionFile="ui/MultipleClearStructuralFeatureAction.xwt">
      <widget href="ui/MultipleClearStructuralFeatureAction.xwt#/"/>
    </sections>
    <sections name="SingleRemoveStructuralFeatureValueAction" sectionFile="ui/SingleRemoveStructuralFeatureValueAction.xwt">
      <widget href="ui/SingleRemoveStructuralFeatureValueAction.xwt#/"/>
    </sections>
    <sections name="MultipleRemoveStructuralFeatureValueAction" sectionFile="ui/MultipleRemoveStructuralFeatureValueAction.xwt">
      <widget href="ui/MultipleRemoveStructuralFeatureValueAction.xwt#/"/>
    </sections>
    <sections name="SingleAddStructuralFeatureValueAction" sectionFile="ui/SingleAddStructuralFeatureValueAction.xwt">
      <widget href="ui/SingleAddStructuralFeatureValueAction.xwt#/"/>
    </sections>
    <sections name="MultipleAddStructuralFeatureValueAction" sectionFile="ui/MultipleAddStructuralFeatureValueAction.xwt">
      <widget href="ui/MultipleAddStructuralFeatureValueAction.xwt#/"/>
    </sections>
    <sections name="SingleLinkAction" sectionFile="ui/SingleLinkAction.xwt">
      <widget href="ui/SingleLinkAction.xwt#/"/>
    </sections>
    <sections name="MultipleLinkAction" sectionFile="ui/MultipleLinkAction.xwt">
      <widget href="ui/MultipleLinkAction.xwt#/"/>
    </sections>
    <sections name="SingleLinkEndData" sectionFile="ui/SingleLinkEndData.xwt">
      <widget href="ui/SingleLinkEndData.xwt#/"/>
    </sections>
    <sections name="SingleQualifierValue" sectionFile="ui/SingleQualifierValue.xwt">
      <widget href="ui/SingleQualifierValue.xwt#/"/>
    </sections>
    <sections name="SingleReadLinkAction" sectionFile="ui/SingleReadLinkAction.xwt">
      <widget href="ui/SingleReadLinkAction.xwt#/"/>
    </sections>
    <sections name="MultipleReadLinkAction" sectionFile="ui/MultipleReadLinkAction.xwt">
      <widget href="ui/MultipleReadLinkAction.xwt#/"/>
    </sections>
    <sections name="SingleLinkEndCreationData" sectionFile="ui/SingleLinkEndCreationData.xwt">
      <widget href="ui/SingleLinkEndCreationData.xwt#/"/>
    </sections>
    <sections name="MultipleLinkEndCreationData" sectionFile="ui/MultipleLinkEndCreationData.xwt">
      <widget href="ui/MultipleLinkEndCreationData.xwt#/"/>
    </sections>
    <sections name="SingleCreateLinkAction" sectionFile="ui/SingleCreateLinkAction.xwt">
      <widget href="ui/SingleCreateLinkAction.xwt#/"/>
    </sections>
    <sections name="MultipleCreateLinkAction" sectionFile="ui/MultipleCreateLinkAction.xwt">
      <widget href="ui/MultipleCreateLinkAction.xwt#/"/>
    </sections>
    <sections name="SingleWriteLinkAction" sectionFile="ui/SingleWriteLinkAction.xwt">
      <widget href="ui/SingleWriteLinkAction.xwt#/"/>
    </sections>
    <sections name="MultipleWriteLinkAction" sectionFile="ui/MultipleWriteLinkAction.xwt">
      <widget href="ui/MultipleWriteLinkAction.xwt#/"/>
    </sections>
    <sections name="SingleDestroyLinkAction" sectionFile="ui/SingleDestroyLinkAction.xwt">
      <widget href="ui/SingleDestroyLinkAction.xwt#/"/>
    </sections>
    <sections name="MultipleDestroyLinkAction" sectionFile="ui/MultipleDestroyLinkAction.xwt">
      <widget href="ui/MultipleDestroyLinkAction.xwt#/"/>
    </sections>
    <sections name="SingleLinkEndDestructionData" sectionFile="ui/SingleLinkEndDestructionData.xwt">
      <widget href="ui/SingleLinkEndDestructionData.xwt#/"/>
    </sections>
    <sections name="MultipleLinkEndDestructionData" sectionFile="ui/MultipleLinkEndDestructionData.xwt">
      <widget href="ui/MultipleLinkEndDestructionData.xwt#/"/>
    </sections>
    <sections name="SingleClearAssociationAction" sectionFile="ui/SingleClearAssociationAction.xwt">
      <widget href="ui/SingleClearAssociationAction.xwt#/"/>
    </sections>
    <sections name="MultipleClearAssociationAction" sectionFile="ui/MultipleClearAssociationAction.xwt">
      <widget href="ui/MultipleClearAssociationAction.xwt#/"/>
    </sections>
    <sections name="SingleBroadcastSignalAction" sectionFile="ui/SingleBroadcastSignalAction.xwt">
      <widget href="ui/SingleBroadcastSignalAction.xwt#/"/>
    </sections>
    <sections name="MultipleBroadcastSignalAction" sectionFile="ui/MultipleBroadcastSignalAction.xwt">
      <widget href="ui/MultipleBroadcastSignalAction.xwt#/"/>
    </sections>
    <sections name="SingleSendObjectAction" sectionFile="ui/SingleSendObjectAction.xwt">
      <widget href="ui/SingleSendObjectAction.xwt#/"/>
    </sections>
    <sections name="MultipleSendObjectAction" sectionFile="ui/MultipleSendObjectAction.xwt">
      <widget href="ui/MultipleSendObjectAction.xwt#/"/>
    </sections>
    <sections name="SingleValueSpecificationAction" sectionFile="ui/SingleValueSpecificationAction.xwt">
      <widget href="ui/SingleValueSpecificationAction.xwt#/"/>
    </sections>
    <sections name="MultipleValueSpecificationAction" sectionFile="ui/MultipleValueSpecificationAction.xwt">
      <widget href="ui/MultipleValueSpecificationAction.xwt#/"/>
    </sections>
    <sections name="SingleTimeExpression" sectionFile="ui/SingleTimeExpression.xwt">
      <widget href="ui/SingleTimeExpression.xwt#/"/>
    </sections>
    <sections name="MultipleTimeExpression" sectionFile="ui/MultipleTimeExpression.xwt">
      <widget href="ui/MultipleTimeExpression.xwt#/"/>
    </sections>
    <sections name="SingleObservation" sectionFile="ui/SingleObservation.xwt">
      <widget href="ui/SingleObservation.xwt#/"/>
    </sections>
    <sections name="MultipleObservation" sectionFile="ui/MultipleObservation.xwt">
      <widget href="ui/MultipleObservation.xwt#/"/>
    </sections>
    <sections name="SingleDuration" sectionFile="ui/SingleDuration.xwt">
      <widget href="ui/SingleDuration.xwt#/"/>
    </sections>
    <sections name="MultipleDuration" sectionFile="ui/MultipleDuration.xwt">
      <widget href="ui/MultipleDuration.xwt#/"/>
    </sections>
    <sections name="SingleDurationInterval" sectionFile="ui/SingleDurationInterval.xwt">
      <widget href="ui/SingleDurationInterval.xwt#/"/>
    </sections>
    <sections name="MultipleDurationInterval" sectionFile="ui/MultipleDurationInterval.xwt">
      <widget href="ui/MultipleDurationInterval.xwt#/"/>
    </sections>
    <sections name="SingleInterval" sectionFile="ui/SingleInterval.xwt">
      <widget href="ui/SingleInterval.xwt#/"/>
    </sections>
    <sections name="MultipleInterval" sectionFile="ui/MultipleInterval.xwt">
      <widget href="ui/MultipleInterval.xwt#/"/>
    </sections>
    <sections name="SingleTimeConstraint" sectionFile="ui/SingleTimeConstraint.xwt">
      <widget href="ui/SingleTimeConstraint.xwt#/"/>
    </sections>
    <sections name="MultipleTimeConstraint" sectionFile="ui/MultipleTimeConstraint.xwt">
      <widget href="ui/MultipleTimeConstraint.xwt#/"/>
    </sections>
    <sections name="SingleIntervalConstraint" sectionFile="ui/SingleIntervalConstraint.xwt">
      <widget href="ui/SingleIntervalConstraint.xwt#/"/>
    </sections>
    <sections name="MultipleIntervalConstraint" sectionFile="ui/MultipleIntervalConstraint.xwt">
      <widget href="ui/MultipleIntervalConstraint.xwt#/"/>
    </sections>
    <sections name="SingleTimeInterval" sectionFile="ui/SingleTimeInterval.xwt">
      <widget href="ui/SingleTimeInterval.xwt#/"/>
    </sections>
    <sections name="MultipleTimeInterval" sectionFile="ui/MultipleTimeInterval.xwt">
      <widget href="ui/MultipleTimeInterval.xwt#/"/>
    </sections>
    <sections name="SingleDurationConstraint" sectionFile="ui/SingleDurationConstraint.xwt">
      <widget href="ui/SingleDurationConstraint.xwt#/"/>
    </sections>
    <sections name="MultipleDurationConstraint" sectionFile="ui/MultipleDurationConstraint.xwt">
      <widget href="ui/MultipleDurationConstraint.xwt#/"/>
    </sections>
    <sections name="SingleTimeObservation" sectionFile="ui/SingleTimeObservation.xwt">
      <widget href="ui/SingleTimeObservation.xwt#/"/>
    </sections>
    <sections name="MultipleTimeObservation" sectionFile="ui/MultipleTimeObservation.xwt">
      <widget href="ui/MultipleTimeObservation.xwt#/"/>
    </sections>
    <sections name="SingleDurationObservation" sectionFile="ui/SingleDurationObservation.xwt">
      <widget href="ui/SingleDurationObservation.xwt#/"/>
    </sections>
    <sections name="MultipleDurationObservation" sectionFile="ui/MultipleDurationObservation.xwt">
      <widget href="ui/MultipleDurationObservation.xwt#/"/>
    </sections>
    <sections name="SingleFinalState" sectionFile="ui/SingleFinalState.xwt">
      <widget href="ui/SingleFinalState.xwt#/"/>
    </sections>
    <sections name="MultipleFinalState" sectionFile="ui/MultipleFinalState.xwt">
      <widget href="ui/MultipleFinalState.xwt#/"/>
    </sections>
    <sections name="SingleTimeEvent" sectionFile="ui/SingleTimeEvent.xwt">
      <widget href="ui/SingleTimeEvent.xwt#/"/>
    </sections>
    <sections name="MultipleTimeEvent" sectionFile="ui/MultipleTimeEvent.xwt">
      <widget href="ui/MultipleTimeEvent.xwt#/"/>
    </sections>
    <sections name="SingleVariableAction" sectionFile="ui/SingleVariableAction.xwt">
      <widget href="ui/SingleVariableAction.xwt#/"/>
    </sections>
    <sections name="MultipleVariableAction" sectionFile="ui/MultipleVariableAction.xwt">
      <widget href="ui/MultipleVariableAction.xwt#/"/>
    </sections>
    <sections name="SingleReadVariableAction" sectionFile="ui/SingleReadVariableAction.xwt">
      <widget href="ui/SingleReadVariableAction.xwt#/"/>
    </sections>
    <sections name="MultipleReadVariableAction" sectionFile="ui/MultipleReadVariableAction.xwt">
      <widget href="ui/MultipleReadVariableAction.xwt#/"/>
    </sections>
    <sections name="SingleWriteVariableAction" sectionFile="ui/SingleWriteVariableAction.xwt">
      <widget href="ui/SingleWriteVariableAction.xwt#/"/>
    </sections>
    <sections name="MultipleWriteVariableAction" sectionFile="ui/MultipleWriteVariableAction.xwt">
      <widget href="ui/MultipleWriteVariableAction.xwt#/"/>
    </sections>
    <sections name="SingleClearVariableAction" sectionFile="ui/SingleClearVariableAction.xwt">
      <widget href="ui/SingleClearVariableAction.xwt#/"/>
    </sections>
    <sections name="MultipleClearVariableAction" sectionFile="ui/MultipleClearVariableAction.xwt">
      <widget href="ui/MultipleClearVariableAction.xwt#/"/>
    </sections>
    <sections name="SingleAddVariableValueAction" sectionFile="ui/SingleAddVariableValueAction.xwt">
      <widget href="ui/SingleAddVariableValueAction.xwt#/"/>
    </sections>
    <sections name="MultipleAddVariableValueAction" sectionFile="ui/MultipleAddVariableValueAction.xwt">
      <widget href="ui/MultipleAddVariableValueAction.xwt#/"/>
    </sections>
    <sections name="SingleRemoveVariableValueAction" sectionFile="ui/SingleRemoveVariableValueAction.xwt">
      <widget href="ui/SingleRemoveVariableValueAction.xwt#/"/>
    </sections>
    <sections name="MultipleRemoveVariableValueAction" sectionFile="ui/MultipleRemoveVariableValueAction.xwt">
      <widget href="ui/MultipleRemoveVariableValueAction.xwt#/"/>
    </sections>
    <sections name="SingleRaiseExceptionAction" sectionFile="ui/SingleRaiseExceptionAction.xwt">
      <widget href="ui/SingleRaiseExceptionAction.xwt#/"/>
    </sections>
    <sections name="MultipleRaiseExceptionAction" sectionFile="ui/MultipleRaiseExceptionAction.xwt">
      <widget href="ui/MultipleRaiseExceptionAction.xwt#/"/>
    </sections>
    <sections name="SingleActionInputPin" sectionFile="ui/SingleActionInputPin.xwt">
      <widget href="ui/SingleActionInputPin.xwt#/"/>
    </sections>
    <sections name="MultipleActionInputPin" sectionFile="ui/MultipleActionInputPin.xwt">
      <widget href="ui/MultipleActionInputPin.xwt#/"/>
    </sections>
    <sections name="SingleInformationItem" sectionFile="ui/SingleInformationItem.xwt">
      <widget href="ui/SingleInformationItem.xwt#/"/>
    </sections>
    <sections name="MultipleInformationItem" sectionFile="ui/MultipleInformationItem.xwt">
      <widget href="ui/MultipleInformationItem.xwt#/"/>
    </sections>
    <sections name="SingleInformationFlow" sectionFile="ui/SingleInformationFlow.xwt">
      <widget href="ui/SingleInformationFlow.xwt#/"/>
    </sections>
    <sections name="MultipleInformationFlow" sectionFile="ui/MultipleInformationFlow.xwt">
      <widget href="ui/MultipleInformationFlow.xwt#/"/>
    </sections>
    <sections name="SingleReadExtentAction" sectionFile="ui/SingleReadExtentAction.xwt">
      <widget href="ui/SingleReadExtentAction.xwt#/"/>
    </sections>
    <sections name="MultipleReadExtentAction" sectionFile="ui/MultipleReadExtentAction.xwt">
      <widget href="ui/MultipleReadExtentAction.xwt#/"/>
    </sections>
    <sections name="SingleReclassifyObjectAction" sectionFile="ui/SingleReclassifyObjectAction.xwt">
      <widget href="ui/SingleReclassifyObjectAction.xwt#/"/>
    </sections>
    <sections name="MultipleReclassifyObjectAction" sectionFile="ui/MultipleReclassifyObjectAction.xwt">
      <widget href="ui/MultipleReclassifyObjectAction.xwt#/"/>
    </sections>
    <sections name="SingleReadIsClassifiedObjectAction" sectionFile="ui/SingleReadIsClassifiedObjectAction.xwt">
      <widget href="ui/SingleReadIsClassifiedObjectAction.xwt#/"/>
    </sections>
    <sections name="MultipleReadIsClassifiedObjectAction" sectionFile="ui/MultipleReadIsClassifiedObjectAction.xwt">
      <widget href="ui/MultipleReadIsClassifiedObjectAction.xwt#/"/>
    </sections>
    <sections name="SingleStartClassifierBehaviorAction" sectionFile="ui/SingleStartClassifierBehaviorAction.xwt">
      <widget href="ui/SingleStartClassifierBehaviorAction.xwt#/"/>
    </sections>
    <sections name="MultipleStartClassifierBehaviorAction" sectionFile="ui/MultipleStartClassifierBehaviorAction.xwt">
      <widget href="ui/MultipleStartClassifierBehaviorAction.xwt#/"/>
    </sections>
    <sections name="SingleReadLinkObjectEndAction" sectionFile="ui/SingleReadLinkObjectEndAction.xwt">
      <widget href="ui/SingleReadLinkObjectEndAction.xwt#/"/>
    </sections>
    <sections name="MultipleReadLinkObjectEndAction" sectionFile="ui/MultipleReadLinkObjectEndAction.xwt">
      <widget href="ui/MultipleReadLinkObjectEndAction.xwt#/"/>
    </sections>
    <sections name="SingleReadLinkObjectEndQualifierAction" sectionFile="ui/SingleReadLinkObjectEndQualifierAction.xwt">
      <widget href="ui/SingleReadLinkObjectEndQualifierAction.xwt#/"/>
    </sections>
    <sections name="MultipleReadLinkObjectEndQualifierAction" sectionFile="ui/MultipleReadLinkObjectEndQualifierAction.xwt">
      <widget href="ui/MultipleReadLinkObjectEndQualifierAction.xwt#/"/>
    </sections>
    <sections name="SingleCreateLinkObjectAction" sectionFile="ui/SingleCreateLinkObjectAction.xwt">
      <widget href="ui/SingleCreateLinkObjectAction.xwt#/"/>
    </sections>
    <sections name="MultipleCreateLinkObjectAction" sectionFile="ui/MultipleCreateLinkObjectAction.xwt">
      <widget href="ui/MultipleCreateLinkObjectAction.xwt#/"/>
    </sections>
    <sections name="SingleAcceptEventAction" sectionFile="ui/SingleAcceptEventAction.xwt">
      <widget href="ui/SingleAcceptEventAction.xwt#/"/>
    </sections>
    <sections name="MultipleAcceptEventAction" sectionFile="ui/MultipleAcceptEventAction.xwt">
      <widget href="ui/MultipleAcceptEventAction.xwt#/"/>
    </sections>
    <sections name="SingleAcceptCallAction" sectionFile="ui/SingleAcceptCallAction.xwt">
      <widget href="ui/SingleAcceptCallAction.xwt#/"/>
    </sections>
    <sections name="MultipleAcceptCallAction" sectionFile="ui/MultipleAcceptCallAction.xwt">
      <widget href="ui/MultipleAcceptCallAction.xwt#/"/>
    </sections>
    <sections name="SingleReplyAction" sectionFile="ui/SingleReplyAction.xwt">
      <widget href="ui/SingleReplyAction.xwt#/"/>
    </sections>
    <sections name="MultipleReplyAction" sectionFile="ui/MultipleReplyAction.xwt">
      <widget href="ui/MultipleReplyAction.xwt#/"/>
    </sections>
    <sections name="SingleUnmarshallAction" sectionFile="ui/SingleUnmarshallAction.xwt">
      <widget href="ui/SingleUnmarshallAction.xwt#/"/>
    </sections>
    <sections name="MultipleUnmarshallAction" sectionFile="ui/MultipleUnmarshallAction.xwt">
      <widget href="ui/MultipleUnmarshallAction.xwt#/"/>
    </sections>
    <sections name="SingleReduceAction" sectionFile="ui/SingleReduceAction.xwt">
      <widget href="ui/SingleReduceAction.xwt#/"/>
    </sections>
    <sections name="MultipleReduceAction" sectionFile="ui/MultipleReduceAction.xwt">
      <widget href="ui/MultipleReduceAction.xwt#/"/>
    </sections>
    <sections name="SingleStartObjectBehaviorAction" sectionFile="ui/SingleStartObjectBehaviorAction.xwt">
      <widget href="ui/SingleStartObjectBehaviorAction.xwt#/"/>
    </sections>
    <sections name="MultipleStartObjectBehaviorAction" sectionFile="ui/MultipleStartObjectBehaviorAction.xwt">
      <widget href="ui/MultipleStartObjectBehaviorAction.xwt#/"/>
    </sections>
    <sections name="SingleJoinNode" sectionFile="ui/SingleJoinNode.xwt">
      <widget href="ui/SingleJoinNode.xwt#/"/>
    </sections>
    <sections name="MultipleJoinNode" sectionFile="ui/MultipleJoinNode.xwt">
      <widget href="ui/MultipleJoinNode.xwt#/"/>
    </sections>
    <sections name="SingleDataStoreNode" sectionFile="ui/SingleDataStoreNode.xwt">
      <widget href="ui/SingleDataStoreNode.xwt#/"/>
    </sections>
    <sections name="MultipleDataStoreNode" sectionFile="ui/MultipleDataStoreNode.xwt">
      <widget href="ui/MultipleDataStoreNode.xwt#/"/>
    </sections>
    <sections name="SingleConditionalNode" sectionFile="ui/SingleConditionalNode.xwt">
      <widget href="ui/SingleConditionalNode.xwt#/"/>
    </sections>
    <sections name="MultipleConditionalNode" sectionFile="ui/MultipleConditionalNode.xwt">
      <widget href="ui/MultipleConditionalNode.xwt#/"/>
    </sections>
    <sections name="SingleClause" sectionFile="ui/SingleClause.xwt">
      <widget href="ui/SingleClause.xwt#/"/>
    </sections>
    <sections name="SingleLoopNode" sectionFile="ui/SingleLoopNode.xwt">
      <widget href="ui/SingleLoopNode.xwt#/"/>
    </sections>
    <sections name="MultipleLoopNode" sectionFile="ui/MultipleLoopNode.xwt">
      <widget href="ui/MultipleLoopNode.xwt#/"/>
    </sections>
    <sections name="SingleExpansionNode" sectionFile="ui/SingleExpansionNode.xwt">
      <widget href="ui/SingleExpansionNode.xwt#/"/>
    </sections>
    <sections name="MultipleExpansionNode" sectionFile="ui/MultipleExpansionNode.xwt">
      <widget href="ui/MultipleExpansionNode.xwt#/"/>
    </sections>
    <sections name="SingleExpansionRegion" sectionFile="ui/SingleExpansionRegion.xwt">
      <widget href="ui/SingleExpansionRegion.xwt#/"/>
    </sections>
    <sections name="MultipleExpansionRegion" sectionFile="ui/MultipleExpansionRegion.xwt">
      <widget href="ui/MultipleExpansionRegion.xwt#/"/>
    </sections>
    <sections name="SingleProtocolTransition" sectionFile="ui/SingleProtocolTransition.xwt">
      <widget href="ui/SingleProtocolTransition.xwt#/"/>
    </sections>
    <sections name="MultipleProtocolTransition" sectionFile="ui/MultipleProtocolTransition.xwt">
      <widget href="ui/MultipleProtocolTransition.xwt#/"/>
    </sections>
    <sections name="SingleAssociationClass" sectionFile="ui/SingleAssociationClass.xwt">
      <widget href="ui/SingleAssociationClass.xwt#/"/>
    </sections>
    <sections name="MultipleAssociationClass" sectionFile="ui/MultipleAssociationClass.xwt">
      <widget href="ui/MultipleAssociationClass.xwt#/"/>
    </sections>
    <sections name="SingleDependency" sectionFile="ui/SingleDependency.xwt">
      <widget href="ui/SingleDependency.xwt#/"/>
    </sections>
    <sections name="MultipleDependency" sectionFile="ui/MultipleDependency.xwt">
      <widget href="ui/MultipleDependency.xwt#/"/>
    </sections>
    <sections name="MemberEnd" sectionFile="ui/MemberEnd.xwt">
      <widget href="ui/MemberEnd.xwt#/"/>
    </sections>
    <sections name="SingleComment" sectionFile="ui/SingleComment.xwt">
      <widget href="ui/SingleComment.xwt#/"/>
    </sections>
    <sections name="MultipleElement" sectionFile="ui/MultipleElement.xwt">
      <widget href="ui/MultipleElement.xwt#/"/>
    </sections>
    <sections name="SingleImage" sectionFile="ui/SingleImage.xwt">
      <widget href="ui/SingleImage.xwt#/"/>
    </sections>
    <sections name="AsyncMessage" sectionFile="ui/AsyncMessage.xwt">
      <widget href="ui/AsyncMessage.xwt#/"/>
    </sections>
    <sections name="SyncMessage" sectionFile="ui/SyncMessage.xwt">
      <widget href="ui/SyncMessage.xwt#/"/>
    </sections>
    <sections name="ReplyMessage" sectionFile="ui/ReplyMessage.xwt">
      <widget href="ui/ReplyMessage.xwt#/"/>
    </sections>
    <sections name="Metaclass" sectionFile="ui/Metaclass.xwt">
      <widget href="ui/Metaclass.xwt#/"/>
    </sections>
    <sections name="SingleRealLiteral" sectionFile="ui/SingleRealLiteral.xwt">
      <widget href="ui/SingleRealLiteral.xwt#/"/>
    </sections>
    <sections name="MultipleRealLiteral" sectionFile="ui/MultipleRealLiteral.xwt">
      <widget href="ui/MultipleRealLiteral.xwt#/"/>
    </sections>
    <sections name="SingleDestructionOccurrenceSpecification" sectionFile="ui/SingleDestructionOccurrenceSpecification.xwt">
      <widget href="ui/SingleDestructionOccurrenceSpecification.xwt#/"/>
    </sections>
    <sections name="MultipleDestructionOccurrenceSpecification" sectionFile="ui/MultipleDestructionOccurrenceSpecification.xwt">
      <widget href="ui/MultipleDestructionOccurrenceSpecification.xwt#/"/>
    </sections>
    <sections name="SingleTemplateBinding" sectionFile="ui/SingleTemplateBinding.xwt">
      <widget href="ui/SingleTemplateBinding.xwt#/"/>
    </sections>
    <sections name="SingleTemplateParameterSubstitution" sectionFile="ui/SingleTemplateParameterSubstitution.xwt">
      <widget href="ui/SingleTemplateParameterSubstitution.xwt#/"/>
    </sections>
    <sections name="SingleDatatypeInstance" sectionFile="ui/SingleDatatypeInstance.xwt">
      <widget href="ui/SingleDatatypeInstance.xwt#/"/>
    </sections>
    <sections name="SinglePackageMerge" sectionFile="ui/SinglePackageMerge.xwt">
      <widget href="ui/SinglePackageMerge.xwt#/"/>
    </sections>
    <sections name="MultiplePackageMerge" sectionFile="ui/MultiplePackageMerge.xwt">
      <widget href="ui/MultiplePackageMerge.xwt#/"/>
    </sections>
    <sections name="SingleSignalEvent" sectionFile="ui/SingleSignalEvent.xwt">
      <widget href="ui/SingleSignalEvent.xwt#/"/>
    </sections>
    <sections name="MultipleSignalEvent" sectionFile="ui/SingleSignalEvent.xwt">
      <widget href="ui/SingleSignalEvent.xwt#/"/>
    </sections>
  </tabs>
  <tabs label="Comments" id="simpleComments" category="org.eclipse.papyrus" image="" priority="20">
    <sections name="SingleElementAppliedComments" sectionFile="ui/SingleElementAppliedComments.xwt">
      <widget href="ui/SingleElementAppliedComments.xwt#/"/>
    </sections>
  </tabs>
  <tabs label="Profile" id="simpleProfile" category="org.eclipse.papyrus" priority="50">
    <sections name="SinglePackageProfile" sectionFile="ui/SinglePackageProfile.xwt">
      <widget href="ui/SinglePackageProfile.xwt#/"/>
    </sections>
    <sections name="SingleElement" sectionFile="ui/SingleElement.xwt">
      <widget href="ui/SingleElement.xwt#/"/>
    </sections>
  </tabs>
  <tabs label="Definition" id="simpleDefinition" category="org.eclipse.papyrus" image="" priority="49">
    <sections name="ProfileDefinitions" sectionFile="ui/ProfileDefinitions.xwt">
      <widget href="ui/ProfileDefinitions.xwt#/"/>
    </sections>
    <sections name="SingleProfileDefinition" sectionFile="ui/SingleProfileDefinition.xwt">
      <widget href="ui/SingleProfileDefinition.xwt#/"/>
    </sections>
  </tabs>
  <views name="SinglePackageProfile" sections="//@tabs.2/@sections.0" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSinglePackage" overrideable="false">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Package"/>
    </constraints>
  </views>
  <views name="SingleElement" sections="//@tabs.2/@sections.1 //@tabs.1/@sections.0">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleElement" overrideable="false">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Element"/>
    </constraints>
  </views>
  <views name="SingleConstraint" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleConstraint">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Constraint"/>
    </constraints>
    <sections href="ppe:/context/org.eclipse.papyrus.uml.properties/Model/UML/UML.ctx#//@tabs.0/@sections.12"/>
  </views>
  <views elementMultiplicity="-1" name="MultipleConstraint" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleConstraint">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Constraint"/>
    </constraints>
    <sections href="ppe:/context/org.eclipse.papyrus.uml.properties/Model/UML/UML.ctx#//@tabs.0/@sections.13"/>
  </views>
  <views elementMultiplicity="-1" name="MultipleElement" sections="//@tabs.0/@sections.445">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleElement">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Element"/>
    </constraints>
  </views>
  <views name="SinglePackage" sections="//@tabs.0/@sections.0" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSinglePackage">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Package"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="MultiplePackage" sections="//@tabs.0/@sections.1" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultiplePackage">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Package"/>
    </constraints>
  </views>
  <views name="SingleAssociation" sections="//@tabs.0/@sections.20" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleAssociation">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Association"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="MultipleAssociation" sections="//@tabs.0/@sections.21" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleAssociation">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Association"/>
    </constraints>
  </views>
  <views name="MemberEnd" sections="//@tabs.0/@sections.443"/>
  <views name="SingleGeneralization" sections="//@tabs.0/@sections.27" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleGeneralization">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Generalization"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="MultipleGeneralization" sections="//@tabs.0/@sections.28" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleGeneralization">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Generalization"/>
    </constraints>
  </views>
  <views name="SingleParameter" sections="//@tabs.0/@sections.41" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleParameter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Parameter"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="MultipleParameter" sections="//@tabs.0/@sections.42" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleParameter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Parameter"/>
    </constraints>
  </views>
  <views name="SingleProperty" sections="//@tabs.0/@sections.49" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleProperty">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Property"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="MultipleProperty" sections="//@tabs.0/@sections.50" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleProperty">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Property"/>
    </constraints>
  </views>
  <views name="SingleOperation" sections="//@tabs.0/@sections.63" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleOperation">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Operation"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="MultipleOperation" sections="//@tabs.0/@sections.64" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleOperation">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Operation"/>
    </constraints>
  </views>
  <views name="SingleClass" sections="//@tabs.0/@sections.69" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleClass">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Class"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="MultipleClass" sections="//@tabs.0/@sections.70" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleClass">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Class"/>
    </constraints>
  </views>
  <views name="SingleInterface" sections="//@tabs.0/@sections.75" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleInterface">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Interface"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="MultipleInterface" sections="//@tabs.0/@sections.76" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleInterface">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Interface"/>
    </constraints>
  </views>
  <views name="SingleDataType" sections="//@tabs.0/@sections.121" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleDataType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="DataType"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="MultipleDataType" sections="//@tabs.0/@sections.122" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleDataType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="DataType"/>
    </constraints>
  </views>
  <views name="SingleEnumeration" sections="//@tabs.0/@sections.151" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleEnumeration">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Enumeration"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="MultipleEnumeration" sections="//@tabs.0/@sections.152" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleEnumeration">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Enumeration"/>
    </constraints>
  </views>
  <views name="SingleEnumerationLiteral" sections="//@tabs.0/@sections.153" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleEnumerationLiteral">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="EnumerationLiteral"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="MultipleEnumerationLiteral" sections="//@tabs.0/@sections.154" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleEnumerationLiteral">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="EnumerationLiteral"/>
    </constraints>
  </views>
  <views name="SingleDependency" sections="//@tabs.0/@sections.441" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleDependency">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Dependency"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="MultipleDependency" sections="//@tabs.0/@sections.442" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleDependency">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Dependency"/>
    </constraints>
  </views>
  <views name="SinglePrimitiveType" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSinglePrimitiveType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="PrimitiveType"/>
    </constraints>
    <sections href="ppe:/context/org.eclipse.papyrus.uml.properties/Model/UML/UML.ctx#//@tabs.0/@sections.158"/>
  </views>
  <views elementMultiplicity="-1" name="MultiplePrimitiveType" automaticContext="true">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultiplePrimitiveType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="PrimitiveType"/>
    </constraints>
    <sections href="ppe:/context/org.eclipse.papyrus.uml.properties/Model/UML/UML.ctx#//@tabs.0/@sections.159"/>
  </views>
  <views name="SingleComment" sections="//@tabs.0/@sections.444">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleComment">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="umlClassName" value="Comment"/>
    </constraints>
  </views>
  <dataContexts name="UML" label="UML">
    <elements name="Comment" supertypes="//@dataContexts.0/@elements.1">
      <properties name="body" description="Specifies a string that is the comment."/>
      <properties name="annotatedElement" type="Reference" description="References the Element(s) being commented."/>
    </elements>
    <elements name="Element" supertypes="//@dataContexts.0/@elements.241">
      <properties name="ownedElement" type="Reference" description="The Elements owned by this element."/>
      <properties name="owner" type="Reference" description="The Element that owns this element."/>
      <properties name="ownedComment" type="Reference" description="The Comments owned by this element."/>
    </elements>
    <elements name="Package" supertypes="//@dataContexts.0/@elements.8 //@dataContexts.0/@elements.3 //@dataContexts.0/@elements.18">
      <properties name="ownedType" type="Reference" description="References the packaged elements that are Types."/>
      <properties name="packageMerge" type="Reference" description="References the PackageMerges that are owned by this Package."/>
      <properties name="packagedElement" type="Reference" description="Specifies the packageable elements that are owned by this Package."/>
      <properties name="nestedPackage" type="Reference" description="References the packaged elements that are Packages."/>
      <properties name="nestingPackage" type="Reference" description="References the Package that owns this Package."/>
      <properties name="profileApplication" type="Reference" description="References the ProfileApplications that indicate which profiles have been applied to the Package."/>
      <properties name="ownedStereotype" type="Reference" multiplicity="-1" description=""/>
      <properties name="URI" description="Provides an identifier for the package that can be used for many purposes. A URI is the universally unique identification of the package following the IETF URI specification, RFC 2396 http://www.ietf.org/rfc/rfc2396.txt and it must comply with those syntax rules."/>
    </elements>
    <elements name="PackageableElement" supertypes="//@dataContexts.0/@elements.4 //@dataContexts.0/@elements.22"/>
    <elements name="NamedElement" supertypes="//@dataContexts.0/@elements.1">
      <properties name="name" description="The name of the NamedElement."/>
      <properties name="visibility" type="Enumeration" description="Determines where the NamedElement appears within different Namespaces within the overall model, and its accessibility."/>
      <properties name="qualifiedName" description="A name which allows the NamedElement to be identified within a hierarchy of nested Namespaces. It is constructed from the names of the containing namespaces starting at the root of the hierarchy and ending with the name of the NamedElement itself."/>
      <properties name="clientDependency" type="Reference" description="Indicates the dependencies that reference the client."/>
      <properties name="namespace" type="Reference" description="Specifies the namespace that owns the NamedElement."/>
      <properties name="nameExpression" type="Reference" description="The string expression used to define the name of this named element."/>
    </elements>
    <elements name="Dependency" supertypes="//@dataContexts.0/@elements.3 //@dataContexts.0/@elements.6">
      <properties name="supplier" type="Reference" description="The element(s) independent of the client element(s), in the same respect and the same dependency relationship. In some directed dependency relationships (such as Refinement Abstractions), a common convention in the domain of class-based OO software is to put the more abstract element in this role. Despite this convention, users of UML may stipulate a sense of dependency suitable for their domain, which makes a more abstract element dependent on that which is more specific."/>
      <properties name="client" type="Reference" description="The element(s) dependent on the supplier element(s). In some cases (such as a Trace Abstraction) the assignment of direction (that is, the designation of the client element) is at the discretion of the modeler, and is a stipulation."/>
    </elements>
    <elements name="DirectedRelationship" supertypes="//@dataContexts.0/@elements.7">
      <properties name="source" type="Reference" description="Specifies the sources of the DirectedRelationship."/>
      <properties name="target" type="Reference" description="Specifies the targets of the DirectedRelationship."/>
    </elements>
    <elements name="Relationship" supertypes="//@dataContexts.0/@elements.1">
      <properties name="relatedElement" type="Reference" description="Specifies the elements related by the Relationship."/>
    </elements>
    <elements name="Namespace" supertypes="//@dataContexts.0/@elements.4">
      <properties name="elementImport" type="Reference" description="References the ElementImports owned by the Namespace."/>
      <properties name="packageImport" type="Reference" description="References the PackageImports owned by the Namespace."/>
      <properties name="ownedRule" type="Reference" description="Specifies a set of Constraints owned by this Namespace."/>
      <properties name="member" type="Reference" description="A collection of NamedElements identifiable within the Namespace, either by being owned or by being introduced by importing or inheritance."/>
      <properties name="importedMember" type="Reference" description="References the PackageableElements that are members of this Namespace as a result of either PackageImports or ElementImports."/>
      <properties name="ownedMember" type="Reference" description="A collection of NamedElements owned by the Namespace."/>
    </elements>
    <elements name="ElementImport" supertypes="//@dataContexts.0/@elements.6">
      <properties name="visibility" type="Enumeration" description="Specifies the visibility of the imported PackageableElement within the importing Package. The default visibility is the same as that of the imported element. If the imported element does not have a visibility, it is possible to add visibility to the element import."/>
      <properties name="alias" description="Specifies the name that should be added to the namespace of the importing package in lieu of the name of the imported packagable element. The aliased name must not clash with any other member name in the importing package. By default, no alias is used."/>
      <properties name="importedElement" type="Reference" description="Specifies the PackageableElement whose name is to be added to a Namespace."/>
      <properties name="importingNamespace" type="Reference" description="Specifies the Namespace that imports a PackageableElement from another Package."/>
    </elements>
    <elements name="PackageImport" supertypes="//@dataContexts.0/@elements.6">
      <properties name="visibility" type="Enumeration" description="Specifies the visibility of the imported PackageableElements within the importing Namespace, i.e., whether imported elements will in turn be visible to other packages that use that importingPackage as an importedPackage. If the PackageImport is public, the imported elements will be visible outside the package, while if it is private they will not."/>
      <properties name="importedPackage" type="Reference" description="Specifies the Package whose members are imported into a Namespace."/>
      <properties name="importingNamespace" type="Reference" description="Specifies the Namespace that imports the members from a Package."/>
    </elements>
    <elements name="Constraint" supertypes="//@dataContexts.0/@elements.3">
      <properties name="constrainedElement" type="Reference" description="The ordered set of Elements referenced by this Constraint."/>
      <properties name="specification" type="Reference" description="A condition that must be true when evaluated in order for the constraint to be satisfied."/>
      <properties name="context" type="Reference" description="Specifies the namespace that owns the NamedElement."/>
    </elements>
    <elements name="ValueSpecification" supertypes="//@dataContexts.0/@elements.3 //@dataContexts.0/@elements.13"/>
    <elements name="TypedElement" supertypes="//@dataContexts.0/@elements.4">
      <properties name="type" type="Reference" description="This information is derived from the return result for this Operation.&#xD;&#xA;The type of the TypedElement."/>
    </elements>
    <elements name="Type" supertypes="//@dataContexts.0/@elements.3">
      <properties name="package" type="Reference" description="Specifies the owning package of this classifier, if any."/>
    </elements>
    <elements name="Association" supertypes="//@dataContexts.0/@elements.16 //@dataContexts.0/@elements.7">
      <properties name="ownedEnd" type="Reference" description="The ends that are owned by the association itself."/>
      <properties name="memberEnd" type="Reference" description="Each end represents participation of instances of the classifier connected to the end in links of the association."/>
      <properties name="isDerived" description="Specifies whether the association is derived from other model elements such as other associations or constraints."/>
      <properties name="endType" type="Reference" description="References the classifiers that are used as types of the ends of the association."/>
      <properties name="navigableOwnedEnd" type="Reference" description="The navigable ends that are owned by the association itself."/>
    </elements>
    <elements name="Classifier" supertypes="//@dataContexts.0/@elements.8 //@dataContexts.0/@elements.17 //@dataContexts.0/@elements.14 //@dataContexts.0/@elements.18">
      <properties name="isAbstract" type="Boolean" description="If true, the Classifier does not provide a complete declaration and can typically not be instantiated. An abstract classifier is intended to be used by other classifiers e.g. as the target of general metarelationships or generalization relationships.&#xD;&#xA;"/>
      <properties name="generalization" type="Reference" description="Specifies the Generalization relationships for this Classifier. These Generalizations navigaten to more general classifiers in the generalization hierarchy."/>
      <properties name="powertypeExtent" type="Reference" description="Designates the GeneralizationSet of which the associated Classifier is a power type."/>
      <properties name="feature" type="Reference" description="Note that there may be members of the Classifier that are of the type Feature but are not included in this association, e.g. inherited features.&#xD;&#xA;Specifies each feature defined in the classifier."/>
      <properties name="inheritedMember" type="Reference" description="Specifies all elements inherited by this classifier from the general classifiers."/>
      <properties name="redefinedClassifier" type="Reference" description="References the Classifiers that are redefined by this Classifier."/>
      <properties name="general" type="Reference" description="References the general classifier in the Generalization relationship.&#xD;&#xA;Specifies the general Classifiers for this Classifier."/>
      <properties name="substitution" type="Reference" description="References the substitutions that are owned by this Classifier."/>
      <properties name="attribute" type="Reference" description="Refers to all of the Properties that are direct (i.e. not inherited or imported) attributes of the classifier."/>
      <properties name="representation" type="Reference" description="References a collaboration use which indicates the collaboration that represents this classifier."/>
      <properties name="collaborationUse" type="Reference" description="References the collaboration uses owned by the classifier."/>
      <properties name="ownedUseCase" type="Reference" description="References the use cases owned by this classifier."/>
      <properties name="useCase" type="Reference" description="The set of use cases for which this Classifier is the subject."/>
      <properties name="isFinalSpecialization" type="Boolean" description="If true, the Classifier cannot be specialized by generalization. Note that this property is preserved through package merge operations; that is, the capability to specialize a Classifier (i.e., isFinalSpecialization =false) must be preserved in the resulting Classifier of a package merge operation where a Classifier with isFinalSpecialization =false is merged with a matching Classifier with isFinalSpecialization =true: the resulting Classifier will have isFinalSpecialization=false. Default is false."/>
    </elements>
    <elements name="RedefinableElement" supertypes="//@dataContexts.0/@elements.4">
      <properties name="isLeaf" description="Indicates whether it is possible to further specialize a RedefinableElement. If the value is true, then it is not possible to further specialize the RedefinableElement."/>
      <properties name="redefinedElement" type="Reference" description="The redefinable element that is being redefined by this element."/>
      <properties name="redefinitionContext" type="Reference" description="References the contexts that this element may be redefined from."/>
    </elements>
    <elements name="TemplateableElement" supertypes="//@dataContexts.0/@elements.1">
      <properties name="templateBinding" type="Reference" description="The optional bindings from this element to templates."/>
      <properties name="ownedTemplateSignature" type="Reference" description="The optional template signature specifying the formal template parameters."/>
    </elements>
    <elements name="TemplateBinding" supertypes="//@dataContexts.0/@elements.6">
      <properties name="signature" type="Reference" description="The template signature for the template that is the target of the binding."/>
      <properties name="parameterSubstitution" type="Reference" description="The parameter substitutions owned by this template binding."/>
      <properties name="boundElement" type="Reference" description="The element that is bound by this binding."/>
    </elements>
    <elements name="TemplateSignature" supertypes="//@dataContexts.0/@elements.1">
      <properties name="parameter" type="Reference" description="The ordered set of all formal template parameters for this template signature."/>
      <properties name="ownedParameter" type="Reference" description="The formal template parameters that are owned by this template signature."/>
      <properties name="template" type="Reference" description="The element that owns this template signature."/>
    </elements>
    <elements name="TemplateParameter" supertypes="//@dataContexts.0/@elements.1">
      <properties name="signature" type="Reference" description="The template signature that owns this template parameter."/>
      <properties name="parameteredElement" type="Reference" description="The element exposed by this template parameter."/>
      <properties name="ownedParameteredElement" type="Reference" description="The element that is owned by this template parameter."/>
      <properties name="default" type="Reference" description="The element that is the default for this formal template parameter."/>
      <properties name="ownedDefault" type="Reference" description="The element that is owned by this template parameter for the purpose of providing a default."/>
    </elements>
    <elements name="ParameterableElement" supertypes="//@dataContexts.0/@elements.1">
      <properties name="owningTemplateParameter" type="Reference" description="The formal template parameter that owns this element."/>
      <properties name="templateParameter" type="Reference" description="The template parameter that exposes this element as a formal parameter."/>
    </elements>
    <elements name="TemplateParameterSubstitution" supertypes="//@dataContexts.0/@elements.1">
      <properties name="formal" type="Reference" description="The formal template parameter that is associated with this substitution."/>
      <properties name="actual" type="Reference" description="The element that is the actual parameter for this substitution."/>
      <properties name="ownedActual" type="Reference" description="The actual parameter that is owned by this substitution."/>
      <properties name="templateBinding" type="Reference" description="The optional bindings from this element to templates."/>
    </elements>
    <elements name="Generalization" supertypes="//@dataContexts.0/@elements.6">
      <properties name="isSubstitutable" description="Indicates whether the specific classifier can be used wherever the general classifier can be used. If true, the execution traces of the specific classifier will be a superset of the execution traces of the general classifier."/>
      <properties name="general" type="Reference" description="References the general classifier in the Generalization relationship."/>
      <properties name="generalizationSet" type="Reference" description="Designates a set in which instances of Generalization is considered members."/>
      <properties name="specific" type="Reference" description="References the specializing classifier in the Generalization relationship."/>
    </elements>
    <elements name="GeneralizationSet" supertypes="//@dataContexts.0/@elements.3">
      <properties name="isCovering" description="Indicates (via the associated Generalizations) whether or not the set of specific Classifiers are covering for a particular general classifier. When isCovering is true, every instance of a particular general Classifier is also an instance of at least one of its specific Classifiers for the GeneralizationSet. When isCovering is false, there are one or more instances of the particular general Classifier that are not instances of at least one of its specific Classifiers defined for the GeneralizationSet."/>
      <properties name="isDisjoint" description="Indicates whether or not the set of specific Classifiers in a Generalization relationship have instance in common. If isDisjoint is true, the specific Classifiers for a particular GeneralizationSet have no members in common; that is, their intersection is empty. If isDisjoint is false, the specific Classifiers in a particular GeneralizationSet have one or more members in common; that is, their intersection is not empty. For example, Person could have two Generalization relationships, each with the different specific Classifier: Manager or Staff. This would be disjoint because every instance of Person must either be a Manager or Staff. In contrast, Person could have two Generalization relationships involving two specific (and non-covering) Classifiers: Sales Person and Manager. This GeneralizationSet would not be disjoint because there are instances of Person which can be a Sales Person and a Manager."/>
      <properties name="powertype" type="Reference" description="Designates the Classifier that is defined as the power type for the associated GeneralizationSet."/>
      <properties name="generalization" type="Reference" description="Designates the instances of Generalization which are members of a given GeneralizationSet."/>
    </elements>
    <elements name="Feature" supertypes="//@dataContexts.0/@elements.17">
      <properties name="isStatic" description="Specifies whether this feature characterizes individual instances classified by the classifier (false) or the classifier itself (true)."/>
      <properties name="featuringClassifier" type="Reference" description="The Classifiers that have this Feature as a feature."/>
    </elements>
    <elements name="Substitution" supertypes="//@dataContexts.0/@elements.28">
      <properties name="contract" type="Reference" description="The contract with which the substituting classifier complies."/>
      <properties name="substitutingClassifier" type="Reference" description="Instances of the substituting classifier are runtime substitutable where instances of the contract classifier are expected."/>
    </elements>
    <elements name="Realization" supertypes="//@dataContexts.0/@elements.29"/>
    <elements name="Abstraction" supertypes="//@dataContexts.0/@elements.5">
      <properties name="mapping" type="Reference" description="An composition of an Expression that states the abstraction relationship between the supplier and the client. In some cases, such as Derivation, it is usually formal and unidirectional; in other cases, such as Trace, it is usually informal and bidirectional. The mapping expression is optional and may be omitted if the precise relationship between the elements is not specified."/>
    </elements>
    <elements name="OpaqueExpression" supertypes="//@dataContexts.0/@elements.12">
      <properties name="body" description="The text of the expression, possibly in multiple languages."/>
      <properties name="language" description="Specifies the languages in which the expression is stated. The interpretation of the expression body depends on the languages. If the languages are unspecified, they might be implicit from the expression body or the context. Languages are matched to body strings by order."/>
      <properties name="result" type="Reference" description="Restricts an opaque expression to return exactly one return result. When the invocation of the opaque expression completes, a single set of values is returned to its owner. This association is derived from the single return result parameter of the associated behavior."/>
      <properties name="behavior" type="Reference" description="Specifies the behavior of the opaque expression."/>
    </elements>
    <elements name="Parameter" supertypes="//@dataContexts.0/@elements.33 //@dataContexts.0/@elements.32">
      <properties name="parameterSet" type="Reference" description="The parameter sets containing the parameter. See ParameterSet."/>
      <properties name="operation" type="Reference" description="References the Operation owning this parameter."/>
      <properties name="direction" type="Enumeration" description="Indicates whether a parameter is being sent into or out of a behavioral element."/>
      <properties name="default" description="Specifies a String that represents a value to be used when no argument is supplied for the Parameter."/>
      <properties name="defaultValue" type="Reference" description="Specifies a ValueSpecification that represents a value to be used when no argument is supplied for the Parameter."/>
      <properties name="isException" description="Tells whether an output parameter may emit a value to the exclusion of the other outputs."/>
      <properties name="isStream" description="Tells whether an input parameter may accept values while its behavior is executing, or whether an output parameter post values while the behavior is executing."/>
      <properties name="effect" type="Enumeration" description="Specifies the effect that the owner of the parameter has on values passed in or out of the parameter."/>
    </elements>
    <elements name="MultiplicityElement" supertypes="//@dataContexts.0/@elements.1 //@dataContexts.1 //@dataContexts.2">
      <properties name="isOrdered" description="For a multivalued multiplicity, this attribute specifies whether the values in an instantiation of this element are sequentially ordered."/>
      <properties name="isUnique" description="For a multivalued multiplicity, this attributes specifies whether the values in an instantiation of this element are unique."/>
      <properties name="upper" description="Specifies the upper bound of the multiplicity interval."/>
      <properties name="lower" description="Specifies the lower bound of the multiplicity interval."/>
      <properties name="upperValue" type="Reference" description="The specification of the upper bound for this multiplicity."/>
      <properties name="lowerValue" type="Reference" description="The specification of the lower bound for this multiplicity."/>
    </elements>
    <elements name="ConnectableElement" supertypes="//@dataContexts.0/@elements.13 //@dataContexts.0/@elements.22">
      <properties name="end" type="Reference" description="Denotes a connector that attaches to this connectable element."/>
    </elements>
    <elements name="ConnectorEnd" supertypes="//@dataContexts.0/@elements.32">
      <properties name="definingEnd" type="Reference" description="A derived association referencing the corresponding association end on the association which types the connector owing this connector end. This association is derived by selecting the association end at the same place in the ordering of association ends as this connector end.&#xD;&#xA;"/>
      <properties name="role" type="Reference" description="The connectable element attached at this connector end. When an instance of the containing classifier is created, a link may (depending on the multiplicities) be created to an instance of the classifier that types this connectable element.&#xD;&#xA;"/>
      <properties name="partWithPort" type="Reference" description="Indicates the role of the internal structure of a classifier with the port to which the connector end is attached."/>
    </elements>
    <elements name="Property" supertypes="//@dataContexts.0/@elements.75 //@dataContexts.0/@elements.33 //@dataContexts.0/@elements.36">
      <properties name="class" type="Reference" description="References the Class that owns the Property."/>
      <properties name="datatype" type="Reference" description="The DataType that owns this Property."/>
      <properties name="isDerived" description="If isDerived is true, the value of the attribute is derived from information elsewhere.&#xD;&#xA;Specifies whether the Property is derived, i.e., whether its value or values can be computed from other information."/>
      <properties name="isDerivedUnion" description="Specifies whether the property is derived as the union of all of the properties that are constrained to subset it."/>
      <properties name="aggregation" type="Enumeration" description="Specifies the kind of aggregation that applies to the Property."/>
      <properties name="isComposite" description="If isComposite is true, the object containing the attribute is a container for the object or value contained in the attribute.&#xD;&#xA;This is a derived value, indicating whether the aggregation of the Property is composite or not."/>
      <properties name="redefinedProperty" type="Reference" description="References the properties that are redefined by this property."/>
      <properties name="owningAssociation" type="Reference" description="References the owning association of this property, if any."/>
      <properties name="defaultValue" type="Reference" description="A ValueSpecification that is evaluated to give a default value for the Property when an object of the owning Classifier is instantiated."/>
      <properties name="opposite" type="Reference" description="In the case where the property is one navigable end of a binary association with both ends navigable, this gives the other end."/>
      <properties name="subsettedProperty" type="Reference" description="References the properties of which this property is constrained to be a subset."/>
      <properties name="association" type="Reference" description="References the association of which this property is a member, if any."/>
      <properties name="qualifier" type="Reference" description="An optional list of ordered qualifier attributes for the end. If the list is empty, then the Association is not qualified."/>
      <properties name="associationEnd" type="Reference" description="Designates the optional association end that owns a qualifier attribute."/>
      <properties name="interface" type="Reference"/>
      <properties name="isID" type="Boolean"/>
    </elements>
    <elements name="DeploymentTarget" supertypes="//@dataContexts.0/@elements.4">
      <properties name="deployment" type="Reference" description="The set of Deployments for a DeploymentTarget."/>
      <properties name="deployedElement" type="Reference" description="The set of elements that are manifested in an Artifact that is involved in Deployment to a DeploymentTarget."/>
    </elements>
    <elements name="Deployment" supertypes="//@dataContexts.0/@elements.5">
      <properties name="deployedArtifact" type="Reference" description="The Artifacts that are deployed onto a Node. This association specializes the supplier association."/>
      <properties name="configuration" type="Reference" description="The specification of properties that parameterize the deployment and execution of one or more Artifacts."/>
      <properties name="location" type="Reference" description="The DeployedTarget which is the target of a Deployment."/>
    </elements>
    <elements name="DeployedArtifact" supertypes="//@dataContexts.0/@elements.4"/>
    <elements name="DeploymentSpecification" supertypes="//@dataContexts.0/@elements.40">
      <properties name="deploymentLocation" description="The location where an Artifact is deployed onto a Node. This is typically a 'directory' or 'memory address'."/>
      <properties name="executionLocation" description="The location where a component Artifact executes. This may be a local or remote location."/>
      <properties name="deployment" type="Reference" description="The deployment with which the DeploymentSpecification is associated."/>
    </elements>
    <elements name="Artifact" supertypes="//@dataContexts.0/@elements.16 //@dataContexts.0/@elements.38">
      <properties name="fileName" description="A concrete name that is used to refer to the Artifact in a physical context. Example: file system name, universal resource locator."/>
      <properties name="nestedArtifact" type="Reference" description="The Artifacts that are defined (nested) within the Artifact.&#xD;&#xA;The association is a specialization of the ownedMember association from Namespace to NamedElement.&#xD;&#xA;"/>
      <properties name="manifestation" type="Reference" description="The set of model elements that are manifested in the Artifact. That is, these model elements are utilized in the construction (or generation) of the artifact."/>
      <properties name="ownedOperation" type="Reference" description="The Operations defined for the Artifact. The association is a specialization of the ownedMember association."/>
      <properties name="ownedAttribute" type="Reference" description="The attributes or association ends defined for the Artifact.&#xD;&#xA;The association is a specialization of the ownedMember association.&#xD;&#xA;"/>
    </elements>
    <elements name="Manifestation" supertypes="//@dataContexts.0/@elements.29">
      <properties name="utilizedElement" type="Reference" description="The model element that is utilized in the manifestation in an Artifact."/>
    </elements>
    <elements name="Operation" supertypes="//@dataContexts.0/@elements.43 //@dataContexts.0/@elements.22 //@dataContexts.0/@elements.18">
      <properties name="interface" type="Reference" description="The Interface that owns this Operation."/>
      <properties name="class" type="Reference" description="The class that owns the operation."/>
      <properties name="isQuery" description="Specifies whether an execution of the BehavioralFeature leaves the state of the system unchanged (isQuery=true) or whether side effects may occur (isQuery=false)."/>
      <properties name="isOrdered" description="This information is derived from the return result for this Operation.&#xD;&#xA;Specifies whether the return parameter is ordered or not, if present."/>
      <properties name="isUnique" description="This information is derived from the return result for this Operation.&#xD;&#xA;Specifies whether the return parameter is unique or not, if present."/>
      <properties name="lower" description="This information is derived from the return result for this Operation.&#xD;&#xA;Specifies the lower multiplicity of the return parameter, if present."/>
      <properties name="upper" description="This information is derived from the return result for this Operation.&#xD;&#xA;Specifies the upper multiplicity of the return parameter, if present."/>
      <properties name="precondition" type="Reference" description="An optional set of Constraints on the state of the system when the Operation is invoked."/>
      <properties name="postcondition" type="Reference" description="An optional set of Constraints specifying the state of the system when the Operation is completed."/>
      <properties name="redefinedOperation" type="Reference" description="References the Operations that are redefined by this Operation."/>
      <properties name="datatype" type="Reference" description="The DataType that owns this Operation."/>
      <properties name="bodyCondition" type="Reference" description="An optional Constraint on the result values of an invocation of this Operation."/>
      <properties name="type" type="Reference" description="This information is derived from the return result for this Operation.&#xD;&#xA;Specifies the return result of the operation, if present."/>
    </elements>
    <elements name="BehavioralFeature" supertypes="//@dataContexts.0/@elements.8 //@dataContexts.0/@elements.26">
      <properties name="ownedParameter" type="Reference" description="Specifies the ordered set of formal parameters of this BehavioralFeature."/>
      <properties name="isAbstract" description="If true, then the behavioral feature does not have an implementation, and one must be supplied by a more specific element. If false, the behavioral feature must have an implementation in the classifier or one must be inherited from a more general element."/>
      <properties name="method" type="Reference" description="A behavioral description that implements the behavioral feature. There may be at most one behavior for a particular pairing of a classifier (as owner of the behavior) and a behavioral feature (as specification of the behavior)."/>
      <properties name="concurrency" type="Enumeration" description="Specifies the semantics of concurrent calls to the same passive instance (i.e., an instance originating from a class with isActive being false). Active instances control access to their own behavioral features."/>
      <properties name="raisedException" type="Reference" description="References the Types representing exceptions that may be raised during an invocation of this feature.&#xD;&#xA;The signals that the behavioral feature raises as exceptions."/>
      <properties name="ownedParameterSet" type="Reference" description="The ParameterSets owned by this BehavioralFeature."/>
    </elements>
    <elements name="Behavior" supertypes="//@dataContexts.0/@elements.45">
      <properties name="isReentrant" description="Tells whether the behavior can be invoked while it is still executing from a previous invocation."/>
      <properties name="redefinedBehavior" type="Reference" description="References a behavior that this behavior redefines. A subtype of Behavior may redefine any other subtype of Behavior. If the behavior implements a behavioral feature, it replaces the redefined behavior. If the behavior is a classifier behavior, it extends the redefined behavior."/>
      <properties name="ownedParameter" type="Reference" description="References a list of parameters to the behavior which describes the order and type of arguments that can be given when the behavior is invoked and of the values which will be returned when the behavior completes its execution.&#xD;&#xA;"/>
      <properties name="context" type="Reference" description="The classifier that is the context for the execution of the behavior. If the behavior is owned by a BehavioredClassifier, that classifier is the context. Otherwise, the context is the first BehavioredClassifier reached by following the chain of owner relationships. For example, following this algorithm, the context of an entry action in a state machine is the classifier that owns the state machine. The features of the context classifier as well as the elements visible to the context classifier are visible to the behavior."/>
      <properties name="precondition" type="Reference" description="An optional set of Constraints specifying what must be fulfilled when the behavior is invoked."/>
      <properties name="postcondition" type="Reference" description="An optional set of Constraints specifying what is fulfilled after the execution of the behavior is completed, if its precondition was fulfilled before its invocation."/>
      <properties name="ownedParameterSet" type="Reference" description="The ParameterSets owned by this Behavior."/>
      <properties name="specification" type="Reference" description="Designates a behavioral feature that the behavior implements. The behavioral feature must be owned by the classifier that owns the behavior or be inherited by it. The parameters of the behavioral feature and the implementing behavior must match. A behavior does not need to have a specification, in which case it either is the classifer behavior of a BehavioredClassifier or it can only be invoked by another behavior of the classifier."/>
    </elements>
    <elements name="Class" supertypes="//@dataContexts.0/@elements.63 //@dataContexts.0/@elements.46">
      <properties name="nestedClassifier" type="Reference" description="References all the Classifiers that are defined (nested) within the Class."/>
      <properties name="ownedOperation" type="Reference" description="The operations owned by the class."/>
      <properties name="superClass" type="Reference" description="This gives the superclasses of a class."/>
      <properties name="isActive" description="Determines whether an object specified by this class is active or not. If true, then the owning class is referred to as an active class. If false, then such a class is referred to as a passive class."/>
      <properties name="ownedReception" type="Reference" description="Receptions that objects of this class are willing to accept."/>
      <properties name="extension" type="Reference" description="References the Extensions that specify additional properties of the metaclass. The property is derived from the extensions whose memberEnds are typed by the Class."/>
    </elements>
    <elements name="BehavioredClassifier" supertypes="//@dataContexts.0/@elements.16">
      <properties name="ownedBehavior" type="Reference" description="References behavior specifications owned by a classifier."/>
      <properties name="classifierBehavior" type="Reference" description="A behavior specification that specifies the behavior of the classifier itself."/>
      <properties name="interfaceRealization" type="Reference" description="The set of InterfaceRealizations owned by the BehavioredClassifier. Interface realizations reference the Interfaces of which the BehavioredClassifier is an implementation."/>
    </elements>
    <elements name="InterfaceRealization" supertypes="//@dataContexts.0/@elements.28">
      <properties name="contract" type="Reference" description="References the Interface specifying the conformance contract."/>
      <properties name="implementingClassifier" type="Reference" description="References the BehavioredClassifier that owns this Interfacerealization (i.e., the classifier that realizes the Interface to which it points)."/>
    </elements>
    <elements name="Interface" supertypes="//@dataContexts.0/@elements.16">
      <properties name="ownedAttribute" type="Reference" description="The attributes (i.e. the properties) owned by the class."/>
      <properties name="ownedOperation" type="Reference" description="The operations owned by the class."/>
      <properties name="nestedClassifier" type="Reference" description="References all the Classifiers that are defined (nested) within the Class."/>
      <properties name="redefinedInterface" type="Reference" description="References all the Interfaces redefined by this Interface."/>
      <properties name="ownedReception" type="Reference" description="Receptions that objects providing this interface are willing to accept."/>
      <properties name="protocol" type="Reference" description="References a protocol state machine specifying the legal sequences of the invocation of the behavioral features described in the interface."/>
    </elements>
    <elements name="Reception" supertypes="//@dataContexts.0/@elements.43">
      <properties name="signal" type="Reference" description="The signal that this reception handles."/>
    </elements>
    <elements name="Signal" supertypes="//@dataContexts.0/@elements.16">
      <properties name="ownedAttribute" type="Reference" description="The attributes owned by the signal."/>
    </elements>
    <elements name="ProtocolStateMachine" supertypes="//@dataContexts.0/@elements.52">
      <properties name="conformance" type="Reference" description="Conformance between protocol state machines."/>
    </elements>
    <elements name="StateMachine" supertypes="//@dataContexts.0/@elements.44">
      <properties name="region" type="Reference" description="The regions owned directly by the state machine."/>
      <properties name="submachineState" type="Reference" description="References the submachine(s) in case of a submachine state. Multiple machines are referenced in case of a concurrent state."/>
      <properties name="connectionPoint" type="Reference" description="The connection points defined for this state machine. They represent the interface of the state machine when used as part of submachine state."/>
      <properties name="extendedStateMachine" type="Reference" description="The state machines of which this is an extension."/>
    </elements>
    <elements name="Region" supertypes="//@dataContexts.0/@elements.8 //@dataContexts.0/@elements.17">
      <properties name="subvertex" type="Reference" description="The set of vertices that are owned by this region."/>
      <properties name="transition" type="Reference" description="The set of transitions owned by the region. Note that internal transitions are owned by a region, but applies to the source state."/>
      <properties name="state" type="Reference" description="The State that owns the Region. If a Region is owned by a State, then it cannot also be owned by a StateMachine."/>
      <properties name="extendedRegion" type="Reference" description="The region of which this region is an extension."/>
      <properties name="stateMachine" type="Reference" description="The StateMachine that owns the Region. If a Region is owned by a StateMachine, then it cannot also be owned by a State."/>
    </elements>
    <elements name="Vertex" supertypes="//@dataContexts.0/@elements.4">
      <properties name="outgoing" type="Reference" description="Specifies the transitions departing from this vertex."/>
      <properties name="incoming" type="Reference" description="Specifies the transitions entering this vertex."/>
      <properties name="container" type="Reference" description="The region that contains this vertex."/>
    </elements>
    <elements name="Transition" supertypes="//@dataContexts.0/@elements.8 //@dataContexts.0/@elements.17">
      <properties name="kind" type="Enumeration" description="Indicates  the precise type of the transition."/>
      <properties name="container" type="Reference" description="Designates the region that owns this transition."/>
      <properties name="source" type="Reference" description="Designates the originating vertex (state or pseudostate) of the transition."/>
      <properties name="target" type="Reference" description="Designates the target vertex that is reached when the transition is taken."/>
      <properties name="redefinedTransition" type="Reference" description="The transition that is redefined by this transition."/>
      <properties name="guard" type="Reference" description="A guard is a constraint that provides a fine-grained control over the firing of the transition. The guard is evaluated when an event occurrence is dispatched by the state machine. If the guard is true at that time, the transition may be enabled, otherwise, it is disabled. Guards should be pure expressions without side effects. Guard expressions with side effects are ill formed."/>
      <properties name="effect" type="Reference" description="Specifies an optional behavior to be performed when the transition fires."/>
      <properties name="trigger" type="Reference" description="Specifies the triggers that may fire the transition."/>
    </elements>
    <elements name="Trigger" supertypes="//@dataContexts.0/@elements.4">
      <properties name="event" type="Reference" description="The event that causes the trigger."/>
      <properties name="port" type="Reference" multiplicity="-1" description="A optional port of the receiver object on which the behavioral feature is invoked."/>
    </elements>
    <elements name="Event" supertypes="//@dataContexts.0/@elements.3"/>
    <elements name="Port" supertypes="//@dataContexts.0/@elements.35">
      <properties name="isBehavior" description="Specifies whether requests arriving at this port are sent to the classifier behavior of this classifier. Such ports are referred to as behavior port. Any invocation of a behavioral feature targeted at a behavior port will be handled by the instance of the owning classifier itself, rather than by any instances that this classifier may contain."/>
      <properties name="isService" description="If true indicates that this port is used to provide the published functionality of a classifier; if false, this port is used to implement the classifier but is not part of the essential externally-visible functionality of the classifier and can, therefore, be altered or deleted along with the internal implementation of the classifier and other properties that are considered part of its implementation."/>
      <properties name="required" type="Reference" description="References the interfaces specifying the set of operations and receptions which the classifier expects its environment to handle. This association is derived as the set of interfaces required by the type of the port or its supertypes."/>
      <properties name="redefinedPort" type="Reference" description="A port may be redefined when its containing classifier is specialized. The redefining port may have additional interfaces to those that are associated with the redefined port or it may replace an interface by one of its subtypes."/>
      <properties name="provided" type="Reference" description="References the interfaces specifying the set of operations and receptions which the classifier offers to its environment, and which it will handle either directly or by forwarding it to a part of its internal structure. This association is derived from the interfaces realized by the type of the port or by the type of the port, if the port was typed by an interface.&#xD;&#xA;"/>
      <properties name="protocol" type="Reference" description="References an optional protocol state machine which describes valid interactions at this interaction point."/>
      <properties name="isConjugated" type="Boolean"/>
    </elements>
    <elements name="State" supertypes="//@dataContexts.0/@elements.8 //@dataContexts.0/@elements.17 //@dataContexts.0/@elements.54">
      <properties name="isComposite" description="A state with isComposite=true is said to be a composite state. A composite state is a state that contains at least one region."/>
      <properties name="isOrthogonal" description="A state with isOrthogonal=true is said to be an orthogonal composite state. An orthogonal composite state contains two or more regions."/>
      <properties name="isSimple" description="A state with isSimple=true is said to be a simple state. A simple state does not have any regions and it does not refer to any submachine state machine."/>
      <properties name="isSubmachineState" description="A state with isSubmachineState=true is said to be a submachine state. Such a state refers to a state machine (submachine)."/>
      <properties name="submachine" type="Reference" description="The state machine that is to be inserted in place of the (submachine) state."/>
      <properties name="connection" type="Reference" description="The entry and exit connection points used in conjunction with this (submachine) state, i.e. as targets and sources, respectively, in the region with the submachine state. A connection point reference references the corresponding definition of a connection point pseudostate in the statemachine referenced by the submachinestate."/>
      <properties name="connectionPoint" type="Reference" description="The entry and exit pseudostates of a composite state. These can only be entry or exit Pseudostates, and they must have different names. They can only be defined for composite states."/>
      <properties name="redefinedState" type="Reference" description="The state of which this state is a redefinition."/>
      <properties name="stateInvariant" type="Reference" description="Specifies conditions that are always true when this state is the current state. In protocol state machines, state invariants are additional conditions to the preconditions of the outgoing transitions, and to the postcondition of the incoming transitions.&#xD;&#xA;"/>
      <properties name="entry" type="Reference" description="An optional behavior that is executed whenever this state is entered regardless of the transition taken to reach the state. If defined, entry actions are always executed to completion prior to any internal behavior or transitions performed within the state.&#xD;&#xA;"/>
      <properties name="exit" type="Reference" description="An optional behavior that is executed whenever this state is exited regardless of which transition was taken out of the state. If defined, exit actions are always executed to completion only after all internal activities and transition actions have completed execution."/>
      <properties name="doActivity" type="Reference" description="An optional behavior that is executed while being in the state. The execution starts when this state is entered, and stops either by itself, or when the state is exited, whichever comes first."/>
      <properties name="deferrableTrigger" type="Reference" description="A list of triggers that are candidates to be retained by the state machine if they trigger no transitions out of the state (not consumed). A deferred trigger is retained until the state machine reaches a state configuration where it is no longer deferred.&#xD;&#xA;"/>
      <properties name="region" type="Reference" description="The regions owned directly by the state."/>
    </elements>
    <elements name="ConnectionPointReference" supertypes="//@dataContexts.0/@elements.54">
      <properties name="entry" type="Reference" description="The entryPoint kind pseudo states corresponding to this connection point."/>
      <properties name="exit" type="Reference" description="The exitPoints kind pseudo states corresponding to this connection point."/>
      <properties name="state" type="Reference" description="The State in which the connection point refreshens are defined."/>
    </elements>
    <elements name="Pseudostate" supertypes="//@dataContexts.0/@elements.54">
      <properties name="kind" type="Enumeration" description="Determines the precise type of the Pseudostate and can be one of: entryPoint, exitPoint, initial, deepHistory, shallowHistory, join, fork, junction, terminate or choice."/>
      <properties name="stateMachine" type="Reference" description="The StateMachine in which this Pseudostate is defined. This only applies to Pseudostates of the kind entryPoint or exitPoint."/>
      <properties name="state" type="Reference" description="The State that owns this pseudostate and in which it appears."/>
    </elements>
    <elements name="ProtocolConformance" supertypes="//@dataContexts.0/@elements.6">
      <properties name="generalMachine" type="Reference" description="Specifies the protocol state machine to which the specific state machine conforms."/>
      <properties name="specificMachine" type="Reference" description="Specifies the state machine which conforms to the general state machine."/>
    </elements>
    <elements name="EncapsulatedClassifier" supertypes="//@dataContexts.0/@elements.64">
      <properties name="ownedPort" type="Reference" description="References a set of ports that an encapsulated classifier owns."/>
    </elements>
    <elements name="StructuredClassifier" supertypes="//@dataContexts.0/@elements.16">
      <properties name="ownedAttribute" type="Reference" description="References the properties owned by the classifier."/>
      <properties name="part" type="Reference" description="References the properties specifying instances that the classifier owns by composition. This association is derived, selecting those owned properties where isComposite is true."/>
      <properties name="role" type="Reference" description="References the roles that instances may play in this classifier."/>
      <properties name="ownedConnector" type="Reference" description="References the connectors owned by the classifier."/>
    </elements>
    <elements name="Connector" supertypes="//@dataContexts.0/@elements.26">
      <properties name="type" type="Reference" description="An optional association that specifies the link corresponding to this connector."/>
      <properties name="redefinedConnector" type="Reference" description="A connector may be redefined when its containing classifier is specialized. The redefining connector may have a type that specializes the type of the redefined connector. The types of the connector ends of the redefining connector may specialize the types of the connector ends of the redefined connector. The properties of the connector ends of the redefining connector may be replaced."/>
      <properties name="end" type="Reference" description="A connector consists of at least two connector ends, each representing the participation of instances of the classifiers typing the connectable elements attached to this end. The set of connector ends is ordered."/>
      <properties name="kind" type="Enumeration" description="Indicates the kind of connector."/>
      <properties name="contract" type="Reference" description="The set of Behaviors that specify the valid interaction patterns across the connector."/>
    </elements>
    <elements name="Extension" supertypes="//@dataContexts.0/@elements.15">
      <properties name="isRequired" description="Indicates whether an instance of the extending stereotype must be created when an instance of the extended class is created. The attribute value is derived from the multiplicity of the Property referenced by Extension::ownedEnd; a multiplicity of 1 means that isRequired is true, but otherwise it is false. Since the default multiplicity of an ExtensionEnd is 0..1, the default value of isRequired is false."/>
      <properties name="metaclass" type="Reference" description="References the Class that is extended through an Extension. The property is derived from the type of the memberEnd that is not the ownedEnd."/>
    </elements>
    <elements name="ExtensionEnd" supertypes="//@dataContexts.0/@elements.35"/>
    <elements name="Stereotype" supertypes="//@dataContexts.0/@elements.45">
      <properties name="icon" type="Reference" description="Stereotype can change the graphical appearance of the extended model element by using attached icons. When this association is not null, it references the location of the icon content to be displayed within diagrams presenting the extended model elements."/>
    </elements>
    <elements name="Image" supertypes="//@dataContexts.0/@elements.1">
      <properties name="content" description="This contains the serialization of the image according to the format. The value could represent a bitmap, image such as a GIF file, or drawing 'instructions' using a standard such as Scalable Vector Graphic (SVG) (which is XML based)."/>
      <properties name="location" description="This contains a location that can be used by a tool to locate the image as an alternative to embedding it in the stereotype."/>
      <properties name="format" description="This indicates the format of the content - which is how the string content should be interpreted. The following values are reserved: SVG, GIF, PNG, JPG, WMF, EMF, BMP.&#xD;&#xA;&#xD;&#xA;In addition the prefix 'MIME: ' is also reserved. This option can be used as an alternative to express the reserved values above, for example &quot;SVG&quot; could instead be expressed as &quot;MIME: image/svg+xml&quot;."/>
    </elements>
    <elements name="Profile" supertypes="//@dataContexts.0/@elements.2">
      <properties name="metaclassReference" type="Reference" description="References a metaclass that may be extended."/>
      <properties name="metamodelReference" type="Reference" description="References a package containing (directly or indirectly) metaclasses that may be extended."/>
    </elements>
    <elements name="Model" supertypes="//@dataContexts.0/@elements.2">
      <properties name="viewpoint" description="The name of the viewpoint that is expressed by a model (This name may refer to a profile definition)."/>
    </elements>
    <elements name="ParameterSet" supertypes="//@dataContexts.0/@elements.4">
      <properties name="parameter" type="Reference" description="Parameters in the parameter set."/>
      <properties name="condition" type="Reference" description="Constraint that should be satisfied for the owner of the parameters in an input parameter set to start execution using the values provided for those parameters, or the owner of the parameters in an output parameter set to end execution providing the values for those parameters, if all preconditions and conditions on input parameter sets were satisfied."/>
    </elements>
    <elements name="DataType" supertypes="//@dataContexts.0/@elements.16">
      <properties name="ownedAttribute" type="Reference" description="The Attributes owned by the DataType."/>
      <properties name="ownedOperation" type="Reference" description="The Operations owned by the DataType."/>
    </elements>
    <elements name="OperationTemplateParameter" supertypes="//@dataContexts.0/@elements.21"/>
    <elements name="StructuralFeature" supertypes="//@dataContexts.0/@elements.26 //@dataContexts.0/@elements.13 //@dataContexts.0/@elements.32">
      <properties name="isReadOnly" description="States whether the feature's value may be modified by a client."/>
    </elements>
    <elements name="ConnectableElementTemplateParameter" supertypes="//@dataContexts.0/@elements.21"/>
    <elements name="CollaborationUse" supertypes="//@dataContexts.0/@elements.4">
      <properties name="type" type="Reference" description="The collaboration which is used in this occurrence. The collaboration defines the cooperation between its roles which are mapped to properties of the classifier owning the collaboration use."/>
      <properties name="roleBinding" type="Reference" description="A mapping between features of the collaboration type and features of the classifier or operation. This mapping indicates which connectable element of the classifier or operation plays which role(s) in the collaboration. A connectable element may be bound to multiple roles in the same collaboration use (that is, it may play multiple roles).&#xD;&#xA;"/>
    </elements>
    <elements name="Collaboration" supertypes="//@dataContexts.0/@elements.46 //@dataContexts.0/@elements.64">
      <properties name="collaborationRole" type="Reference" description="References connectable elements (possibly owned by other classifiers) which represent roles that instances may play in this collaboration."/>
    </elements>
    <elements name="UseCase" supertypes="//@dataContexts.0/@elements.46">
      <properties name="include" type="Reference" description="References the Include relationships owned by this use case."/>
      <properties name="extend" type="Reference" description="References the Extend relationships owned by this use case."/>
      <properties name="extensionPoint" type="Reference" description="References the ExtensionPoints owned by the use case."/>
      <properties name="subject" type="Reference" description="References the subjects to which this use case applies. The subject or its parts realize all the use cases that apply to this subject. Use cases need not be attached to any specific subject, however. The subject may, but need not, own the use cases that apply to it."/>
    </elements>
    <elements name="Include" supertypes="//@dataContexts.0/@elements.4 //@dataContexts.0/@elements.6">
      <properties name="addition" type="Reference" description="References the use case that is to be included.&#xD;&#xA;"/>
      <properties name="includingCase" type="Reference" description="References the use case which will include the addition and owns the include relationship."/>
    </elements>
    <elements name="Extend" supertypes="//@dataContexts.0/@elements.4 //@dataContexts.0/@elements.6">
      <properties name="extendedCase" type="Reference" description="References the use case that is being extended."/>
      <properties name="condition" type="Reference" description="References the condition that must hold when the first extension point is reached for the extension to take place. If no constraint is associated with the extend relationship, the extension is unconditional.&#xD;&#xA;"/>
      <properties name="extensionLocation" type="Reference" description="An ordered list of extension points belonging to the extended use case, specifying where the respective behavioral fragments of the extending use case are to be inserted. The first fragment in the extending use case is associated with the first extension point in the list, the second fragment with the second point, and so on. (Note that, in most practical cases, the extending use case has just a single behavior fragment, so that the list of extension points is trivial.)&#xD;&#xA;"/>
      <properties name="extension" type="Reference" description="References the use case that represents the extension and owns the extend relationship."/>
    </elements>
    <elements name="ExtensionPoint" supertypes="//@dataContexts.0/@elements.17">
      <properties name="useCase" type="Reference" description="References the use case that owns this extension point."/>
    </elements>
    <elements name="RedefinableTemplateSignature" supertypes="//@dataContexts.0/@elements.17 //@dataContexts.0/@elements.20">
      <properties name="extendedSignature" type="Reference" description="The template signature that is extended by this template signature."/>
      <properties name="inheritedParameter" type="Reference" description="The formal template parameters of the extendedSignature."/>
      <properties name="classifier" type="Reference" description="The classifier that owns this template signature."/>
    </elements>
    <elements name="ClassifierTemplateParameter" supertypes="//@dataContexts.0/@elements.21">
      <properties name="allowSubstitutable" description="Constrains the required relationship between an actual parameter and the parameteredElement for this formal parameter."/>
      <properties name="constrainingClassifier" type="Reference" description="The classifiers that constrain the argument that can be used for the parameter. If the allowSubstitutable attribute is true, then any classifier that is compatible with this constraining classifier can be substituted; otherwise, it must be either this classifier or one of its subclasses. If this property is empty, there are no constraints on the classifier that can be used as an argument."/>
    </elements>
    <elements name="StringExpression" supertypes="//@dataContexts.0/@elements.86 //@dataContexts.0/@elements.18">
      <properties name="subExpression" type="Reference" description="The StringExpressions that constitute this StringExpression."/>
      <properties name="owningExpression" type="Reference" description="The string expression of which this expression is a substring."/>
    </elements>
    <elements name="Expression" supertypes="//@dataContexts.0/@elements.12">
      <properties name="symbol" description="The symbol associated with the node in the expression tree."/>
      <properties name="operand" type="Reference" description="Specifies a sequence of operands."/>
    </elements>
    <elements name="Usage" supertypes="//@dataContexts.0/@elements.5"/>
    <elements name="PackageMerge" supertypes="//@dataContexts.0/@elements.6">
      <properties name="mergedPackage" type="Reference" description="References the Package that is to be merged with the receiving package of the PackageMerge."/>
      <properties name="receivingPackage" type="Reference" description="References the Package that is being extended with the contents of the merged package of the PackageMerge."/>
    </elements>
    <elements name="ProfileApplication" supertypes="//@dataContexts.0/@elements.6">
      <properties name="appliedProfile" type="Reference" description="References the Profiles that are applied to a Package through this ProfileApplication."/>
      <properties name="isStrict" description="Specifies that the Profile filtering rules for the metaclasses of the referenced metamodel shall be strictly applied."/>
      <properties name="applyingPackage" type="Reference" description="The package that owns the profile application."/>
    </elements>
    <elements name="Enumeration" supertypes="//@dataContexts.0/@elements.73">
      <properties name="ownedLiteral" type="Reference" description="The ordered set of literals for this Enumeration."/>
    </elements>
    <elements name="EnumerationLiteral" supertypes="//@dataContexts.0/@elements.92">
      <properties name="enumeration" type="Reference" description="The Enumeration that this EnumerationLiteral is a member of."/>
      <properties name="classifier" type="Reference" description="The classifier of this EnumerationLiteral is derived to be equal to its enumeration. Redefines InstanceSpecification::classifier."/>
    </elements>
    <elements name="InstanceSpecification" supertypes="//@dataContexts.0/@elements.36 //@dataContexts.0/@elements.3 //@dataContexts.0/@elements.38">
      <properties name="classifier" type="Reference" description="The classifier or classifiers of the represented instance. If multiple classifiers are specified, the instance is classified by all of them."/>
      <properties name="slot" type="Reference" description="A slot giving the value or values of a structural feature of the instance. An instance specification can have one slot per structural feature of its classifiers, including inherited features. It is not necessary to model a slot for each structural feature, in which case the instance specification is a partial description."/>
      <properties name="specification" type="Reference" description="A specification of how to compute, derive, or construct the instance."/>
    </elements>
    <elements name="Slot" supertypes="//@dataContexts.0/@elements.1">
      <properties name="definingFeature" type="Reference" description="The structural feature that specifies the values that may be held by the slot."/>
      <properties name="value" type="Reference" description="The value or values corresponding to the defining feature for the owning instance specification."/>
      <properties name="owningInstance" type="Reference" description="The instance specification that owns this slot."/>
    </elements>
    <elements name="PrimitiveType" supertypes="//@dataContexts.0/@elements.73"/>
    <elements name="LiteralSpecification" supertypes="//@dataContexts.0/@elements.12"/>
    <elements name="LiteralInteger" supertypes="//@dataContexts.0/@elements.95">
      <properties name="value" description="The specified Integer value."/>
    </elements>
    <elements name="LiteralString" supertypes="//@dataContexts.0/@elements.95">
      <properties name="value" description="The specified String value."/>
    </elements>
    <elements name="LiteralBoolean" supertypes="//@dataContexts.0/@elements.95">
      <properties name="value" description="The specified Boolean value."/>
    </elements>
    <elements name="LiteralNull" supertypes="//@dataContexts.0/@elements.95"/>
    <elements name="InstanceValue" supertypes="//@dataContexts.0/@elements.12">
      <properties name="instance" type="Reference" description="The instance that is the specified value."/>
    </elements>
    <elements name="LiteralUnlimitedNatural" supertypes="//@dataContexts.0/@elements.95">
      <properties name="value" description="The specified UnlimitedNatural value."/>
    </elements>
    <elements name="OpaqueBehavior" supertypes="//@dataContexts.0/@elements.44">
      <properties name="body" description="Specifies the behavior in one or more languages."/>
      <properties name="language" description="Languages the body strings use in the same order as the body strings."/>
    </elements>
    <elements name="FunctionBehavior" supertypes="//@dataContexts.0/@elements.102"/>
    <elements name="OpaqueAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="body" description="Specifies the action in one or more languages."/>
      <properties name="language" description="Languages the body strings use, in the same order as the body strings"/>
      <properties name="inputValue" type="Reference" description="Provides input to the action."/>
      <properties name="outputValue" type="Reference" description="Takes output from the action."/>
    </elements>
    <elements name="Action" supertypes="//@dataContexts.0/@elements.106">
      <properties name="output" type="Reference" description="The ordered set of output pins connected to the Action. The action places its results onto pins in this set."/>
      <properties name="input" type="Reference" description="The ordered set of input pins connected to the Action. These are among the total set of inputs."/>
      <properties name="context" type="Reference" description="The classifier that owns the behavior of which this action is a part."/>
      <properties name="localPrecondition" type="Reference" description="Constraint that must be satisfied when execution is started."/>
      <properties name="localPostcondition" type="Reference" description="Constraint that must be satisfied when executed is completed."/>
      <properties name="isLocallyReentrant" type="Boolean" description="If true, the action can begin a new, concurrent execution, even if there is already another execution of the action ongoing. If false, the action cannot begin a new execution until any previous execution has completed. The default is false."/>
    </elements>
    <elements name="ExecutableNode" supertypes="//@dataContexts.0/@elements.107">
      <properties name="handler" type="Reference" description="A set of exception handlers that are examined if an uncaught exception propagates to the outer level of the executable node."/>
    </elements>
    <elements name="ActivityNode" supertypes="//@dataContexts.0/@elements.17">
      <properties name="inStructuredNode" type="Reference" description="Structured activity node containing the node."/>
      <properties name="activity" type="Reference" description="Activity containing the node."/>
      <properties name="outgoing" type="Reference" description="Edges that have the node as source."/>
      <properties name="incoming" type="Reference" description="Edges that have the node as target."/>
      <properties name="inPartition" type="Reference" description="Partitions containing the node."/>
      <properties name="inInterruptibleRegion" type="Reference" description="Interruptible regions containing the node."/>
      <properties name="inGroup" type="Reference" description="Groups containing the node."/>
      <properties name="redefinedNode" type="Reference" description="Inherited nodes replaced by this node in a specialization of the activity."/>
    </elements>
    <elements name="StructuredActivityNode" supertypes="//@dataContexts.0/@elements.105 //@dataContexts.0/@elements.8 //@dataContexts.0/@elements.109">
      <properties name="variable" type="Reference" description="A variable defined in the scope of the structured activity node. It has no value and may not be accessed"/>
      <properties name="edge" type="Reference" description="Edges immediately contained in the structured node."/>
      <properties name="mustIsolate" description="If true, then the actions in the node execute in isolation from actions outside the node."/>
      <properties name="node" type="Reference" description="Nodes immediately contained in the group."/>
      <properties name="structuredNodeInput" type="Reference" multiplicity="-1"/>
      <properties name="structuredNodeOutput" type="Reference" multiplicity="-1"/>
    </elements>
    <elements name="ActivityGroup" supertypes="//@dataContexts.0/@elements.1">
      <properties name="subgroup" type="Reference" description="Groups immediately contained in the group."/>
      <properties name="superGroup" type="Reference" description="Group immediately containing the group."/>
      <properties name="inActivity" type="Reference" description="Activity containing the group."/>
      <properties name="containedEdge" type="Reference" description="Edges immediately contained in the group."/>
      <properties name="containedNode" type="Reference" description="Nodes immediately contained in the group."/>
    </elements>
    <elements name="Activity" supertypes="//@dataContexts.0/@elements.44">
      <properties name="structuredNode" type="Reference" description="Top-level structured nodes in the activity."/>
      <properties name="variable" type="Reference" description="Top-level variables in the activity."/>
      <properties name="node" type="Reference" description="Nodes coordinated by the activity."/>
      <properties name="isReadOnly" description="If true, this activity must not make any changes to variables outside the activity or to objects. (This is an assertion, not an executable property. It may be used by an execution engine to optimize model execution. If the assertion is violated by the action, then the model is ill-formed.) The default is false (an activity may make nonlocal changes)."/>
      <properties name="edge" type="Reference" description="Edges expressing flow between nodes of the activity."/>
      <properties name="partition" type="Reference" description="Top-level partitions in the activity."/>
      <properties name="isSingleExecution" description="If true, all invocations of the activity are handled by the same execution."/>
      <properties name="group" type="Reference" description="Top-level groups in the activity."/>
    </elements>
    <elements name="Variable" supertypes="//@dataContexts.0/@elements.33 //@dataContexts.0/@elements.32">
      <properties name="scope" type="Reference" description="A structured activity node that owns the variable."/>
      <properties name="activityScope" type="Reference" description="An activity that owns the variable."/>
    </elements>
    <elements name="ActivityEdge" supertypes="//@dataContexts.0/@elements.17">
      <properties name="source" type="Reference" description="Node from which tokens are taken when they traverse the edge."/>
      <properties name="target" type="Reference" description="Node to which tokens are put when they traverse the edge."/>
      <properties name="redefinedEdge" type="Reference" description="Inherited edges replaced by this edge in a specialization of the activity."/>
      <properties name="inPartition" type="Reference" description="Partitions containing the edge."/>
      <properties name="guard" type="Reference" description="Specification evaluated at runtime to determine if the edge can be traversed."/>
      <properties name="weight" type="Reference" description="The minimum number of tokens that must traverse the edge at the same time."/>
      <properties name="interrupts" type="Reference" description="Region that the edge can interrupt."/>
      <properties name="inStructuredNode" type="Reference" description="Structured activity node containing the edge."/>
      <properties name="inGroup" type="Reference" description="Groups containing the edge."/>
      <properties name="activity" type="Reference" description="Activity containing the edge."/>
    </elements>
    <elements name="ActivityPartition" supertypes="//@dataContexts.0/@elements.4 //@dataContexts.0/@elements.109">
      <properties name="isDimension" description="Tells whether the partition groups other partitions along a dimension."/>
      <properties name="isExternal" description="Tells whether the partition represents an entity to which the partitioning structure does not apply."/>
      <properties name="node" type="Reference" description="Nodes immediately contained in the group."/>
      <properties name="subpartition" type="Reference" description="Partitions immediately contained in the partition."/>
      <properties name="superPartition" type="Reference" description="Partition immediately containing the partition."/>
      <properties name="represents" type="Reference" description="An element constraining behaviors invoked by nodes in the partition."/>
      <properties name="edge" type="Reference" description="Edges immediately contained in the group."/>
    </elements>
    <elements name="InterruptibleActivityRegion" supertypes="//@dataContexts.0/@elements.109">
      <properties name="node" type="Reference" description="Nodes immediately contained in the group."/>
      <properties name="interruptingEdge" type="Reference" description="The edges leaving the region that will abort other tokens flowing in the region."/>
    </elements>
    <elements name="ExceptionHandler" supertypes="//@dataContexts.0/@elements.1">
      <properties name="handlerBody" type="Reference" description="A node that is executed if the handler satisfies an uncaught exception."/>
      <properties name="exceptionInput" type="Reference" description="An object node within the handler body. When the handler catches an exception, the exception token is placed in this node, causing the body to execute."/>
      <properties name="exceptionType" type="Reference" description="The kind of instances that the handler catches. If an exception occurs whose type is any of the classifiers in the set, the handler catches the exception and executes its body."/>
      <properties name="protectedNode" type="Reference" description="The node protected by the handler. The handler is examined if an exception propagates to the outside of the node."/>
    </elements>
    <elements name="ObjectNode" supertypes="//@dataContexts.0/@elements.107 //@dataContexts.0/@elements.13">
      <properties name="ordering" type="Enumeration" description="Tells whether and how the tokens in the object node are ordered for selection to traverse edges outgoing from the object node."/>
      <properties name="isControlType" description="Tells whether the type of the object node is to be treated as control."/>
      <properties name="upperBound" type="Reference" description="The maximum number of tokens allowed in the node. Objects cannot flow into the node if the upper bound is reached."/>
      <properties name="inState" type="Reference" description="The required states of the object available at this point in the activity."/>
      <properties name="selection" type="Reference" description="Selects tokens for outgoing edges."/>
    </elements>
    <elements name="OutputPin" supertypes="//@dataContexts.0/@elements.118"/>
    <elements name="Pin" supertypes="//@dataContexts.0/@elements.116 //@dataContexts.0/@elements.32">
      <properties name="isControl" description="Tells whether the pins provide data to the actions, or just controls when it executes it."/>
    </elements>
    <elements name="InputPin" supertypes="//@dataContexts.0/@elements.118"/>
    <elements name="CallAction" supertypes="//@dataContexts.0/@elements.121">
      <properties name="isSynchronous" description="If true, the call is synchronous and the caller waits for completion of the invoked behavior.&#xD;&#xA;If false, the call is asynchronous and the caller proceeds immediately and does not expect a return values.&#xD;&#xA;"/>
      <properties name="result" type="Reference" description="A list of output pins where the results of performing the invocation are placed."/>
    </elements>
    <elements name="InvocationAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="argument" type="Reference" description="Specification of the ordered set of argument values that appears during execution."/>
      <properties name="onPort" type="Reference" description="A optional port of the receiver object on which the behavioral feature is invoked."/>
    </elements>
    <elements name="SendSignalAction" supertypes="//@dataContexts.0/@elements.121">
      <properties name="target" type="Reference" description="The target object to which the signal is sent."/>
      <properties name="signal" type="Reference" description="The type of signal transmitted to the target object."/>
    </elements>
    <elements name="CallOperationAction" supertypes="//@dataContexts.0/@elements.120">
      <properties name="operation" type="Reference" description="The operation to be invoked by the action execution."/>
      <properties name="target" type="Reference" description="The target object to which the request is sent. The classifier of the target object is used to dynamically determine a behavior to invoke. This object constitutes the context of the execution of the operation."/>
    </elements>
    <elements name="CallBehaviorAction" supertypes="//@dataContexts.0/@elements.120">
      <properties name="behavior" type="Reference" description="The invoked behavior. It must be capable of accepting and returning control."/>
    </elements>
    <elements name="SequenceNode" supertypes="//@dataContexts.0/@elements.108">
      <properties name="executableNode" type="Reference" description="An ordered set of executable nodes."/>
    </elements>
    <elements name="ControlNode" supertypes="//@dataContexts.0/@elements.107"/>
    <elements name="ControlFlow" supertypes="//@dataContexts.0/@elements.112"/>
    <elements name="InitialNode" supertypes="//@dataContexts.0/@elements.126"/>
    <elements name="ActivityParameterNode" supertypes="//@dataContexts.0/@elements.116">
      <properties name="parameter" type="Reference" description="The parameter the object node will be accepting or providing values for."/>
    </elements>
    <elements name="ValuePin" supertypes="//@dataContexts.0/@elements.119">
      <properties name="value" type="Reference" description="Value that the pin will provide."/>
    </elements>
    <elements name="Message" supertypes="//@dataContexts.0/@elements.4">
      <properties name="messageKind" type="Enumeration" description="The derived kind of the Message (complete, lost, found or unknown)"/>
      <properties name="messageSort" type="Enumeration" description="The sort of communication reflected by the Message"/>
      <properties name="receiveEvent" type="Reference" description="References the Receiving of the Message"/>
      <properties name="sendEvent" type="Reference" description="References the Sending of the Message."/>
      <properties name="connector" type="Reference" description="The Connector on which this Message is sent."/>
      <properties name="interaction" type="Reference" description="The enclosing Interaction owning the Message"/>
      <properties name="argument" type="Reference" description="The arguments of the Message"/>
      <properties name="signature" type="Reference" description="The definition of the type or signature of the Message (depending on its kind). The associated named element is derived from the message end that constitutes the sending or receiving message event. If both a sending event and a receiving message event are present, the signature is obtained from the sending event."/>
    </elements>
    <elements name="MessageEnd" supertypes="//@dataContexts.0/@elements.4">
      <properties name="message" type="Reference" description="References a Message."/>
    </elements>
    <elements name="Interaction" supertypes="//@dataContexts.0/@elements.44 //@dataContexts.0/@elements.134">
      <properties name="lifeline" type="Reference" description="Specifies the participants in this Interaction."/>
      <properties name="fragment" type="Reference" description="The ordered set of fragments in the Interaction."/>
      <properties name="action" type="Reference" description="Actions owned by the Interaction."/>
      <properties name="formalGate" type="Reference" description="Specifies the gates that form the message interface between this Interaction and any InteractionUses which reference it.&#xD;&#xA;"/>
      <properties name="message" type="Reference" description="The Messages contained in this Interaction."/>
    </elements>
    <elements name="InteractionFragment" supertypes="//@dataContexts.0/@elements.4">
      <properties name="covered" type="Reference" description="References the Lifelines that the InteractionFragment involves."/>
      <properties name="generalOrdering" type="Reference" description="The general ordering relationships contained in this fragment."/>
      <properties name="enclosingInteraction" type="Reference" description="The Interaction enclosing this InteractionFragment."/>
      <properties name="enclosingOperand" type="Reference" description="The operand enclosing this InteractionFragment (they may nest recursively)"/>
    </elements>
    <elements name="Lifeline" supertypes="//@dataContexts.0/@elements.4">
      <properties name="represents" type="Reference" description="References the ConnectableElement within the classifier that contains the enclosing interaction."/>
      <properties name="interaction" type="Reference" description="References the Interaction enclosing this Lifeline."/>
      <properties name="selector" type="Reference" description="If the referenced ConnectableElement is multivalued, then this specifies the specific individual part within that set."/>
      <properties name="decomposedAs" type="Reference" description="References the Interaction that represents the decomposition."/>
      <properties name="coveredBy" type="Reference" description="References the InteractionFragments in which this Lifeline takes part."/>
    </elements>
    <elements name="PartDecomposition" supertypes="//@dataContexts.0/@elements.137"/>
    <elements name="InteractionUse" supertypes="//@dataContexts.0/@elements.134">
      <properties name="refersTo" type="Reference" description="Refers to the Interaction that defines its meaning"/>
      <properties name="actualGate" type="Reference" description="The actual gates of the InteractionUse"/>
      <properties name="argument" type="Reference" description="The actual arguments of the Interaction"/>
      <properties name="returnValue" type="Reference" description="The value of the executed Interaction."/>
      <properties name="returnValueRecipient" type="Reference" description="The recipient of the return value."/>
    </elements>
    <elements name="Gate" supertypes="//@dataContexts.0/@elements.132"/>
    <elements name="GeneralOrdering" supertypes="//@dataContexts.0/@elements.4">
      <properties name="before" type="Reference" description="The OccurrenceSpecification referenced comes before the OccurrenceSpecification referenced by after."/>
      <properties name="after" type="Reference" description="The OccurrenceSpecification referenced comes after the OccurrenceSpecification referenced by before."/>
    </elements>
    <elements name="OccurrenceSpecification" supertypes="//@dataContexts.0/@elements.134">
      <properties name="toBefore" type="Reference" description="References the GeneralOrderings that specify EventOcurrences that must occur before this OccurrenceSpecification&#xD;&#xA;"/>
      <properties name="toAfter" type="Reference" description="References the GeneralOrderings that specify EventOcurrences that must occur after this OccurrenceSpecification&#xD;&#xA;"/>
    </elements>
    <elements name="InteractionOperand" supertypes="//@dataContexts.0/@elements.8 //@dataContexts.0/@elements.134">
      <properties name="guard" type="Reference" description="Constraint of the operand."/>
      <properties name="fragment" type="Reference" description="The fragments of the operand."/>
    </elements>
    <elements name="InteractionConstraint" supertypes="//@dataContexts.0/@elements.11">
      <properties name="minint" type="Reference" description="The minimum number of iterations of a loop"/>
      <properties name="maxint" type="Reference" description="The maximum number of iterations of a loop"/>
    </elements>
    <elements name="ExecutionSpecification" supertypes="//@dataContexts.0/@elements.134">
      <properties name="start" type="Reference" description="References the OccurrenceSpecification that designates the start of the Action or Behavior"/>
      <properties name="finish" type="Reference" description="References the OccurrenceSpecification that designates the finish of the Action or Behavior."/>
    </elements>
    <elements name="StateInvariant" supertypes="//@dataContexts.0/@elements.134">
      <properties name="invariant" type="Reference" description="A Constraint that should hold at runtime for this StateInvariant"/>
    </elements>
    <elements name="ActionExecutionSpecification" supertypes="//@dataContexts.0/@elements.143">
      <properties name="action" type="Reference" description="Action whose execution is occurring."/>
    </elements>
    <elements name="BehaviorExecutionSpecification" supertypes="//@dataContexts.0/@elements.143">
      <properties name="behavior" type="Reference" description="Behavior whose execution is occurring."/>
    </elements>
    <elements name="CreationEvent" supertypes="//@dataContexts.0/@elements.57"/>
    <elements name="MessageEvent" supertypes="//@dataContexts.0/@elements.57"/>
    <elements name="MessageOccurrenceSpecification" supertypes="//@dataContexts.0/@elements.140 //@dataContexts.0/@elements.132"/>
    <elements name="ExecutionOccurrenceSpecification" supertypes="//@dataContexts.0/@elements.140">
      <properties name="execution" type="Reference" multiplicity="2" description="References the execution specification describing the execution that is started or finished at this execution event."/>
    </elements>
    <elements name="Actor" supertypes="//@dataContexts.0/@elements.46"/>
    <elements name="CallEvent" supertypes="//@dataContexts.0/@elements.148">
      <properties name="operation" type="Reference" description="Designates the operation whose invocation raised the call event."/>
    </elements>
    <elements name="ChangeEvent" supertypes="//@dataContexts.0/@elements.57">
      <properties name="changeExpression" type="Reference" description="A Boolean-valued expression that will result in a change event whenever its value changes from false to true."/>
    </elements>
    <elements name="SignalEvent" supertypes="//@dataContexts.0/@elements.148">
      <properties name="signal" type="Reference" description="The specific signal that is associated with this event."/>
    </elements>
    <elements name="AnyReceiveEvent" supertypes="//@dataContexts.0/@elements.148"/>
    <elements name="ForkNode" supertypes="//@dataContexts.0/@elements.126"/>
    <elements name="FlowFinalNode" supertypes="//@dataContexts.0/@elements.158"/>
    <elements name="FinalNode" supertypes="//@dataContexts.0/@elements.126"/>
    <elements name="CentralBufferNode" supertypes="//@dataContexts.0/@elements.116"/>
    <elements name="MergeNode" supertypes="//@dataContexts.0/@elements.126"/>
    <elements name="DecisionNode" supertypes="//@dataContexts.0/@elements.126">
      <properties name="decisionInput" type="Reference" description="Provides input to guard specifications on edges outgoing from the decision node."/>
      <properties name="decisionInputFlow" type="Reference" description="An additional edge incoming to the decision node that provides a decision input value."/>
    </elements>
    <elements name="ObjectFlow" supertypes="//@dataContexts.0/@elements.112">
      <properties name="isMulticast" description="Tells whether the objects in the flow are passed by multicasting."/>
      <properties name="isMultireceive" description="Tells whether the objects in the flow are gathered from respondents to multicasting."/>
      <properties name="transformation" type="Reference" description="Changes or replaces data tokens flowing along edge."/>
      <properties name="selection" type="Reference" description="Selects tokens from a source object node."/>
    </elements>
    <elements name="ActivityFinalNode" supertypes="//@dataContexts.0/@elements.158"/>
    <elements name="ComponentRealization" supertypes="//@dataContexts.0/@elements.28">
      <properties name="abstraction" type="Reference" description="The Component that owns this ComponentRealization and which is implemented by its realizing classifiers."/>
      <properties name="realizingClassifier" type="Reference" description="The classifiers that are involved in the implementation of the Component that owns this Realization."/>
    </elements>
    <elements name="Component" supertypes="//@dataContexts.0/@elements.45">
      <properties name="isIndirectlyInstantiated" description="The kind of instantiation that applies to a Component. If false, the component is instantiated as an addressable object. If true, the Component is defined at design-time, but at runtime (or execution-time) an object specified by the Component does not exist, that is, the component is instantiated indirectly, through the instantiation of its realizing classifiers or parts. Several standard stereotypes use this meta attribute, e.g. &lt;&lt;specification>>, &lt;&lt;focus>>, &lt;&lt;subsystem>>."/>
      <properties name="required" type="Reference" description="The interfaces that the component requires from other components in its environment in order to be able to offer its full set of provided functionality. These interfaces may be used by the Component or any of its realizingClassifiers, or they may be the Interfaces that are required by its public Ports."/>
      <properties name="provided" type="Reference" description="The interfaces that the component exposes to its environment. These interfaces may be Realized by the Component or any of its realizingClassifiers, or they may be the Interfaces that are provided by its public Ports."/>
      <properties name="packagedElement" type="Reference" description="The set of PackageableElements that a Component owns. In the namespace of a component, all model elements that are involved in or related to its definition may be owned or imported explicitly. These may include e.g. Classes, Interfaces, Components, Packages, Use cases, Dependencies (e.g. mappings), and Artifacts."/>
      <properties name="realization" type="Reference" description="The set of Realizations owned by the Component. Realizations reference the Classifiers of which the Component is an abstraction; i.e., that realize its behavior."/>
    </elements>
    <elements name="Node" supertypes="//@dataContexts.0/@elements.45 //@dataContexts.0/@elements.36">
      <properties name="nestedNode" type="Reference" description="The Nodes that are defined (nested) within the Node."/>
    </elements>
    <elements name="CommunicationPath" supertypes="//@dataContexts.0/@elements.15"/>
    <elements name="Device" supertypes="//@dataContexts.0/@elements.166"/>
    <elements name="ExecutionEnvironment" supertypes="//@dataContexts.0/@elements.166"/>
    <elements name="CombinedFragment" supertypes="//@dataContexts.0/@elements.134">
      <properties name="interactionOperator" type="Enumeration" description="Specifies the operation which defines the semantics of this combination of InteractionFragments."/>
      <properties name="operand" type="Reference" description="The set of operands of the combined fragment."/>
      <properties name="cfragmentGate" type="Reference" description="Specifies the gates that form the interface between this CombinedFragment and its surroundings"/>
    </elements>
    <elements name="Continuation" supertypes="//@dataContexts.0/@elements.134">
      <properties name="setting" description="True: when the Continuation is at the end of the enclosing InteractionFragment and False when it is in the beginning."/>
    </elements>
    <elements name="ConsiderIgnoreFragment" supertypes="//@dataContexts.0/@elements.170">
      <properties name="message" type="Reference" description="The set of messages that apply to this fragment"/>
    </elements>
    <elements name="CreateObjectAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="classifier" type="Reference" description="Classifier to be instantiated."/>
      <properties name="result" type="Reference" description="Gives the output pin on which the result is put."/>
    </elements>
    <elements name="DestroyObjectAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="isDestroyLinks" description="Specifies whether links in which the object participates are destroyed along with the object."/>
      <properties name="isDestroyOwnedObjects" description="Specifies whether objects owned by the object are destroyed along with the object."/>
      <properties name="target" type="Reference" description="The input pin providing the object to be destroyed."/>
    </elements>
    <elements name="TestIdentityAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="first" type="Reference" description="Gives the pin on which an object is placed."/>
      <properties name="second" type="Reference" description="Gives the pin on which an object is placed."/>
      <properties name="result" type="Reference" description="Tells whether the two input objects are identical."/>
    </elements>
    <elements name="ReadSelfAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="result" type="Reference" description="Gives the output pin on which the hosting object is placed."/>
    </elements>
    <elements name="StructuralFeatureAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="structuralFeature" type="Reference" description="Structural feature to be read."/>
      <properties name="object" type="Reference" description="Gives the input pin from which the object whose structural feature is to be read or written is obtained.&#xD;&#xA;"/>
    </elements>
    <elements name="ReadStructuralFeatureAction" supertypes="//@dataContexts.0/@elements.177">
      <properties name="result" type="Reference" description="Gives the output pin on which the result is put."/>
    </elements>
    <elements name="WriteStructuralFeatureAction" supertypes="//@dataContexts.0/@elements.177">
      <properties name="value" type="Reference" description="Value to be added or removed from the structural feature."/>
      <properties name="result" type="Reference" description="Gives the output pin on which the result is put."/>
    </elements>
    <elements name="ClearStructuralFeatureAction" supertypes="//@dataContexts.0/@elements.177">
      <properties name="result" type="Reference" description="Gives the output pin on which the result is put."/>
    </elements>
    <elements name="RemoveStructuralFeatureValueAction" supertypes="//@dataContexts.0/@elements.179">
      <properties name="isRemoveDuplicates" description="Specifies whether to remove duplicates of the value in nonunique structural features."/>
      <properties name="removeAt" type="Reference" description="Specifies the position of an existing value to remove in ordered nonunique structural features. The type of the pin is UnlimitedNatural, but the value cannot be zero or unlimited."/>
    </elements>
    <elements name="AddStructuralFeatureValueAction" supertypes="//@dataContexts.0/@elements.179">
      <properties name="isReplaceAll" description="Specifies whether existing values of the structural feature of the object should be removed before adding the new value."/>
      <properties name="insertAt" type="Reference" description="Gives the position at which to insert a new value or move an existing value in ordered structural features. The type of the pin is UnlimitedNatural, but the value cannot be zero. This pin is omitted for unordered structural features."/>
    </elements>
    <elements name="LinkAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="endData" type="Reference" description="Data identifying one end of a link by the objects on its ends and qualifiers."/>
      <properties name="inputValue" type="Reference" description="Pins taking end objects and qualifier values as input."/>
    </elements>
    <elements name="LinkEndData" supertypes="//@dataContexts.0/@elements.1">
      <properties name="value" type="Reference" description="Input pin that provides the specified object for the given end. This pin is omitted if the link-end data specifies an 'open' end for reading."/>
      <properties name="end" type="Reference" description="Association end for which this link-end data specifies values."/>
      <properties name="qualifier" type="Reference" description="List of qualifier values"/>
    </elements>
    <elements name="QualifierValue" supertypes="//@dataContexts.0/@elements.1">
      <properties name="qualifier" type="Reference" description="Attribute representing the qualifier for which the value is to be specified."/>
      <properties name="value" type="Reference" description="Input pin from which the specified value for the qualifier is taken."/>
    </elements>
    <elements name="ReadLinkAction" supertypes="//@dataContexts.0/@elements.183">
      <properties name="result" type="Reference" description="The pin on which are put the objects participating in the association at the end not specified by the inputs.&#xD;&#xA;"/>
    </elements>
    <elements name="LinkEndCreationData" supertypes="//@dataContexts.0/@elements.184">
      <properties name="isReplaceAll" description="Specifies whether the existing links emanating from the object on this end should be destroyed before creating a new link."/>
      <properties name="insertAt" type="Reference" description="Specifies where the new link should be inserted for ordered association ends, or where an existing link should be moved to. The type of the input is UnlimitedNatural, but the input cannot be zero. This pin is omitted for association ends that are not ordered."/>
    </elements>
    <elements name="CreateLinkAction" supertypes="//@dataContexts.0/@elements.189"/>
    <elements name="WriteLinkAction" supertypes="//@dataContexts.0/@elements.183"/>
    <elements name="DestroyLinkAction" supertypes="//@dataContexts.0/@elements.189"/>
    <elements name="LinkEndDestructionData" supertypes="//@dataContexts.0/@elements.184">
      <properties name="isDestroyDuplicates" description="Specifies whether to destroy duplicates of the value in nonunique association ends."/>
      <properties name="destroyAt" type="Reference" description="Specifies the position of an existing link to be destroyed in ordered nonunique association ends. The type of the pin is UnlimitedNatural, but the value cannot be zero or unlimited."/>
    </elements>
    <elements name="ClearAssociationAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="object" type="Reference" description="Gives the input pin from which is obtained the object whose participation in the association is to be cleared."/>
      <properties name="association" type="Reference" description="Association to be cleared."/>
    </elements>
    <elements name="BroadcastSignalAction" supertypes="//@dataContexts.0/@elements.121">
      <properties name="signal" type="Reference" description="The specification of signal object transmitted to the target objects."/>
    </elements>
    <elements name="SendObjectAction" supertypes="//@dataContexts.0/@elements.121">
      <properties name="target" type="Reference" description="The target object to which the object is sent."/>
      <properties name="request" type="Reference" description="The request object, which is transmitted to the target object. The object may be copied in transmission, so identity might not be preserved."/>
    </elements>
    <elements name="ValueSpecificationAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="value" type="Reference" description="Value specification to be evaluated."/>
      <properties name="result" type="Reference" description="Gives the output pin on which the result is put."/>
    </elements>
    <elements name="TimeExpression" supertypes="//@dataContexts.0/@elements.12">
      <properties name="expr" type="Reference" description="The value of the time expression."/>
      <properties name="observation" type="Reference" description="Refers to the time and duration observations that are involved in expr."/>
    </elements>
    <elements name="Observation" supertypes="//@dataContexts.0/@elements.3"/>
    <elements name="Duration" supertypes="//@dataContexts.0/@elements.12">
      <properties name="expr" type="Reference" description="The value of the Duration."/>
      <properties name="observation" type="Reference" description="Refers to the time and duration observations that are involved in expr."/>
    </elements>
    <elements name="DurationInterval" supertypes="//@dataContexts.0/@elements.200"/>
    <elements name="Interval" supertypes="//@dataContexts.0/@elements.12">
      <properties name="min" type="Reference" description="Refers to the ValueSpecification denoting the minimum value of the range."/>
      <properties name="max" type="Reference" description="Refers to the ValueSpecification denoting the maximum value of the range."/>
    </elements>
    <elements name="TimeConstraint" supertypes="//@dataContexts.0/@elements.202">
      <properties name="firstEvent" description="The value of firstEvent is related to constrainedElement. If firstEvent is true, then the corresponding observation event is the first time instant the execution enters constrainedElement. If firstEvent is false, then the corresponding observation event is the last time instant the execution is within constrainedElement."/>
    </elements>
    <elements name="IntervalConstraint" supertypes="//@dataContexts.0/@elements.11"/>
    <elements name="TimeInterval" supertypes="//@dataContexts.0/@elements.200"/>
    <elements name="DurationConstraint" supertypes="//@dataContexts.0/@elements.202">
      <properties name="firstEvent" description="The value of firstEvent[i] is related to constrainedElement[i] (where i is 1 or 2). If firstEvent[i] is true, then the corresponding observation event is the first time instant the execution enters constrainedElement[i]. If firstEvent[i] is false, then the corresponding observation event is the last time instant the execution is within constrainedElement[i]. Default value is true applied when constrainedElement[i] refers an element that represents only one time instant."/>
    </elements>
    <elements name="TimeObservation" supertypes="//@dataContexts.0/@elements.197">
      <properties name="event" type="Reference" description="The observation is determined by the entering or exiting of the event element during execution."/>
      <properties name="firstEvent" description="The value of firstEvent is related to event. If firstEvent is true, then the corresponding observation event is the first time instant the execution enters event. If firstEvent is false, then the corresponding observation event is the time instant the execution exits event."/>
    </elements>
    <elements name="DurationObservation" supertypes="//@dataContexts.0/@elements.197">
      <properties name="event" type="Reference" description="The observation is determined by the entering or exiting of the event element during execution."/>
      <properties name="firstEvent" description="The value of firstEvent[i] is related to event[i] (where i is 1 or 2). If firstEvent[i] is true, then the corresponding observation event is the first time instant the execution enters event[i]. If firstEvent[i] is false, then the corresponding observation event is the time instant the execution exits event[i]. Default value is true applied when event[i] refers an element that represents only one time instant."/>
    </elements>
    <elements name="FinalState" supertypes="//@dataContexts.0/@elements.59"/>
    <elements name="TimeEvent" supertypes="//@dataContexts.0/@elements.57">
      <properties name="isRelative" description="Specifies whether it is relative or absolute time."/>
      <properties name="when" type="Reference" description="Specifies the corresponding time deadline."/>
    </elements>
    <elements name="VariableAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="variable" type="Reference" description="Variable to be read."/>
    </elements>
    <elements name="ReadVariableAction" supertypes="//@dataContexts.0/@elements.209">
      <properties name="result" type="Reference" description="Gives the output pin on which the result is put."/>
    </elements>
    <elements name="WriteVariableAction" supertypes="//@dataContexts.0/@elements.209">
      <properties name="value" type="Reference" description="Value to be added or removed from the variable."/>
    </elements>
    <elements name="ClearVariableAction" supertypes="//@dataContexts.0/@elements.209"/>
    <elements name="AddVariableValueAction" supertypes="//@dataContexts.0/@elements.211">
      <properties name="isReplaceAll" description="Specifies whether existing values of the variable should be removed before adding the new value."/>
      <properties name="insertAt" type="Reference" description="Gives the position at which to insert a new value or move an existing value in ordered variables. The types is UnlimitedINatural, but the value cannot be zero. This pin is omitted for unordered variables."/>
    </elements>
    <elements name="RemoveVariableValueAction" supertypes="//@dataContexts.0/@elements.211">
      <properties name="isRemoveDuplicates" description="Specifies whether to remove duplicates of the value in nonunique variables."/>
      <properties name="removeAt" type="Reference" description="Specifies the position of an existing value to remove in ordered nonunique variables. The type of the pin is UnlimitedNatural, but the value cannot be zero or unlimited."/>
    </elements>
    <elements name="RaiseExceptionAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="exception" type="Reference" description="An input pin whose value becomes an exception object."/>
    </elements>
    <elements name="ActionInputPin" supertypes="//@dataContexts.0/@elements.119">
      <properties name="fromAction" type="Reference" description="The action used to provide values."/>
    </elements>
    <elements name="InformationItem" supertypes="//@dataContexts.0/@elements.16">
      <properties name="represented" type="Reference" description="Determines the classifiers that will specify the structure and nature of the information. An information item represents all its represented classifiers."/>
    </elements>
    <elements name="InformationFlow" supertypes="//@dataContexts.0/@elements.3 //@dataContexts.0/@elements.6">
      <properties name="realization" type="Reference" description="Determines which Relationship will realize the specified flow"/>
      <properties name="conveyed" type="Reference" description="Specifies the information items that may circulate on this information flow."/>
      <properties name="informationSource" type="Reference" description="Defines from which source the conveyed InformationItems are initiated."/>
      <properties name="informationTarget" type="Reference" description="Defines to which target the conveyed InformationItems are directed."/>
      <properties name="realizingActivityEdge" type="Reference" description="Determines which ActivityEdges will realize the specified flow."/>
      <properties name="realizingConnector" type="Reference" description="Determines which Connectors will realize the specified flow."/>
      <properties name="realizingMessage" type="Reference" description="Determines which Messages will realize the specified flow."/>
    </elements>
    <elements name="ReadExtentAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="result" type="Reference" description="The runtime instances of the classifier."/>
      <properties name="classifier" type="Reference" description="The classifier whose instances are to be retrieved."/>
    </elements>
    <elements name="ReclassifyObjectAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="isReplaceAll" description="Specifies whether existing classifiers should be removed before adding the new classifiers."/>
      <properties name="oldClassifier" type="Reference" description="A set of classifiers to be removed from the classifiers of the object."/>
      <properties name="newClassifier" type="Reference" description="A set of classifiers to be added to the classifiers of the object."/>
      <properties name="object" type="Reference" description="Holds the object to be reclassified."/>
    </elements>
    <elements name="ReadIsClassifiedObjectAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="isDirect" description="Indicates whether the classifier must directly classify the input object."/>
      <properties name="classifier" type="Reference" description="The classifier against which the classification of the input object is tested."/>
      <properties name="result" type="Reference" description="After termination of the action, will hold the result of the test."/>
      <properties name="object" type="Reference" description="Holds the object whose classification is to be tested."/>
    </elements>
    <elements name="StartClassifierBehaviorAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="object" type="Reference" description="Holds the object on which to start the owned behavior."/>
    </elements>
    <elements name="ReadLinkObjectEndAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="object" type="Reference" description="Gives the input pin from which the link object is obtained."/>
      <properties name="end" type="Reference" description="Link end to be read."/>
      <properties name="result" type="Reference" description="Pin where the result value is placed."/>
    </elements>
    <elements name="ReadLinkObjectEndQualifierAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="object" type="Reference" description="Gives the input pin from which the link object is obtained."/>
      <properties name="result" type="Reference" description="Pin where the result value is placed."/>
      <properties name="qualifier" type="Reference" description="The attribute representing the qualifier to be read."/>
    </elements>
    <elements name="CreateLinkObjectAction" supertypes="//@dataContexts.0/@elements.188">
      <properties name="result" type="Reference" description="Gives the output pin on which the result is put."/>
    </elements>
    <elements name="AcceptEventAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="isUnmarshall" description="Indicates whether there is a single output pin for the event, or multiple output pins for attributes of the event."/>
      <properties name="result" type="Reference" description="Pins holding the received event objects or their attributes. Event objects may be copied in transmission, so identity might not be preserved."/>
      <properties name="trigger" type="Reference" description="The type of events accepted by the action, as specified by triggers. For triggers with signal events, a signal of the specified type or any subtype of the specified signal type is accepted."/>
    </elements>
    <elements name="AcceptCallAction" supertypes="//@dataContexts.0/@elements.226">
      <properties name="returnInformation" type="Reference" description="Pin where a value is placed containing sufficient information to perform a subsequent reply and return control to the caller. The contents of this value are opaque. It can be passed and copied but it cannot be manipulated by the model."/>
    </elements>
    <elements name="ReplyAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="replyToCall" type="Reference" description="The trigger specifying the operation whose call is being replied to."/>
      <properties name="returnInformation" type="Reference" description="A pin containing the return information value produced by an earlier AcceptCallAction."/>
      <properties name="replyValue" type="Reference" description="A list of pins containing the reply values of the operation. These values are returned to the caller."/>
    </elements>
    <elements name="UnmarshallAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="result" type="Reference" description="The values of the structural features of the input object."/>
      <properties name="unmarshallType" type="Reference" description="The type of the object to be unmarshalled."/>
      <properties name="object" type="Reference" description="The object to be unmarshalled."/>
    </elements>
    <elements name="ReduceAction" supertypes="//@dataContexts.0/@elements.105">
      <properties name="reducer" type="Reference" description="Behavior that is applied to two elements of the input collection to produce a value that is the same type as elements of the collection."/>
      <properties name="result" type="Reference" description="Gives the output pin on which the result is put."/>
      <properties name="collection" type="Reference" description="The collection to be reduced."/>
      <properties name="isOrdered" description="Tells whether the order of the input collection should determine the order in which the behavior is applied to its elements."/>
    </elements>
    <elements name="StartObjectBehaviorAction" supertypes="//@dataContexts.0/@elements.120">
      <properties name="object" type="Reference" description="Holds the object which is either a behavior to be started or has a classifier behavior to be started."/>
    </elements>
    <elements name="JoinNode" supertypes="//@dataContexts.0/@elements.126">
      <properties name="isCombineDuplicate" description="Tells whether tokens having objects with the same identity are combined into one by the join."/>
      <properties name="joinSpec" type="Reference" description="A specification giving the conditions under which the join with emit a token. Default is &quot;and&quot;."/>
    </elements>
    <elements name="DataStoreNode" supertypes="//@dataContexts.0/@elements.159"/>
    <elements name="ConditionalNode" supertypes="//@dataContexts.0/@elements.108">
      <properties name="isDeterminate" description="If true, the modeler asserts that at most one test will succeed."/>
      <properties name="isAssured" description="If true, the modeler asserts that at least one test will succeed."/>
      <properties name="clause" type="Reference" description="Set of clauses composing the conditional."/>
      <properties name="result" type="Reference" description="A list of output pins that constitute the data flow outputs of the conditional."/>
    </elements>
    <elements name="Clause" supertypes="//@dataContexts.0/@elements.1">
      <properties name="test" type="Reference" multiplicity="-1" description="A nested activity fragment with a designated output pin that specifies the result of the test."/>
      <properties name="body" type="Reference" description="A nested activity fragment that is executed if the test evaluates to true and the clause is chosen over any concurrent clauses that also evaluate to true."/>
      <properties name="predecessorClause" type="Reference" description="A set of clauses whose tests must all evaluate false before the current clause can be tested."/>
      <properties name="successorClause" type="Reference" description="A set of clauses which may not be tested unless the current clause tests false."/>
      <properties name="decider" type="Reference" description="An output pin within the test fragment the value of which is examined after execution of the test to determine whether the body should be executed."/>
      <properties name="bodyOutput" type="Reference" description="A list of output pins within the body fragment whose values are moved to the result pins of the containing conditional node after execution of the clause body."/>
    </elements>
    <elements name="LoopNode" supertypes="//@dataContexts.0/@elements.108">
      <properties name="isTestedFirst" description="If true, the test is performed before the first execution of the body.&#xA;If false, the body is executed once before the test is performed.&#xA;"/>
      <properties name="bodyPart" type="Reference" description="The set of nodes and edges that perform the repetitive computations of the loop. The body section is executed as long as the test section produces a true value."/>
      <properties name="setupPart" type="Reference" description="The set of nodes and edges that initialize values or perform other setup computations for the loop."/>
      <properties name="decider" type="Reference" description="An output pin within the test fragment the value of which is examined after execution of the test to determine whether to execute the loop body."/>
      <properties name="test" type="Reference" multiplicity="-1" description="The set of nodes, edges, and designated value that compute a Boolean value to determine if another execution of the body will be performed."/>
      <properties name="result" type="Reference" description="A list of output pins that constitute the data flow output of the entire loop."/>
      <properties name="loopVariable" type="Reference" description="A list of output pins that hold the values of the loop variables during an execution of the loop. When the test fails, the values are movied to the result pins of the loop."/>
      <properties name="bodyOutput" type="Reference" description="A list of output pins within the body fragment the values of which are moved to the loop variable pins after completion of execution of the body, before the next iteration of the loop begins or before the loop exits."/>
      <properties name="loopVariableInput" type="Reference" description="A list of values that are moved into the loop variable pins before the first iteration of the loop."/>
    </elements>
    <elements name="ExpansionNode" supertypes="//@dataContexts.0/@elements.116">
      <properties name="regionAsOutput" type="Reference" description="The expansion region for which the node is an output."/>
      <properties name="regionAsInput" type="Reference" description="The expansion region for which the node is an input."/>
    </elements>
    <elements name="ExpansionRegion" supertypes="//@dataContexts.0/@elements.108">
      <properties name="mode" type="Enumeration" description="The way in which the executions interact:&#xD;&#xA;parallel: all interactions are independent&#xD;&#xA;iterative: the interactions occur in order of the elements&#xD;&#xA;stream: a stream of values flows into a single execution&#xD;&#xA;"/>
      <properties name="inputElement" type="Reference" description="An object node that holds a separate element of the input collection during each of the multiple executions of the region."/>
      <properties name="outputElement" type="Reference" description="An object node that accepts a separate element of the output collection during each of the multiple executions of the region. The values are formed into a collection that is available when the execution of the region is complete."/>
    </elements>
    <elements name="ProtocolTransition" supertypes="//@dataContexts.0/@elements.55">
      <properties name="postCondition" type="Reference" description="Specifies the post condition of the transition which is the condition that should be obtained once the transition is triggered. This post condition is part of the post condition of the operation connected to the transition.&#xD;&#xA;"/>
      <properties name="referred" type="Reference" description="This association refers to the associated operation. It is derived from the operation of the call trigger when applicable."/>
      <properties name="preCondition" type="Reference" description="Specifies the precondition of the transition. It specifies the condition that should be verified before triggering the transition. This guard condition added to the source state will be evaluated as part of the precondition of the operation referred by the transition if any."/>
    </elements>
    <elements name="AssociationClass" supertypes="//@dataContexts.0/@elements.45 //@dataContexts.0/@elements.15"/>
    <elements name="EModelElement">
      <properties name="eAnnotations" type="Reference"/>
    </elements>
    <elements name="LiteralReal" supertypes="//@dataContexts.0/@elements.95">
      <properties name="value" label="" description="The specified Real value."/>
    </elements>
    <elements name="DestructionOccurrenceSpecification" supertypes="//@dataContexts.0/@elements.149"/>
    <modelElementFactory href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@modelElementFactories.1"/>
  </dataContexts>
  <dataContexts name="MemberEnd" label="Multiplicity">
    <properties name="owner" label="Owner" type="Enumeration"/>
    <properties name="navigable" label="Navigable" type="Boolean"/>
    <modelElementFactory href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@modelElementFactories.0"/>
  </dataContexts>
  <dataContexts name="Multiplicity" label="Multiplicity">
    <properties name="multiplicity" label="Multiplicity"/>
    <modelElementFactory href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@modelElementFactories.0"/>
  </dataContexts>
  <dataContexts name="StereotypeApplication" label="Stereotype application">
    <properties name="stereotypeApplication" label="Stereotype application" type="Reference" multiplicity="-1"/>
    <properties name="profileApplication" label="Profile application" type="Reference" multiplicity="-1"/>
    <modelElementFactory href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@modelElementFactories.3"/>
  </dataContexts>
  <dataContexts name="CustomImage" label="Custom Image">
    <elements name="Image">
      <properties name="kind" type="Enumeration" description="The kind of image to be used. If icon is set, the image will be displayed on the stereotyped element. If shape is used, the image will be used as the graphical element. "/>
      <properties name="expression" description="A boolean expression to determine under which condition this image should be displayed."/>
      <properties name="name" label="" description="The image's name. This is a virtual property, used only for label display."/>
    </elements>
    <modelElementFactory href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@modelElementFactories.5"/>
  </dataContexts>
  <dataContexts name="AppliedComments" label="AppliedComments">
    <properties name="appliedComments" label="" type="Reference" multiplicity="-1" description="The list of comments applied to this element"/>
    <modelElementFactory href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@modelElementFactories.7"/>
  </dataContexts>
  <dataContexts name="Profile" label="ProfileDefinition">
    <elements name="Profile">
      <properties name="definitions" type="Reference" multiplicity="-1" description="The list of definitions of this profile"/>
    </elements>
    <modelElementFactory href="ppe:/environment/org.eclipse.papyrus.uml.properties/Model/Environment.xmi#//@modelElementFactories.8"/>
  </dataContexts>
  <dataContexts name="ProfileDefinitionAnnotation">
    <elements name="PapyrusVersion">
      <properties name="Version"/>
      <properties name="Author"/>
      <properties name="Copyright"/>
      <properties name="Date"/>
      <properties name="Comment"/>
    </elements>
    <modelElementFactory href="ppe:/environment/org.eclipse.papyrus.infra.properties.ui/model/Environment.xmi#//@modelElementFactories.1"/>
  </dataContexts>
</contexts:Context>

Back to the top