Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 86535e3fe316240c10de7b6e2841a626744e5e38 (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
<?xml version="1.0" encoding="ASCII"?>
<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="layers">
  <tabs label="layers" id="layers" priority="100">
    <sections name="Single LayerNamedStyle" sectionFile="ui/SingleLayerNamedStyle.xwt">
      <widget href="ui/SingleLayerNamedStyle.xwt#/"/>
    </sections>
    <sections name="Single LayersStack" sectionFile="ui/SingleLayersStack.xwt">
      <widget href="ui/SingleLayersStack.xwt#/"/>
    </sections>
    <sections name="Single LayerExpression" sectionFile="ui/SingleLayerExpression.xwt">
      <widget href="ui/SingleLayerExpression.xwt#/"/>
    </sections>
    <sections name="Single ApplicationDependantElement" sectionFile="ui/SingleApplicationDependantElement.xwt">
      <widget href="ui/SingleApplicationDependantElement.xwt#/"/>
    </sections>
    <sections name="Single LayersStackApplication" sectionFile="ui/SingleLayersStackApplication.xwt">
      <widget href="ui/SingleLayersStackApplication.xwt#/"/>
    </sections>
    <sections name="Single FolderElement" sectionFile="ui/SingleFolderElement.xwt">
      <widget href="ui/SingleFolderElement.xwt#/"/>
    </sections>
    <sections name="Single LayerStackDescriptorRegistry" sectionFile="ui/SingleLayerStackDescriptorRegistry.xwt">
      <widget href="ui/SingleLayerStackDescriptorRegistry.xwt#/"/>
    </sections>
    <sections name="Single PropertyRegistry" sectionFile="ui/SinglePropertyRegistry.xwt">
      <widget href="ui/SinglePropertyRegistry.xwt#/"/>
    </sections>
    <sections name="Single Property" sectionFile="ui/SingleProperty.xwt">
      <widget href="ui/SingleProperty.xwt#/"/>
    </sections>
    <sections name="Single Type" sectionFile="ui/SingleType.xwt">
      <widget href="ui/SingleType.xwt#/"/>
    </sections>
    <sections name="Single Metamodel" sectionFile="ui/SingleMetamodel.xwt">
      <widget href="ui/SingleMetamodel.xwt#/"/>
    </sections>
    <sections name="Single TypeInstance" sectionFile="ui/SingleTypeInstance.xwt">
      <widget href="ui/SingleTypeInstance.xwt#/"/>
    </sections>
    <sections name="Single ComputePropertyValueCommandItf" sectionFile="ui/SingleComputePropertyValueCommandItf.xwt">
      <widget href="ui/SingleComputePropertyValueCommandItf.xwt#/"/>
    </sections>
    <sections name="Single TypeRegistry" sectionFile="ui/SingleTypeRegistry.xwt">
      <widget href="ui/SingleTypeRegistry.xwt#/"/>
    </sections>
    <sections name="Single StringToTypeMap" sectionFile="ui/SingleStringToTypeMap.xwt">
      <widget href="ui/SingleStringToTypeMap.xwt#/"/>
    </sections>
    <sections name="Single LayerDescriptorRegistry" sectionFile="ui/SingleLayerDescriptorRegistry.xwt">
      <widget href="ui/SingleLayerDescriptorRegistry.xwt#/"/>
    </sections>
    <sections name="Single LayerDescriptor" sectionFile="ui/SingleLayerDescriptor.xwt">
      <widget href="ui/SingleLayerDescriptor.xwt#/"/>
    </sections>
    <sections name="Single LayerApplicationFactory" sectionFile="ui/SingleLayerApplicationFactory.xwt">
      <widget href="ui/SingleLayerApplicationFactory.xwt#/"/>
    </sections>
    <sections name="Single PropertySetterRegistry" sectionFile="ui/SinglePropertySetterRegistry.xwt">
      <widget href="ui/SinglePropertySetterRegistry.xwt#/"/>
    </sections>
    <sections name="Single PropertySetter" sectionFile="ui/SinglePropertySetter.xwt">
      <widget href="ui/SinglePropertySetter.xwt#/"/>
    </sections>
    <sections name="Single StringToPropertySetter" sectionFile="ui/SingleStringToPropertySetter.xwt">
      <widget href="ui/SingleStringToPropertySetter.xwt#/"/>
    </sections>
    <sections name="Single LayerOperatorDescriptorRegistry" sectionFile="ui/SingleLayerOperatorDescriptorRegistry.xwt">
      <widget href="ui/SingleLayerOperatorDescriptorRegistry.xwt#/"/>
    </sections>
    <sections name="Single LayerOperatorDescriptor" sectionFile="ui/SingleLayerOperatorDescriptor.xwt">
      <widget href="ui/SingleLayerOperatorDescriptor.xwt#/"/>
    </sections>
    <sections name="Single PropertyOperator" sectionFile="ui/SinglePropertyOperator.xwt">
      <widget href="ui/SinglePropertyOperator.xwt#/"/>
    </sections>
    <sections name="Single AbstractLayerOperator" sectionFile="ui/SingleAbstractLayerOperator.xwt">
      <widget href="ui/SingleAbstractLayerOperator.xwt#/"/>
    </sections>
    <sections name="Single LayerOperator" sectionFile="ui/SingleLayerOperator.xwt">
      <widget href="ui/SingleLayerOperator.xwt#/"/>
    </sections>
    <sections name="Single DefaultPropertyOperator" sectionFile="ui/SingleDefaultPropertyOperator.xwt">
      <widget href="ui/SingleDefaultPropertyOperator.xwt#/"/>
    </sections>
    <sections name="Single AbstractLayer" sectionFile="ui/SingleAbstractLayer.xwt">
      <widget href="ui/SingleAbstractLayer.xwt#/"/>
    </sections>
    <sections name="Single StringToTypeInstanceMap" sectionFile="ui/SingleStringToTypeInstanceMap.xwt">
      <widget href="ui/SingleStringToTypeInstanceMap.xwt#/"/>
    </sections>
    <sections name="Single Folder" sectionFile="ui/SingleFolder.xwt">
      <widget href="ui/SingleFolder.xwt#/"/>
    </sections>
    <sections name="Single IntInstance" sectionFile="ui/SingleIntInstance.xwt">
      <widget href="ui/SingleIntInstance.xwt#/"/>
    </sections>
    <sections name="Single BooleanInstance" sectionFile="ui/SingleBooleanInstance.xwt">
      <widget href="ui/SingleBooleanInstance.xwt#/"/>
    </sections>
    <sections name="Single StringInstance" sectionFile="ui/SingleStringInstance.xwt">
      <widget href="ui/SingleStringInstance.xwt#/"/>
    </sections>
    <sections name="Single IntType" sectionFile="ui/SingleIntType.xwt">
      <widget href="ui/SingleIntType.xwt#/"/>
    </sections>
    <sections name="Single BooleanType" sectionFile="ui/SingleBooleanType.xwt">
      <widget href="ui/SingleBooleanType.xwt#/"/>
    </sections>
    <sections name="Single StringType" sectionFile="ui/SingleStringType.xwt">
      <widget href="ui/SingleStringType.xwt#/"/>
    </sections>
    <sections name="Single CustomType" sectionFile="ui/SingleCustomType.xwt">
      <widget href="ui/SingleCustomType.xwt#/"/>
    </sections>
    <sections name="Single TopLayerOperator" sectionFile="ui/SingleTopLayerOperator.xwt">
      <widget href="ui/SingleTopLayerOperator.xwt#/"/>
    </sections>
    <sections name="Single StackedLayerOperator" sectionFile="ui/SingleStackedLayerOperator.xwt">
      <widget href="ui/SingleStackedLayerOperator.xwt#/"/>
    </sections>
    <sections name="Single CustomLayerOperator" sectionFile="ui/SingleCustomLayerOperator.xwt">
      <widget href="ui/SingleCustomLayerOperator.xwt#/"/>
    </sections>
    <sections name="Single PropertyIndex" sectionFile="ui/SinglePropertyIndex.xwt">
      <widget href="ui/SinglePropertyIndex.xwt#/"/>
    </sections>
    <sections name="Single StringToPropertyIndexMap" sectionFile="ui/SingleStringToPropertyIndexMap.xwt">
      <widget href="ui/SingleStringToPropertyIndexMap.xwt#/"/>
    </sections>
    <sections name="Single SimpleLayerDescriptor" sectionFile="ui/SingleSimpleLayerDescriptor.xwt">
      <widget href="ui/SingleSimpleLayerDescriptor.xwt#/"/>
    </sections>
    <sections name="Single RegExpLayerDescriptor" sectionFile="ui/SingleRegExpLayerDescriptor.xwt">
      <widget href="ui/SingleRegExpLayerDescriptor.xwt#/"/>
    </sections>
    <sections name="Single NullInstance" sectionFile="ui/SingleNullInstance.xwt">
      <widget href="ui/SingleNullInstance.xwt#/"/>
    </sections>
    <sections name="Single RegExpLayer" sectionFile="ui/SingleRegExpLayer.xwt">
      <widget href="ui/SingleRegExpLayer.xwt#/"/>
    </sections>
    <sections name="Single Layer" sectionFile="ui/SingleLayer.xwt">
      <widget href="ui/SingleLayer.xwt#/"/>
    </sections>
    <sections name="Single Color" sectionFile="ui/SingleColor.xwt">
      <widget href="ui/SingleColor.xwt#/"/>
    </sections>
    <sections name="Single ColorInstance" sectionFile="ui/SingleColorInstance.xwt">
      <widget href="ui/SingleColorInstance.xwt#/"/>
    </sections>
    <sections name="Single FillInstance" sectionFile="ui/SingleFillInstance.xwt">
      <widget href="ui/SingleFillInstance.xwt#/"/>
    </sections>
    <sections name="Single Fill" sectionFile="ui/SingleFill.xwt">
      <widget href="ui/SingleFill.xwt#/"/>
    </sections>
    <sections name="Single FillPropertySetter" sectionFile="ui/SingleFillPropertySetter.xwt">
      <widget href="ui/SingleFillPropertySetter.xwt#/"/>
    </sections>
    <sections name="Single IsValidPropertySetter" sectionFile="ui/SingleIsValidPropertySetter.xwt">
      <widget href="ui/SingleIsValidPropertySetter.xwt#/"/>
    </sections>
    <sections name="Single NullPropertySetter" sectionFile="ui/SingleNullPropertySetter.xwt">
      <widget href="ui/SingleNullPropertySetter.xwt#/"/>
    </sections>
    <sections name="Single LineType" sectionFile="ui/SingleLineType.xwt">
      <widget href="ui/SingleLineType.xwt#/"/>
    </sections>
    <sections name="Single LineInstance" sectionFile="ui/SingleLineInstance.xwt">
      <widget href="ui/SingleLineInstance.xwt#/"/>
    </sections>
    <sections name="Single LinePropertySetter" sectionFile="ui/SingleLinePropertySetter.xwt">
      <widget href="ui/SingleLinePropertySetter.xwt#/"/>
    </sections>
    <sections name="Single FontPropertySetter" sectionFile="ui/SingleFontPropertySetter.xwt">
      <widget href="ui/SingleFontPropertySetter.xwt#/"/>
    </sections>
    <sections name="Single FontInstance" sectionFile="ui/SingleFontInstance.xwt">
      <widget href="ui/SingleFontInstance.xwt#/"/>
    </sections>
    <sections name="Single FontType" sectionFile="ui/SingleFontType.xwt">
      <widget href="ui/SingleFontType.xwt#/"/>
    </sections>
    <sections name="Single IsVisiblePropertySetter" sectionFile="ui/SingleIsVisiblePropertySetter.xwt">
      <widget href="ui/SingleIsVisiblePropertySetter.xwt#/"/>
    </sections>
    <sections name="Single TopLayerOperatorDescriptor" sectionFile="ui/SingleTopLayerOperatorDescriptor.xwt">
      <widget href="ui/SingleTopLayerOperatorDescriptor.xwt#/"/>
    </sections>
    <sections name="Single StackedLayerOperatorDescriptor" sectionFile="ui/SingleStackedLayerOperatorDescriptor.xwt">
      <widget href="ui/SingleStackedLayerOperatorDescriptor.xwt#/"/>
    </sections>
    <sections name="Single CustomPropertyOperator" sectionFile="ui/SingleCustomPropertyOperator.xwt">
      <widget href="ui/SingleCustomPropertyOperator.xwt#/"/>
    </sections>
    <sections name="Single AndStackedLayerOperatorDescriptor" sectionFile="ui/SingleAndStackedLayerOperatorDescriptor.xwt">
      <widget href="ui/SingleAndStackedLayerOperatorDescriptor.xwt#/"/>
    </sections>
    <sections name="Single OrStackedLayerOperatorDescriptor" sectionFile="ui/SingleOrStackedLayerOperatorDescriptor.xwt">
      <widget href="ui/SingleOrStackedLayerOperatorDescriptor.xwt#/"/>
    </sections>
    <sections name="Single IsAbstractUmlSetter" sectionFile="ui/SingleIsAbstractUmlSetter.xwt">
      <widget href="ui/SingleIsAbstractUmlSetter.xwt#/"/>
    </sections>
    <sections name="Multiple LayerNamedStyle" sectionFile="ui/MultipleLayerNamedStyle.xwt">
      <widget href="ui/MultipleLayerNamedStyle.xwt#/"/>
    </sections>
    <sections name="Multiple LayersStack" sectionFile="ui/MultipleLayersStack.xwt">
      <widget href="ui/MultipleLayersStack.xwt#/"/>
    </sections>
    <sections name="Multiple LayerExpression" sectionFile="ui/MultipleLayerExpression.xwt">
      <widget href="ui/MultipleLayerExpression.xwt#/"/>
    </sections>
    <sections name="Multiple ApplicationDependantElement" sectionFile="ui/MultipleApplicationDependantElement.xwt">
      <widget href="ui/MultipleApplicationDependantElement.xwt#/"/>
    </sections>
    <sections name="Multiple LayersStackApplication" sectionFile="ui/MultipleLayersStackApplication.xwt">
      <widget href="ui/MultipleLayersStackApplication.xwt#/"/>
    </sections>
    <sections name="Multiple FolderElement" sectionFile="ui/MultipleFolderElement.xwt">
      <widget href="ui/MultipleFolderElement.xwt#/"/>
    </sections>
    <sections name="Multiple LayerStackDescriptorRegistry" sectionFile="ui/MultipleLayerStackDescriptorRegistry.xwt">
      <widget href="ui/MultipleLayerStackDescriptorRegistry.xwt#/"/>
    </sections>
    <sections name="Multiple PropertyRegistry" sectionFile="ui/MultiplePropertyRegistry.xwt">
      <widget href="ui/MultiplePropertyRegistry.xwt#/"/>
    </sections>
    <sections name="Multiple Property" sectionFile="ui/MultipleProperty.xwt">
      <widget href="ui/MultipleProperty.xwt#/"/>
    </sections>
    <sections name="Multiple Type" sectionFile="ui/MultipleType.xwt">
      <widget href="ui/MultipleType.xwt#/"/>
    </sections>
    <sections name="Multiple Metamodel" sectionFile="ui/MultipleMetamodel.xwt">
      <widget href="ui/MultipleMetamodel.xwt#/"/>
    </sections>
    <sections name="Multiple TypeInstance" sectionFile="ui/MultipleTypeInstance.xwt">
      <widget href="ui/MultipleTypeInstance.xwt#/"/>
    </sections>
    <sections name="Multiple ComputePropertyValueCommandItf" sectionFile="ui/MultipleComputePropertyValueCommandItf.xwt">
      <widget href="ui/MultipleComputePropertyValueCommandItf.xwt#/"/>
    </sections>
    <sections name="Multiple TypeRegistry" sectionFile="ui/MultipleTypeRegistry.xwt">
      <widget href="ui/MultipleTypeRegistry.xwt#/"/>
    </sections>
    <sections name="Multiple StringToTypeMap" sectionFile="ui/MultipleStringToTypeMap.xwt">
      <widget href="ui/MultipleStringToTypeMap.xwt#/"/>
    </sections>
    <sections name="Multiple LayerDescriptorRegistry" sectionFile="ui/MultipleLayerDescriptorRegistry.xwt">
      <widget href="ui/MultipleLayerDescriptorRegistry.xwt#/"/>
    </sections>
    <sections name="Multiple LayerDescriptor" sectionFile="ui/MultipleLayerDescriptor.xwt">
      <widget href="ui/MultipleLayerDescriptor.xwt#/"/>
    </sections>
    <sections name="Multiple LayerApplicationFactory" sectionFile="ui/MultipleLayerApplicationFactory.xwt">
      <widget href="ui/MultipleLayerApplicationFactory.xwt#/"/>
    </sections>
    <sections name="Multiple PropertySetterRegistry" sectionFile="ui/MultiplePropertySetterRegistry.xwt">
      <widget href="ui/MultiplePropertySetterRegistry.xwt#/"/>
    </sections>
    <sections name="Multiple PropertySetter" sectionFile="ui/MultiplePropertySetter.xwt">
      <widget href="ui/MultiplePropertySetter.xwt#/"/>
    </sections>
    <sections name="Multiple StringToPropertySetter" sectionFile="ui/MultipleStringToPropertySetter.xwt">
      <widget href="ui/MultipleStringToPropertySetter.xwt#/"/>
    </sections>
    <sections name="Multiple LayerOperatorDescriptorRegistry" sectionFile="ui/MultipleLayerOperatorDescriptorRegistry.xwt">
      <widget href="ui/MultipleLayerOperatorDescriptorRegistry.xwt#/"/>
    </sections>
    <sections name="Multiple LayerOperatorDescriptor" sectionFile="ui/MultipleLayerOperatorDescriptor.xwt">
      <widget href="ui/MultipleLayerOperatorDescriptor.xwt#/"/>
    </sections>
    <sections name="Multiple PropertyOperator" sectionFile="ui/MultiplePropertyOperator.xwt">
      <widget href="ui/MultiplePropertyOperator.xwt#/"/>
    </sections>
    <sections name="Multiple AbstractLayerOperator" sectionFile="ui/MultipleAbstractLayerOperator.xwt">
      <widget href="ui/MultipleAbstractLayerOperator.xwt#/"/>
    </sections>
    <sections name="Multiple LayerOperator" sectionFile="ui/MultipleLayerOperator.xwt">
      <widget href="ui/MultipleLayerOperator.xwt#/"/>
    </sections>
    <sections name="Multiple DefaultPropertyOperator" sectionFile="ui/MultipleDefaultPropertyOperator.xwt">
      <widget href="ui/MultipleDefaultPropertyOperator.xwt#/"/>
    </sections>
    <sections name="Multiple AbstractLayer" sectionFile="ui/MultipleAbstractLayer.xwt">
      <widget href="ui/MultipleAbstractLayer.xwt#/"/>
    </sections>
    <sections name="Multiple StringToTypeInstanceMap" sectionFile="ui/MultipleStringToTypeInstanceMap.xwt">
      <widget href="ui/MultipleStringToTypeInstanceMap.xwt#/"/>
    </sections>
    <sections name="Multiple Folder" sectionFile="ui/MultipleFolder.xwt">
      <widget href="ui/MultipleFolder.xwt#/"/>
    </sections>
    <sections name="Multiple IntInstance" sectionFile="ui/MultipleIntInstance.xwt">
      <widget href="ui/MultipleIntInstance.xwt#/"/>
    </sections>
    <sections name="Multiple BooleanInstance" sectionFile="ui/MultipleBooleanInstance.xwt">
      <widget href="ui/MultipleBooleanInstance.xwt#/"/>
    </sections>
    <sections name="Multiple StringInstance" sectionFile="ui/MultipleStringInstance.xwt">
      <widget href="ui/MultipleStringInstance.xwt#/"/>
    </sections>
    <sections name="Multiple IntType" sectionFile="ui/MultipleIntType.xwt">
      <widget href="ui/MultipleIntType.xwt#/"/>
    </sections>
    <sections name="Multiple BooleanType" sectionFile="ui/MultipleBooleanType.xwt">
      <widget href="ui/MultipleBooleanType.xwt#/"/>
    </sections>
    <sections name="Multiple StringType" sectionFile="ui/MultipleStringType.xwt">
      <widget href="ui/MultipleStringType.xwt#/"/>
    </sections>
    <sections name="Multiple CustomType" sectionFile="ui/MultipleCustomType.xwt">
      <widget href="ui/MultipleCustomType.xwt#/"/>
    </sections>
    <sections name="Multiple TopLayerOperator" sectionFile="ui/MultipleTopLayerOperator.xwt">
      <widget href="ui/MultipleTopLayerOperator.xwt#/"/>
    </sections>
    <sections name="Multiple StackedLayerOperator" sectionFile="ui/MultipleStackedLayerOperator.xwt">
      <widget href="ui/MultipleStackedLayerOperator.xwt#/"/>
    </sections>
    <sections name="Multiple CustomLayerOperator" sectionFile="ui/MultipleCustomLayerOperator.xwt">
      <widget href="ui/MultipleCustomLayerOperator.xwt#/"/>
    </sections>
    <sections name="Multiple PropertyIndex" sectionFile="ui/MultiplePropertyIndex.xwt">
      <widget href="ui/MultiplePropertyIndex.xwt#/"/>
    </sections>
    <sections name="Multiple StringToPropertyIndexMap" sectionFile="ui/MultipleStringToPropertyIndexMap.xwt">
      <widget href="ui/MultipleStringToPropertyIndexMap.xwt#/"/>
    </sections>
    <sections name="Multiple SimpleLayerDescriptor" sectionFile="ui/MultipleSimpleLayerDescriptor.xwt">
      <widget href="ui/MultipleSimpleLayerDescriptor.xwt#/"/>
    </sections>
    <sections name="Multiple RegExpLayerDescriptor" sectionFile="ui/MultipleRegExpLayerDescriptor.xwt">
      <widget href="ui/MultipleRegExpLayerDescriptor.xwt#/"/>
    </sections>
    <sections name="Multiple NullInstance" sectionFile="ui/MultipleNullInstance.xwt">
      <widget href="ui/MultipleNullInstance.xwt#/"/>
    </sections>
    <sections name="Multiple RegExpLayer" sectionFile="ui/MultipleRegExpLayer.xwt">
      <widget href="ui/MultipleRegExpLayer.xwt#/"/>
    </sections>
    <sections name="Multiple Layer" sectionFile="ui/MultipleLayer.xwt">
      <widget href="ui/MultipleLayer.xwt#/"/>
    </sections>
    <sections name="Multiple Color" sectionFile="ui/MultipleColor.xwt">
      <widget href="ui/MultipleColor.xwt#/"/>
    </sections>
    <sections name="Multiple ColorInstance" sectionFile="ui/MultipleColorInstance.xwt">
      <widget href="ui/MultipleColorInstance.xwt#/"/>
    </sections>
    <sections name="Multiple FillInstance" sectionFile="ui/MultipleFillInstance.xwt">
      <widget href="ui/MultipleFillInstance.xwt#/"/>
    </sections>
    <sections name="Multiple Fill" sectionFile="ui/MultipleFill.xwt">
      <widget href="ui/MultipleFill.xwt#/"/>
    </sections>
    <sections name="Multiple FillPropertySetter" sectionFile="ui/MultipleFillPropertySetter.xwt">
      <widget href="ui/MultipleFillPropertySetter.xwt#/"/>
    </sections>
    <sections name="Multiple IsValidPropertySetter" sectionFile="ui/MultipleIsValidPropertySetter.xwt">
      <widget href="ui/MultipleIsValidPropertySetter.xwt#/"/>
    </sections>
    <sections name="Multiple NullPropertySetter" sectionFile="ui/MultipleNullPropertySetter.xwt">
      <widget href="ui/MultipleNullPropertySetter.xwt#/"/>
    </sections>
    <sections name="Multiple LineType" sectionFile="ui/MultipleLineType.xwt">
      <widget href="ui/MultipleLineType.xwt#/"/>
    </sections>
    <sections name="Multiple LineInstance" sectionFile="ui/MultipleLineInstance.xwt">
      <widget href="ui/MultipleLineInstance.xwt#/"/>
    </sections>
    <sections name="Multiple LinePropertySetter" sectionFile="ui/MultipleLinePropertySetter.xwt">
      <widget href="ui/MultipleLinePropertySetter.xwt#/"/>
    </sections>
    <sections name="Multiple FontPropertySetter" sectionFile="ui/MultipleFontPropertySetter.xwt">
      <widget href="ui/MultipleFontPropertySetter.xwt#/"/>
    </sections>
    <sections name="Multiple FontInstance" sectionFile="ui/MultipleFontInstance.xwt">
      <widget href="ui/MultipleFontInstance.xwt#/"/>
    </sections>
    <sections name="Multiple FontType" sectionFile="ui/MultipleFontType.xwt">
      <widget href="ui/MultipleFontType.xwt#/"/>
    </sections>
    <sections name="Multiple IsVisiblePropertySetter" sectionFile="ui/MultipleIsVisiblePropertySetter.xwt">
      <widget href="ui/MultipleIsVisiblePropertySetter.xwt#/"/>
    </sections>
    <sections name="Multiple TopLayerOperatorDescriptor" sectionFile="ui/MultipleTopLayerOperatorDescriptor.xwt">
      <widget href="ui/MultipleTopLayerOperatorDescriptor.xwt#/"/>
    </sections>
    <sections name="Multiple StackedLayerOperatorDescriptor" sectionFile="ui/MultipleStackedLayerOperatorDescriptor.xwt">
      <widget href="ui/MultipleStackedLayerOperatorDescriptor.xwt#/"/>
    </sections>
    <sections name="Multiple CustomPropertyOperator" sectionFile="ui/MultipleCustomPropertyOperator.xwt">
      <widget href="ui/MultipleCustomPropertyOperator.xwt#/"/>
    </sections>
    <sections name="Multiple AndStackedLayerOperatorDescriptor" sectionFile="ui/MultipleAndStackedLayerOperatorDescriptor.xwt">
      <widget href="ui/MultipleAndStackedLayerOperatorDescriptor.xwt#/"/>
    </sections>
    <sections name="Multiple OrStackedLayerOperatorDescriptor" sectionFile="ui/MultipleOrStackedLayerOperatorDescriptor.xwt">
      <widget href="ui/MultipleOrStackedLayerOperatorDescriptor.xwt#/"/>
    </sections>
    <sections name="Multiple IsAbstractUmlSetter" sectionFile="ui/MultipleIsAbstractUmlSetter.xwt">
      <widget href="ui/MultipleIsAbstractUmlSetter.xwt#/"/>
    </sections>
  </tabs>
  <views name="Single LayersStack" sections="//@tabs.0/@sections.1" automaticContext="true" datacontexts="//@dataContexts.0/@elements.1">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleLayersStack">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayersStack"/>
    </constraints>
  </views>
  <views name="Single LayerExpression" sections="//@tabs.0/@sections.2" automaticContext="true" datacontexts="//@dataContexts.0/@elements.2">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleLayerExpression">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerExpression"/>
    </constraints>
  </views>
  <views name="Single LayersStackApplication" sections="//@tabs.0/@sections.4" automaticContext="true" datacontexts="//@dataContexts.0/@elements.4">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleLayersStackApplication">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayersStackApplication"/>
    </constraints>
  </views>
  <views name="Single FolderElement" sections="//@tabs.0/@sections.5" automaticContext="true" datacontexts="//@dataContexts.0/@elements.5">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleFolderElement">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="FolderElement"/>
    </constraints>
  </views>
  <views name="Single LayerStackDescriptorRegistry" sections="//@tabs.0/@sections.6" automaticContext="true" datacontexts="//@dataContexts.0/@elements.6">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleLayerStackDescriptorRegistry">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerStackDescriptorRegistry"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single PropertyRegistry" sections="//@tabs.0/@sections.7" automaticContext="true" datacontexts="//@dataContexts.0/@elements.7">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSinglePropertyRegistry">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="PropertyRegistry"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single Property" sections="//@tabs.0/@sections.8" automaticContext="true" datacontexts="//@dataContexts.0/@elements.8">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleProperty">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="Property"/>
    </constraints>
  </views>
  <views name="Single Type" sections="//@tabs.0/@sections.9" automaticContext="true" datacontexts="//@dataContexts.0/@elements.9">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="Type"/>
    </constraints>
  </views>
  <views name="Single Metamodel" sections="//@tabs.0/@sections.10" automaticContext="true" datacontexts="//@dataContexts.0/@elements.10">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleMetamodel">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="Metamodel"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single TypeInstance" sections="//@tabs.0/@sections.11" automaticContext="true" datacontexts="//@dataContexts.0/@elements.11">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleTypeInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="TypeInstance"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single TypeRegistry" sections="//@tabs.0/@sections.13" automaticContext="true" datacontexts="//@dataContexts.0/@elements.13">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleTypeRegistry">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="TypeRegistry"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single StringToTypeMap" sections="//@tabs.0/@sections.14" automaticContext="true" datacontexts="//@dataContexts.0/@elements.14">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleStringToTypeMap">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StringToTypeMap"/>
    </constraints>
  </views>
  <views name="Single LayerDescriptorRegistry" sections="//@tabs.0/@sections.15" automaticContext="true" datacontexts="//@dataContexts.0/@elements.15">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleLayerDescriptorRegistry">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerDescriptorRegistry"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single LayerDescriptor" sections="//@tabs.0/@sections.16" automaticContext="true" datacontexts="//@dataContexts.0/@elements.16">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleLayerDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerDescriptor"/>
    </constraints>
  </views>
  <views name="Single LayerApplicationFactory" sections="//@tabs.0/@sections.17" automaticContext="true" datacontexts="//@dataContexts.0/@elements.17">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleLayerApplicationFactory">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerApplicationFactory"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single PropertySetterRegistry" sections="//@tabs.0/@sections.18" automaticContext="true" datacontexts="//@dataContexts.0/@elements.18">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSinglePropertySetterRegistry">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="PropertySetterRegistry"/>
    </constraints>
  </views>
  <views name="Single PropertySetter" sections="//@tabs.0/@sections.19" automaticContext="true" datacontexts="//@dataContexts.0/@elements.19">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSinglePropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="PropertySetter"/>
    </constraints>
  </views>
  <views name="Single StringToPropertySetter" sections="//@tabs.0/@sections.20" automaticContext="true" datacontexts="//@dataContexts.0/@elements.20">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleStringToPropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StringToPropertySetter"/>
    </constraints>
  </views>
  <views name="Single LayerOperatorDescriptorRegistry" sections="//@tabs.0/@sections.21" automaticContext="true" datacontexts="//@dataContexts.0/@elements.21">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleLayerOperatorDescriptorRegistry">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerOperatorDescriptorRegistry"/>
    </constraints>
  </views>
  <views name="Single LayerOperatorDescriptor" sections="//@tabs.0/@sections.22" automaticContext="true" datacontexts="//@dataContexts.0/@elements.22">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleLayerOperatorDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerOperatorDescriptor"/>
    </constraints>
  </views>
  <views name="Single PropertyOperator" sections="//@tabs.0/@sections.23" automaticContext="true" datacontexts="//@dataContexts.0/@elements.23">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSinglePropertyOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="PropertyOperator"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single AbstractLayerOperator" sections="//@tabs.0/@sections.24" automaticContext="true" datacontexts="//@dataContexts.0/@elements.24">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleAbstractLayerOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="AbstractLayerOperator"/>
    </constraints>
  </views>
  <views name="Single LayerOperator" sections="//@tabs.0/@sections.25" automaticContext="true" datacontexts="//@dataContexts.0/@elements.25">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleLayerOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerOperator"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single DefaultPropertyOperator" sections="//@tabs.0/@sections.26" automaticContext="true" datacontexts="//@dataContexts.0/@elements.26">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleDefaultPropertyOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="DefaultPropertyOperator"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single AbstractLayer" sections="//@tabs.0/@sections.27" automaticContext="true" datacontexts="//@dataContexts.0/@elements.27">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleAbstractLayer">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="AbstractLayer"/>
    </constraints>
  </views>
  <views name="Single StringToTypeInstanceMap" sections="//@tabs.0/@sections.28" automaticContext="true" datacontexts="//@dataContexts.0/@elements.28">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleStringToTypeInstanceMap">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StringToTypeInstanceMap"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single Folder" sections="//@tabs.0/@sections.29" automaticContext="true" datacontexts="//@dataContexts.0/@elements.29">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleFolder">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="Folder"/>
    </constraints>
  </views>
  <views name="Single IntInstance" sections="//@tabs.0/@sections.30" automaticContext="true" datacontexts="//@dataContexts.0/@elements.30">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleIntInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="IntInstance"/>
    </constraints>
  </views>
  <views name="Single BooleanInstance" sections="//@tabs.0/@sections.31" automaticContext="true" datacontexts="//@dataContexts.0/@elements.31">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleBooleanInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="BooleanInstance"/>
    </constraints>
  </views>
  <views name="Single StringInstance" sections="//@tabs.0/@sections.32" automaticContext="true" datacontexts="//@dataContexts.0/@elements.32">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleStringInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StringInstance"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single IntType" sections="//@tabs.0/@sections.33" automaticContext="true" datacontexts="//@dataContexts.0/@elements.33">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleIntType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="IntType"/>
    </constraints>
  </views>
  <views name="Single BooleanType" sections="//@tabs.0/@sections.34" automaticContext="true" datacontexts="//@dataContexts.0/@elements.34">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleBooleanType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="BooleanType"/>
    </constraints>
  </views>
  <views name="Single StringType" sections="//@tabs.0/@sections.35" automaticContext="true" datacontexts="//@dataContexts.0/@elements.35">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleStringType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StringType"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single CustomType" sections="//@tabs.0/@sections.36" automaticContext="true" datacontexts="//@dataContexts.0/@elements.36">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleCustomType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="CustomType"/>
    </constraints>
  </views>
  <views name="Single TopLayerOperator" sections="//@tabs.0/@sections.37" automaticContext="true" datacontexts="//@dataContexts.0/@elements.37">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleTopLayerOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="TopLayerOperator"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single StackedLayerOperator" sections="//@tabs.0/@sections.38" automaticContext="true" datacontexts="//@dataContexts.0/@elements.38">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleStackedLayerOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StackedLayerOperator"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single CustomLayerOperator" sections="//@tabs.0/@sections.39" automaticContext="true" datacontexts="//@dataContexts.0/@elements.39">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleCustomLayerOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="CustomLayerOperator"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single PropertyIndex" sections="//@tabs.0/@sections.40" automaticContext="true" datacontexts="//@dataContexts.0/@elements.40">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSinglePropertyIndex">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="PropertyIndex"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single StringToPropertyIndexMap" sections="//@tabs.0/@sections.41" automaticContext="true" datacontexts="//@dataContexts.0/@elements.41">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleStringToPropertyIndexMap">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StringToPropertyIndexMap"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single SimpleLayerDescriptor" sections="//@tabs.0/@sections.42" automaticContext="true" datacontexts="//@dataContexts.0/@elements.42">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleSimpleLayerDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="SimpleLayerDescriptor"/>
    </constraints>
  </views>
  <views name="Single RegExpLayerDescriptor" sections="//@tabs.0/@sections.43" automaticContext="true" datacontexts="//@dataContexts.0/@elements.43">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleRegExpLayerDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="RegExpLayerDescriptor"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single NullInstance" sections="//@tabs.0/@sections.44" automaticContext="true" datacontexts="//@dataContexts.0/@elements.44">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleNullInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="NullInstance"/>
    </constraints>
  </views>
  <views name="Single RegExpLayer" sections="//@tabs.0/@sections.45" automaticContext="true" datacontexts="//@dataContexts.0/@elements.45">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleRegExpLayer">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="RegExpLayer"/>
    </constraints>
  </views>
  <views name="Single Layer" sections="//@tabs.0/@sections.46" automaticContext="true" datacontexts="//@dataContexts.0/@elements.46">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleLayer">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="Layer"/>
    </constraints>
  </views>
  <views name="Single Color" sections="//@tabs.0/@sections.47" automaticContext="true" datacontexts="//@dataContexts.0/@elements.47">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleColor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="Color"/>
    </constraints>
  </views>
  <views name="Single ColorInstance" sections="//@tabs.0/@sections.48" automaticContext="true" datacontexts="//@dataContexts.0/@elements.48">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleColorInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="ColorInstance"/>
    </constraints>
  </views>
  <views name="Single FillInstance" sections="//@tabs.0/@sections.49" automaticContext="true" datacontexts="//@dataContexts.0/@elements.49">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleFillInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="FillInstance"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single Fill" sections="//@tabs.0/@sections.50" automaticContext="true" datacontexts="//@dataContexts.0/@elements.50">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleFill">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="Fill"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single FillPropertySetter" sections="//@tabs.0/@sections.51" automaticContext="true" datacontexts="//@dataContexts.0/@elements.51">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleFillPropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="FillPropertySetter"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single IsValidPropertySetter" sections="//@tabs.0/@sections.52" automaticContext="true" datacontexts="//@dataContexts.0/@elements.52">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleIsValidPropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="IsValidPropertySetter"/>
    </constraints>
  </views>
  <views name="Single NullPropertySetter" sections="//@tabs.0/@sections.53" automaticContext="true" datacontexts="//@dataContexts.0/@elements.53">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleNullPropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="NullPropertySetter"/>
    </constraints>
  </views>
  <views name="Single LineType" sections="//@tabs.0/@sections.54" automaticContext="true" datacontexts="//@dataContexts.0/@elements.54">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleLineType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LineType"/>
    </constraints>
  </views>
  <views name="Single LineInstance" sections="//@tabs.0/@sections.55" automaticContext="true" datacontexts="//@dataContexts.0/@elements.55">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleLineInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LineInstance"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single LinePropertySetter" sections="//@tabs.0/@sections.56" automaticContext="true" datacontexts="//@dataContexts.0/@elements.56">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleLinePropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LinePropertySetter"/>
    </constraints>
  </views>
  <views name="Single FontPropertySetter" sections="//@tabs.0/@sections.57" automaticContext="true" datacontexts="//@dataContexts.0/@elements.57">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleFontPropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="FontPropertySetter"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single FontInstance" sections="//@tabs.0/@sections.58" automaticContext="true" datacontexts="//@dataContexts.0/@elements.58">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleFontInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="FontInstance"/>
    </constraints>
  </views>
  <views name="Single FontType" sections="//@tabs.0/@sections.59" automaticContext="true" datacontexts="//@dataContexts.0/@elements.59">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleFontType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="FontType"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single IsVisiblePropertySetter" sections="//@tabs.0/@sections.60" automaticContext="true" datacontexts="//@dataContexts.0/@elements.60">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleIsVisiblePropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="IsVisiblePropertySetter"/>
    </constraints>
  </views>
  <views name="Single TopLayerOperatorDescriptor" sections="//@tabs.0/@sections.61" automaticContext="true" datacontexts="//@dataContexts.0/@elements.61">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleTopLayerOperatorDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="TopLayerOperatorDescriptor"/>
    </constraints>
  </views>
  <views name="Single StackedLayerOperatorDescriptor" sections="//@tabs.0/@sections.62" automaticContext="true" datacontexts="//@dataContexts.0/@elements.62">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleStackedLayerOperatorDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StackedLayerOperatorDescriptor"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single CustomPropertyOperator" sections="//@tabs.0/@sections.63" automaticContext="true" datacontexts="//@dataContexts.0/@elements.63">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleCustomPropertyOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="CustomPropertyOperator"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single AndStackedLayerOperatorDescriptor" sections="//@tabs.0/@sections.64" automaticContext="true" datacontexts="//@dataContexts.0/@elements.64">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleAndStackedLayerOperatorDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="AndStackedLayerOperatorDescriptor"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views name="Single OrStackedLayerOperatorDescriptor" sections="//@tabs.0/@sections.65" automaticContext="true" datacontexts="//@dataContexts.0/@elements.65">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleOrStackedLayerOperatorDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="OrStackedLayerOperatorDescriptor"/>
    </constraints>
  </views>
  <views name="Single IsAbstractUmlSetter" sections="//@tabs.0/@sections.66" automaticContext="true" datacontexts="//@dataContexts.0/@elements.66">
    <constraints xsi:type="constraints:SimpleConstraint" name="isSingleIsAbstractUmlSetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="IsAbstractUmlSetter"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple LayersStack" sections="//@tabs.0/@sections.68" automaticContext="true" datacontexts="//@dataContexts.0/@elements.1">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLayersStack">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayersStack"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple LayerExpression" sections="//@tabs.0/@sections.69" automaticContext="true" datacontexts="//@dataContexts.0/@elements.2">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLayerExpression">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerExpression"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple ApplicationDependantElement" sections="//@tabs.0/@sections.70" automaticContext="true" datacontexts="//@dataContexts.0/@elements.3">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleApplicationDependantElement">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="ApplicationDependantElement"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple LayersStackApplication" sections="//@tabs.0/@sections.71" automaticContext="true" datacontexts="//@dataContexts.0/@elements.4">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLayersStackApplication">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayersStackApplication"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple FolderElement" sections="//@tabs.0/@sections.72" automaticContext="true" datacontexts="//@dataContexts.0/@elements.5">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleFolderElement">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="FolderElement"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple LayerStackDescriptorRegistry" sections="//@tabs.0/@sections.73" automaticContext="true" datacontexts="//@dataContexts.0/@elements.6">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLayerStackDescriptorRegistry">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerStackDescriptorRegistry"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple PropertyRegistry" sections="//@tabs.0/@sections.74" automaticContext="true" datacontexts="//@dataContexts.0/@elements.7">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultiplePropertyRegistry">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="PropertyRegistry"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple Property" sections="//@tabs.0/@sections.75" automaticContext="true" datacontexts="//@dataContexts.0/@elements.8">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleProperty">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="Property"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple Type" sections="//@tabs.0/@sections.76" automaticContext="true" datacontexts="//@dataContexts.0/@elements.9">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="Type"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple Metamodel" sections="//@tabs.0/@sections.77" automaticContext="true" datacontexts="//@dataContexts.0/@elements.10">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleMetamodel">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="Metamodel"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple TypeInstance" sections="//@tabs.0/@sections.78" automaticContext="true" datacontexts="//@dataContexts.0/@elements.11">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleTypeInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="TypeInstance"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple ComputePropertyValueCommandItf" sections="//@tabs.0/@sections.79" automaticContext="true" datacontexts="//@dataContexts.0/@elements.12">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleComputePropertyValueCommandItf">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="ComputePropertyValueCommandItf"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple TypeRegistry" sections="//@tabs.0/@sections.80" automaticContext="true" datacontexts="//@dataContexts.0/@elements.13">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleTypeRegistry">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="TypeRegistry"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple StringToTypeMap" sections="//@tabs.0/@sections.81" automaticContext="true" datacontexts="//@dataContexts.0/@elements.14">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleStringToTypeMap">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StringToTypeMap"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple LayerDescriptorRegistry" sections="//@tabs.0/@sections.82" automaticContext="true" datacontexts="//@dataContexts.0/@elements.15">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLayerDescriptorRegistry">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerDescriptorRegistry"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple LayerDescriptor" sections="//@tabs.0/@sections.83" automaticContext="true" datacontexts="//@dataContexts.0/@elements.16">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLayerDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerDescriptor"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple LayerApplicationFactory" sections="//@tabs.0/@sections.84" automaticContext="true" datacontexts="//@dataContexts.0/@elements.17">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLayerApplicationFactory">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerApplicationFactory"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple PropertySetterRegistry" sections="//@tabs.0/@sections.85" automaticContext="true" datacontexts="//@dataContexts.0/@elements.18">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultiplePropertySetterRegistry">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="PropertySetterRegistry"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple PropertySetter" sections="//@tabs.0/@sections.86" automaticContext="true" datacontexts="//@dataContexts.0/@elements.19">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultiplePropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="PropertySetter"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple StringToPropertySetter" sections="//@tabs.0/@sections.87" automaticContext="true" datacontexts="//@dataContexts.0/@elements.20">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleStringToPropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StringToPropertySetter"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple LayerOperatorDescriptorRegistry" sections="//@tabs.0/@sections.88" automaticContext="true" datacontexts="//@dataContexts.0/@elements.21">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLayerOperatorDescriptorRegistry">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerOperatorDescriptorRegistry"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple LayerOperatorDescriptor" sections="//@tabs.0/@sections.89" automaticContext="true" datacontexts="//@dataContexts.0/@elements.22">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLayerOperatorDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerOperatorDescriptor"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple PropertyOperator" sections="//@tabs.0/@sections.90" automaticContext="true" datacontexts="//@dataContexts.0/@elements.23">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultiplePropertyOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="PropertyOperator"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple AbstractLayerOperator" sections="//@tabs.0/@sections.91" automaticContext="true" datacontexts="//@dataContexts.0/@elements.24">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleAbstractLayerOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="AbstractLayerOperator"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple LayerOperator" sections="//@tabs.0/@sections.92" automaticContext="true" datacontexts="//@dataContexts.0/@elements.25">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLayerOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LayerOperator"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple DefaultPropertyOperator" sections="//@tabs.0/@sections.93" automaticContext="true" datacontexts="//@dataContexts.0/@elements.26">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleDefaultPropertyOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="DefaultPropertyOperator"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple AbstractLayer" sections="//@tabs.0/@sections.94" automaticContext="true" datacontexts="//@dataContexts.0/@elements.27">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleAbstractLayer">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="AbstractLayer"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple StringToTypeInstanceMap" sections="//@tabs.0/@sections.95" automaticContext="true" datacontexts="//@dataContexts.0/@elements.28">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleStringToTypeInstanceMap">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StringToTypeInstanceMap"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple Folder" sections="//@tabs.0/@sections.96" automaticContext="true" datacontexts="//@dataContexts.0/@elements.29">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleFolder">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="Folder"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple IntInstance" sections="//@tabs.0/@sections.97" automaticContext="true" datacontexts="//@dataContexts.0/@elements.30">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleIntInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="IntInstance"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple BooleanInstance" sections="//@tabs.0/@sections.98" automaticContext="true" datacontexts="//@dataContexts.0/@elements.31">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleBooleanInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="BooleanInstance"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple StringInstance" sections="//@tabs.0/@sections.99" automaticContext="true" datacontexts="//@dataContexts.0/@elements.32">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleStringInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StringInstance"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple IntType" sections="//@tabs.0/@sections.100" automaticContext="true" datacontexts="//@dataContexts.0/@elements.33">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleIntType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="IntType"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple BooleanType" sections="//@tabs.0/@sections.101" automaticContext="true" datacontexts="//@dataContexts.0/@elements.34">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleBooleanType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="BooleanType"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple StringType" sections="//@tabs.0/@sections.102" automaticContext="true" datacontexts="//@dataContexts.0/@elements.35">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleStringType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StringType"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple CustomType" sections="//@tabs.0/@sections.103" automaticContext="true" datacontexts="//@dataContexts.0/@elements.36">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleCustomType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="CustomType"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple TopLayerOperator" sections="//@tabs.0/@sections.104" automaticContext="true" datacontexts="//@dataContexts.0/@elements.37">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleTopLayerOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="TopLayerOperator"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple StackedLayerOperator" sections="//@tabs.0/@sections.105" automaticContext="true" datacontexts="//@dataContexts.0/@elements.38">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleStackedLayerOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StackedLayerOperator"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple CustomLayerOperator" sections="//@tabs.0/@sections.106" automaticContext="true" datacontexts="//@dataContexts.0/@elements.39">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleCustomLayerOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="CustomLayerOperator"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple PropertyIndex" sections="//@tabs.0/@sections.107" automaticContext="true" datacontexts="//@dataContexts.0/@elements.40">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultiplePropertyIndex">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="PropertyIndex"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple StringToPropertyIndexMap" sections="//@tabs.0/@sections.108" automaticContext="true" datacontexts="//@dataContexts.0/@elements.41">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleStringToPropertyIndexMap">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StringToPropertyIndexMap"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple SimpleLayerDescriptor" sections="//@tabs.0/@sections.109" automaticContext="true" datacontexts="//@dataContexts.0/@elements.42">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleSimpleLayerDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="SimpleLayerDescriptor"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple RegExpLayerDescriptor" sections="//@tabs.0/@sections.110" automaticContext="true" datacontexts="//@dataContexts.0/@elements.43">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleRegExpLayerDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="RegExpLayerDescriptor"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple NullInstance" sections="//@tabs.0/@sections.111" automaticContext="true" datacontexts="//@dataContexts.0/@elements.44">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleNullInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="NullInstance"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple RegExpLayer" sections="//@tabs.0/@sections.112" automaticContext="true" datacontexts="//@dataContexts.0/@elements.45">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleRegExpLayer">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="RegExpLayer"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple Layer" sections="//@tabs.0/@sections.113" automaticContext="true" datacontexts="//@dataContexts.0/@elements.46">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLayer">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="Layer"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple Color" sections="//@tabs.0/@sections.114" automaticContext="true" datacontexts="//@dataContexts.0/@elements.47">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleColor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="Color"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple ColorInstance" sections="//@tabs.0/@sections.115" automaticContext="true" datacontexts="//@dataContexts.0/@elements.48">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleColorInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="ColorInstance"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple FillInstance" sections="//@tabs.0/@sections.116" automaticContext="true" datacontexts="//@dataContexts.0/@elements.49">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleFillInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="FillInstance"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple Fill" sections="//@tabs.0/@sections.117" automaticContext="true" datacontexts="//@dataContexts.0/@elements.50">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleFill">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="Fill"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple FillPropertySetter" sections="//@tabs.0/@sections.118" automaticContext="true" datacontexts="//@dataContexts.0/@elements.51">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleFillPropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="FillPropertySetter"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple IsValidPropertySetter" sections="//@tabs.0/@sections.119" automaticContext="true" datacontexts="//@dataContexts.0/@elements.52">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleIsValidPropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="IsValidPropertySetter"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple NullPropertySetter" sections="//@tabs.0/@sections.120" automaticContext="true" datacontexts="//@dataContexts.0/@elements.53">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleNullPropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="NullPropertySetter"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple LineType" sections="//@tabs.0/@sections.121" automaticContext="true" datacontexts="//@dataContexts.0/@elements.54">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLineType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LineType"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple LineInstance" sections="//@tabs.0/@sections.122" automaticContext="true" datacontexts="//@dataContexts.0/@elements.55">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLineInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LineInstance"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple LinePropertySetter" sections="//@tabs.0/@sections.123" automaticContext="true" datacontexts="//@dataContexts.0/@elements.56">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLinePropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="LinePropertySetter"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple FontPropertySetter" sections="//@tabs.0/@sections.124" automaticContext="true" datacontexts="//@dataContexts.0/@elements.57">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleFontPropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="FontPropertySetter"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple FontInstance" sections="//@tabs.0/@sections.125" automaticContext="true" datacontexts="//@dataContexts.0/@elements.58">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleFontInstance">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="FontInstance"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple FontType" sections="//@tabs.0/@sections.126" automaticContext="true" datacontexts="//@dataContexts.0/@elements.59">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleFontType">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="FontType"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple IsVisiblePropertySetter" sections="//@tabs.0/@sections.127" automaticContext="true" datacontexts="//@dataContexts.0/@elements.60">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleIsVisiblePropertySetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="IsVisiblePropertySetter"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple TopLayerOperatorDescriptor" sections="//@tabs.0/@sections.128" automaticContext="true" datacontexts="//@dataContexts.0/@elements.61">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleTopLayerOperatorDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="TopLayerOperatorDescriptor"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple StackedLayerOperatorDescriptor" sections="//@tabs.0/@sections.129" automaticContext="true" datacontexts="//@dataContexts.0/@elements.62">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleStackedLayerOperatorDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="StackedLayerOperatorDescriptor"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple CustomPropertyOperator" sections="//@tabs.0/@sections.130" automaticContext="true" datacontexts="//@dataContexts.0/@elements.63">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleCustomPropertyOperator">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="CustomPropertyOperator"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple AndStackedLayerOperatorDescriptor" sections="//@tabs.0/@sections.131" automaticContext="true" datacontexts="//@dataContexts.0/@elements.64">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleAndStackedLayerOperatorDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="AndStackedLayerOperatorDescriptor"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple OrStackedLayerOperatorDescriptor" sections="//@tabs.0/@sections.132" automaticContext="true" datacontexts="//@dataContexts.0/@elements.65">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleOrStackedLayerOperatorDescriptor">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="OrStackedLayerOperatorDescriptor"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <views elementMultiplicity="-1" name="Multiple IsAbstractUmlSetter" sections="//@tabs.0/@sections.133" automaticContext="true" datacontexts="//@dataContexts.0/@elements.66">
    <constraints xsi:type="constraints:SimpleConstraint" name="isMultipleIsAbstractUmlSetter">
      <constraintType href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0"/>
      <properties xsi:type="constraints:ValueProperty" name="className" value="IsAbstractUmlSetter"/>
      <properties xsi:type="constraints:ValueProperty" name="nsUri" value="org.eclipse.papyrus.layers.0.10"/>
    </constraints>
  </views>
  <dataContexts name="layers" label="layers">
    <elements name="LayerNamedStyle">
      <properties name="layersStack" type="Reference" multiplicity="-1"/>
    </elements>
    <elements name="LayersStack">
      <properties name="layers" type="Reference"/>
      <properties name="name"/>
      <properties name="description"/>
      <properties name="diagram" type="Reference"/>
    </elements>
    <elements name="LayerExpression" supertypes="//@dataContexts.0/@elements.3">
      <properties name="name"/>
      <properties name="description"/>
      <properties name="isLayerEnabledInternal" type="Boolean"/>
      <properties name="isLayerEnabled" type="Boolean"/>
    </elements>
    <elements name="ApplicationDependantElement">
      <properties name="application" type="Reference"/>
    </elements>
    <elements name="LayersStackApplication" supertypes="//@dataContexts.0/@elements.5">
      <properties name="layersStacks" type="Reference" multiplicity="-1"/>
      <properties name="layerStackRegistry" type="Reference"/>
      <properties name="propertyRegistry" type="Reference"/>
      <properties name="layerDescriptorRegistry" type="Reference"/>
      <properties name="factory" type="Reference"/>
      <properties name="propertySetterRegistry" type="Reference"/>
      <properties name="layerOperatorDescriptorRegistry" type="Reference"/>
    </elements>
    <elements name="FolderElement"/>
    <elements name="LayerStackDescriptorRegistry"/>
    <elements name="PropertyRegistry">
      <properties name="properties" type="Reference" multiplicity="-1"/>
      <properties name="typeRegistry" type="Reference"/>
      <properties name="propertiesCount" type="Integer"/>
    </elements>
    <elements name="Property" supertypes="//@dataContexts.0/@elements.5">
      <properties name="type" type="Reference"/>
      <properties name="defaultValue" type="Reference"/>
      <properties name="name"/>
      <properties name="description"/>
      <properties name="index" type="Integer"/>
    </elements>
    <elements name="Type" supertypes="//@dataContexts.0/@elements.5">
      <properties name="metamodel" type="Reference"/>
      <properties name="name"/>
      <properties name="description"/>
    </elements>
    <elements name="Metamodel" supertypes="//@dataContexts.0/@elements.5">
      <properties name="name"/>
      <properties name="description"/>
      <properties name="nsuri"/>
      <properties name="pluginID"/>
      <properties name="ePackageInstanceName"/>
      <properties name="isTypeValid" type="Boolean"/>
    </elements>
    <elements name="TypeInstance" supertypes="//@dataContexts.0/@elements.12"/>
    <elements name="ComputePropertyValueCommandItf"/>
    <elements name="TypeRegistry">
      <properties name="types" type="Reference" multiplicity="-1"/>
    </elements>
    <elements name="StringToTypeMap">
      <properties name="value" type="Reference"/>
      <properties name="key"/>
    </elements>
    <elements name="LayerDescriptorRegistry">
      <properties name="layerDescriptors" type="Reference" multiplicity="-1"/>
    </elements>
    <elements name="LayerDescriptor">
      <properties name="propertyRegistry" type="Reference"/>
    </elements>
    <elements name="LayerApplicationFactory">
      <properties name="application" type="Reference"/>
    </elements>
    <elements name="PropertySetterRegistry">
      <properties name="propertySetters" type="Reference" multiplicity="-1"/>
      <properties name="setterMap" type="Reference" multiplicity="-1"/>
      <properties name="application" type="Reference"/>
    </elements>
    <elements name="PropertySetter">
      <properties name="property" type="Reference"/>
      <properties name="propertyName"/>
    </elements>
    <elements name="StringToPropertySetter">
      <properties name="key"/>
      <properties name="value" type="Reference"/>
    </elements>
    <elements name="LayerOperatorDescriptorRegistry">
      <properties name="descriptors" type="Reference" multiplicity="-1"/>
      <properties name="propertyOperators" type="Reference" multiplicity="-1"/>
      <properties name="propertyCollectionSize" type="Integer"/>
      <properties name="defaultOperator" type="Reference"/>
    </elements>
    <elements name="LayerOperatorDescriptor">
      <properties name="propertyOperators" type="Reference" multiplicity="-1"/>
      <properties name="name"/>
    </elements>
    <elements name="PropertyOperator">
      <properties name="name"/>
    </elements>
    <elements name="AbstractLayerOperator" supertypes="//@dataContexts.0/@elements.25">
      <properties name="layerOperatorDescriptor" type="Reference"/>
      <properties name="layerOperatorDescriptorName"/>
    </elements>
    <elements name="LayerOperator" supertypes="//@dataContexts.0/@elements.2">
      <properties name="layers" type="Reference" multiplicity="-1"/>
    </elements>
    <elements name="DefaultPropertyOperator" supertypes="//@dataContexts.0/@elements.23"/>
    <elements name="AbstractLayer" supertypes="//@dataContexts.0/@elements.2">
      <properties name="propertyValues" type="Reference" multiplicity="-1"/>
      <properties name="propertyValueMap" type="Reference" multiplicity="-1"/>
      <properties name="layerDescriptor" type="Reference"/>
      <properties name="views" type="Reference" multiplicity="-1"/>
      <properties name="attachedProperties" type="Reference" multiplicity="-1"/>
    </elements>
    <elements name="StringToTypeInstanceMap">
      <properties name="key"/>
      <properties name="value" type="Reference"/>
    </elements>
    <elements name="Folder" supertypes="//@dataContexts.0/@elements.5">
      <properties name="elements" type="Reference" multiplicity="-1"/>
      <properties name="name"/>
    </elements>
    <elements name="IntInstance" supertypes="//@dataContexts.0/@elements.11">
      <properties name="value" type="Integer"/>
    </elements>
    <elements name="BooleanInstance" supertypes="//@dataContexts.0/@elements.11">
      <properties name="value" type="Boolean"/>
    </elements>
    <elements name="StringInstance" supertypes="//@dataContexts.0/@elements.11">
      <properties name="value"/>
    </elements>
    <elements name="IntType" supertypes="//@dataContexts.0/@elements.9"/>
    <elements name="BooleanType" supertypes="//@dataContexts.0/@elements.9"/>
    <elements name="StringType" supertypes="//@dataContexts.0/@elements.9"/>
    <elements name="CustomType" supertypes="//@dataContexts.0/@elements.9">
      <properties name="classifier"/>
    </elements>
    <elements name="TopLayerOperator" supertypes="//@dataContexts.0/@elements.24"/>
    <elements name="StackedLayerOperator" supertypes="//@dataContexts.0/@elements.24"/>
    <elements name="CustomLayerOperator" supertypes="//@dataContexts.0/@elements.25"/>
    <elements name="PropertyIndex">
      <properties name="property" type="Reference"/>
      <properties name="index" type="Integer"/>
    </elements>
    <elements name="StringToPropertyIndexMap">
      <properties name="value" type="Reference"/>
      <properties name="key"/>
    </elements>
    <elements name="SimpleLayerDescriptor" supertypes="//@dataContexts.0/@elements.16"/>
    <elements name="RegExpLayerDescriptor" supertypes="//@dataContexts.0/@elements.16"/>
    <elements name="NullInstance" supertypes="//@dataContexts.0/@elements.11"/>
    <elements name="RegExpLayer" supertypes="//@dataContexts.0/@elements.27">
      <properties name="expr"/>
      <properties name="language"/>
       <properties name="isDomainChangedEventDependant" type="Boolean"/>
      <properties name="domainChangedEventLevel" type="Enumeration"/>
      <properties name="isDiagramChangedEventDependant" type="Boolean"/>
      <properties name="diagramChangedEventLevel" type="Enumeration"/>
      <properties name="expressionContextObjectType"/>
    </elements>
    <elements name="Layer" supertypes="//@dataContexts.0/@elements.27"/>
    <elements name="Color" supertypes="//@dataContexts.0/@elements.9"/>
    <elements name="ColorInstance" supertypes="//@dataContexts.0/@elements.11">
      <properties name="value" type="Integer"/>
    </elements>
    <elements name="FillInstance" supertypes="//@dataContexts.0/@elements.11">
      <properties name="transparency" type="Integer"/>
      <properties name="fillColor" type="Reference"/>
    </elements>
    <elements name="Fill" supertypes="//@dataContexts.0/@elements.9"/>
    <elements name="FillPropertySetter" supertypes="//@dataContexts.0/@elements.19"/>
    <elements name="IsValidPropertySetter" supertypes="//@dataContexts.0/@elements.19"/>
    <elements name="NullPropertySetter" supertypes="//@dataContexts.0/@elements.19"/>
    <elements name="LineType" supertypes="//@dataContexts.0/@elements.9"/>
    <elements name="LineInstance" supertypes="//@dataContexts.0/@elements.11">
      <properties name="lineColor" type="Integer"/>
      <properties name="lineWith" type="Integer"/>
    </elements>
    <elements name="LinePropertySetter" supertypes="//@dataContexts.0/@elements.19"/>
    <elements name="FontPropertySetter" supertypes="//@dataContexts.0/@elements.19"/>
    <elements name="FontInstance" supertypes="//@dataContexts.0/@elements.11">
      <properties name="fontColor" type="Integer"/>
      <properties name="fontName"/>
      <properties name="fontHeigh" type="Integer"/>
      <properties name="bold" type="Boolean"/>
    </elements>
    <elements name="FontType" supertypes="//@dataContexts.0/@elements.9"/>
    <elements name="IsVisiblePropertySetter" supertypes="//@dataContexts.0/@elements.19"/>
    <elements name="TopLayerOperatorDescriptor" supertypes="//@dataContexts.0/@elements.22"/>
    <elements name="StackedLayerOperatorDescriptor" supertypes="//@dataContexts.0/@elements.22"/>
    <elements name="CustomPropertyOperator" supertypes="//@dataContexts.0/@elements.23">
      <properties name="classname"/>
      <properties name="operatorInstance"/>
      <properties name="classBundleID"/>
    </elements>
    <elements name="AndStackedLayerOperatorDescriptor" supertypes="//@dataContexts.0/@elements.62"/>
    <elements name="OrStackedLayerOperatorDescriptor" supertypes="//@dataContexts.0/@elements.62"/>
    <elements name="IsAbstractUmlSetter" supertypes="//@dataContexts.0/@elements.19"/>
    <modelElementFactory href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@modelElementFactories.0"/>
  </dataContexts>
</contexts:Context>

Back to the top