Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c0568fdb21d8cc07a93314e48749fcec2e01b9e0 (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
<?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:contexts="http://www.eclipse.org/papyrus/properties/contexts/0.9"
	xmlns:constraints="http://www.eclipse.org/papyrus/constraints/0.9"
	name="Customization">
	<tabs label="Context" id="context" category="" priority="10">
		<sections name="Single Environment" sectionFile="ui/SingleEnvironment.xwt">
			<widget href="ui/SingleEnvironment.xwt#/" />
		</sections>
		<sections name="Multiple Environment" sectionFile="ui/MultipleEnvironment.xwt">
			<widget href="ui/MultipleEnvironment.xwt#/" />
		</sections>
		<sections name="Single WidgetType" sectionFile="ui/SingleWidgetType.xwt">
			<widget href="ui/SingleWidgetType.xwt#/" />
		</sections>
		<sections name="Multiple WidgetType" sectionFile="ui/MultipleWidgetType.xwt">
			<widget href="ui/MultipleWidgetType.xwt#/" />
		</sections>
		<sections name="Single PropertyEditorType" sectionFile="ui/SinglePropertyEditorType.xwt">
			<widget href="ui/SinglePropertyEditorType.xwt#/" />
		</sections>
		<sections name="Multiple PropertyEditorType" sectionFile="ui/MultiplePropertyEditorType.xwt">
			<widget href="ui/MultiplePropertyEditorType.xwt#/" />
		</sections>
		<sections name="Single CompositeWidgetType" sectionFile="ui/SingleCompositeWidgetType.xwt">
			<widget href="ui/SingleCompositeWidgetType.xwt#/" />
		</sections>
		<sections name="Multiple CompositeWidgetType" sectionFile="ui/MultipleCompositeWidgetType.xwt">
			<widget href="ui/MultipleCompositeWidgetType.xwt#/" />
		</sections>
		<sections name="Single LayoutType" sectionFile="ui/SingleLayoutType.xwt">
			<widget href="ui/SingleLayoutType.xwt#/" />
		</sections>
		<sections name="Multiple LayoutType" sectionFile="ui/MultipleLayoutType.xwt">
			<widget href="ui/MultipleLayoutType.xwt#/" />
		</sections>
		<sections name="Single ConstraintType" sectionFile="ui/SingleConstraintType.xwt">
			<widget href="ui/SingleConstraintType.xwt#/" />
		</sections>
		<sections name="Multiple ConstraintType" sectionFile="ui/MultipleConstraintType.xwt">
			<widget href="ui/MultipleConstraintType.xwt#/" />
		</sections>
		<sections name="Single ModelElementFactoryDescriptor"
			sectionFile="ui/SingleModelElementFactoryDescriptor.xwt">
			<widget href="ui/SingleModelElementFactoryDescriptor.xwt#/" />
		</sections>
		<sections name="Multiple ModelElementFactoryDescriptor"
			sectionFile="ui/MultipleModelElementFactoryDescriptor.xwt">
			<widget href="ui/MultipleModelElementFactoryDescriptor.xwt#/" />
		</sections>
		<sections name="Single StandardWidgetType" sectionFile="ui/SingleStandardWidgetType.xwt">
			<widget href="ui/SingleStandardWidgetType.xwt#/" />
		</sections>
		<sections name="Multiple StandardWidgetType" sectionFile="ui/MultipleStandardWidgetType.xwt">
			<widget href="ui/MultipleStandardWidgetType.xwt#/" />
		</sections>
		<sections name="Single Context" sectionFile="ui/SingleContext.xwt">
			<widget href="ui/SingleContext.xwt#/" />
		</sections>
		<sections name="Multiple Context" sectionFile="ui/MultipleContext.xwt">
			<widget href="ui/MultipleContext.xwt#/" />
		</sections>
		<sections name="Single DisplayUnit" sectionFile="ui/SingleDisplayUnit.xwt">
			<widget href="ui/SingleDisplayUnit.xwt#/" />
		</sections>
		<sections name="Multiple DisplayUnit" sectionFile="ui/MultipleDisplayUnit.xwt">
			<widget href="ui/MultipleDisplayUnit.xwt#/" />
		</sections>
		<sections name="Single View" sectionFile="ui/SingleView.xwt">
			<widget href="ui/SingleView.xwt#/" />
		</sections>
		<sections name="Multiple View" sectionFile="ui/MultipleView.xwt">
			<widget href="ui/MultipleView.xwt#/" />
		</sections>
		<sections name="Single Tab" sectionFile="ui/SingleTab.xwt">
			<widget href="ui/SingleTab.xwt#/" />
		</sections>
		<sections name="Multiple Tab" sectionFile="ui/MultipleTab.xwt">
			<widget href="ui/MultipleTab.xwt#/" />
		</sections>
		<sections name="Single Section" sectionFile="ui/SingleSection.xwt">
			<widget href="ui/SingleSection.xwt#/" />
		</sections>
		<sections name="Multiple Section" sectionFile="ui/MultipleSection.xwt">
			<widget href="ui/MultipleSection.xwt#/" />
		</sections>
		<sections name="Single DataContextElement" sectionFile="ui/SingleDataContextElement.xwt">
			<widget href="ui/SingleDataContextElement.xwt#/" />
		</sections>
		<sections name="Multiple DataContextElement" sectionFile="ui/MultipleDataContextElement.xwt">
			<widget href="ui/MultipleDataContextElement.xwt#/" />
		</sections>
		<sections name="Single Property" sectionFile="ui/SingleProperty.xwt">
			<widget href="ui/SingleProperty.xwt#/" />
		</sections>
		<sections name="Multiple Property" sectionFile="ui/MultipleProperty.xwt">
			<widget href="ui/MultipleProperty.xwt#/" />
		</sections>
		<sections name="Single UnknownProperty" sectionFile="ui/SingleUnknownProperty.xwt">
			<widget href="ui/SingleUnknownProperty.xwt#/" />
		</sections>
		<sections name="Multiple UnknownProperty" sectionFile="ui/MultipleUnknownProperty.xwt">
			<widget href="ui/MultipleUnknownProperty.xwt#/" />
		</sections>
		<sections name="Single DataContextPackage" sectionFile="ui/SingleDataContextPackage.xwt">
			<widget href="ui/SingleDataContextPackage.xwt#/" />
		</sections>
		<sections name="Multiple DataContextPackage" sectionFile="ui/MultipleDataContextPackage.xwt">
			<widget href="ui/MultipleDataContextPackage.xwt#/" />
		</sections>
		<sections name="Single DataContextRoot" sectionFile="ui/SingleDataContextRoot.xwt">
			<widget href="ui/SingleDataContextRoot.xwt#/" />
		</sections>
		<sections name="Multiple DataContextRoot" sectionFile="ui/MultipleDataContextRoot.xwt">
			<widget href="ui/MultipleDataContextRoot.xwt#/" />
		</sections>
		<sections name="Single ConstraintDescriptor" sectionFile="ui/SingleConstraintDescriptor.xwt">
			<widget href="ui/SingleConstraintDescriptor.xwt#/" />
		</sections>
		<sections name="Multiple ConstraintDescriptor" sectionFile="ui/MultipleConstraintDescriptor.xwt">
			<widget href="ui/MultipleConstraintDescriptor.xwt#/" />
		</sections>
		<sections name="Single ConfigProperty" sectionFile="ui/SingleConfigProperty.xwt">
			<widget href="ui/SingleConfigProperty.xwt#/" />
		</sections>
		<sections name="Multiple ConfigProperty" sectionFile="ui/MultipleConfigProperty.xwt">
			<widget href="ui/MultipleConfigProperty.xwt#/" />
		</sections>
		<sections name="Single ValueProperty" sectionFile="ui/SingleValueProperty.xwt">
			<widget href="ui/SingleValueProperty.xwt#/" />
		</sections>
		<sections name="Multiple ValueProperty" sectionFile="ui/MultipleValueProperty.xwt">
			<widget href="ui/MultipleValueProperty.xwt#/" />
		</sections>
		<sections name="Single ReferenceProperty" sectionFile="ui/SingleReferenceProperty.xwt">
			<widget href="ui/SingleReferenceProperty.xwt#/" />
		</sections>
		<sections name="Multiple ReferenceProperty" sectionFile="ui/MultipleReferenceProperty.xwt">
			<widget href="ui/MultipleReferenceProperty.xwt#/" />
		</sections>
		<sections name="Single Element" sectionFile="ui/SingleElement.xwt">
			<widget href="ui/SingleElement.xwt#/" />
		</sections>
		<sections name="Multiple Element" sectionFile="ui/MultipleElement.xwt">
			<widget href="ui/MultipleElement.xwt#/" />
		</sections>
		<sections name="Single UIComponent" sectionFile="ui/SingleUIComponent.xwt">
			<widget href="ui/SingleUIComponent.xwt#/" />
		</sections>
		<sections name="Multiple UIComponent" sectionFile="ui/MultipleUIComponent.xwt">
			<widget href="ui/MultipleUIComponent.xwt#/" />
		</sections>
		<sections name="Single Widget" sectionFile="ui/SingleWidget.xwt">
			<widget href="ui/SingleWidget.xwt#/" />
		</sections>
		<sections name="Multiple Widget" sectionFile="ui/MultipleWidget.xwt">
			<widget href="ui/MultipleWidget.xwt#/" />
		</sections>
		<sections name="Single StandardWidget" sectionFile="ui/SingleStandardWidget.xwt">
			<widget href="ui/SingleStandardWidget.xwt#/" />
		</sections>
		<sections name="Multiple StandardWidget" sectionFile="ui/MultipleStandardWidget.xwt">
			<widget href="ui/MultipleStandardWidget.xwt#/" />
		</sections>
		<sections name="Single PropertyEditor" sectionFile="ui/SinglePropertyEditor.xwt">
			<widget href="ui/SinglePropertyEditor.xwt#/" />
		</sections>
		<sections name="Multiple PropertyEditor" sectionFile="ui/MultiplePropertyEditor.xwt">
			<widget href="ui/MultiplePropertyEditor.xwt#/" />
		</sections>
		<sections name="Single CompositeWidget" sectionFile="ui/SingleCompositeWidget.xwt">
			<widget href="ui/SingleCompositeWidget.xwt#/" />
		</sections>
		<sections name="Multiple CompositeWidget" sectionFile="ui/MultipleCompositeWidget.xwt">
			<widget href="ui/MultipleCompositeWidget.xwt#/" />
		</sections>
		<sections name="Single Layout" sectionFile="ui/SingleLayout.xwt">
			<widget href="ui/SingleLayout.xwt#/" />
		</sections>
		<sections name="Multiple Layout" sectionFile="ui/MultipleLayout.xwt">
			<widget href="ui/MultipleLayout.xwt#/" />
		</sections>
		<sections name="Single WidgetAttribute" sectionFile="ui/SingleWidgetAttribute.xwt">
			<widget href="ui/SingleWidgetAttribute.xwt#/" />
		</sections>
		<sections name="Multiple WidgetAttribute" sectionFile="ui/MultipleWidgetAttribute.xwt">
			<widget href="ui/MultipleWidgetAttribute.xwt#/" />
		</sections>
		<sections name="Single ValueAttribute" sectionFile="ui/SingleValueAttribute.xwt">
			<widget href="ui/SingleValueAttribute.xwt#/" />
		</sections>
		<sections name="Multiple ValueAttribute" sectionFile="ui/MultipleValueAttribute.xwt">
			<widget href="ui/MultipleValueAttribute.xwt#/" />
		</sections>
		<sections name="Single ReferenceAttribute" sectionFile="ui/SingleReferenceAttribute.xwt">
			<widget href="ui/SingleReferenceAttribute.xwt#/" />
		</sections>
		<sections name="Multiple ReferenceAttribute" sectionFile="ui/MultipleReferenceAttribute.xwt">
			<widget href="ui/MultipleReferenceAttribute.xwt#/" />
		</sections>
		<sections name="Single UnknownComponent" sectionFile="ui/SingleUnknownComponent.xwt">
			<widget href="ui/SingleUnknownComponent.xwt#/" />
		</sections>
		<sections name="Multiple UnknownComponent" sectionFile="ui/MultipleUnknownComponent.xwt">
			<widget href="ui/MultipleUnknownComponent.xwt#/" />
		</sections>
		<sections name="GroupAttributes" sectionFile="ui/GroupAttributes.xwt">
			<constraints xsi:type="constraints:SimpleConstraint"
				name="isGroup">
				<constraintType
					href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.2" />
				<properties xsi:type="constraints:ReferenceProperty"
					name="query">
					<value href="custom.querySet#isGroup" />
				</properties>
			</constraints>
			<widget href="ui/GroupAttributes.xwt#/" />
		</sections>
		<sections name="EcoreInstanceOf" sectionFile="ui/EcoreInstanceOf.xwt">
			<constraints xsi:type="constraints:SimpleConstraint"
				name="isEcoreInstanceOf">
				<constraintType
					href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.2" />
				<properties xsi:type="constraints:ReferenceProperty"
					name="query">
					<value href="custom.querySet#isEcoreInstanceOf" />
				</properties>
			</constraints>
			<widget href="ui/EcoreInstanceOf.xwt#/" />
		</sections>
		<sections name="UMLInstanceOf" sectionFile="ui/UMLInstanceOf.xwt">
			<constraints xsi:type="constraints:SimpleConstraint"
				name="isUMLInstanceOf">
				<constraintType
					href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.2" />
				<properties xsi:type="constraints:ReferenceProperty"
					name="query">
					<value href="custom.querySet#isUmlInstanceOf" />
				</properties>
			</constraints>
			<widget href="ui/UMLInstanceOf.xwt#/" />
		</sections>
		<sections name="OCLQuery" sectionFile="ui/OCLQuery.xwt">
			<constraints xsi:type="constraints:SimpleConstraint"
				name="isOCLQueryConstraint">
				<constraintType
					href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.2" />
				<properties xsi:type="constraints:ReferenceProperty"
					name="query">
					<value href="custom.querySet#isOclQuery" />
				</properties>
			</constraints>
			<widget href="ui/OCLQuery.xwt#/" />
		</sections>
		<sections name="Stereotype" sectionFile="ui/Stereotype.xwt">
			<constraints xsi:type="constraints:SimpleConstraint"
				name="isStereotypeConstraint">
				<constraintType
					href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.2" />
				<properties xsi:type="constraints:ReferenceProperty"
					name="query">
					<value href="custom.querySet#isStereotype" />
				</properties>
			</constraints>
			<widget href="ui/Stereotype.xwt#/" />
		</sections>
		<sections name="GridLayout" sectionFile="ui/GridLayout.xwt">
			<constraints xsi:type="constraints:SimpleConstraint"
				name="isGridLayout">
				<constraintType
					href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.2" />
				<properties xsi:type="constraints:ReferenceProperty"
					name="query">
					<value href="custom.querySet#isGridLayout" />
				</properties>
			</constraints>
			<widget href="ui/GridLayout.xwt#/" />
		</sections>
		<sections name="Label" sectionFile="ui/Label.xwt">
			<constraints xsi:type="constraints:SimpleConstraint"
				name="isSWTLabel">
				<constraintType
					href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.2" />
				<properties xsi:type="constraints:ReferenceProperty"
					name="query">
					<value href="custom.querySet#isLabel" />
				</properties>
			</constraints>
			<widget href="ui/Label.xwt#/" />
		</sections>
		<sections name="Single ToggleButton" sectionFile="ui/Single ToggleButton.xwt">
			<constraints xsi:type="constraints:SimpleConstraint"
				name="isSingleToggleButton">
				<constraintType
					href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.2" />
				<properties xsi:type="constraints:ReferenceProperty"
					name="query">
					<value href="custom.querySet#isToggleButton" />
				</properties>
			</constraints>
			<widget href="ui/Single ToggleButton.xwt#/" />
		</sections>
		<sections name="SingleFileSelector" sectionFile="ui/SingleFileSelector.xwt">
			<constraints xsi:type="constraints:SimpleConstraint"
				name="isSingleFileSelector">
				<constraintType
					href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.2" />
				<properties xsi:type="constraints:ReferenceProperty"
					name="query">
					<value href="custom.querySet#isFileSelector" />
				</properties>
			</constraints>
			<widget href="ui/SingleFileSelector.xwt#/" />
		</sections>
		<sections name="Single IntegerSpinner" sectionFile="ui/Single IntegerSpinner.xwt">
			<constraints xsi:type="constraints:SimpleConstraint"
				name="isIntegerSpinner">
				<constraintType
					href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.2" />
				<properties xsi:type="constraints:ReferenceProperty"
					name="query">
					<value href="custom.querySet#isIntegerSpinner" />
				</properties>
			</constraints>
			<widget href="ui/Single IntegerSpinner.xwt#/" />
		</sections>
		<sections name="SingleCompositeConstraint" sectionFile="ui/SingleCompositeConstraint.xwt">
			<widget href="ui/SingleCompositeConstraint.xwt#/" />
		</sections>
		<sections name="MultipleCompositeConstraint" sectionFile="ui/MultipleCompositeConstraint.xwt">
			<widget href="ui/MultipleCompositeConstraint.xwt#/" />
		</sections>
	</tabs>
	<views name="Single Environment" sections="//@tabs.0/@sections.0"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleEnvironment">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="Environment" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/environment/0.9" />
		</constraints>
	</views>
	<views name="Multiple Environment" sections="//@tabs.0/@sections.1"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleEnvironment">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/environment/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="Environment" />
		</constraints>
	</views>
	<views name="Single WidgetType" sections="//@tabs.0/@sections.2"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleWidgetType">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="WidgetType" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/environment/0.9" />
		</constraints>
	</views>
	<views name="Multiple WidgetType" sections="//@tabs.0/@sections.3"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleWidgetType">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/environment/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="WidgetType" />
		</constraints>
	</views>
	<views name="Single PropertyEditorType" sections="//@tabs.0/@sections.4"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSinglePropertyEditorType">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="PropertyEditorType" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/environment/0.9" />
		</constraints>
	</views>
	<views name="Multiple PropertyEditorType" sections="//@tabs.0/@sections.5"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultiplePropertyEditorType">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="PropertyEditorType" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/environment/0.9" />
		</constraints>
	</views>
	<views name="Single CompositeWidgetType" sections="//@tabs.0/@sections.6"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleCompositeWidgetType">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/environment/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="CompositeWidgetType" />
		</constraints>
	</views>
	<views name="Multiple CompositeWidgetType" sections="//@tabs.0/@sections.7"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleCompositeWidgetType">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/environment/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="CompositeWidgetType" />
		</constraints>
	</views>
	<views name="Single LayoutType" sections="//@tabs.0/@sections.8"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleLayoutType">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="LayoutType" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/environment/0.9" />
		</constraints>
	</views>
	<views name="Multiple LayoutType" sections="//@tabs.0/@sections.9"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLayoutType">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="LayoutType" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/environment/0.9" />
		</constraints>
	</views>
	<views name="Single ConstraintType" sections="//@tabs.0/@sections.10"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleConstraintType">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/constraints/environment/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ConstraintType" />
		</constraints>
	</views>
	<views name="Multiple ConstraintType" sections="//@tabs.0/@sections.11"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleConstraintType">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ConstraintType" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/constraints/environment/0.9" />
		</constraints>
	</views>
	<views name="Single ModelElementFactoryDescriptor" sections="//@tabs.0/@sections.12"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint"
			name="isSingleModelElementFactoryDescriptor">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ModelElementFactoryDescriptor" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/environment/0.9" />
		</constraints>
	</views>
	<views name="Multiple ModelElementFactoryDescriptor" sections="//@tabs.0/@sections.13"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint"
			name="isMultipleModelElementFactoryDescriptor">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/environment/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ModelElementFactoryDescriptor" />
		</constraints>
	</views>
	<views name="Single StandardWidgetType" sections="//@tabs.0/@sections.14"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleStandardWidgetType">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="StandardWidgetType" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/environment/0.9" />
		</constraints>
	</views>
	<views name="Multiple StandardWidgetType" sections="//@tabs.0/@sections.15"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleStandardWidgetType">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="StandardWidgetType" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/environment/0.9" />
		</constraints>
	</views>
	<views name="Single Context" sections="//@tabs.0/@sections.16"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleContext">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="Context" />
		</constraints>
	</views>
	<views name="Multiple Context" sections="//@tabs.0/@sections.17"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleContext">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="Context" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
		</constraints>
	</views>
	<views name="Single DisplayUnit" sections="//@tabs.0/@sections.18"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleDisplayUnit">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="DisplayUnit" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/constraints/0.9" />
		</constraints>
	</views>
	<views name="Multiple DisplayUnit" sections="//@tabs.0/@sections.19"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleDisplayUnit">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="DisplayUnit" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/constraints/0.9" />
		</constraints>
	</views>
	<views name="Single View" sections="//@tabs.0/@sections.20"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleView">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="View" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
		</constraints>
	</views>
	<views name="Multiple View" sections="//@tabs.0/@sections.21"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleView">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="View" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
		</constraints>
	</views>
	<views name="Single Tab" sections="//@tabs.0/@sections.22"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleTab">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="Tab" />
		</constraints>
	</views>
	<views name="Multiple Tab" sections="//@tabs.0/@sections.23"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleTab">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="Tab" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
		</constraints>
	</views>
	<views name="Single Section" sections="//@tabs.0/@sections.24"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleSection">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="Section" />
		</constraints>
	</views>
	<views name="Multiple Section" sections="//@tabs.0/@sections.25"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleSection">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="Section" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
		</constraints>
	</views>
	<views name="Single DataContextElement" sections="//@tabs.0/@sections.26"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleDataContextElement">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="DataContextElement" />
		</constraints>
	</views>
	<views name="Multiple DataContextElement" sections="//@tabs.0/@sections.27"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleDataContextElement">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="DataContextElement" />
		</constraints>
	</views>
	<views name="Single Property" sections="//@tabs.0/@sections.28"
		automaticContext="true">
		<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="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="Property" />
		</constraints>
	</views>
	<views name="Multiple Property" sections="//@tabs.0/@sections.29"
		elementMultiplicity="-1" automaticContext="true">
		<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="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
		</constraints>
	</views>
	<views name="Single UnknownProperty" sections="//@tabs.0/@sections.30"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleUnknownProperty">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="UnknownProperty" />
		</constraints>
	</views>
	<views name="Multiple UnknownProperty" sections="//@tabs.0/@sections.31"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleUnknownProperty">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="UnknownProperty" />
		</constraints>
	</views>
	<views name="Single DataContextPackage" sections="//@tabs.0/@sections.32"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleDataContextPackage">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="DataContextPackage" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
		</constraints>
	</views>
	<views name="Multiple DataContextPackage" sections="//@tabs.0/@sections.33"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleDataContextPackage">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="DataContextPackage" />
		</constraints>
	</views>
	<views name="Single DataContextRoot" sections="//@tabs.0/@sections.34"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleDataContextRoot">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="DataContextRoot" />
		</constraints>
	</views>
	<views name="Multiple DataContextRoot" sections="//@tabs.0/@sections.35"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleDataContextRoot">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/contexts/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="DataContextRoot" />
		</constraints>
	</views>
	<views name="Single ConstraintDescriptor"
		sections="//@tabs.0/@sections.36 //@tabs.0/@sections.67 //@tabs.0/@sections.68 //@tabs.0/@sections.69 //@tabs.0/@sections.70"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleConstraintDescriptor">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/constraints/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ConstraintDescriptor" />
		</constraints>
	</views>
	<views name="Multiple ConstraintDescriptor" sections="//@tabs.0/@sections.37"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleConstraintDescriptor">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/constraints/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ConstraintDescriptor" />
		</constraints>
	</views>
	<views name="Single ConfigProperty" sections="//@tabs.0/@sections.38"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleConfigProperty">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ConfigProperty" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/constraints/0.9" />
		</constraints>
	</views>
	<views name="Multiple ConfigProperty" sections="//@tabs.0/@sections.39"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleConfigProperty">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ConfigProperty" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/constraints/0.9" />
		</constraints>
	</views>
	<views name="Single ValueProperty" sections="//@tabs.0/@sections.40"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleValueProperty">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/constraints/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ValueProperty" />
		</constraints>
	</views>
	<views name="Multiple ValueProperty" sections="//@tabs.0/@sections.41"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleValueProperty">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ValueProperty" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/constraints/0.9" />
		</constraints>
	</views>
	<views name="Single ReferenceProperty" sections="//@tabs.0/@sections.42"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleReferenceProperty">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/constraints/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ReferenceProperty" />
		</constraints>
	</views>
	<views name="Multiple ReferenceProperty" sections="//@tabs.0/@sections.43"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleReferenceProperty">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/constraints/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ReferenceProperty" />
		</constraints>
	</views>
	<views name="Single Element" sections="//@tabs.0/@sections.44"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleElement">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="Element" />
		</constraints>
	</views>
	<views name="Multiple Element" sections="//@tabs.0/@sections.45"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleElement">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="Element" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
		</constraints>
	</views>
	<views name="Single UIComponent" sections="//@tabs.0/@sections.46"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleUIComponent">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="UIComponent" />
		</constraints>
	</views>
	<views name="Multiple UIComponent" sections="//@tabs.0/@sections.47"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleUIComponent">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="UIComponent" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
		</constraints>
	</views>
	<views name="Single Widget" sections="//@tabs.0/@sections.48"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleWidget">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="Widget" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
		</constraints>
	</views>
	<views name="Multiple Widget" sections="//@tabs.0/@sections.49"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleWidget">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="Widget" />
		</constraints>
	</views>
	<views name="Single StandardWidget" sections="//@tabs.0/@sections.50 //@tabs.0/@sections.72"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleStandardWidget">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="StandardWidget" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
		</constraints>
	</views>
	<views name="Multiple StandardWidget" sections="//@tabs.0/@sections.51"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleStandardWidget">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="StandardWidget" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
		</constraints>
	</views>
	<views name="Single PropertyEditor"
		sections="//@tabs.0/@sections.52 //@tabs.0/@sections.73 //@tabs.0/@sections.74 //@tabs.0/@sections.75"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSinglePropertyEditor">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="PropertyEditor" />
		</constraints>
	</views>
	<views name="Multiple PropertyEditor" sections="//@tabs.0/@sections.53"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultiplePropertyEditor">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="PropertyEditor" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
		</constraints>
	</views>
	<views name="Single CompositeWidget" sections="//@tabs.0/@sections.54 //@tabs.0/@sections.66"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleCompositeWidget">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="CompositeWidget" />
		</constraints>
	</views>
	<views name="Multiple CompositeWidget" sections="//@tabs.0/@sections.55"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleCompositeWidget">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="CompositeWidget" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
		</constraints>
	</views>
	<views name="Single Layout" sections="//@tabs.0/@sections.56 //@tabs.0/@sections.71"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleLayout">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="Layout" />
		</constraints>
	</views>
	<views name="Multiple Layout" sections="//@tabs.0/@sections.57"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleLayout">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="Layout" />
		</constraints>
	</views>
	<views name="Single WidgetAttribute" sections="//@tabs.0/@sections.58"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleWidgetAttribute">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="WidgetAttribute" />
		</constraints>
	</views>
	<views name="Multiple WidgetAttribute" sections="//@tabs.0/@sections.59"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleWidgetAttribute">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="WidgetAttribute" />
		</constraints>
	</views>
	<views name="Single ValueAttribute" sections="//@tabs.0/@sections.60"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleValueAttribute">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ValueAttribute" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
		</constraints>
	</views>
	<views name="Multiple ValueAttribute" sections="//@tabs.0/@sections.61"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleValueAttribute">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ValueAttribute" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
		</constraints>
	</views>
	<views name="Single ReferenceAttribute" sections="//@tabs.0/@sections.62"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleReferenceAttribute">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ReferenceAttribute" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
		</constraints>
	</views>
	<views name="Multiple ReferenceAttribute" sections="//@tabs.0/@sections.63"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleReferenceAttribute">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="ReferenceAttribute" />
		</constraints>
	</views>
	<views name="Single UnknownComponent" sections="//@tabs.0/@sections.64"
		automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleUnknownComponent">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="UnknownComponent" />
		</constraints>
	</views>
	<views name="Multiple UnknownComponent" sections="//@tabs.0/@sections.65"
		elementMultiplicity="-1" automaticContext="true">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleUnknownComponent">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="UnknownComponent" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/properties/ui/0.9" />
		</constraints>
	</views>
	<views name="SingleCompositeConstraint" sections="//@tabs.0/@sections.76">
		<constraints xsi:type="constraints:SimpleConstraint" name="isSingleCompositeConstraint">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/constraints/0.9" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="CompositeConstraint" />
		</constraints>
	</views>
	<views name="MultipleCompositeConstraint" sections="//@tabs.0/@sections.77"
		elementMultiplicity="-1">
		<constraints xsi:type="constraints:SimpleConstraint" name="isMultipleCompositeConstraint">
			<constraintType
				href="ppe:/environment/org.eclipse.papyrus.views.properties/model/Environment.xmi#//@constraintTypes.0" />
			<properties xsi:type="constraints:ValueProperty" name="className"
				value="CompositeConstraint" />
			<properties xsi:type="constraints:ValueProperty" name="nsUri"
				value="http://www.eclipse.org/papyrus/constraints/0.9" />
		</constraints>
	</views>
	<dataContexts name="properties" label="properties">
		<elements xsi:type="contexts:DataContextPackage" name="environment">
			<elements name="Environment">
				<properties name="modelElementFactories" type="Reference"
					multiplicity="-1" />
				<properties name="constraintTypes" type="Reference"
					multiplicity="-1" />
				<properties name="widgetTypes" type="Reference"
					multiplicity="-1" />
				<properties name="propertyEditorTypes" type="Reference"
					multiplicity="-1" />
				<properties name="compositeWidgetTypes" type="Reference"
					multiplicity="-1" />
				<properties name="layoutTypes" type="Reference"
					multiplicity="-1" />
			</elements>
			<elements name="PropertyEditorType" supertypes="//@dataContexts.0/@elements.0/@elements.2">
				<properties name="type" type="Enumeration" />
				<properties name="multiplicity" type="Integer" />
			</elements>
			<elements name="WidgetType">
				<properties name="label" />
				<properties name="widgetClass" />
			</elements>
			<elements name="CompositeWidgetType" supertypes="//@dataContexts.0/@elements.0/@elements.2" />
			<elements name="LayoutType" supertypes="//@dataContexts.0/@elements.0/@elements.2" />
			<elements name="ConstraintType">
				<properties name="label" />
				<properties name="constraintClass" />
			</elements>
			<elements name="ModelElementFactoryDescriptor">
				<properties name="name" />
				<properties name="factoryClass" />
			</elements>
			<elements name="StandardWidgetType" supertypes="//@dataContexts.0/@elements.0/@elements.2" />
		</elements>
		<elements xsi:type="contexts:DataContextPackage" name="contexts">
			<elements name="Context">
				<properties name="name" description="The name of the Configuration" />
				<properties name="views" type="Reference" multiplicity="-1"
					description="The list of views for this Configuration" />
				<properties name="tabs" type="Reference" multiplicity="-1"
					description="The list of tabs for this Configuration" />
				<properties name="dataContexts" type="Reference"
					multiplicity="-1" description="The list of Data Contexts used by this configuration" />
				<properties name="dependencies" type="Reference"
					multiplicity="-1"
					description="The list of Configurations on which this configuration depends" />
			</elements>
			<elements name="DisplayUnit">
				<properties name="constraints" type="Reference"
					multiplicity="-1"
					description="The constraints associated to this Display Unit. The unit will be displayed only if at least one constraint is matched" />
			</elements>
			<elements name="View" supertypes="//@dataContexts.0/@elements.1/@elements.1">
				<properties name="name" description="The name of this view" />
				<properties name="sections" type="Reference"
					multiplicity="-1" description="The list of sections for this view" />
				<properties name="automaticContext" label="" type="Boolean"
					description="deprecated" />
				<properties name="datacontexts" type="Reference"
					multiplicity="-1" description="deprecated" />
				<properties name="elementMultiplicity" label="" type="Integer"
					description="The number of selected elements for which this view should be displayed. May be 1 (Single element), -1 (Any number of elements) or any positive integer (For a strict number of elements)" />
			</elements>
			<elements name="Tab">
				<properties name="label" description="The tab's label" />
				<properties name="id"
					description="The tab's id. The ID should be unique within its category" />
				<properties name="category" description="The tab's category" />
				<properties name="image" label=""
					description="The tab's image. The path should be of the form /&lt;plug-in id>/&lt;path to the image>" />
				<properties name="afterTab" label="" type="Reference"
					description="The tab after which this tab will be displayed. The afterTab's category should be the same as this tab's category" />
				<properties name="sections" type="Reference"
					multiplicity="-1"
					description="The list of sections that can be displayed in this tab" />
				<properties name="indented" label="" type="Boolean"
					description="Indicates if this tab should be indented. The preview isn't available for indentation" />
				<properties name="priority" type="Integer"
					description="Indicates the priority for this tab. A lower priority means the tab will be placed before the other tabs. 0 is the highest priority, 100 is a very low priority." />
			</elements>
			<elements name="Section" supertypes="//@dataContexts.0/@elements.1/@elements.1">
				<properties name="name"
					description="The section's name. It should be unique within this Configuration" />
				<properties name="tab" type="Reference"
					description="The tab in which this section will be displayed" />
				<properties name="sectionFile"
					description="The XWT file containing this section's UI declaration" />
				<properties name="widget" label="" type="Reference"
					description="The SWT Widget representing this section" />
			</elements>
			<elements name="DataContextElement">
				<properties name="name" label=""
					description="The name of this Data Context element" />
				<properties name="properties" label="" type="Reference"
					multiplicity="-1" description="The list of properties of this Element" />
				<properties name="package" type="Reference" description="This element's package" />
				<properties name="supertypes" type="Reference"
					multiplicity="-1" description="This element's direct supertypes" />
			</elements>
			<elements name="Property">
				<properties name="name" label="" description="The name of the property" />
				<properties name="label" description="The label of this property" />
				<properties name="type" type="Enumeration" description="The type of this property" />
				<properties name="contextElement" type="Reference"
					description="The element to which this property belongs" />
				<properties name="multiplicity" type="Integer"
					description="The multiplicity of this property." />
				<properties name="description" />
			</elements>
			<elements name="UnknownProperty" supertypes="//@dataContexts.0/@elements.1/@elements.6" />
			<elements name="DataContextPackage" supertypes="//@dataContexts.0/@elements.1/@elements.5">
				<properties name="elements" type="Reference"
					multiplicity="-1"
					description="The list of Data Context elements contained into this package" />
			</elements>
			<elements name="DataContextRoot" supertypes="//@dataContexts.0/@elements.1/@elements.8">
				<properties name="label" label=""
					description="The label of this Data Context root" />
				<properties name="modelElementFactory" type="Reference"
					description="The factory used to instantiate to ModelElements associated to all the DataContext Elements inside this DataContext Root" />
			</elements>
			<elements name="ConstraintDescriptor">
				<properties name="name" description="The name of this constraint descriptor" />
				<properties name="display" type="Reference"
					description="The display unit (View or Section) associated to this constraint." />
				<properties name="constraints" type="Reference"
					multiplicity="-1"
					description="The sub-constraints of this constraint (Used for Composite constraints - Not implemented yet)" />
				<properties name="overriddenConstraints" type="Reference"
					multiplicity="-1"
					description="The constraints overridden by this constraint. If two constraints match a given selection, a constraint may override another one. In such a case, the overridden constraint's displayUnit won't be displayed. This property is dedicated to manual resolution of constraints : the Constraint classes may also implement an automatic resolution of conflicts" />
				<properties name="overrideable" type="Boolean"
					description="If set to false, this constraint cannot be automatically overridden by other constraints. Only constraints which explicitly specify they need to override this constraint (Through the &quot;overriddenConstraints&quot; property) will be able to disable it." />
			</elements>
			<elements name="ConfigProperty">
				<properties name="name" description="The name of the property" />
			</elements>
			<elements name="ValueProperty" supertypes="//@dataContexts.0/@elements.1/@elements.11">
				<properties name="value" description="The value of the property" />
			</elements>
			<elements name="ReferenceProperty" supertypes="//@dataContexts.0/@elements.1/@elements.11">
				<properties name="value" label="" type="Reference"
					description="The value of the property" />
			</elements>
			<elements name="CompositeConstraint" supertypes="//@dataContexts.0/@elements.1/@elements.10">
				<properties name="constraints" type="Reference"
					multiplicity="-1"
					description="The sub-constraints owned by this composite constraint. The composite constraint is matched if and only if all its sub-constraints are matched." />
			</elements>
			<elements name="SimpleConstraint" supertypes="//@dataContexts.0/@elements.1/@elements.10">
				<properties name="constraintType" type="Reference"
					description="The type of this constraint" />
				<properties name="properties" label="" type="Reference"
					multiplicity="-1"
					description="The list of properties used to instantiate this constraint (key - value pairs)" />
			</elements>
		</elements>
		<elements xsi:type="contexts:DataContextPackage" name="ui">
			<elements name="Element" />
			<elements name="UIComponent" supertypes="//@dataContexts.0/@elements.2/@elements.0">
				<properties name="attributes" type="Reference"
					multiplicity="-1"
					description="The attributes used to instantiate this element. Set of key - value pairs." />
			</elements>
			<elements name="Widget" supertypes="//@dataContexts.0/@elements.2/@elements.1" />
			<elements name="StandardWidget" supertypes="//@dataContexts.0/@elements.2/@elements.2">
				<properties name="widgetType" type="Reference"
					description="The type of this widget" />
			</elements>
			<elements name="PropertyEditor" supertypes="//@dataContexts.0/@elements.2/@elements.2">
				<properties name="property" type="Reference"
					description="The property that this editor will edit" />
				<properties name="readOnly" type="Boolean"
					description="Indicates if this editor should be read-only. Note that in some cases, the read only state may be applied at runtime, independently of this field's value" />
				<properties name="widgetType" type="Reference"
					description="The type of this widget" />
				<properties name="showLabel" type="Boolean"
					description="If set to false, the property editor's label won't be displayed" />
				<properties name="customLabel" label="Custom label"
					description="Defines a custom label for this editor. The custom label will replace the property's default label (Only for this property editor)" />
			</elements>
			<elements name="CompositeWidget" supertypes="//@dataContexts.0/@elements.2/@elements.2">
				<properties name="layout" type="Reference"
					description="The layout of this widget" />
				<properties name="widgets" type="Reference" multiplicity="-1"
					description="The widgets directly contained into this Composite" />
				<properties name="widgetType" type="Reference"
					description="The type of this Composite widget." />
			</elements>
			<elements name="Layout" supertypes="//@dataContexts.0/@elements.2/@elements.1">
				<properties name="layoutType" label="" type="Reference"
					description="The type of this Layout" />
			</elements>
			<elements name="WidgetAttribute" supertypes="//@dataContexts.0/@elements.2/@elements.0">
				<properties name="name" description="The name of the attribute" />
			</elements>
			<elements name="ValueAttribute" supertypes="//@dataContexts.0/@elements.2/@elements.7">
				<properties name="value" description="The litteral value of this attribute" />
			</elements>
			<elements name="ReferenceAttribute" supertypes="//@dataContexts.0/@elements.2/@elements.7">
				<properties name="value" type="Reference"
					description="The value of this attribute" />
			</elements>
			<elements name="UnknownComponent" supertypes="//@dataContexts.0/@elements.2/@elements.2">
				<properties name="typeName"
					description="The fully-qualified name of this element" />
			</elements>
		</elements>
		<modelElementFactory
			href="ppe:/environment/org.eclipse.papyrus.customization.properties/Model/CustomizationEnvironment.xmi#//@modelElementFactories.2" />
	</dataContexts>
	<dataContexts name="Custom" label="Custom">
		<elements xsi:type="contexts:DataContextPackage" name="Attribute">
			<elements name="GridLayout">
				<properties name="numColumns" label="" type="Integer"
					description="The number of columns of this layout" />
				<properties name="makeColumnsEqualWidth"
					description="Indicates if all columns should have the same width" />
			</elements>
			<elements name="Group">
				<properties name="text" description="The label of this Group container" />
			</elements>
			<elements name="Text">
				<properties name="text" description="The text to display" />
			</elements>
			<elements name="Label">
				<properties name="text" label="Text" description="The text to display" />
			</elements>
			<elements name="BooleanToggle">
				<properties name="image" label="Image" />
			</elements>
			<elements name="FileSelector">
				<properties name="allowWorkspace" />
				<properties name="allowFileSystem" />
				<properties name="filteredExtension" />
			</elements>
			<elements name="IntegerSpinner">
				<properties name="minimum" label=""
					description="The minimum value that this spinner can return" />
				<properties name="maximum"
					description="The maximum value that this spinner can return" />
				<properties name="increment" description="The increment value for this spinner" />
			</elements>
		</elements>
		<modelElementFactory
			href="ppe:/environment/org.eclipse.papyrus.customization.properties/Model/CustomizationEnvironment.xmi#//@modelElementFactories.0" />
	</dataContexts>
	<dataContexts name="Properties" label="Properties">
		<elements name="EcoreInstanceOf">
			<properties name="className" label="Class Name"
				description="The name of the Class" />
			<properties name="nsUri" label="NS URI"
				description="The namespace URI (NsURI) of the EPackage containing the Class" />
		</elements>
		<elements name="UMLInstanceOf">
			<properties name="umlClassName" label="UML Class name"
				description="The name of the UML Metaclass" />
		</elements>
		<elements name="OCLQuery">
			<properties name="query" label="Query" type="Reference"
				description="The EMF Query" />
		</elements>
		<elements name="Stereotype">
			<properties name="stereotypeName" label="Stereotype name"
				description="The fully qualified name of the Stereotype. The separator is &quot;::&quot;. For example : MyProfile::MyPackage::MyStereotype" />
		</elements>
		<modelElementFactory
			href="ppe:/environment/org.eclipse.papyrus.customization.properties/Model/CustomizationEnvironment.xmi#//@modelElementFactories.1" />
	</dataContexts>
</contexts:Context>

Back to the top