Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 605b74c4d656e42ffb326d54e8cccf4030d071c7 (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
/*****************************************************************************
 * Copyright (c) 2016 CEA LIST.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
 *****************************************************************************/
 
import Rhapsody2PapyrusSemanticElements;
import RhapsodyUtils;
import SysMLRhapsodyUtils;
import RhapsodyToPapyrusDiagamCommon;
import org.eclipse.papyrus.migration.rhapsody.blackboxes.Rhapsody2PapyrusNotationBlackboxes;

modeltype umlrhapsody "strict" uses 'http://www.eclipse.org/Papyrus/UMLRhapsody/1.0.0';
modeltype notation "strict" uses 'http://www.eclipse.org/gmf/runtime/1.0.2/notation';
modeltype uml "strict" uses 'http://www.eclipse.org/uml2/5.0.0/UML';
modeltype sysml11 "strict" uses 'http://www.eclipse.org/papyrus/0.7.0/SysML';
modeltype ecore "strict" uses 'http://www.eclipse.org/emf/2002/Ecore';
modeltype sash "strict" uses 'http://www.eclipse.org/papyrus/0.7.0/sashdi';
modeltype UMLPrimitivesTypes "strict" uses 'http://www.eclipse.org/uml2/5.0.0/Types' ;



transformation SysML11BlockDefinitionDiagram(in semantics : umlrhapsody, out graphics : notation, inout model:uml ,in Sysml11Profile:sysml11, in primitives:UMLPrimitivesTypes) 
access transformation Rhapsody2PapyrusSemanticElements(in inModel:umlrhapsody, out outModel:uml, in primitives:UMLPrimitivesTypes) 
extends Rhapsody2PapyrusSemanticElements(in inModel:umlrhapsody, out outModel:uml, in primitives:UMLPrimitivesTypes)
{
	//TODO : maybe we should have a transform method here
}

mapping rhapsodymetamodel::IDiagram::iDiagramToSysML11BlockDefinitionDiagram(rpyProject:IProject):Diagram when{self.isUserModelDiagram() and self.isSysMLBlockDefinitionDiagram()}{
	//1. creating the diagram object
	init {
		//we are looking for the owner of the diagram
		
		//TODO : check the owner part!
		//TODO : don't use the default subsystem
		var subsystem: ISubsystem:= semantics.rootObjects()[IProject].defaultSubsystem![ISubsystem]; //TODO : could probably be replaced by the owner of the IDiagram (like done for StateMachine)
		var owner:EObject:= subsystem.oclAsType(DefaultSubsystemType).resolveIn (umlrhapsody::DefaultSubsystemType::iDefaultSubsystemTypeToPackage, uml::Package)![EObject];
		
		var iDiagramOwner:ecore::EObject:=self[EObject].eContainer()![EObject];
		if(iDiagramOwner.oclIsKindOf(umlrhapsody::IClass)){
			owner:= iDiagramOwner.resolveIn(umlrhapsody::IClass::toUMLElement, uml::Element)![EObject];
		};
		//TODO : check owner and owner!
		result:=self.map createAndInitDiagram(rpyProject,getPapyrusDiagramType(), owner, owner);
	}	
	
	//1. find some objects
	var cgiClassChart:CGIClassChart:=self.graphicChart->oclAsSet().selectByType(CGIClassChart)->any(true);
	var cgiClass:CGIClass:=cgiClassChart.graphElements->selectByType(CGIClass)->any(true);
	var cgiDiagramFrame:CGIDiagramFrame:=cgiClassChart.graphElements->selectByType(CGIDiagramFrame)->any(true);
	
	
	children:= self.graphicChart.graphElements.map toSysML11BlockDefinitionDiagramShape(cgiClassChart, cgiClass->asSequence());
	edges:=self.graphicChart.graphElements.map toSysML11BlockDefinitionDiagramEdge();
	
}

/**
* Returns the type of the diagram to create
*/
query getPapyrusDiagramType():String{
	return 'BlockDefinition';
};


mapping GraphElementsType::toLayoutConstraint() : Bounds
{

if (self.oclIsTypeOf(CGIState) )
{
if (not (self[CGIState].m_transform.oclIsUndefined()->any(true)) and self[CGIState].m_transform->size()>5)
{
	var x:String :=self![CGIState].m_transform->at(5);
	var y:String :=self![CGIState].m_transform->at(6);

if (x.asInteger().oclIsUndefined() or x.asInteger().oclIsInvalid())
{
	result.x:=x.asFloat().round();

}
else 
{	
	result.x:=x.asInteger();
	
};
if (y.asInteger().oclIsUndefined() or y.asInteger().oclIsInvalid())
{
	
	result.y:=y.asFloat().round();
}
else 
{	
	
	result.y:=y.asInteger();
};
	var mtransform:List(String):= self![CGIState].m_transform->asList();
	var mpolygon:List(String):= self![CGIState].m_polygon->asList();
	result.height:=getStateHeight(mpolygon, mtransform).oclAsType(Integer);
	result.width:=getStateWidth(mpolygon, mtransform).oclAsType(Integer);

if ( not (self[CGIState].m_pParent.oclIsUndefined()->any(true)))
{
if (not (self[CGIState].m_pParent![CGIState].m_transform.oclIsUndefined()->any(true)) and self[CGIState].m_pParent![CGIState].m_transform->size()>5)
{
var xratio:String :=self[CGIState].m_pParent![CGIState].m_transform->at(1);
var yratio:String :=self![CGIState].m_transform->at(4);
var xration:Float :=xratio.asFloat();
var yration:Float :=yratio.asFloat();
result.x:=(result.x * xration).round();
result.y:=(result.y * yration).round();
result.width:=(result.width * xration).round();
result.height:=(result.height *yration).round();
}
}
}
elif (self[CGIState].m_type![String].equalsIgnoreCase("5"))
{
// do not specify the location for pseudo state
	//result.x:=18;
	//result.y:=9;
}
}
else if ( self.oclIsTypeOf(CGIClass))
{
if ( (not (self[CGIClass].m_transform.oclIsUndefined()->any(true)) and self[CGIClass].m_transform->size()>5))
{
var x:String :=self![CGIClass].m_transform->at(5);
var y:String :=self![CGIClass].m_transform->at(6);
var astypeX:Integer := x.oclAsType(Integer);
var astypeY:Integer := y.oclAsType(Integer);
if (x.asInteger().oclIsUndefined() or x.asInteger().oclIsInvalid())
{
	result.x:=x.asFloat().round();

}
else 
{	
	result.x:=x.asInteger();
	
};
if (y.asInteger().oclIsUndefined() or y.asInteger().oclIsInvalid())
{
	
	result.y:=y.asFloat().round();
}
else 
{	
	
	result.y:=y.asInteger();
};
	var mtransform:List(String):= self![CGIClass].m_transform->asList();
	var mpolygon:List(String):= self![CGIClass].m_polygon->asList();
	result.height:=getStateHeight(mpolygon, mtransform).oclAsType(Integer);
	result.width:=getStateWidth(mpolygon, mtransform).oclAsType(Integer);
}
	
}
}

//TODO--------------------------------------- rewrite me!

mapping Sequence(String)::toLayoutConstraints() : Bounds
{
if (self->size()>5)
{
	var num:String :=self->at(4);
	var num2:String :=self->at(1);
	result.x:=self->at(5).asInteger();
	result.y:=self->at(6).asInteger();
	
	var h:Real:=num.asFloat()*1233;
	var w:Real:=num2.asFloat()*1058;
	result.height:=h.round().oclAsType(Integer);
	result.width:=w.round().oclAsType(Integer);
}

}

mapping umlrhapsody::GraphElementsType::toDecorationNode(): notation::DecorationNode {


type:= 
		if self.oclIsTypeOf(CGIClass) then '5029' 
		elif (self.oclIsTypeOf(CGIState) and self[CGIState].m_type![String].equalsIgnoreCase("8")) then '6001' 
		elif (self.oclIsTypeOf(CGIState) and self[CGIState].m_type![String].equalsIgnoreCase("5")) then '8001'
		endif;
		if  (self.oclIsTypeOf(CGIState) )
		{
			if  (self[CGIState].m_type![String].equalsIgnoreCase("8"))
			
				layoutConstraint:= object Bounds
				{
					//	width:=63;
				}
			elif (self[CGIState].m_type![String].equalsIgnoreCase("5"))
			{
			// for the pseudo state
				layoutConstraint:= object Location
				{
						//x:=25;
						//y:=3;
				}
			}
		}
}

/**
*
* This mapping allows to create all views in a Papyrus SysML 1.1 BDD according to the Rhapsody Model
* @param
*		cgiClassChart : the class chart of the diagram, it is useful to find child to create for the created element
* @param
* 		rpyAllowedParent : the list of the allowed Rhapsody parent to manage the object.
*		if the Rhapsody parent is not in this list, the object won't be mapped
*/
mapping umlrhapsody::GraphElementsType::toSysML11BlockDefinitionDiagramShape(cgiClassChart:CGIClassChart, rpyAllowedParent:Sequence(GraphElementsType)) : Shape 
	disjuncts 
	umlrhapsody::CGIGenericElement::toSysML11BDDDataTypeShape, //TODO split with value type
	umlrhapsody::CGIGenericElement::toSysML11BDDUnitShape,
	umlrhapsody::CGIGenericElement::toSysML11BDDDimensionShape,
	umlrhapsody::CGIGenericElement::toSysML11BDDEnumerationShape,
	umlrhapsody::CGIGenericElement::toSysML11BDDBlockShape,
	umlrhapsody::CGIClass::toSysML11BDDBlockShape,
	umlrhapsody::CGIClass::toSysML11BDDConstraintBlockShape,
	umlrhapsody::CGIClass::toSysML11BDDFlowSpecificationShape,
	umlrhapsody::CGIBasicClass::toSysML11BDDActorShape,
	umlrhapsody::CGIPackage::toSysML11BDDPackageShape, 
	umlrhapsody::CGIGenericElement::toSysML11BDDSignalShape
	{}
	
mapping umlrhapsody::GraphElementsType::toSysML11BlockDefinitionDiagramEdge() : Edge 
	disjuncts 
	umlrhapsody::CGIAssociationEnd::toSysML11BDDAssociationEdge
	{}
	
/**
* This mapping creates the Block Shape with its compartment and their children
*/	
mapping umlrhapsody::CGIGenericElement::toSysML11BDDBlockShape(cgiClassChart:CGIClassChart, rpyAllowedParent:Sequence(GraphElementsType)) : Shape when {self.m_pModelObject.oclIsKindOf(IType) and self.m_pModelObject.oclAsType(IType).isUMLClass() and self.m_pParent.oclIsKindOf(GraphElementsType) and rpyAllowedParent->includes(self.m_pParent.oclAsType(GraphElementsType))}{
	type:="shape_sysml_block_as_classifier";
	element := self.m_pModelObject.resolveone().oclAsType(EObject);
	var decorationNode:notation::DecorationNode:= object DecorationNode{type:="label_sysml_block_name"};
	children+=decorationNode;
	var sysmlPropertyCompartment:=self.map toListCompartment("compartment_sysml_property_as_list", "Attribute");
	sysmlPropertyCompartment.children+=self.map toSysML11BDDBlockPropertyNode();//TODO : add check to distinghuish properties, from port, part, reference,  ...
	//TODO : do the mapping ofr all others children
	var sysmlPartCompartment:=self.map toListCompartment("compartment_sysml_part_as_list", null);
	var sysmlReferenceCompartment:=self.map toListCompartment("compartment_sysml_reference_as_list", null);
	var umlPortCompartment:=self.map toListCompartment("compartment_uml_port_as_list", null);
	var sysmlFlowportCompartment:=self.map toListCompartment("compartment_sysml_flowport_as_list", null);
	var umlOperationCompartment:=self.map toListCompartment("compartment_uml_operation_as_list", null);
	var sysmlContraintCompartment:=self.map toListCompartment("compartment_sysml_constraint_as_list", null);
	var sysmlValueCompartment:=self.map toListCompartment("compartment_sysml_value_as_list", null);
	children+= sysmlPropertyCompartment;
	children+= sysmlPartCompartment;
	children+= sysmlReferenceCompartment;
	children+= umlPortCompartment;
	children+= sysmlFlowportCompartment;
	children+= umlOperationCompartment;
	children+= sysmlContraintCompartment;
	children+= sysmlValueCompartment;
	
	layoutConstraint:= object Bounds{ x:=getX(self); y:=getY(self); width :=getRectangleWidth(self); height := getRectangleHeight(self)};
}

//TODO merge me with the previous one
/**
* This mapping creates the Block Shape with its compartment and their children
*/	
mapping umlrhapsody::CGIClass::toSysML11BDDBlockShape(cgiClassChart:CGIClassChart, rpyAllowedParent:Sequence(GraphElementsType)) : Shape when {self.oclIsTypeOf(CGIClass) and self.m_pParent<>null and  self.m_pModelObject.oclIsTypeOf(IClass) and not (self.m_pModelObject.oclAsType(IClass).isSysMLFlowSpecification() or self.m_pModelObject.oclAsType(IClass).isSysMLConstraintBlock()) and self.m_pParent.oclIsKindOf(GraphElementsType) and rpyAllowedParent->includes(self.m_pParent.oclAsType(GraphElementsType))}{
	var res:Boolean= self.m_pModelObject.oclIsTypeOf(IClass);

	type:="shape_sysml_block_as_classifier";
	element := self.m_pModelObject.resolveone().oclAsType(EObject);
	var decorationNode:notation::DecorationNode:= object DecorationNode{type:="label_sysml_block_name"};
	children+=decorationNode;
	var sysmlPropertyCompartment:=self.map toListCompartment("compartment_sysml_property_as_list", "Attribute");
	sysmlPropertyCompartment.children+=self.map toSysML11BDDBlockPropertyNode();//TODO : add check to distinghuish properties, from port, part, reference,  ...
	//TODO : do the mapping ofr all others children
	var sysmlPartCompartment:=self.map toListCompartment("compartment_sysml_part_as_list", null);
	var sysmlReferenceCompartment:=self.map toListCompartment("compartment_sysml_reference_as_list", null);
	var umlPortCompartment:=self.map toListCompartment("compartment_uml_port_as_list", null);
	var sysmlFlowportCompartment:=self.map toListCompartment("compartment_sysml_flowport_as_list", null);
	var umlOperationCompartment:=self.map toListCompartment("compartment_uml_operation_as_list", "Operation");
	var sysmlContraintCompartment:=self.map toListCompartment("compartment_sysml_constraint_as_list", null);
	var sysmlValueCompartment:=self.map toListCompartment("compartment_sysml_value_as_list", null);
	children+= sysmlPropertyCompartment;
	children+= sysmlPartCompartment;
	children+= sysmlReferenceCompartment;
	children+= umlPortCompartment;
	children+= sysmlFlowportCompartment;
	children+= umlOperationCompartment;
	children+= sysmlContraintCompartment;
	children+= sysmlValueCompartment;
	
	layoutConstraint:= object Bounds{ x:=getX(self); y:=getY(self); width :=getRectangleWidth(self); height := getRectangleHeight(self)};
}

/**
* This mapping creates the Block Shape with its compartment and their children
*/	
//TODO : merge me with previous one ?
mapping umlrhapsody::CGIClass::toSysML11BDDConstraintBlockShape(cgiClassChart:CGIClassChart, rpyAllowedParent:Sequence(GraphElementsType)) : Shape when {self.oclIsTypeOf(CGIClass) and self.m_pParent<>null and self.m_pModelObject.oclIsTypeOf(IClass) and self.m_pModelObject.oclAsType(IClass).isSysMLConstraintBlock() and self.m_pParent.oclIsKindOf(GraphElementsType) and rpyAllowedParent->includes(self.m_pParent.oclAsType(GraphElementsType))}{

// <children xmi:type="notation:Shape" xmi:id="_Mr2uIIlmEeaNf9-vLHMoKw" type="shape_sysml_flowspecification_as_classifier">
//    <children xmi:type="notation:DecorationNode" xmi:id="_Mr3VMIlmEeaNf9-vLHMoKw" type="label_sysml_flowspecification_name"/>
//    <children xmi:type="notation:ListCompartment" xmi:id="_Mr3VMYlmEeaNf9-vLHMoKw" type="compartment_sysml_flowproperty_as_list">
//      <styles xmi:type="notation:DrawerStyle" xmi:id="_Mr3VMolmEeaNf9-vLHMoKw"/>
//      <styles xmi:type="notation:TitleStyle" xmi:id="_Mr3VM4lmEeaNf9-vLHMoKw"/>
//      <styles xmi:type="notation:SortingStyle" xmi:id="_Mr3VNIlmEeaNf9-vLHMoKw"/>
//      <styles xmi:type="notation:FilteringStyle" xmi:id="_Mr3VNYlmEeaNf9-vLHMoKw"/>
//    </children>
//    <element xmi:type="uml:Interface" href="model.uml#_MpVloIlmEeaNf9-vLHMoKw"/>
//    <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Mr2uIYlmEeaNf9-vLHMoKw" x="89" y="90" width="327" height="226"/>
//  </children>

	//TODO : I probably forgot several compartment for this usecase!
	type:="shape_sysml_constraintblock_as_classifier";
	element := self.m_pModelObject.resolveone().oclAsType(EObject);
	
	var decorationNode:notation::DecorationNode:= object DecorationNode{type:="label_sysml_constraintblock_name"};
	children+=decorationNode;
	var sysmlParameterCompartment:=self.map toListCompartment("compartment_sysml_parameter_as_list", "ConstraintParameter");
	sysmlParameterCompartment.children+=self.map toSysML11BDDConstraintParameterNode("ConstraintParameter");//TODO : add check to distinghuish properties, from port, part, reference,  ...
	var sysmlPropertyCompartment:=self.map toListCompartment("compartment_sysml_constraint_as_list", "Constraint");
//	sysmlPropertyCompartment.children+=self.map toSysML11BDDBlockPropertyNode();//TODO : add check to distinghuish properties, from port, part, reference,  ...
	//TODO : do the mapping ofr all others children
//	var sysmlPartCompartment:=self.map toListCompartment("compartment_sysml_part_as_list", null);
//	var sysmlReferenceCompartment:=self.map toListCompartment("compartment_sysml_reference_as_list", null);
//	var umlPortCompartment:=self.map toListCompartment("compartment_uml_port_as_list", null);
//	var sysmlFlowportCompartment:=self.map toListCompartment("compartment_sysml_flowport_as_list", null);
//	var umlOperationCompartment:=self.map toListCompartment("compartment_uml_operation_as_list", null);
//	var sysmlContraintCompartment:=self.map toListCompartment("compartment_sysml_constraint_as_list", null);
//	var sysmlValueCompartment:=self.map toListCompartment("compartment_sysml_value_as_list", null);
	children+= sysmlParameterCompartment;
	children+= sysmlPropertyCompartment;
//	children+= sysmlPartCompartment;
//	children+= sysmlReferenceCompartment;
//	children+= umlPortCompartment;
//	children+= sysmlFlowportCompartment;
//	children+= umlOperationCompartment;
//	children+= sysmlContraintCompartment;
//	children+= sysmlValueCompartment;
	
	layoutConstraint:= object Bounds{ x:=getX(self); y:=getY(self); width :=getRectangleWidth(self); height := getRectangleHeight(self)};
}


/**
* This mapping creates the Block Shape with its compartment and their children
*/	
//TODO : merge me with previous one ?
mapping umlrhapsody::CGIClass::toSysML11BDDFlowSpecificationShape(cgiClassChart:CGIClassChart, rpyAllowedParent:Sequence(GraphElementsType)) : Shape when {self.oclIsTypeOf(CGIClass) and self.m_pParent<>null and self.m_pModelObject.oclIsTypeOf(IClass) and self.m_pModelObject.oclAsType(IClass).isSysMLFlowSpecification() and self.m_pParent.oclIsKindOf(GraphElementsType) and rpyAllowedParent->includes(self.m_pParent.oclAsType(GraphElementsType))}{

// <children xmi:type="notation:Shape" xmi:id="_Mr2uIIlmEeaNf9-vLHMoKw" type="shape_sysml_flowspecification_as_classifier">
//    <children xmi:type="notation:DecorationNode" xmi:id="_Mr3VMIlmEeaNf9-vLHMoKw" type="label_sysml_flowspecification_name"/>
//    <children xmi:type="notation:ListCompartment" xmi:id="_Mr3VMYlmEeaNf9-vLHMoKw" type="compartment_sysml_flowproperty_as_list">
//      <styles xmi:type="notation:DrawerStyle" xmi:id="_Mr3VMolmEeaNf9-vLHMoKw"/>
//      <styles xmi:type="notation:TitleStyle" xmi:id="_Mr3VM4lmEeaNf9-vLHMoKw"/>
//      <styles xmi:type="notation:SortingStyle" xmi:id="_Mr3VNIlmEeaNf9-vLHMoKw"/>
//      <styles xmi:type="notation:FilteringStyle" xmi:id="_Mr3VNYlmEeaNf9-vLHMoKw"/>
//    </children>
//    <element xmi:type="uml:Interface" href="model.uml#_MpVloIlmEeaNf9-vLHMoKw"/>
//    <layoutConstraint xmi:type="notation:Bounds" xmi:id="_Mr2uIYlmEeaNf9-vLHMoKw" x="89" y="90" width="327" height="226"/>
//  </children>
	type:="shape_sysml_flowspecification_as_classifier";
	element := self.m_pModelObject.resolveone().oclAsType(EObject);
	var decorationNode:notation::DecorationNode:= object DecorationNode{type:="label_sysml_flowspecification_name"};
	children+=decorationNode;
	var sysmlPropertyCompartment:=self.map toListCompartment("compartment_sysml_flowproperty_as_list", "FlowProperty");
	sysmlPropertyCompartment.children+=self.map toSysML11BDDFlowPropertyNode("FlowProperty");//TODO : add check to distinghuish properties, from port, part, reference,  ...
	//TODO : do the mapping ofr all others children
//	var sysmlPartCompartment:=self.map toListCompartment("compartment_sysml_part_as_list", null);
//	var sysmlReferenceCompartment:=self.map toListCompartment("compartment_sysml_reference_as_list", null);
//	var umlPortCompartment:=self.map toListCompartment("compartment_uml_port_as_list", null);
//	var sysmlFlowportCompartment:=self.map toListCompartment("compartment_sysml_flowport_as_list", null);
//	var umlOperationCompartment:=self.map toListCompartment("compartment_uml_operation_as_list", null);
//	var sysmlContraintCompartment:=self.map toListCompartment("compartment_sysml_constraint_as_list", null);
//	var sysmlValueCompartment:=self.map toListCompartment("compartment_sysml_value_as_list", null);
	children+= sysmlPropertyCompartment;
//	children+= sysmlPartCompartment;
//	children+= sysmlReferenceCompartment;
//	children+= umlPortCompartment;
//	children+= sysmlFlowportCompartment;
//	children+= umlOperationCompartment;
//	children+= sysmlContraintCompartment;
//	children+= sysmlValueCompartment;
	
	layoutConstraint:= object Bounds{ x:=getX(self); y:=getY(self); width :=getRectangleWidth(self); height := getRectangleHeight(self)};
}

mapping umlrhapsody::CGIGenericElement::toSysML11BDDUnitShape(cgiClassChart:CGIClassChart, rpyAllowedParent:Sequence(GraphElementsType)) : Shape when {self.m_pModelObject.oclIsKindOf(IType) and self.m_pModelObject.oclAsType(IType).isUMLInstanceSpecification() and self.m_pModelObject.oclAsType(IType).isSysMLUnit() and self.m_pParent.oclIsKindOf(GraphElementsType) and rpyAllowedParent->includes(self.m_pParent.oclAsType(GraphElementsType))}{
	type:="shape_sysml_unit_as_classifier";
	element := self.m_pModelObject.resolveone().oclAsType(EObject);
	var decorationNode:notation::DecorationNode:= object DecorationNode{type:="label_sysml_unit_name"};
	children+=decorationNode;
	//TODO : add compartment as hidden
	layoutConstraint:= object Bounds{ x:=getX(self); y:=getY(self); width :=getRectangleWidth(self); height := getRectangleHeight(self)};
}
mapping umlrhapsody::CGIGenericElement::toSysML11BDDDimensionShape(cgiClassChart:CGIClassChart, rpyAllowedParent:Sequence(GraphElementsType)) : Shape when {self.m_pModelObject.oclIsKindOf(IType) and self.m_pModelObject.oclAsType(IType).isUMLInstanceSpecification() and self.m_pModelObject.oclAsType(IType).isSysMLDimension() and self.m_pParent.oclIsKindOf(GraphElementsType) and rpyAllowedParent->includes(self.m_pParent.oclAsType(GraphElementsType))}{
	type:="shape_sysml_dimension_as_classifier";
	element := self.m_pModelObject.resolveone().oclAsType(EObject);
	var decorationNode:notation::DecorationNode:= object DecorationNode{type:="label_sysml_dimension_name"};
	children+=decorationNode;
	//TODO : add compartment as hidden
	layoutConstraint:= object Bounds{ x:=getX(self); y:=getY(self); width :=getRectangleWidth(self); height := getRectangleHeight(self)};
}

//TODO : check compartment of all created elements
//TODO : create comment link and other stuff to dispay stereotype in diagram
/**
* map the Rhapsody enumeration representation to the Papyrus Enumeration
*/
mapping umlrhapsody::CGIGenericElement::toSysML11BDDEnumerationShape(cgiClassChart:CGIClassChart, rpyAllowedParent:Sequence(GraphElementsType)) : Shape when {self.m_pModelObject.oclIsKindOf(IType) and self.m_pModelObject.oclAsType(IType).isUMLEnumeration() and self.m_pParent.oclIsKindOf(GraphElementsType) and rpyAllowedParent->includes(self.m_pParent.oclAsType(GraphElementsType))}{
	type:="shape_uml_enumeration_as_classifier";
	element := self.m_pModelObject.resolveone().oclAsType(EObject);
	var decorationNode:notation::DecorationNode:= object DecorationNode{type:="label_uml_namedelement_name"};
	children+=decorationNode;
	var enumLiteralCompartment:=self.map toListCompartment("compartment_uml_enumerationliteral_as_list", "EnumerationLiteral");
	enumLiteralCompartment.children+=self.map toSysML11BDDEnumerationLiteralNode();
	children+=enumLiteralCompartment;
	layoutConstraint:= object Bounds{ x:=getX(self); y:=getY(self); width :=getRectangleWidth(self); height := getRectangleHeight(self)};
}

mapping umlrhapsody::CGIGenericElement::toSysML11BDDDataTypeShape(cgiClassChart:CGIClassChart, rpyAllowedParent:Sequence(GraphElementsType)) : Shape when {self.m_pModelObject.oclIsKindOf(IType) and self.m_pModelObject.oclAsType(IType).isUMLDataType() and self.m_pParent.oclIsKindOf(GraphElementsType) and rpyAllowedParent->includes(self.m_pParent.oclAsType(GraphElementsType))}{
	type:="shape_uml_datatype_as_classifier";
	element := self.m_pModelObject.resolveone().oclAsType(EObject);
	var decorationNode:notation::DecorationNode:= object DecorationNode{type:="label_uml_namedelement_name"};
	children+=decorationNode;
	var propertyCompartment:=self.map toListCompartment("compartment_uml_property_as_list", null);
	var operationCompartment:=self.map toListCompartment("compartment_uml_operation_as_list", null);
	children+=propertyCompartment;
	children+=operationCompartment;
    layoutConstraint:= object Bounds{ x:=getX(self); y:=getY(self); width :=getRectangleWidth(self); height := getRectangleHeight(self)};
}

/**
* Create all View to represent wanted the EnumerationLiteral
*/
mapping CGIGenericElement::toSysML11BDDEnumerationLiteralNode() : OrderedSet(Node){
init{
	var isExplicit:boolean:=self.Compartments[CGICompartment].m_displayOption->includes("Explicit");
	var isAll:boolean:=self.Compartments[CGICompartment].m_displayOption->includes("All");
	var isPublic:boolean:=self.Compartments[CGICompartment].m_displayOption->includes("Public"); //IEnumrationLiteral can't be set as public or others
	if(isAll or isPublic){
		//in this case nothing is serialized in rhapsody file, so we create all view from the literal views
		//we can't use a mapping method because when EnumerationLiteral are represented several time on the same diagram,we will call the same mapping for the same element
		//and in this case, QVTO call the mapping only the first time and return directly the result the next time without creating new object!
		self.m_pModelObject.oclAsType(IType).Literals->forEach(lit){
				result+= lit.oclAsType(IEnumerationLiteral).toSysML11BDDEnumerationLiteralNode();
		};
	}elif(isExplicit){
			self.Compartments[CGICompartment].Items->forEach(lit){
					result+= lit.oclAsType(IEnumerationLiteral).toSysML11BDDEnumerationLiteralNode();
			};
		};	
	}
}

/**
* Create all View to represent wanted the SysML Properties
*/
mapping CGIGenericElement::toSysML11BDDBlockPropertyNode() : OrderedSet(Node){
init{
	var isExplicit:boolean:=self.Compartments[CGICompartment].m_displayOption->includes("Explicit");
	var isAll:boolean:=self.Compartments[CGICompartment].m_displayOption->includes("All");
	var isPublic:boolean:=self.Compartments[CGICompartment].m_displayOption->includes("Public"); //IEnumrationLiteral can't be set as public or others
	if(isAll or isPublic){ //TODO checlk in Rhapsody that for block : isAll or Public is equals? !
		//in this case nothing is serialized in rhapsody file, so we create all view from the literal views
		//we can't use a mapping method because when EnumerationLiteral are represented several time on the same diagram,we will call the same mapping for the same element
		//and in this case, QVTO call the mapping only the first time and return directly the result the next time without creating new object!
		self.m_pModelObject.oclAsType(IType).Attrs->forEach(attr){
				result+= attr.oclAsType(IAttribute).toSysML11BDDBlockPropertyNode();
		};
	}elif(isExplicit){
			self.Compartments[CGICompartment].Items->forEach(attr){
					result+= attr.oclAsType(IAttribute).toSysML11BDDBlockPropertyNode();
			};
		};	
	}
}



/**
* Create all View to represent wanted the SysML Properties
*/
//TODO : merge me with the previous one
mapping CGIClass::toSysML11BDDBlockPropertyNode() : OrderedSet(Node){ //TODO : the CGI comparmtent must probably be a parameter!
init{
	var isExplicit:boolean:=self.Compartments[CGICompartment].m_displayOption->includes("Explicit");
	var isAll:boolean:=self.Compartments[CGICompartment].m_displayOption->includes("All");
	var isPublic:boolean:=self.Compartments[CGICompartment].m_displayOption->includes("Public"); //IEnumrationLiteral can't be set as public or others
	if(isAll or isPublic){ //TODO checlk in Rhapsody that for block : isAll or Public is equals? !
		//in this case nothing is serialized in rhapsody file, so we create all view from the literal views
		//we can't use a mapping method because when EnumerationLiteral are represented several time on the same diagram,we will call the same mapping for the same element
		//and in this case, QVTO call the mapping only the first time and return directly the result the next time without creating new object!
		self.m_pModelObject.oclAsType(IType).Attrs->forEach(attr){
				result+= attr.oclAsType(IAttribute).toSysML11BDDBlockPropertyNode();
		};
	}elif(isExplicit){
			self.Compartments[CGICompartment].Items->forEach(attr){
					result+= attr.oclAsType(IAttribute).toSysML11BDDBlockPropertyNode();
			};
		};	
	}
}

/**
* This query create the Node View for a given SysML Property
*/
query umlrhapsody::IAttribute::toSysML11BDDBlockPropertyNode() : Node{
	return object Node{
		element:=self.resolveoneIn(umlrhapsody::IVariable::iVariableToUMLElement).oclAsType(EObject);
		type:="shape_uml_property_as_label";
		styles:= object ShapeStyle{};
		layoutConstraint:= object Location{};
	};
}

/**
* This query create the Node View for a given SysML Property
*/
//TODO : merge me with previous one
query umlrhapsody::IRelation::toSysML11BDDBlockConstraintNode() : Node{
	return object Node{
		element:=self.resolveoneIn(umlrhapsody::IRelation::iRelationToUMLElement).oclAsType(EObject);
		type:="shape_uml_property_as_label";
		styles:= object ShapeStyle{};
		layoutConstraint:= object Location{};
	};
}

//TODO : merge me with previous one
query umlrhapsody::IAttribute::toSysML11BDDFlowPorpertyNode() : Node{
	return object Node{
		element:=self.resolveoneIn(umlrhapsody::IVariable::iVariableToUMLElement).oclAsType(EObject);
		type:="shape_sysml_flowproperty_as_label";
		styles:= object ShapeStyle{};
		layoutConstraint:= object Location{};
	};
}

mapping CGIClass::toSysML11BDDFlowPropertyNode(rpyCptName:String) : OrderedSet(Node) when {self.m_pModelObject.oclIsTypeOf(IClass) and self.m_pModelObject.oclAsType(IClass).isSysMLFlowSpecification()}{
init{
	//TODO add a check for <>null for this compartment
	var rpyCpt:CGICompartment :=self.Compartments->selectByKind(CGICompartment)->selectOne(cpt | cpt.m_name=rpyCptName);
	
	var isExplicit:boolean:=rpyCpt.m_displayOption->includes("Explicit");
	var isAll:boolean:=rpyCpt.m_displayOption->includes("All");
	var isPublic:boolean:=rpyCpt.m_displayOption->includes("Public");
	if(isAll or isPublic){ //TODO checlk in Rhapsody that for block : isAll or Public is equals? !
		//in this case nothing is serialized in rhapsody file, so we create all view from the literal views
		//we can't use a mapping method because when EnumerationLiteral are represented several time on the same diagram,we will call the same mapping for the same element
		//and in this case, QVTO call the mapping only the first time and return directly the result the next time without creating new object!
		self.m_pModelObject.oclAsType(IClass).Attrs->selectByType(IAttribute)->forEach(attr){
//    		var res:uml::Element:=relation.resolveoneIn(umlrhapsody::IRelation::iRelationToUMLElement);
//    		if(res.oclAsType(uml::Property)){
	
		//TODO : check it is a flow property in RPY
    			result+= attr.toSysML11BDDFlowPorpertyNode();
    		}
//    		if(res.getAppliedStereotype(getSysML11Stereotype("ConstraintParameter").getQualifiedName())){//TODO : need to be checked
    			
//    		}
//    		if(relation.oclIsKindOf(ISysMLPort) and res<>null){
//    			var isysmlPort:umlrhapsody::ISysMLPort:=relation.oclAsType(ISysMLPort);
//    			isysmlPort.Stereotypes->forEach(istereotype){
//    			relation.map applyIStereotypeToUMLElement(res, istereotype.oclAsType(IStereotype));
//    		}	
			
//    	}C
//    };
//				result+= attr.oclAsType(ISysMLPort).toSysML11BDDBlockPropertyNode();
//		};
	}elif(isExplicit){

		//TODO : ISySML Port is not yet an Item in the metamodel	
//			self.Compartments[CGICompartment].Items->forEach(attr){
//					result+= attr.oclAsType(IAttribute).toSysML11BDDBlockPropertyNode();
//			};
		};	
	}
}

mapping CGIClass::toSysML11BDDConstraintParameterNode(rpyCptName:String) : OrderedSet(Node) when {self.m_pModelObject.oclIsTypeOf(IClass) and self.m_pModelObject.oclAsType(IClass).isSysMLConstraintBlock()}{
init{
	var rpyCpt:CGICompartment :=self.Compartments->selectByKind(CGICompartment)->selectOne(cpt | cpt.m_name=rpyCptName);

	var isExplicit:boolean:=rpyCpt.m_displayOption->includes("Explicit");
	var isAll:boolean:=rpyCpt.m_displayOption->includes("All");
	var isPublic:boolean:=rpyCpt.m_displayOption->includes("Public");
	if(isAll or isPublic){ //TODO checlk in Rhapsody that for block : isAll or Public is equals? !
		//in this case nothing is serialized in rhapsody file, so we create all view from the literal views
		//we can't use a mapping method because when EnumerationLiteral are represented several time on the same diagram,we will call the same mapping for the same element
		//and in this case, QVTO call the mapping only the first time and return directly the result the next time without creating new object!
		self.m_pModelObject.oclAsType(IClass).Ports->forEach(relation){
//    		var res:uml::Element:=relation.resolveoneIn(umlrhapsody::IRelation::iRelationToUMLElement);
//    		if(res.oclAsType(uml::Property)){
    			result+= relation.toSysML11BDDBlockConstraintNode();
    		}
//    		if(res.getAppliedStereotype(getSysML11Stereotype("ConstraintParameter").getQualifiedName())){//TODO : need to be checked
    			
//    		}
//    		if(relation.oclIsKindOf(ISysMLPort) and res<>null){
//    			var isysmlPort:umlrhapsody::ISysMLPort:=relation.oclAsType(ISysMLPort);
//    			isysmlPort.Stereotypes->forEach(istereotype){
//    			relation.map applyIStereotypeToUMLElement(res, istereotype.oclAsType(IStereotype));
//    		}	
			
//    	}C
//    };
//				result+= attr.oclAsType(ISysMLPort).toSysML11BDDBlockPropertyNode();
//		};
	}elif(isExplicit){

		//TODO : ISySML Port is not yet an Item in the metamodel	
//			self.Compartments[CGICompartment].Items->forEach(attr){
//					result+= attr.oclAsType(IAttribute).toSysML11BDDBlockPropertyNode();
//			};
		};	
	}
}

/**
* This query create the Node View for a given IEnumerationLiteral
*/
query umlrhapsody::IEnumerationLiteral::toSysML11BDDEnumerationLiteralNode() : Node{
	return object Node{
		element:=self.resolveoneIn(umlrhapsody::IEnumerationLiteral::toUMLEnumerationLiteral).oclAsType(EObject);
		type:="shape_uml_enumerationliteral_as_label";
		styles:= object ShapeStyle{};
		layoutConstraint:= object Location{};
	};
}

mapping umlrhapsody::CGIAssociationEnd::toSysML11BDDAssociationEdge() : Connector 
{
	//TODO : use the class RhapsodyNode for the anchors!
	var sourceNode:CGIClass:=self.m_pSource![CGIClass];
	var targetNode:CGIClass:=self.m_pTarget![CGIClass];
	
	var source_mtransform:List(String):= sourceNode.m_transform->asList();
	var source_mpolygon:List(String):= sourceNode.m_polygon->asList();
	var target_mtransform:List(String):= targetNode.m_transform->asList();
	var target_mpolygon:List(String):= targetNode.m_polygon->asList();
	var source_Port:List(String):= self.m_SourcePort->asList();
	var target_Port:List(String):= self.m_TargetPort->asList();
	

	//we try the new way for anchor calculus
//	var anchorsAndBendpoints:Sequence(String):=getAnchorsAndBendpoints(self, result);
//	var sourceAnchorId:String:=anchorsAndBendpoints->asSequence()->at(1);
//	var	targetAnchorId:String:=anchorsAndBendpoints->asSequence()->at(2);
	addAnchorsAndBendpoints(self, result);
	
	var rpySemanticElement:=self.m_pModelObject;
	
	//looking for the uml Association
	var association:Association:=null;
	if(rpySemanticElement.oclIsTypeOf(IAssociationEnd)){
		association:=self.m_pModelObject.resolveoneIn(umlrhapsody::IAssociationEnd::toAssociationswithProp, uml::Association);
		if (association=null){
			association := self.m_pModelObject.resolveoneIn(umlrhapsody::IAssociationEnd::toAssociationswithoutProp, uml::Association); 
		};
	}elif(rpySemanticElement.oclIsTypeOf(IPart)){
		association:=self.m_pModelObject.resolveoneIn(umlrhapsody::IPart::iPartToUMLAssociation, uml::Association).oclAsType(Association);
	};
	
//	//self.m_pModelObject.resolveIn(umlrhapsody::IAssociationEnd::toAssociationswithProp, uml::Association)![EObject];
//	
////	association:=self.m_pModelObject.resolveIn(umlrhapsody::IAssociationEnd::IAssociationEnd, uml::Association)![EObject];
//	log("2. association found :=" + association.toString());
//	if (association!=null)
//	{
////	result.element:=association;
//	}
//	else
//	{
//	result.element := self.m_pModelObject.resolveIn(umlrhapsody::IAssociationEnd::toAssociationswithoutProp, uml::Association)![EObject]; 
//	};
	
	result.element:=association.oclAsType(EObject);
	
	result.type := "link_sysml_association";
	result.source:= sourceNode.resolveIn(umlrhapsody::GraphElementsType::toSysML11BlockDefinitionDiagramShape, Shape)![View];
	result.target:= targetNode.resolveIn(umlrhapsody::GraphElementsType::toSysML11BlockDefinitionDiagramShape, Shape)![View];
	
	//no idea about this code!
//	result.children->forEach(element){
//		element.type:='6007'
//	};
//	result.sourceAnchor := object IdentityAnchor{
//		id:=sourceAnchorId;
//	};
//	result.targetAnchor := object IdentityAnchor{
//		id := targetAnchorId;
//	};
	
	
//	result.bendpoints:= object RelativeBendpoints{
////		points:= object RelativeBendpointList{
////		
////		}
//	};
	// add DecorationNode
	//	result.children := self.getDecorationNodes();
	
	
	//TODO : manage the place of each label of the association
	var True:String:="1";
	var False:String:="0";
	var res:=self.m_bShowLinkName;
	var showSourceRole:=self.m_bShowSourceRole;
	var showTargetRole:=self.m_bShowTargetRole;
	var showSourceMultiplicity:=self.m_bShowSourceMultiplicity;
	var showTargetMultiplicity:=self.m_bShowTargetMultiplicity;
	
	result.children+= object DecorationNode{
		type:="linklabel_uml_appliedstereotype";
//		visible:=self.m_bShowLinkName=True;
		layoutConstraint:= object Location{ y:=-30};
	};
	
	//TODO : we could manage maskLabel style too
	result.children+= object DecorationNode{
		type:="linklabel_uml_namedelement_name";
		visible:=self.m_bShowLinkName=True;
		layoutConstraint:= object Location{y:=-10};
	};

	result.children+= object DecorationNode{
		type:="linklabel_uml_association_source_role";
		visible:=self.m_bShowSourceRole=True;
		layoutConstraint:= object Location{y:=-10};
	};
	
	result.children+= object DecorationNode{
		type:="linklabel_uml_association_source_multiplicity";
		visible:=self.m_bShowSourceMultiplicity=True;
		layoutConstraint:= object Location{y:=10};
	};
	
	result.children+= object DecorationNode{
		type:="linklabel_uml_association_target_role";
		visible:=self.m_bShowTargetRole=True;
		layoutConstraint:= object Location{y:=-10};
	};
	
	result.children+= object DecorationNode{
		type:="linklabel_uml_association_target_multiplicity";
		visible:=self.m_bShowTargetMultiplicity=True;
		layoutConstraint:= object Location{y:=10};
	};

	result.styles+= object FontStyle{};
	
	result.styles+= object EObjectValueStyle{
		name:="semantic_source_end";
		eObjectValue:=association.memberEnd->asSequence()->at(1).oclAsType(EObject); //TODO
	};
	
	result.styles+= object EObjectValueStyle{
		name:="semantic_target_end";
		eObjectValue:=association.memberEnd->asSequence()->at(2).oclAsType(EObject); //TODO
	};
	
	//manage connector routing
	routing:=self.oclAsType(GraphElementsType).getConnectorRouting();	
	eAnnotations+=createCSSForceValue("routing");
}

/**
* Create the Actor Shape
*/ 
mapping umlrhapsody::CGIBasicClass::toSysML11BDDActorShape(cgiClassChart:CGIClassChart, rpyAllowedParent:Sequence(GraphElementsType)):notation::Shape when {self.m_pModelObject.oclIsTypeOf(IActor) and self.m_pParent.oclIsKindOf(GraphElementsType) and rpyAllowedParent->includes(self.m_pParent.oclAsType(GraphElementsType))}{
	element := self.m_pModelObject.resolveone().oclAsType(EObject);
	type:="shape_uml_actor_as_classifier";
	children+= object DecorationNode{
		type:="label_uml_namedelement_name";
	};
	children+=self.map toListCompartment("compartment_uml_property_as_list",null);
	children+=self.map toListCompartment("compartment_uml_operation_as_list",null);
  	layoutConstraint:= object Bounds{ x:=getX(self); y:=getY(self); width :=getRectangleWidth(self); height := getRectangleHeight(self)};
}

/**
* Create the package shape
*
*/
mapping umlrhapsody::CGIPackage::toSysML11BDDPackageShape(cgiClassChart:CGIClassChart, rpyAllowedParent:Sequence(GraphElementsType)):notation::Shape when {self.m_pModelObject.oclIsTypeOf(ISubsystem) and self.m_pParent.oclIsKindOf(GraphElementsType) and rpyAllowedParent->includes(self.m_pParent.oclAsType(GraphElementsType))}{
	element := self.m_pModelObject.resolveone().oclAsType(EObject);
	type:="Package_Shape";
	children+= object DecorationNode{
		type:="Package_NameLabel";
	};
	var blockPropertyStructure:BasicCompartment:= object BasicCompartment {
		type:="Package_PackagedElementCompartment";
		styles+=object TitleStyle{};
		layoutConstraint:=object Bounds{};
	};
	layoutConstraint:= object Bounds{ x:=getX(self); y:=getY(self); width :=getRectangleWidth(self); height := getRectangleHeight(self)};
	
	//create package contents
	
	blockPropertyStructure.children+=cgiClassChart.graphElements->select(a | a.isAllowedAsCompartmentChildren(blockPropertyStructure)).map toSysML11BlockDefinitionDiagramShape(cgiClassChart, self->asSequence());
	children+=blockPropertyStructure;
}

/**
* Returns true when the graph element can be set as a children of a given compartment
*/
query umlrhapsody::GraphElementsType::isAllowedAsCompartmentChildren(cpt:BasicCompartment):Boolean{
	return not self.oclIsTypeOf(CGIPortConnector);
}

/**
* Map the CGIGenericElement to a Signal Shape
*/
mapping umlrhapsody::CGIGenericElement::toSysML11BDDSignalShape(cgiClassChart:CGIClassChart, rpyAllowedParent:Sequence(GraphElementsType)):notation::Shape when{self.m_pModelObject.oclIsTypeOf(IEvent) and self.m_pParent.oclIsKindOf(GraphElementsType) and rpyAllowedParent->includes(self.m_pParent.oclAsType(GraphElementsType))}{
	element := self.m_pModelObject.resolveone().oclAsType(EObject);
	type:="shape_uml_signal_as_classifier";
	children+= object DecorationNode{
		type:="label_uml_namedelement_name";
	};
	children+=self.map toListCompartment("compartment_uml_property_as_list",null);
	children+=self.map toListCompartment("compartment_uml_operation_as_list",null);
	layoutConstraint:= object Bounds{ x:=getX(self); y:=getY(self); width :=getRectangleWidth(self); height := getRectangleHeight(self)};
}

Back to the top