ontomde-java 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (157) hide show
  1. data/History.txt +10 -0
  2. data/Manifest.txt +156 -0
  3. data/README.txt +98 -0
  4. data/Rakefile +21 -0
  5. data/bin/ontomde-java +5 -0
  6. data/generateRdocFile.sh +16 -0
  7. data/lib/ontomde-java.rb +45 -0
  8. data/lib/ontomde-java/crank.rb +13 -0
  9. data/lib/ontomde-java/crank/context.rb +384 -0
  10. data/lib/ontomde-java/crank/crankJpa.rb +103 -0
  11. data/lib/ontomde-java/crank/equals.rb +83 -0
  12. data/lib/ontomde-java/crank/facelets.rb +243 -0
  13. data/lib/ontomde-java/crank/facesconfig.rb +113 -0
  14. data/lib/ontomde-java/crank/helper.rb +46 -0
  15. data/lib/ontomde-java/crank/main.rb +51 -0
  16. data/lib/ontomde-java/crank/menu.rb +39 -0
  17. data/lib/ontomde-java/crank/menu2.rb +78 -0
  18. data/lib/ontomde-java/crank/validation.rb +34 -0
  19. data/lib/ontomde-java/ejb2.rb +3 -0
  20. data/lib/ontomde-java/ejb2/main-ejb2.rb +194 -0
  21. data/lib/ontomde-java/flex.rb +7 -0
  22. data/lib/ontomde-java/flex/Editor.mxml.as.rb +184 -0
  23. data/lib/ontomde-java/flex/Editor.mxml.rb +701 -0
  24. data/lib/ontomde-java/flex/ImportationAS.rb +40 -0
  25. data/lib/ontomde-java/flex/ValueObjectAS.rb +338 -0
  26. data/lib/ontomde-java/flex/fileTypes.rb +19 -0
  27. data/lib/ontomde-java/flex/main.rb +347 -0
  28. data/lib/ontomde-java/frontend/command.rb +324 -0
  29. data/lib/ontomde-java/frontend/command.rdoc +583 -0
  30. data/lib/ontomde-java/frontend/defaultOptions.rb +124 -0
  31. data/lib/ontomde-java/frontend/options.rb +555 -0
  32. data/lib/ontomde-java/frontend/steps.rb +287 -0
  33. data/lib/ontomde-java/java/accessorCode.rb +528 -0
  34. data/lib/ontomde-java/java/accessorSignature.rb +347 -0
  35. data/lib/ontomde-java/java/annotationOntoMDE.rb +88 -0
  36. data/lib/ontomde-java/java/apache.rb +34 -0
  37. data/lib/ontomde-java/java/build.rb +80 -0
  38. data/lib/ontomde-java/java/collectionMapping.rb +112 -0
  39. data/lib/ontomde-java/java/component.rb +446 -0
  40. data/lib/ontomde-java/java/contextualize.rb +43 -0
  41. data/lib/ontomde-java/java/enumAssignable.rb +75 -0
  42. data/lib/ontomde-java/java/enumCompatibilityLayer.rb +195 -0
  43. data/lib/ontomde-java/java/equals.rb +91 -0
  44. data/lib/ontomde-java/java/groovy.rb +95 -0
  45. data/lib/ontomde-java/java/java.rb +1329 -0
  46. data/lib/ontomde-java/java/java.rdoc +78 -0
  47. data/lib/ontomde-java/java/javaDatatypeMapping.rb +156 -0
  48. data/lib/ontomde-java/java/javaHelper.rb +25 -0
  49. data/lib/ontomde-java/java/java_todo.rdoc +3 -0
  50. data/lib/ontomde-java/java/javadoc.rb +254 -0
  51. data/lib/ontomde-java/java/meta.rb +28 -0
  52. data/lib/ontomde-java/java/operationAsClass.rb +144 -0
  53. data/lib/ontomde-java/java/security.rb +260 -0
  54. data/lib/ontomde-java/java/stateMachine.rb +415 -0
  55. data/lib/ontomde-java/java/tenant.rb +65 -0
  56. data/lib/ontomde-java/java/xsd.rb +1363 -0
  57. data/lib/ontomde-java/java/xsdCollectionMapping.rb +112 -0
  58. data/lib/ontomde-java/java/xsdDatatypeMapping.rb +103 -0
  59. data/lib/ontomde-java/jpa.rb +17 -0
  60. data/lib/ontomde-java/jpa/configuration.rb +176 -0
  61. data/lib/ontomde-java/jpa/finder.rb +102 -0
  62. data/lib/ontomde-java/jpa/jpa.rb +531 -0
  63. data/lib/ontomde-java/jpa/jpa.rdoc +20 -0
  64. data/lib/ontomde-java/jpa/locking.rb +18 -0
  65. data/lib/ontomde-java/jpa/mapping.rb +314 -0
  66. data/lib/ontomde-java/jpa/redefined.rb +77 -0
  67. data/lib/ontomde-java/jpa/simulationAutoImplement.rb +54 -0
  68. data/lib/ontomde-java/jpdl.rb +9 -0
  69. data/lib/ontomde-java/jpdl/bpm.pprj +1745 -0
  70. data/lib/ontomde-java/jpdl/bpm.rdf +140 -0
  71. data/lib/ontomde-java/jpdl/bpm.rdfs +231 -0
  72. data/lib/ontomde-java/jpdl/constant.rb +5 -0
  73. data/lib/ontomde-java/jpdl/graphic.rb +52 -0
  74. data/lib/ontomde-java/jpdl/jpdl.rb +281 -0
  75. data/lib/ontomde-java/jpdl/jpdl_deploy.rb +114 -0
  76. data/lib/ontomde-java/jpdl/main.rb +348 -0
  77. data/lib/ontomde-java/jpdl/main.rdoc +2 -0
  78. data/lib/ontomde-java/jpdl/processOperationToClass.rb +316 -0
  79. data/lib/ontomde-java/kbjava.rb +6 -0
  80. data/lib/ontomde-java/kbjava/rdfToJava.rb +407 -0
  81. data/lib/ontomde-java/struts.rb +27 -0
  82. data/lib/ontomde-java/struts/MessageResources.rb +359 -0
  83. data/lib/ontomde-java/struts/action.rb +883 -0
  84. data/lib/ontomde-java/struts/blob.rb +11 -0
  85. data/lib/ontomde-java/struts/exceptionHandling.rb +167 -0
  86. data/lib/ontomde-java/struts/footer.rb +128 -0
  87. data/lib/ontomde-java/struts/form.rb +450 -0
  88. data/lib/ontomde-java/struts/header.rb +37 -0
  89. data/lib/ontomde-java/struts/header_link.rb +39 -0
  90. data/lib/ontomde-java/struts/jsp_edit.rb +870 -0
  91. data/lib/ontomde-java/struts/jsp_edit_field.rb +1 -0
  92. data/lib/ontomde-java/struts/jsp_edit_js.rb +124 -0
  93. data/lib/ontomde-java/struts/jsp_index.rb +136 -0
  94. data/lib/ontomde-java/struts/localeAction.rb +641 -0
  95. data/lib/ontomde-java/struts/main.rb +41 -0
  96. data/lib/ontomde-java/struts/mappingForBean.rb +132 -0
  97. data/lib/ontomde-java/struts/mappingForJsp.rb +272 -0
  98. data/lib/ontomde-java/struts/mappingToJavaHierarchy.rb +87 -0
  99. data/lib/ontomde-java/struts/reloadAction.rb +33 -0
  100. data/lib/ontomde-java/struts/spring.rb +89 -0
  101. data/lib/ontomde-java/struts/struts-config.rb +232 -0
  102. data/lib/ontomde-java/struts/validation.rb +116 -0
  103. data/lib/ontomde-java/struts/validator.rb +341 -0
  104. data/lib/ontomde-java/struts/webXml.rb +195 -0
  105. data/lib/ontomde-java/struts/xmlForm.rb +308 -0
  106. data/lib/ontomde-java/version.rb +5 -0
  107. data/profiling.xls +0 -0
  108. data/test/.classpath +14 -0
  109. data/test/.project +17 -0
  110. data/test/.settings/org.eclipse.jdt.core.prefs +23 -0
  111. data/test/Rakefile +71 -0
  112. data/test/build.xml +34 -0
  113. data/test/classpath.rb +15 -0
  114. data/test/lib/junit-4.1.jar +0 -0
  115. data/test/load1.rb +3 -0
  116. data/test/load2.rb +3 -0
  117. data/test/log4j.properties +46 -0
  118. data/test/model/.project +11 -0
  119. data/test/model/BigProject.mdzip +0 -0
  120. data/test/model/BigProject.mdzip.nt +102866 -0
  121. data/test/model/ClassDiagram.EntArch.gif +0 -0
  122. data/test/model/ClassDiagram.emx.gif +0 -0
  123. data/test/model/ClassDiagram.mdzip.gif +0 -0
  124. data/test/model/model_ea71.bis.ea.xmi +149 -0
  125. data/test/model/model_ea71.ea.xmi +4470 -0
  126. data/test/model/model_ea71.eap +0 -0
  127. data/test/model/model_ea71_README.txt +8 -0
  128. data/test/model/multipleInheritance.emx +466 -0
  129. data/test/model/multipleInheritance.emx.nt +2428 -0
  130. data/test/model/simple1-530.ofp +0 -0
  131. data/test/model/simple1-includedAsReference.emx +169 -0
  132. data/test/model/simple1.emx +3729 -0
  133. data/test/model/simple1.emx.fragments.nt +81 -0
  134. data/test/model/simple1.emx.nt +5760 -0
  135. data/test/model/simple1.mdzip +0 -0
  136. data/test/model/simple1.mdzip.nt +11500 -0
  137. data/test/model/simple1.oe530.nt +1986 -0
  138. data/test/model/simple1.oe600.nt +1627 -0
  139. data/test/src/RuntimeTest.java +656 -0
  140. data/test/src/testsLevel1.java +174 -0
  141. data/test/src/testsLevel2.java +29 -0
  142. data/test/src/testsLevel3.java +40 -0
  143. data/test/test-ea7.sh +15 -0
  144. data/test/test-magicDraw.sh +10 -0
  145. data/test/test-mi.sh +9 -0
  146. data/test/test-oe530.sh +10 -0
  147. data/test/test-oe600.sh +11 -0
  148. data/test/test-rsm.sh +11 -0
  149. data/test/test_export_ea71.rb +5 -0
  150. data/test/test_export_oe530.rb +4 -0
  151. data/test/test_export_oe600.rb +4 -0
  152. data/test/test_export_rsm60.rb +4 -0
  153. data/test/trace +419 -0
  154. data/test/uml_test.rb +1434 -0
  155. data/test/uml_test.xls +0 -0
  156. data/test/unit_test.rb +6 -0
  157. metadata +224 -0
@@ -0,0 +1,1986 @@
1
+ #!ontomdx
2
+ # END of IMPORTS
3
+ # model export
4
+ # model name=
5
+ <_248775092_2_6499> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Model> .
6
+ #appendXMLID xmi:id="_248775092_2_6499"
7
+ <_248775092_2_6499> <http://uml/2#name> "testProject" .
8
+ <_248775092_2_6499> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
9
+ <_248775092_2_6499> <http://uml/2#ownedMember> <_262232_219_37575> .
10
+ <_262232_219_37575> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
11
+ #appendXMLID xmi:id="_262232_219_37575"
12
+ <_262232_219_37575> <http://uml/2#name> "all" .
13
+ <_262232_219_37575> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
14
+ <_262232_219_37575> <http://uml/2#ownedMember> <_1524367564_1195_35416> .
15
+ <_1524367564_1195_35416> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
16
+ #appendXMLID xmi:id="_1524367564_1195_35416"
17
+ <_1524367564_1195_35416> <http://uml/2#name> "pack1" .
18
+ <_1524367564_1195_35416> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
19
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1424_35877> .
20
+ <_1524367564_1424_35877> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
21
+ #appendXMLID xmi:id="_1524367564_1424_35877"
22
+ <_1524367564_1424_35877> <http://uml/2#name> "" .
23
+ <_1524367564_1424_35877> <http://uml/2#memberEnd> <_1524367564_1425_35878> .
24
+ <_1524367564_1424_35877> <http://uml/2#memberEnd> <_1524367564_1426_35879> .
25
+ <_1524367564_1424_35877> <http://uml/2#ownedEnd> <_1524367564_1426_35879> .
26
+ <_1524367564_1426_35879> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
27
+ #appendXMLID xmi:id="_1524367564_1426_35879"
28
+ <_1524367564_1426_35879> <http://uml/2#name> "wq" .
29
+ <_1524367564_1426_35879> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
30
+ <_1524367564_1426_35879> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
31
+ # appendRDFInTagURI
32
+ <_1524367564_1426_35879> <http://uml/2#association> <_1524367564_1424_35877> .
33
+ <_1524367564_1426_35879> <http://uml/2#type> <_1524367564_1247_35471> .
34
+ # multiplicity upperValue
35
+ <_1524367564_1426_35879> <http://uml/2#upperValue> <_1524367564_1426_35879_upperValue> .
36
+ <_1524367564_1426_35879_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
37
+ <_1524367564_1426_35879_upperValue> <http://uml/2#value> "???" .
38
+ # multiplicity lowerValue
39
+ <_1524367564_1426_35879> <http://uml/2#lowerValue> <_1524367564_1426_35879_lowerValue> .
40
+ <_1524367564_1426_35879_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
41
+ <_1524367564_1426_35879_lowerValue> <http://uml/2#value> "???" .
42
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1433_35887> .
43
+ <_1524367564_1433_35887> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
44
+ #appendXMLID xmi:id="_1524367564_1433_35887"
45
+ <_1524367564_1433_35887> <http://uml/2#name> "" .
46
+ <_1524367564_1433_35887> <http://uml/2#memberEnd> <_1524367564_1434_35888> .
47
+ <_1524367564_1433_35887> <http://uml/2#memberEnd> <_1524367564_1435_35889> .
48
+ <_1524367564_1433_35887> <http://uml/2#ownedEnd> <_1524367564_1435_35889> .
49
+ <_1524367564_1435_35889> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
50
+ #appendXMLID xmi:id="_1524367564_1435_35889"
51
+ <_1524367564_1435_35889> <http://uml/2#name> "" .
52
+ <_1524367564_1435_35889> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
53
+ <_1524367564_1435_35889> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
54
+ # appendRDFInTagURI
55
+ <_1524367564_1435_35889> <http://uml/2#association> <_1524367564_1433_35887> .
56
+ <_1524367564_1435_35889> <http://uml/2#type> <_1524367564_1247_35471> .
57
+ # multiplicity upperValue
58
+ <_1524367564_1435_35889> <http://uml/2#upperValue> <_1524367564_1435_35889_upperValue> .
59
+ <_1524367564_1435_35889_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
60
+ <_1524367564_1435_35889_upperValue> <http://uml/2#value> "1" .
61
+ # multiplicity lowerValue
62
+ <_1524367564_1435_35889> <http://uml/2#lowerValue> <_1524367564_1435_35889_lowerValue> .
63
+ <_1524367564_1435_35889_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
64
+ <_1524367564_1435_35889_lowerValue> <http://uml/2#value> "1" .
65
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1442_35897> .
66
+ <_1524367564_1442_35897> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
67
+ #appendXMLID xmi:id="_1524367564_1442_35897"
68
+ <_1524367564_1442_35897> <http://uml/2#name> "" .
69
+ <_1524367564_1442_35897> <http://uml/2#memberEnd> <_1524367564_1443_35898> .
70
+ <_1524367564_1442_35897> <http://uml/2#memberEnd> <_1524367564_1444_35899> .
71
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1453_35917> .
72
+ <_1524367564_1453_35917> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
73
+ #appendXMLID xmi:id="_1524367564_1453_35917"
74
+ <_1524367564_1453_35917> <http://uml/2#name> "" .
75
+ <_1524367564_1453_35917> <http://uml/2#memberEnd> <_1524367564_1454_35918> .
76
+ <_1524367564_1453_35917> <http://uml/2#memberEnd> <_1524367564_1455_35919> .
77
+ <_1524367564_1453_35917> <http://uml/2#ownedEnd> <_1524367564_1455_35919> .
78
+ <_1524367564_1455_35919> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
79
+ #appendXMLID xmi:id="_1524367564_1455_35919"
80
+ <_1524367564_1455_35919> <http://uml/2#name> "owner" .
81
+ <_1524367564_1455_35919> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
82
+ <_1524367564_1455_35919> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
83
+ # appendRDFInTagURI
84
+ <_1524367564_1455_35919> <http://uml/2#association> <_1524367564_1453_35917> .
85
+ <_1524367564_1455_35919> <http://uml/2#type> <_1524367564_1247_35471> .
86
+ # multiplicity upperValue
87
+ <_1524367564_1455_35919> <http://uml/2#upperValue> <_1524367564_1455_35919_upperValue> .
88
+ <_1524367564_1455_35919_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
89
+ <_1524367564_1455_35919_upperValue> <http://uml/2#value> "1" .
90
+ # multiplicity lowerValue
91
+ <_1524367564_1455_35919> <http://uml/2#lowerValue> <_1524367564_1455_35919_lowerValue> .
92
+ <_1524367564_1455_35919_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
93
+ <_1524367564_1455_35919_lowerValue> <http://uml/2#value> "1" .
94
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1462_35927> .
95
+ <_1524367564_1462_35927> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
96
+ #appendXMLID xmi:id="_1524367564_1462_35927"
97
+ <_1524367564_1462_35927> <http://uml/2#name> "" .
98
+ <_1524367564_1462_35927> <http://uml/2#memberEnd> <_1524367564_1463_35928> .
99
+ <_1524367564_1462_35927> <http://uml/2#memberEnd> <_1524367564_1464_35929> .
100
+ <_1524367564_1462_35927> <http://uml/2#ownedEnd> <_1524367564_1464_35929> .
101
+ <_1524367564_1464_35929> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
102
+ #appendXMLID xmi:id="_1524367564_1464_35929"
103
+ <_1524367564_1464_35929> <http://uml/2#name> "classdetest_ro" .
104
+ <_1524367564_1464_35929> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
105
+ <_1524367564_1464_35929> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
106
+ # appendRDFInTagURI
107
+ <_1524367564_1464_35929> <http://uml/2#association> <_1524367564_1462_35927> .
108
+ <_1524367564_1464_35929> <http://uml/2#type> <_1524367564_1247_35471> .
109
+ # multiplicity upperValue
110
+ <_1524367564_1464_35929> <http://uml/2#upperValue> <_1524367564_1464_35929_upperValue> .
111
+ <_1524367564_1464_35929_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
112
+ <_1524367564_1464_35929_upperValue> <http://uml/2#value> "1" .
113
+ # multiplicity lowerValue
114
+ <_1524367564_1464_35929> <http://uml/2#lowerValue> <_1524367564_1464_35929_lowerValue> .
115
+ <_1524367564_1464_35929_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
116
+ <_1524367564_1464_35929_lowerValue> <http://uml/2#value> "1" .
117
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1472_35940> .
118
+ <_1524367564_1472_35940> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
119
+ #appendXMLID xmi:id="_1524367564_1472_35940"
120
+ <_1524367564_1472_35940> <http://uml/2#name> "" .
121
+ <_1524367564_1472_35940> <http://uml/2#memberEnd> <_1524367564_1473_35941> .
122
+ <_1524367564_1472_35940> <http://uml/2#memberEnd> <_1524367564_1474_35942> .
123
+ <_1524367564_1472_35940> <http://uml/2#ownedEnd> <_1524367564_1474_35942> .
124
+ <_1524367564_1474_35942> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
125
+ #appendXMLID xmi:id="_1524367564_1474_35942"
126
+ <_1524367564_1474_35942> <http://uml/2#name> "" .
127
+ <_1524367564_1474_35942> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
128
+ <_1524367564_1474_35942> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
129
+ # appendRDFInTagURI
130
+ <_1524367564_1474_35942> <http://uml/2#association> <_1524367564_1472_35940> .
131
+ <_1524367564_1474_35942> <http://uml/2#type> <_1524367564_1247_35471> .
132
+ # multiplicity upperValue
133
+ <_1524367564_1474_35942> <http://uml/2#upperValue> <_1524367564_1474_35942_upperValue> .
134
+ <_1524367564_1474_35942_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
135
+ <_1524367564_1474_35942_upperValue> <http://uml/2#value> "???" .
136
+ # multiplicity lowerValue
137
+ <_1524367564_1474_35942> <http://uml/2#lowerValue> <_1524367564_1474_35942_lowerValue> .
138
+ <_1524367564_1474_35942_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
139
+ <_1524367564_1474_35942_lowerValue> <http://uml/2#value> "???" .
140
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1483_35955> .
141
+ <_1524367564_1483_35955> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
142
+ #appendXMLID xmi:id="_1524367564_1483_35955"
143
+ <_1524367564_1483_35955> <http://uml/2#name> "" .
144
+ <_1524367564_1483_35955> <http://uml/2#memberEnd> <_1524367564_1484_35956> .
145
+ <_1524367564_1483_35955> <http://uml/2#memberEnd> <_1524367564_1485_35957> .
146
+ <_1524367564_1483_35955> <http://uml/2#ownedEnd> <_1524367564_1484_35956> .
147
+ <_1524367564_1484_35956> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
148
+ #appendXMLID xmi:id="_1524367564_1484_35956"
149
+ <_1524367564_1484_35956> <http://uml/2#name> "roleB" .
150
+ <_1524367564_1484_35956> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
151
+ <_1524367564_1484_35956> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
152
+ # appendRDFInTagURI
153
+ <_1524367564_1484_35956> <http://uml/2#association> <_1524367564_1483_35955> .
154
+ <_1524367564_1484_35956> <http://uml/2#type> <_1524367564_1222_35445> .
155
+ # multiplicity upperValue
156
+ <_1524367564_1484_35956> <http://uml/2#upperValue> <_1524367564_1484_35956_upperValue> .
157
+ <_1524367564_1484_35956_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
158
+ <_1524367564_1484_35956_upperValue> <http://uml/2#value> "890" .
159
+ # multiplicity lowerValue
160
+ <_1524367564_1484_35956> <http://uml/2#lowerValue> <_1524367564_1484_35956_lowerValue> .
161
+ <_1524367564_1484_35956_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
162
+ <_1524367564_1484_35956_lowerValue> <http://uml/2#value> "49" .
163
+ <_1524367564_1483_35955> <http://uml/2#ownedEnd> <_1524367564_1485_35957> .
164
+ <_1524367564_1485_35957> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
165
+ #appendXMLID xmi:id="_1524367564_1485_35957"
166
+ <_1524367564_1485_35957> <http://uml/2#name> "classdetest" .
167
+ <_1524367564_1485_35957> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
168
+ <_1524367564_1485_35957> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
169
+ # appendRDFInTagURI
170
+ <_1524367564_1485_35957> <http://uml/2#association> <_1524367564_1483_35955> .
171
+ <_1524367564_1485_35957> <http://uml/2#type> <_1524367564_1247_35471> .
172
+ # multiplicity upperValue
173
+ <_1524367564_1485_35957> <http://uml/2#upperValue> <_1524367564_1485_35957_upperValue> .
174
+ <_1524367564_1485_35957_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
175
+ <_1524367564_1485_35957_upperValue> <http://uml/2#value> "1" .
176
+ # multiplicity lowerValue
177
+ <_1524367564_1485_35957> <http://uml/2#lowerValue> <_1524367564_1485_35957_lowerValue> .
178
+ <_1524367564_1485_35957_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
179
+ <_1524367564_1485_35957_lowerValue> <http://uml/2#value> "1" .
180
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1492_35966> .
181
+ <_1524367564_1492_35966> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
182
+ #appendXMLID xmi:id="_1524367564_1492_35966"
183
+ <_1524367564_1492_35966> <http://uml/2#name> "" .
184
+ <_1524367564_1492_35966> <http://uml/2#memberEnd> <_1524367564_1493_35967> .
185
+ <_1524367564_1492_35966> <http://uml/2#memberEnd> <_1524367564_1494_35968> .
186
+ <_1524367564_1492_35966> <http://uml/2#ownedEnd> <_1524367564_1494_35968> .
187
+ <_1524367564_1494_35968> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
188
+ #appendXMLID xmi:id="_1524367564_1494_35968"
189
+ <_1524367564_1494_35968> <http://uml/2#name> "" .
190
+ <_1524367564_1494_35968> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
191
+ <_1524367564_1494_35968> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
192
+ # appendRDFInTagURI
193
+ <_1524367564_1494_35968> <http://uml/2#association> <_1524367564_1492_35966> .
194
+ <_1524367564_1494_35968> <http://uml/2#type> <_1524367564_1247_35471> .
195
+ # multiplicity upperValue
196
+ <_1524367564_1494_35968> <http://uml/2#upperValue> <_1524367564_1494_35968_upperValue> .
197
+ <_1524367564_1494_35968_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
198
+ <_1524367564_1494_35968_upperValue> <http://uml/2#value> "1" .
199
+ # multiplicity lowerValue
200
+ <_1524367564_1494_35968> <http://uml/2#lowerValue> <_1524367564_1494_35968_lowerValue> .
201
+ <_1524367564_1494_35968_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
202
+ <_1524367564_1494_35968_lowerValue> <http://uml/2#value> "1" .
203
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1501_35976> .
204
+ <_1524367564_1501_35976> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
205
+ #appendXMLID xmi:id="_1524367564_1501_35976"
206
+ <_1524367564_1501_35976> <http://uml/2#name> "" .
207
+ <_1524367564_1501_35976> <http://uml/2#memberEnd> <_1524367564_1502_35977> .
208
+ <_1524367564_1501_35976> <http://uml/2#memberEnd> <_1524367564_1503_35978> .
209
+ <_1524367564_1501_35976> <http://uml/2#ownedEnd> <_1524367564_1503_35978> .
210
+ <_1524367564_1503_35978> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
211
+ #appendXMLID xmi:id="_1524367564_1503_35978"
212
+ <_1524367564_1503_35978> <http://uml/2#name> "classdetest_no" .
213
+ <_1524367564_1503_35978> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
214
+ <_1524367564_1503_35978> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
215
+ # appendRDFInTagURI
216
+ <_1524367564_1503_35978> <http://uml/2#association> <_1524367564_1501_35976> .
217
+ <_1524367564_1503_35978> <http://uml/2#type> <_1524367564_1247_35471> .
218
+ # multiplicity upperValue
219
+ <_1524367564_1503_35978> <http://uml/2#upperValue> <_1524367564_1503_35978_upperValue> .
220
+ <_1524367564_1503_35978_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
221
+ <_1524367564_1503_35978_upperValue> <http://uml/2#value> "1" .
222
+ # multiplicity lowerValue
223
+ <_1524367564_1503_35978> <http://uml/2#lowerValue> <_1524367564_1503_35978_lowerValue> .
224
+ <_1524367564_1503_35978_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
225
+ <_1524367564_1503_35978_lowerValue> <http://uml/2#value> "1" .
226
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1510_35987> .
227
+ <_1524367564_1510_35987> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
228
+ #appendXMLID xmi:id="_1524367564_1510_35987"
229
+ <_1524367564_1510_35987> <http://uml/2#name> "" .
230
+ <_1524367564_1510_35987> <http://uml/2#memberEnd> <_1524367564_1511_35988> .
231
+ <_1524367564_1510_35987> <http://uml/2#memberEnd> <_1524367564_1512_35989> .
232
+ <_1524367564_1510_35987> <http://uml/2#ownedEnd> <_1524367564_1512_35989> .
233
+ <_1524367564_1512_35989> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
234
+ #appendXMLID xmi:id="_1524367564_1512_35989"
235
+ <_1524367564_1512_35989> <http://uml/2#name> "classdetest_d" .
236
+ <_1524367564_1512_35989> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
237
+ <_1524367564_1512_35989> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
238
+ # appendRDFInTagURI
239
+ <_1524367564_1512_35989> <http://uml/2#association> <_1524367564_1510_35987> .
240
+ <_1524367564_1512_35989> <http://uml/2#type> <_1524367564_1247_35471> .
241
+ # multiplicity upperValue
242
+ <_1524367564_1512_35989> <http://uml/2#upperValue> <_1524367564_1512_35989_upperValue> .
243
+ <_1524367564_1512_35989_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
244
+ <_1524367564_1512_35989_upperValue> <http://uml/2#value> "1" .
245
+ # multiplicity lowerValue
246
+ <_1524367564_1512_35989> <http://uml/2#lowerValue> <_1524367564_1512_35989_lowerValue> .
247
+ <_1524367564_1512_35989_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
248
+ <_1524367564_1512_35989_lowerValue> <http://uml/2#value> "1" .
249
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1523_36105> .
250
+ <_1524367564_1523_36105> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
251
+ #appendXMLID xmi:id="_1524367564_1523_36105"
252
+ <_1524367564_1523_36105> <http://uml/2#name> "" .
253
+ <_1524367564_1523_36105> <http://uml/2#memberEnd> <_1524367564_1524_36106> .
254
+ <_1524367564_1523_36105> <http://uml/2#memberEnd> <_1524367564_1525_36107> .
255
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1532_36117> .
256
+ <_1524367564_1532_36117> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
257
+ #appendXMLID xmi:id="_1524367564_1532_36117"
258
+ <_1524367564_1532_36117> <http://uml/2#name> "" .
259
+ <_1524367564_1532_36117> <http://uml/2#memberEnd> <_1524367564_1533_36118> .
260
+ <_1524367564_1532_36117> <http://uml/2#memberEnd> <_1524367564_1534_36119> .
261
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367776_72_37772> .
262
+ <_1524367776_72_37772> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
263
+ #appendXMLID xmi:id="_1524367776_72_37772"
264
+ <_1524367776_72_37772> <http://uml/2#name> "" .
265
+ <_1524367776_72_37772> <http://uml/2#memberEnd> <_1524367776_73_37773> .
266
+ <_1524367776_72_37772> <http://uml/2#memberEnd> <_1524367776_74_37774> .
267
+ <_1524367776_72_37772> <http://uml/2#ownedEnd> <_1524367776_74_37774> .
268
+ <_1524367776_74_37774> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
269
+ #appendXMLID xmi:id="_1524367776_74_37774"
270
+ <_1524367776_74_37774> <http://uml/2#name> "" .
271
+ <_1524367776_74_37774> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
272
+ <_1524367776_74_37774> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
273
+ # appendRDFInTagURI
274
+ <_1524367776_74_37774> <http://uml/2#association> <_1524367776_72_37772> .
275
+ <_1524367776_74_37774> <http://uml/2#type> <_1524367564_1247_35471> .
276
+ # multiplicity upperValue
277
+ <_1524367776_74_37774> <http://uml/2#upperValue> <_1524367776_74_37774_upperValue> .
278
+ <_1524367776_74_37774_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
279
+ <_1524367776_74_37774_upperValue> <http://uml/2#value> "???" .
280
+ # multiplicity lowerValue
281
+ <_1524367776_74_37774> <http://uml/2#lowerValue> <_1524367776_74_37774_lowerValue> .
282
+ <_1524367776_74_37774_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
283
+ <_1524367776_74_37774_lowerValue> <http://uml/2#value> "???" .
284
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367776_81_37782> .
285
+ <_1524367776_81_37782> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
286
+ #appendXMLID xmi:id="_1524367776_81_37782"
287
+ <_1524367776_81_37782> <http://uml/2#name> "" .
288
+ <_1524367776_81_37782> <http://uml/2#memberEnd> <_1524367776_82_37783> .
289
+ <_1524367776_81_37782> <http://uml/2#memberEnd> <_1524367776_83_37784> .
290
+ <_1524367776_81_37782> <http://uml/2#ownedEnd> <_1524367776_83_37784> .
291
+ <_1524367776_83_37784> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
292
+ #appendXMLID xmi:id="_1524367776_83_37784"
293
+ <_1524367776_83_37784> <http://uml/2#name> "" .
294
+ <_1524367776_83_37784> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
295
+ <_1524367776_83_37784> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
296
+ # appendRDFInTagURI
297
+ <_1524367776_83_37784> <http://uml/2#association> <_1524367776_81_37782> .
298
+ <_1524367776_83_37784> <http://uml/2#type> <_1524367564_1247_35471> .
299
+ # multiplicity upperValue
300
+ <_1524367776_83_37784> <http://uml/2#upperValue> <_1524367776_83_37784_upperValue> .
301
+ <_1524367776_83_37784_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
302
+ <_1524367776_83_37784_upperValue> <http://uml/2#value> "???" .
303
+ # multiplicity lowerValue
304
+ <_1524367776_83_37784> <http://uml/2#lowerValue> <_1524367776_83_37784_lowerValue> .
305
+ <_1524367776_83_37784_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
306
+ <_1524367776_83_37784_lowerValue> <http://uml/2#value> "???" .
307
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1197_35418> .
308
+ <_1524367564_1197_35418> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
309
+ #appendXMLID xmi:id="_1524367564_1197_35418"
310
+ <_1524367564_1197_35418> <http://uml/2#name> "pack11" .
311
+ <_1524367564_1197_35418> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
312
+ <_1524367564_1197_35418> <http://uml/2#ownedMember> <_1524367564_1541_36127> .
313
+ <_1524367564_1541_36127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
314
+ #appendXMLID xmi:id="_1524367564_1541_36127"
315
+ <_1524367564_1541_36127> <http://uml/2#name> "" .
316
+ <_1524367564_1541_36127> <http://uml/2#memberEnd> <_1524367564_1542_36128> .
317
+ <_1524367564_1541_36127> <http://uml/2#memberEnd> <_1524367564_1543_36129> .
318
+ <_1524367564_1197_35418> <http://uml/2#ownedMember> <_1524367564_1208_35431> .
319
+ <_1524367564_1208_35431> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
320
+ #appendXMLID xmi:id="_1524367564_1208_35431"
321
+ <_1524367564_1208_35431> <http://uml/2#name> "ClassDeuxNxPkg" .
322
+ <_1524367564_1208_35431> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
323
+ <_1524367564_1208_35431> <http://ft/uml/2#taggedValue> <_262232_7_37034> .
324
+ <_262232_7_37034> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://ft/uml/2#TaggedValue> .
325
+ <_262232_7_37034> <http://ft/uml/2#tagType> <_0_16000_14953> .
326
+ <_262232_7_37034> <http://ft/uml/2#value> <_262232_7_37034-val> .
327
+ <_262232_7_37034-val> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralString> .
328
+ <_262232_7_37034-val> <http://uml/2#value> "a comment" .
329
+ <_1524367564_1208_35431> <http://ft/uml/2#taggedValue> <_262232_8_37035> .
330
+ <_262232_8_37035> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://ft/uml/2#TaggedValue> .
331
+ <_262232_8_37035> <http://ft/uml/2#tagType> <_0_16001_13070> .
332
+ <_262232_8_37035> <http://ft/uml/2#value> <_262232_8_37035-val> .
333
+ <_262232_8_37035-val> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralString> .
334
+ <_262232_8_37035-val> <http://uml/2#value> "a description" .
335
+ <_1524367564_1208_35431> <http://uml/2#ownedAttribute> <_1524367564_1525_36107> .
336
+ <_1524367564_1525_36107> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
337
+ #appendXMLID xmi:id="_1524367564_1525_36107"
338
+ <_1524367564_1525_36107> <http://uml/2#name> "bidi_cdt_2_1" .
339
+ <_1524367564_1525_36107> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
340
+ <_1524367564_1525_36107> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
341
+ # appendRDFInTagURI
342
+ <_1524367564_1525_36107> <http://uml/2#association> <_1524367564_1523_36105> .
343
+ <_1524367564_1525_36107> <http://uml/2#type> <_1524367564_1247_35471> .
344
+ # multiplicity upperValue
345
+ <_1524367564_1525_36107> <http://uml/2#upperValue> <_1524367564_1525_36107_upperValue> .
346
+ <_1524367564_1525_36107_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
347
+ <_1524367564_1525_36107_upperValue> <http://uml/2#value> "1" .
348
+ # multiplicity lowerValue
349
+ <_1524367564_1525_36107> <http://uml/2#lowerValue> <_1524367564_1525_36107_lowerValue> .
350
+ <_1524367564_1525_36107_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
351
+ <_1524367564_1525_36107_lowerValue> <http://uml/2#value> "1" .
352
+ <_1524367564_1208_35431> <http://uml/2#ownedAttribute> <_1524367564_1534_36119> .
353
+ <_1524367564_1534_36119> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
354
+ #appendXMLID xmi:id="_1524367564_1534_36119"
355
+ <_1524367564_1534_36119> <http://uml/2#name> "bidi_cdt_1_1" .
356
+ <_1524367564_1534_36119> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
357
+ <_1524367564_1534_36119> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
358
+ # appendRDFInTagURI
359
+ <_1524367564_1534_36119> <http://uml/2#association> <_1524367564_1532_36117> .
360
+ <_1524367564_1534_36119> <http://uml/2#type> <_1524367564_1247_35471> .
361
+ # multiplicity upperValue
362
+ <_1524367564_1534_36119> <http://uml/2#upperValue> <_1524367564_1534_36119_upperValue> .
363
+ <_1524367564_1534_36119_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
364
+ <_1524367564_1534_36119_upperValue> <http://uml/2#value> "1" .
365
+ # multiplicity lowerValue
366
+ <_1524367564_1534_36119> <http://uml/2#lowerValue> <_1524367564_1534_36119_lowerValue> .
367
+ <_1524367564_1534_36119_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
368
+ <_1524367564_1534_36119_lowerValue> <http://uml/2#value> "1" .
369
+ <_1524367564_1208_35431> <http://uml/2#ownedAttribute> <_1524367564_1542_36128> .
370
+ <_1524367564_1542_36128> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
371
+ #appendXMLID xmi:id="_1524367564_1542_36128"
372
+ <_1524367564_1542_36128> <http://uml/2#name> "bidi_cdt_3_s" .
373
+ <_1524367564_1542_36128> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
374
+ <_1524367564_1542_36128> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
375
+ # appendRDFInTagURI
376
+ <_1524367564_1542_36128> <http://uml/2#association> <_1524367564_1541_36127> .
377
+ <_1524367564_1542_36128> <http://uml/2#type> <_1524367564_1247_35471> .
378
+ # multiplicity upperValue
379
+ <_1524367564_1542_36128> <http://uml/2#upperValue> <_1524367564_1542_36128_upperValue> .
380
+ <_1524367564_1542_36128_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
381
+ <_1524367564_1542_36128_upperValue> <http://uml/2#value> "-1" .
382
+ # multiplicity lowerValue
383
+ <_1524367564_1542_36128> <http://uml/2#lowerValue> <_1524367564_1542_36128_lowerValue> .
384
+ <_1524367564_1542_36128_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
385
+ <_1524367564_1542_36128_lowerValue> <http://uml/2#value> "0" .
386
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1307_35510> .
387
+ <_1524367564_1307_35510> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Enumeration> .
388
+ #appendXMLID xmi:id="_1524367564_1307_35510"
389
+ <_1524367564_1307_35510> <http://uml/2#name> "Couleurs" .
390
+ <_1524367564_1307_35510> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
391
+ <_1524367564_1307_35510> <http://ft/uml/2#taggedValue> <_1524367776_91_37793> .
392
+ <_1524367776_91_37793> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://ft/uml/2#TaggedValue> .
393
+ <_1524367776_91_37793> <http://ft/uml/2#tagType> <_0_16000_14953> .
394
+ <_1524367776_91_37793> <http://ft/uml/2#value> <_1524367776_91_37793-val> .
395
+ <_1524367776_91_37793-val> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralString> .
396
+ <_1524367776_91_37793-val> <http://uml/2#value> "Special key for unit tests:\n\n__DOC_ENUM__\ndf" .
397
+ <_1524367564_1307_35510> <http://uml/2#ownedLiteral> <_1524367564_1379_35771> .
398
+ <_1524367564_1379_35771> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
399
+ #appendXMLID xmi:id="_1524367564_1379_35771"
400
+ <_1524367564_1379_35771> <http://uml/2#name> "Pique" .
401
+ <_1524367564_1307_35510> <http://uml/2#ownedLiteral> <_1524367564_1380_35772> .
402
+ <_1524367564_1380_35772> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
403
+ #appendXMLID xmi:id="_1524367564_1380_35772"
404
+ <_1524367564_1380_35772> <http://uml/2#name> "Coeur" .
405
+ <_1524367564_1307_35510> <http://uml/2#ownedLiteral> <_1524367564_1381_35773> .
406
+ <_1524367564_1381_35773> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
407
+ #appendXMLID xmi:id="_1524367564_1381_35773"
408
+ <_1524367564_1381_35773> <http://uml/2#name> "Carreau" .
409
+ <_1524367564_1307_35510> <http://uml/2#ownedLiteral> <_1524367564_1382_35774> .
410
+ <_1524367564_1382_35774> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
411
+ #appendXMLID xmi:id="_1524367564_1382_35774"
412
+ <_1524367564_1382_35774> <http://uml/2#name> "Trefle" .
413
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1309_35512> .
414
+ <_1524367564_1309_35512> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Enumeration> .
415
+ #appendXMLID xmi:id="_1524367564_1309_35512"
416
+ <_1524367564_1309_35512> <http://uml/2#name> "OutOfSpaceEnum" .
417
+ <_1524367564_1309_35512> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
418
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1311_35514> .
419
+ <_1524367564_1311_35514> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Enumeration> .
420
+ #appendXMLID xmi:id="_1524367564_1311_35514"
421
+ <_1524367564_1311_35514> <http://uml/2#name> "EmptyEnum" .
422
+ <_1524367564_1311_35514> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
423
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1206_35429> .
424
+ <_1524367564_1206_35429> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
425
+ #appendXMLID xmi:id="_1524367564_1206_35429"
426
+ <_1524367564_1206_35429> <http://uml/2#name> "ClasseAbstraite" .
427
+ <_1524367564_1206_35429> <http://uml/2#isAbstract> "true" .
428
+ <_1524367564_1206_35429> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
429
+ <_1524367564_1206_35429> <http://uml/2#ownedOperation> <_1524367564_1420_35873> .
430
+ <_1524367564_1420_35873> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
431
+ #appendXMLID xmi:id="_1524367564_1420_35873"
432
+ <_1524367564_1420_35873> <http://uml/2#name> "methodeAbstraite" .
433
+ <_1524367564_1420_35873> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
434
+ <_1524367564_1206_35429> <http://uml/2#ownedOperation> <_1524367776_94_37797> .
435
+ <_1524367776_94_37797> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
436
+ #appendXMLID xmi:id="_1524367776_94_37797"
437
+ <_1524367776_94_37797> <http://uml/2#name> "abstractMethodOne" .
438
+ <_1524367776_94_37797> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
439
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1214_35437> .
440
+ <_1524367564_1214_35437> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
441
+ #appendXMLID xmi:id="_1524367564_1214_35437"
442
+ <_1524367564_1214_35437> <http://uml/2#name> "ClasseAvecInnerClasseZ" .
443
+ <_1524367564_1214_35437> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
444
+ <_1524367564_1214_35437> <http://uml/2#nestedClassifier> <_1524367564_1210_35433> .
445
+ <_1524367564_1210_35433> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
446
+ #appendXMLID xmi:id="_1524367564_1210_35433"
447
+ <_1524367564_1210_35433> <http://uml/2#name> "InnerClasseZ" .
448
+ <_1524367564_1210_35433> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
449
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1247_35471> .
450
+ <_1524367564_1247_35471> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
451
+ #appendXMLID xmi:id="_1524367564_1247_35471"
452
+ <_1524367564_1247_35471> <http://uml/2#name> "Classe De Test" .
453
+ <_1524367564_1247_35471> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
454
+ <_1524367564_1247_35471> <http://ft/uml/2#taggedValue> <_1524367776_90_37792> .
455
+ <_1524367776_90_37792> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://ft/uml/2#TaggedValue> .
456
+ <_1524367776_90_37792> <http://ft/uml/2#tagType> <_0_16000_14953> .
457
+ <_1524367776_90_37792> <http://ft/uml/2#value> <_1524367776_90_37792-val> .
458
+ <_1524367776_90_37792-val> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralString> .
459
+ <_1524367776_90_37792-val> <http://uml/2#value> "Special key for unit tests:\n\n__DOC_CDT__\n\n" .
460
+ <_1524367564_1247_35471> <http://uml/2#generalization> <_1524367564_1250_35474> .
461
+ <_1524367564_1250_35474> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
462
+ #appendXMLID xmi:id="_1524367564_1250_35474"
463
+ # appendRDFInTagURI
464
+ <_1524367564_1250_35474> <http://uml/2#general> <_1524367564_1200_35422> .
465
+ <_1524367564_1247_35471> <http://uml/2#implementation> <_1524367564_1345_35680> .
466
+ <_1524367564_1345_35680> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Realization> .
467
+ #appendXMLID xmi:id="_1524367564_1345_35680"
468
+ # appendRDFInTagURI
469
+ <_1524367564_1345_35680> <http://uml/2#client> <_1524367564_1247_35471> .
470
+ # appendRDFInTagURI
471
+ <_1524367564_1345_35680> <http://uml/2#supplier> <_1524367564_1330_35664> .
472
+ <_1524367564_1247_35471> <http://uml/2#implementation> <_1524367564_1347_35682> .
473
+ <_1524367564_1347_35682> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Realization> .
474
+ #appendXMLID xmi:id="_1524367564_1347_35682"
475
+ # appendRDFInTagURI
476
+ <_1524367564_1347_35682> <http://uml/2#client> <_1524367564_1247_35471> .
477
+ # appendRDFInTagURI
478
+ <_1524367564_1347_35682> <http://uml/2#supplier> <_1524367564_1324_35658> .
479
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1291_35492> .
480
+ <_1524367564_1291_35492> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
481
+ #appendXMLID xmi:id="_1524367564_1291_35492"
482
+ <_1524367564_1291_35492> <http://uml/2#name> "getClasss3Element" .
483
+ <_1524367564_1291_35492> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
484
+ <_1524367564_1291_35492> <http://uml/2#ownedParameter> <_1524367564_1313_35518> .
485
+ <_1524367564_1313_35518> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
486
+ #appendXMLID xmi:id="_1524367564_1313_35518"
487
+ <_1524367564_1313_35518> <http://uml/2#name> "return parameter" .
488
+ <_1524367564_1313_35518> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
489
+ <_1524367564_1313_35518> <http://uml/2#type> <_1524367564_1218_35441> .
490
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1292_35493> .
491
+ <_1524367564_1292_35493> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
492
+ #appendXMLID xmi:id="_1524367564_1292_35493"
493
+ <_1524367564_1292_35493> <http://uml/2#name> "getUneString" .
494
+ <_1524367564_1292_35493> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
495
+ <_1524367564_1292_35493> <http://uml/2#ownedParameter> <_1524367564_1314_35521> .
496
+ <_1524367564_1314_35521> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
497
+ #appendXMLID xmi:id="_1524367564_1314_35521"
498
+ <_1524367564_1314_35521> <http://uml/2#name> "return parameter" .
499
+ <_1524367564_1314_35521> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
500
+ <_1524367564_1314_35521> <http://uml/2#type> <_4_13_32142> .
501
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1293_35494> .
502
+ <_1524367564_1293_35494> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
503
+ #appendXMLID xmi:id="_1524367564_1293_35494"
504
+ <_1524367564_1293_35494> <http://uml/2#name> "getAnInt" .
505
+ <_1524367564_1293_35494> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
506
+ <_1524367564_1293_35494> <http://uml/2#ownedParameter> <_1524367564_1315_35524> .
507
+ <_1524367564_1315_35524> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
508
+ #appendXMLID xmi:id="_1524367564_1315_35524"
509
+ <_1524367564_1315_35524> <http://uml/2#name> "return parameter" .
510
+ <_1524367564_1315_35524> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
511
+ <_1524367564_1315_35524> <http://uml/2#type> <_4_9_32140> .
512
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1294_35495> .
513
+ <_1524367564_1294_35495> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
514
+ #appendXMLID xmi:id="_1524367564_1294_35495"
515
+ <_1524367564_1294_35495> <http://uml/2#name> "get A Boolean" .
516
+ <_1524367564_1294_35495> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
517
+ <_1524367564_1294_35495> <http://uml/2#ownedParameter> <_1524367564_1316_35527> .
518
+ <_1524367564_1316_35527> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
519
+ #appendXMLID xmi:id="_1524367564_1316_35527"
520
+ <_1524367564_1316_35527> <http://uml/2#name> "return parameter" .
521
+ <_1524367564_1316_35527> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
522
+ <_1524367564_1316_35527> <http://uml/2#type> <_4_5_32138> .
523
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1295_35496> .
524
+ <_1524367564_1295_35496> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
525
+ #appendXMLID xmi:id="_1524367564_1295_35496"
526
+ <_1524367564_1295_35496> <http://uml/2#name> "a Static Void Operation" .
527
+ <_1524367564_1295_35496> <http://uml/2#isStatic> "true" .
528
+ <_1524367564_1295_35496> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
529
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1296_35497> .
530
+ <_1524367564_1296_35497> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
531
+ #appendXMLID xmi:id="_1524367564_1296_35497"
532
+ <_1524367564_1296_35497> <http://uml/2#name> "a Private Method" .
533
+ <_1524367564_1296_35497> <http://uml/2#visibility> <http://uml/2#visibilityKind_private> .
534
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1297_35498> .
535
+ <_1524367564_1297_35498> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
536
+ #appendXMLID xmi:id="_1524367564_1297_35498"
537
+ <_1524367564_1297_35498> <http://uml/2#name> "a Protected Method" .
538
+ <_1524367564_1297_35498> <http://uml/2#visibility> <http://uml/2#visibilityKind_protected> .
539
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1298_35499> .
540
+ <_1524367564_1298_35499> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
541
+ #appendXMLID xmi:id="_1524367564_1298_35499"
542
+ <_1524367564_1298_35499> <http://uml/2#name> "a Package Method" .
543
+ <_1524367564_1298_35499> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
544
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1299_35500> .
545
+ <_1524367564_1299_35500> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
546
+ #appendXMLID xmi:id="_1524367564_1299_35500"
547
+ <_1524367564_1299_35500> <http://uml/2#name> "aBinaryOperation" .
548
+ <_1524367564_1299_35500> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
549
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1300_35501> .
550
+ <_1524367564_1300_35501> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
551
+ #appendXMLID xmi:id="_1524367564_1300_35501"
552
+ <_1524367564_1300_35501> <http://uml/2#name> "setUneString" .
553
+ <_1524367564_1300_35501> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
554
+ <_1524367564_1300_35501> <http://uml/2#ownedParameter> <_1524367564_1317_35632> .
555
+ <_1524367564_1317_35632> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
556
+ #appendXMLID xmi:id="_1524367564_1317_35632"
557
+ <_1524367564_1317_35632> <http://uml/2#name> "uneString" .
558
+ <_1524367564_1317_35632> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_in> .
559
+ <_1524367564_1317_35632> <http://uml/2#type> <_4_13_32142> .
560
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1301_35502> .
561
+ <_1524367564_1301_35502> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
562
+ #appendXMLID xmi:id="_1524367564_1301_35502"
563
+ <_1524367564_1301_35502> <http://uml/2#name> "SetUneStringDansInterface5" .
564
+ <_1524367564_1301_35502> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
565
+ <_1524367564_1301_35502> <http://uml/2#ownedParameter> <_1524367564_1318_35634> .
566
+ <_1524367564_1318_35634> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
567
+ #appendXMLID xmi:id="_1524367564_1318_35634"
568
+ <_1524367564_1318_35634> <http://uml/2#name> "uneString" .
569
+ <_1524367564_1318_35634> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_in> .
570
+ <_1524367564_1318_35634> <http://uml/2#type> <_4_13_32142> .
571
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1302_35503> .
572
+ <_1524367564_1302_35503> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
573
+ #appendXMLID xmi:id="_1524367564_1302_35503"
574
+ <_1524367564_1302_35503> <http://uml/2#name> "getUneStringDansInterface5" .
575
+ <_1524367564_1302_35503> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
576
+ <_1524367564_1302_35503> <http://uml/2#ownedParameter> <_1524367564_1319_35636> .
577
+ <_1524367564_1319_35636> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
578
+ #appendXMLID xmi:id="_1524367564_1319_35636"
579
+ <_1524367564_1319_35636> <http://uml/2#name> "return parameter" .
580
+ <_1524367564_1319_35636> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
581
+ <_1524367564_1319_35636> <http://uml/2#type> <_4_13_32142> .
582
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1303_35505> .
583
+ <_1524367564_1303_35505> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
584
+ #appendXMLID xmi:id="_1524367564_1303_35505"
585
+ <_1524367564_1303_35505> <http://uml/2#name> "methodeThrowsMyExceptionAndMyException2" .
586
+ <_1524367564_1303_35505> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
587
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1304_35506> .
588
+ <_1524367564_1304_35506> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
589
+ #appendXMLID xmi:id="_1524367564_1304_35506"
590
+ <_1524367564_1304_35506> <http://uml/2#name> "methodeThrowsMyException" .
591
+ <_1524367564_1304_35506> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
592
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1305_35507> .
593
+ <_1524367564_1305_35507> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
594
+ #appendXMLID xmi:id="_1524367564_1305_35507"
595
+ <_1524367564_1305_35507> <http://uml/2#name> "methodeThrowsWithParam" .
596
+ <_1524367564_1305_35507> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
597
+ <_1524367564_1305_35507> <http://uml/2#ownedParameter> <_1524367564_1321_35651> .
598
+ <_1524367564_1321_35651> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
599
+ #appendXMLID xmi:id="_1524367564_1321_35651"
600
+ <_1524367564_1321_35651> <http://uml/2#name> "sans nom2" .
601
+ <_1524367564_1321_35651> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_in> .
602
+ <_1524367564_1321_35651> <http://uml/2#type> <_4_13_32142> .
603
+ <_1524367564_1305_35507> <http://uml/2#ownedParameter> <_1524367564_1320_35648> .
604
+ <_1524367564_1320_35648> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
605
+ #appendXMLID xmi:id="_1524367564_1320_35648"
606
+ <_1524367564_1320_35648> <http://uml/2#name> "return parameter" .
607
+ <_1524367564_1320_35648> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
608
+ <_1524367564_1320_35648> <http://uml/2#type> <_4_9_32140> .
609
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367564_1306_35508> .
610
+ <_1524367564_1306_35508> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
611
+ #appendXMLID xmi:id="_1524367564_1306_35508"
612
+ <_1524367564_1306_35508> <http://uml/2#name> "methodWithObjectParams*" .
613
+ <_1524367564_1306_35508> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
614
+ <_1524367564_1306_35508> <http://uml/2#ownedParameter> <_1524367564_1322_35652> .
615
+ <_1524367564_1322_35652> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
616
+ #appendXMLID xmi:id="_1524367564_1322_35652"
617
+ <_1524367564_1322_35652> <http://uml/2#name> "class3Param" .
618
+ <_1524367564_1322_35652> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_in> .
619
+ <_1524367564_1322_35652> <http://uml/2#type> <_1524367564_1218_35441> .
620
+ <_1524367564_1306_35508> <http://uml/2#ownedParameter> <_1524367564_1323_35653> .
621
+ <_1524367564_1323_35653> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
622
+ #appendXMLID xmi:id="_1524367564_1323_35653"
623
+ <_1524367564_1323_35653> <http://uml/2#name> "classe3ParamMult" .
624
+ <_1524367564_1323_35653> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_in> .
625
+ <_1524367564_1323_35653> <http://uml/2#type> <_1524367564_1218_35441> .
626
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367776_57_37722> .
627
+ <_1524367776_57_37722> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
628
+ #appendXMLID xmi:id="_1524367776_57_37722"
629
+ <_1524367776_57_37722> <http://uml/2#name> "setAnInt" .
630
+ <_1524367776_57_37722> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
631
+ <_1524367776_57_37722> <http://uml/2#ownedParameter> <_1524367776_59_37725> .
632
+ <_1524367776_59_37725> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
633
+ #appendXMLID xmi:id="_1524367776_59_37725"
634
+ <_1524367776_59_37725> <http://uml/2#name> "anIntParam" .
635
+ <_1524367776_59_37725> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_in> .
636
+ <_1524367776_59_37725> <http://uml/2#type> <_4_9_32140> .
637
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367776_60_37730> .
638
+ <_1524367776_60_37730> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
639
+ #appendXMLID xmi:id="_1524367776_60_37730"
640
+ <_1524367776_60_37730> <http://uml/2#name> "methodReturnListOfClasse3" .
641
+ <_1524367776_60_37730> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
642
+ <_1524367776_60_37730> <http://uml/2#ownedParameter> <_1524367776_62_37739> .
643
+ <_1524367776_62_37739> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
644
+ #appendXMLID xmi:id="_1524367776_62_37739"
645
+ <_1524367776_62_37739> <http://uml/2#name> "return parameter" .
646
+ <_1524367776_62_37739> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
647
+ <_1524367776_62_37739> <http://uml/2#type> <_1524367564_1218_35441> .
648
+ <_1524367564_1247_35471> <http://uml/2#ownedOperation> <_1524367776_63_37741> .
649
+ <_1524367776_63_37741> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
650
+ #appendXMLID xmi:id="_1524367776_63_37741"
651
+ <_1524367776_63_37741> <http://uml/2#name> "methodReturnSetOfClasse3" .
652
+ <_1524367776_63_37741> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
653
+ <_1524367776_63_37741> <http://uml/2#ownedParameter> <_1524367776_64_37742> .
654
+ <_1524367776_64_37742> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
655
+ #appendXMLID xmi:id="_1524367776_64_37742"
656
+ <_1524367776_64_37742> <http://uml/2#name> "return parameter" .
657
+ <_1524367776_64_37742> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
658
+ <_1524367776_64_37742> <http://uml/2#type> <_1524367564_1218_35441> .
659
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1284_35484> .
660
+ <_1524367564_1284_35484> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
661
+ #appendXMLID xmi:id="_1524367564_1284_35484"
662
+ <_1524367564_1284_35484> <http://uml/2#name> "prop1" .
663
+ <_1524367564_1284_35484> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
664
+ <_1524367564_1284_35484> <http://uml/2#type> <_1524367564_1247_35471> .
665
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1285_35485> .
666
+ <_1524367564_1285_35485> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
667
+ #appendXMLID xmi:id="_1524367564_1285_35485"
668
+ <_1524367564_1285_35485> <http://uml/2#name> "an Int Attribute" .
669
+ <_1524367564_1285_35485> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
670
+ <_1524367564_1285_35485> <http://uml/2#type> <_4_9_32140> .
671
+ <_1524367564_1285_35485> <http://ft/uml/2#taggedValue> <_1524367776_93_37795> .
672
+ <_1524367776_93_37795> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://ft/uml/2#TaggedValue> .
673
+ <_1524367776_93_37795> <http://ft/uml/2#tagType> <_0_16000_14953> .
674
+ <_1524367776_93_37795> <http://ft/uml/2#value> <_1524367776_93_37795-val> .
675
+ <_1524367776_93_37795-val> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralString> .
676
+ <_1524367776_93_37795-val> <http://uml/2#value> "Special key for unit tests:\n\n__DOC_PROP__\nfsd" .
677
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1286_35486> .
678
+ <_1524367564_1286_35486> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
679
+ #appendXMLID xmi:id="_1524367564_1286_35486"
680
+ <_1524367564_1286_35486> <http://uml/2#name> "a String Attribute" .
681
+ <_1524367564_1286_35486> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
682
+ <_1524367564_1286_35486> <http://uml/2#type> <_4_13_32142> .
683
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1287_35487> .
684
+ <_1524367564_1287_35487> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
685
+ #appendXMLID xmi:id="_1524367564_1287_35487"
686
+ <_1524367564_1287_35487> <http://uml/2#name> "a Static Int Attribute" .
687
+ <_1524367564_1287_35487> <http://uml/2#isStatic> "true" .
688
+ <_1524367564_1287_35487> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
689
+ <_1524367564_1287_35487> <http://uml/2#type> <_4_9_32140> .
690
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1288_35488> .
691
+ <_1524367564_1288_35488> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
692
+ #appendXMLID xmi:id="_1524367564_1288_35488"
693
+ <_1524367564_1288_35488> <http://uml/2#name> "aStringArrayAttribute" .
694
+ <_1524367564_1288_35488> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
695
+ <_1524367564_1288_35488> <http://uml/2#type> <_4_13_32142> .
696
+ # multiplicity upperValue
697
+ <_1524367564_1288_35488> <http://uml/2#upperValue> <_1524367564_1288_35488_upperValue> .
698
+ <_1524367564_1288_35488_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
699
+ <_1524367564_1288_35488_upperValue> <http://uml/2#value> "-1" .
700
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1289_35489> .
701
+ <_1524367564_1289_35489> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
702
+ #appendXMLID xmi:id="_1524367564_1289_35489"
703
+ <_1524367564_1289_35489> <http://uml/2#name> "couleur" .
704
+ <_1524367564_1289_35489> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
705
+ <_1524367564_1289_35489> <http://uml/2#type> <_1524367564_1307_35510> .
706
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1290_35490> .
707
+ <_1524367564_1290_35490> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
708
+ #appendXMLID xmi:id="_1524367564_1290_35490"
709
+ <_1524367564_1290_35490> <http://uml/2#name> "anObjectParameter" .
710
+ <_1524367564_1290_35490> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
711
+ <_1524367564_1290_35490> <http://uml/2#type> <_1524367564_1222_35445> .
712
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367776_6_37617> .
713
+ <_1524367776_6_37617> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
714
+ #appendXMLID xmi:id="_1524367776_6_37617"
715
+ <_1524367776_6_37617> <http://uml/2#name> "a Unique Attribute" .
716
+ <_1524367776_6_37617> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
717
+ <_1524367776_6_37617> <http://uml/2#type> <_4_13_32142> .
718
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367776_7_37619> .
719
+ <_1524367776_7_37619> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
720
+ #appendXMLID xmi:id="_1524367776_7_37619"
721
+ <_1524367776_7_37619> <http://uml/2#name> "aBooleanAttribute" .
722
+ <_1524367776_7_37619> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
723
+ <_1524367776_7_37619> <http://uml/2#type> <_4_5_32138> .
724
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367776_53_37670> .
725
+ <_1524367776_53_37670> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
726
+ #appendXMLID xmi:id="_1524367776_53_37670"
727
+ <_1524367776_53_37670> <http://uml/2#name> "a Non Unique Attribute" .
728
+ <_1524367776_53_37670> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
729
+ <_1524367776_53_37670> <http://uml/2#type> <_4_13_32142> .
730
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367776_66_37748> .
731
+ <_1524367776_66_37748> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
732
+ #appendXMLID xmi:id="_1524367776_66_37748"
733
+ <_1524367776_66_37748> <http://uml/2#name> "couleurOneMany" .
734
+ <_1524367776_66_37748> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
735
+ <_1524367776_66_37748> <http://uml/2#type> <_1524367564_1307_35510> .
736
+ # multiplicity upperValue
737
+ <_1524367776_66_37748> <http://uml/2#upperValue> <_1524367776_66_37748_upperValue> .
738
+ <_1524367776_66_37748_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
739
+ <_1524367776_66_37748_upperValue> <http://uml/2#value> "1..*" .
740
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367776_68_37750> .
741
+ <_1524367776_68_37750> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
742
+ #appendXMLID xmi:id="_1524367776_68_37750"
743
+ <_1524367776_68_37750> <http://uml/2#name> "couleurZeroOne" .
744
+ <_1524367776_68_37750> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
745
+ <_1524367776_68_37750> <http://uml/2#type> <_1524367564_1307_35510> .
746
+ # multiplicity upperValue
747
+ <_1524367776_68_37750> <http://uml/2#upperValue> <_1524367776_68_37750_upperValue> .
748
+ <_1524367776_68_37750_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
749
+ <_1524367776_68_37750_upperValue> <http://uml/2#value> "0..1" .
750
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367776_70_37752> .
751
+ <_1524367776_70_37752> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
752
+ #appendXMLID xmi:id="_1524367776_70_37752"
753
+ <_1524367776_70_37752> <http://uml/2#name> "couleurZeroMany" .
754
+ <_1524367776_70_37752> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
755
+ <_1524367776_70_37752> <http://uml/2#type> <_1524367564_1307_35510> .
756
+ # multiplicity upperValue
757
+ <_1524367776_70_37752> <http://uml/2#upperValue> <_1524367776_70_37752_upperValue> .
758
+ <_1524367776_70_37752_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
759
+ <_1524367776_70_37752_upperValue> <http://uml/2#value> "0..*" .
760
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1425_35878> .
761
+ <_1524367564_1425_35878> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
762
+ #appendXMLID xmi:id="_1524367564_1425_35878"
763
+ <_1524367564_1425_35878> <http://uml/2#name> "withQualifierMany" .
764
+ <_1524367564_1425_35878> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
765
+ <_1524367564_1425_35878> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
766
+ # appendRDFInTagURI
767
+ <_1524367564_1425_35878> <http://uml/2#association> <_1524367564_1424_35877> .
768
+ <_1524367564_1425_35878> <http://uml/2#type> <_1524367564_1218_35441> .
769
+ # multiplicity upperValue
770
+ <_1524367564_1425_35878> <http://uml/2#upperValue> <_1524367564_1425_35878_upperValue> .
771
+ <_1524367564_1425_35878_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
772
+ <_1524367564_1425_35878_upperValue> <http://uml/2#value> "-1" .
773
+ # multiplicity lowerValue
774
+ <_1524367564_1425_35878> <http://uml/2#lowerValue> <_1524367564_1425_35878_lowerValue> .
775
+ <_1524367564_1425_35878_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
776
+ <_1524367564_1425_35878_lowerValue> <http://uml/2#value> "0" .
777
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1434_35888> .
778
+ <_1524367564_1434_35888> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
779
+ #appendXMLID xmi:id="_1524367564_1434_35888"
780
+ <_1524367564_1434_35888> <http://uml/2#name> "withQualifier" .
781
+ <_1524367564_1434_35888> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
782
+ <_1524367564_1434_35888> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
783
+ # appendRDFInTagURI
784
+ <_1524367564_1434_35888> <http://uml/2#association> <_1524367564_1433_35887> .
785
+ <_1524367564_1434_35888> <http://uml/2#type> <_1524367564_1218_35441> .
786
+ # multiplicity upperValue
787
+ <_1524367564_1434_35888> <http://uml/2#upperValue> <_1524367564_1434_35888_upperValue> .
788
+ <_1524367564_1434_35888_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
789
+ <_1524367564_1434_35888_upperValue> <http://uml/2#value> "1" .
790
+ # multiplicity lowerValue
791
+ <_1524367564_1434_35888> <http://uml/2#lowerValue> <_1524367564_1434_35888_lowerValue> .
792
+ <_1524367564_1434_35888_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
793
+ <_1524367564_1434_35888_lowerValue> <http://uml/2#value> "0" .
794
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1443_35898> .
795
+ <_1524367564_1443_35898> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
796
+ #appendXMLID xmi:id="_1524367564_1443_35898"
797
+ <_1524367564_1443_35898> <http://uml/2#name> "withQualifierBiNav" .
798
+ <_1524367564_1443_35898> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
799
+ <_1524367564_1443_35898> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
800
+ # appendRDFInTagURI
801
+ <_1524367564_1443_35898> <http://uml/2#association> <_1524367564_1442_35897> .
802
+ <_1524367564_1443_35898> <http://uml/2#type> <_1524367564_1218_35441> .
803
+ # multiplicity upperValue
804
+ <_1524367564_1443_35898> <http://uml/2#upperValue> <_1524367564_1443_35898_upperValue> .
805
+ <_1524367564_1443_35898_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
806
+ <_1524367564_1443_35898_upperValue> <http://uml/2#value> "1" .
807
+ # multiplicity lowerValue
808
+ <_1524367564_1443_35898> <http://uml/2#lowerValue> <_1524367564_1443_35898_lowerValue> .
809
+ <_1524367564_1443_35898_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
810
+ <_1524367564_1443_35898_lowerValue> <http://uml/2#value> "0" .
811
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1454_35918> .
812
+ <_1524367564_1454_35918> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
813
+ #appendXMLID xmi:id="_1524367564_1454_35918"
814
+ <_1524367564_1454_35918> <http://uml/2#name> "compositeElement" .
815
+ <_1524367564_1454_35918> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
816
+ <_1524367564_1454_35918> <http://uml/2#aggregation> <http://uml/2#aggregationKind_composite> .
817
+ # appendRDFInTagURI
818
+ <_1524367564_1454_35918> <http://uml/2#association> <_1524367564_1453_35917> .
819
+ <_1524367564_1454_35918> <http://uml/2#type> <_1524367564_1220_35443> .
820
+ # multiplicity upperValue
821
+ <_1524367564_1454_35918> <http://uml/2#upperValue> <_1524367564_1454_35918_upperValue> .
822
+ <_1524367564_1454_35918_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
823
+ <_1524367564_1454_35918_upperValue> <http://uml/2#value> "-1" .
824
+ # multiplicity lowerValue
825
+ <_1524367564_1454_35918> <http://uml/2#lowerValue> <_1524367564_1454_35918_lowerValue> .
826
+ <_1524367564_1454_35918_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
827
+ <_1524367564_1454_35918_lowerValue> <http://uml/2#value> "0" .
828
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1463_35928> .
829
+ <_1524367564_1463_35928> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
830
+ #appendXMLID xmi:id="_1524367564_1463_35928"
831
+ <_1524367564_1463_35928> <http://uml/2#name> "readOnlyT" .
832
+ <_1524367564_1463_35928> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
833
+ <_1524367564_1463_35928> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
834
+ # appendRDFInTagURI
835
+ <_1524367564_1463_35928> <http://uml/2#association> <_1524367564_1462_35927> .
836
+ <_1524367564_1463_35928> <http://uml/2#type> <_1524367564_1222_35445> .
837
+ # multiplicity upperValue
838
+ <_1524367564_1463_35928> <http://uml/2#upperValue> <_1524367564_1463_35928_upperValue> .
839
+ <_1524367564_1463_35928_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
840
+ <_1524367564_1463_35928_upperValue> <http://uml/2#value> "1" .
841
+ # multiplicity lowerValue
842
+ <_1524367564_1463_35928> <http://uml/2#lowerValue> <_1524367564_1463_35928_lowerValue> .
843
+ <_1524367564_1463_35928_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
844
+ <_1524367564_1463_35928_lowerValue> <http://uml/2#value> "1" .
845
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1473_35941> .
846
+ <_1524367564_1473_35941> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
847
+ #appendXMLID xmi:id="_1524367564_1473_35941"
848
+ <_1524367564_1473_35941> <http://uml/2#name> "sortedA" .
849
+ <_1524367564_1473_35941> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
850
+ <_1524367564_1473_35941> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
851
+ # appendRDFInTagURI
852
+ <_1524367564_1473_35941> <http://uml/2#association> <_1524367564_1472_35940> .
853
+ <_1524367564_1473_35941> <http://uml/2#type> <_1524367564_1222_35445> .
854
+ # multiplicity upperValue
855
+ <_1524367564_1473_35941> <http://uml/2#upperValue> <_1524367564_1473_35941_upperValue> .
856
+ <_1524367564_1473_35941_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
857
+ <_1524367564_1473_35941_upperValue> <http://uml/2#value> "-1" .
858
+ # multiplicity lowerValue
859
+ <_1524367564_1473_35941> <http://uml/2#lowerValue> <_1524367564_1473_35941_lowerValue> .
860
+ <_1524367564_1473_35941_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
861
+ <_1524367564_1473_35941_lowerValue> <http://uml/2#value> "0" .
862
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1493_35967> .
863
+ <_1524367564_1493_35967> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
864
+ #appendXMLID xmi:id="_1524367564_1493_35967"
865
+ <_1524367564_1493_35967> <http://uml/2#name> "roleA" .
866
+ <_1524367564_1493_35967> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
867
+ <_1524367564_1493_35967> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
868
+ # appendRDFInTagURI
869
+ <_1524367564_1493_35967> <http://uml/2#association> <_1524367564_1492_35966> .
870
+ <_1524367564_1493_35967> <http://uml/2#type> <_1524367564_1222_35445> .
871
+ # multiplicity upperValue
872
+ <_1524367564_1493_35967> <http://uml/2#upperValue> <_1524367564_1493_35967_upperValue> .
873
+ <_1524367564_1493_35967_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
874
+ <_1524367564_1493_35967_upperValue> <http://uml/2#value> "1" .
875
+ # multiplicity lowerValue
876
+ <_1524367564_1493_35967> <http://uml/2#lowerValue> <_1524367564_1493_35967_lowerValue> .
877
+ <_1524367564_1493_35967_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
878
+ <_1524367564_1493_35967_lowerValue> <http://uml/2#value> "0" .
879
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1502_35977> .
880
+ <_1524367564_1502_35977> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
881
+ #appendXMLID xmi:id="_1524367564_1502_35977"
882
+ <_1524367564_1502_35977> <http://uml/2#name> "nonUnique" .
883
+ <_1524367564_1502_35977> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
884
+ <_1524367564_1502_35977> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
885
+ # appendRDFInTagURI
886
+ <_1524367564_1502_35977> <http://uml/2#association> <_1524367564_1501_35976> .
887
+ <_1524367564_1502_35977> <http://uml/2#type> <_1524367564_1222_35445> .
888
+ # multiplicity upperValue
889
+ <_1524367564_1502_35977> <http://uml/2#upperValue> <_1524367564_1502_35977_upperValue> .
890
+ <_1524367564_1502_35977_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
891
+ <_1524367564_1502_35977_upperValue> <http://uml/2#value> "1" .
892
+ # multiplicity lowerValue
893
+ <_1524367564_1502_35977> <http://uml/2#lowerValue> <_1524367564_1502_35977_lowerValue> .
894
+ <_1524367564_1502_35977_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
895
+ <_1524367564_1502_35977_lowerValue> <http://uml/2#value> "1" .
896
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1511_35988> .
897
+ <_1524367564_1511_35988> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
898
+ #appendXMLID xmi:id="_1524367564_1511_35988"
899
+ <_1524367564_1511_35988> <http://uml/2#name> "/derivedA" .
900
+ <_1524367564_1511_35988> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
901
+ <_1524367564_1511_35988> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
902
+ # appendRDFInTagURI
903
+ <_1524367564_1511_35988> <http://uml/2#association> <_1524367564_1510_35987> .
904
+ <_1524367564_1511_35988> <http://uml/2#type> <_1524367564_1222_35445> .
905
+ # multiplicity upperValue
906
+ <_1524367564_1511_35988> <http://uml/2#upperValue> <_1524367564_1511_35988_upperValue> .
907
+ <_1524367564_1511_35988_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
908
+ <_1524367564_1511_35988_upperValue> <http://uml/2#value> "1" .
909
+ # multiplicity lowerValue
910
+ <_1524367564_1511_35988> <http://uml/2#lowerValue> <_1524367564_1511_35988_lowerValue> .
911
+ <_1524367564_1511_35988_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
912
+ <_1524367564_1511_35988_lowerValue> <http://uml/2#value> "1" .
913
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1524_36106> .
914
+ <_1524367564_1524_36106> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
915
+ #appendXMLID xmi:id="_1524367564_1524_36106"
916
+ <_1524367564_1524_36106> <http://uml/2#name> "bidi_c2_2_s" .
917
+ <_1524367564_1524_36106> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
918
+ <_1524367564_1524_36106> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
919
+ # appendRDFInTagURI
920
+ <_1524367564_1524_36106> <http://uml/2#association> <_1524367564_1523_36105> .
921
+ <_1524367564_1524_36106> <http://uml/2#type> <_1524367564_1208_35431> .
922
+ # multiplicity upperValue
923
+ <_1524367564_1524_36106> <http://uml/2#upperValue> <_1524367564_1524_36106_upperValue> .
924
+ <_1524367564_1524_36106_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
925
+ <_1524367564_1524_36106_upperValue> <http://uml/2#value> "-1" .
926
+ # multiplicity lowerValue
927
+ <_1524367564_1524_36106> <http://uml/2#lowerValue> <_1524367564_1524_36106_lowerValue> .
928
+ <_1524367564_1524_36106_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
929
+ <_1524367564_1524_36106_lowerValue> <http://uml/2#value> "0" .
930
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1533_36118> .
931
+ <_1524367564_1533_36118> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
932
+ #appendXMLID xmi:id="_1524367564_1533_36118"
933
+ <_1524367564_1533_36118> <http://uml/2#name> "bidi_c2_1_1" .
934
+ <_1524367564_1533_36118> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
935
+ <_1524367564_1533_36118> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
936
+ # appendRDFInTagURI
937
+ <_1524367564_1533_36118> <http://uml/2#association> <_1524367564_1532_36117> .
938
+ <_1524367564_1533_36118> <http://uml/2#type> <_1524367564_1208_35431> .
939
+ # multiplicity upperValue
940
+ <_1524367564_1533_36118> <http://uml/2#upperValue> <_1524367564_1533_36118_upperValue> .
941
+ <_1524367564_1533_36118_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
942
+ <_1524367564_1533_36118_upperValue> <http://uml/2#value> "1" .
943
+ # multiplicity lowerValue
944
+ <_1524367564_1533_36118> <http://uml/2#lowerValue> <_1524367564_1533_36118_lowerValue> .
945
+ <_1524367564_1533_36118_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
946
+ <_1524367564_1533_36118_lowerValue> <http://uml/2#value> "1" .
947
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367564_1543_36129> .
948
+ <_1524367564_1543_36129> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
949
+ #appendXMLID xmi:id="_1524367564_1543_36129"
950
+ <_1524367564_1543_36129> <http://uml/2#name> "bidi_c2_3_s" .
951
+ <_1524367564_1543_36129> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
952
+ <_1524367564_1543_36129> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
953
+ # appendRDFInTagURI
954
+ <_1524367564_1543_36129> <http://uml/2#association> <_1524367564_1541_36127> .
955
+ <_1524367564_1543_36129> <http://uml/2#type> <_1524367564_1208_35431> .
956
+ # multiplicity upperValue
957
+ <_1524367564_1543_36129> <http://uml/2#upperValue> <_1524367564_1543_36129_upperValue> .
958
+ <_1524367564_1543_36129_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
959
+ <_1524367564_1543_36129_upperValue> <http://uml/2#value> "-1" .
960
+ # multiplicity lowerValue
961
+ <_1524367564_1543_36129> <http://uml/2#lowerValue> <_1524367564_1543_36129_lowerValue> .
962
+ <_1524367564_1543_36129_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
963
+ <_1524367564_1543_36129_lowerValue> <http://uml/2#value> "0" .
964
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367776_73_37773> .
965
+ <_1524367776_73_37773> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
966
+ #appendXMLID xmi:id="_1524367776_73_37773"
967
+ <_1524367776_73_37773> <http://uml/2#name> "classeabstraite" .
968
+ <_1524367776_73_37773> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
969
+ <_1524367776_73_37773> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
970
+ # appendRDFInTagURI
971
+ <_1524367776_73_37773> <http://uml/2#association> <_1524367776_72_37772> .
972
+ <_1524367776_73_37773> <http://uml/2#type> <_1524367564_1206_35429> .
973
+ # multiplicity upperValue
974
+ <_1524367776_73_37773> <http://uml/2#upperValue> <_1524367776_73_37773_upperValue> .
975
+ <_1524367776_73_37773_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
976
+ <_1524367776_73_37773_upperValue> <http://uml/2#value> "-1" .
977
+ # multiplicity lowerValue
978
+ <_1524367776_73_37773> <http://uml/2#lowerValue> <_1524367776_73_37773_lowerValue> .
979
+ <_1524367776_73_37773_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
980
+ <_1524367776_73_37773_lowerValue> <http://uml/2#value> "0" .
981
+ <_1524367564_1247_35471> <http://uml/2#ownedAttribute> <_1524367776_82_37783> .
982
+ <_1524367776_82_37783> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
983
+ #appendXMLID xmi:id="_1524367776_82_37783"
984
+ <_1524367776_82_37783> <http://uml/2#name> "interface5" .
985
+ <_1524367776_82_37783> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
986
+ <_1524367776_82_37783> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
987
+ # appendRDFInTagURI
988
+ <_1524367776_82_37783> <http://uml/2#association> <_1524367776_81_37782> .
989
+ <_1524367776_82_37783> <http://uml/2#type> <_1524367564_1332_35666> .
990
+ # multiplicity upperValue
991
+ <_1524367776_82_37783> <http://uml/2#upperValue> <_1524367776_82_37783_upperValue> .
992
+ <_1524367776_82_37783_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
993
+ <_1524367776_82_37783_upperValue> <http://uml/2#value> "-1" .
994
+ # multiplicity lowerValue
995
+ <_1524367776_82_37783> <http://uml/2#lowerValue> <_1524367776_82_37783_lowerValue> .
996
+ <_1524367776_82_37783_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
997
+ <_1524367776_82_37783_lowerValue> <http://uml/2#value> "0" .
998
+ <_1524367564_1247_35471> <http://uml/2#nestedClassifier> <_1524367776_44_37660> .
999
+ <_1524367776_44_37660> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1000
+ #appendXMLID xmi:id="_1524367776_44_37660"
1001
+ <_1524367776_44_37660> <http://uml/2#name> "InnerClassInsideCdt" .
1002
+ <_1524367776_44_37660> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1003
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1204_35427> .
1004
+ <_1524367564_1204_35427> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1005
+ #appendXMLID xmi:id="_1524367564_1204_35427"
1006
+ <_1524367564_1204_35427> <http://uml/2#name> "classWithEntityAuxiliaryStereotype" .
1007
+ <_1524367564_1204_35427> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1008
+ <_1524367564_1204_35427> <http://uml/2#appliedStereotype> <_7341696_495_13151> .
1009
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1198_35420> .
1010
+ <_1524367564_1198_35420> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1011
+ #appendXMLID xmi:id="_1524367564_1198_35420"
1012
+ <_1524367564_1198_35420> <http://uml/2#name> "RootClass" .
1013
+ <_1524367564_1198_35420> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1014
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1200_35422> .
1015
+ <_1524367564_1200_35422> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1016
+ #appendXMLID xmi:id="_1524367564_1200_35422"
1017
+ <_1524367564_1200_35422> <http://uml/2#name> "FondationClass" .
1018
+ <_1524367564_1200_35422> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1019
+ <_1524367564_1200_35422> <http://uml/2#generalization> <_1524367564_1252_35476> .
1020
+ <_1524367564_1252_35476> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
1021
+ #appendXMLID xmi:id="_1524367564_1252_35476"
1022
+ # appendRDFInTagURI
1023
+ <_1524367564_1252_35476> <http://uml/2#general> <_1524367564_1198_35420> .
1024
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1202_35424> .
1025
+ <_1524367564_1202_35424> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1026
+ #appendXMLID xmi:id="_1524367564_1202_35424"
1027
+ <_1524367564_1202_35424> <http://uml/2#name> "FondationClass2" .
1028
+ <_1524367564_1202_35424> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1029
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1212_35435> .
1030
+ <_1524367564_1212_35435> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1031
+ #appendXMLID xmi:id="_1524367564_1212_35435"
1032
+ <_1524367564_1212_35435> <http://uml/2#name> "ClassWithCustomConstructor" .
1033
+ <_1524367564_1212_35435> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1034
+ <_1524367564_1212_35435> <http://uml/2#ownedOperation> <_1524367564_1550_36170> .
1035
+ <_1524367564_1550_36170> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1036
+ #appendXMLID xmi:id="_1524367564_1550_36170"
1037
+ <_1524367564_1550_36170> <http://uml/2#name> "customConstructor" .
1038
+ <_1524367564_1550_36170> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1039
+ <_1524367564_1550_36170> <http://uml/2#appliedStereotype> <_7341696_516_13161> .
1040
+ <_1524367564_1550_36170> <http://uml/2#ownedParameter> <_1524367564_1552_36173> .
1041
+ <_1524367564_1552_36173> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
1042
+ #appendXMLID xmi:id="_1524367564_1552_36173"
1043
+ <_1524367564_1552_36173> <http://uml/2#name> "i" .
1044
+ <_1524367564_1552_36173> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_in> .
1045
+ <_1524367564_1552_36173> <http://uml/2#type> <_4_9_32140> .
1046
+ <_1524367564_1212_35435> <http://uml/2#ownedOperation> <_1524367776_55_37719> .
1047
+ <_1524367776_55_37719> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1048
+ #appendXMLID xmi:id="_1524367776_55_37719"
1049
+ <_1524367776_55_37719> <http://uml/2#name> "defaultConstructor" .
1050
+ <_1524367776_55_37719> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1051
+ <_1524367776_55_37719> <http://uml/2#appliedStereotype> <_7341696_516_13161> .
1052
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1324_35658> .
1053
+ <_1524367564_1324_35658> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Interface> .
1054
+ #appendXMLID xmi:id="_1524367564_1324_35658"
1055
+ <_1524367564_1324_35658> <http://uml/2#name> "Interface1" .
1056
+ <_1524367564_1324_35658> <http://uml/2#isAbstract> "true" .
1057
+ <_1524367564_1324_35658> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1058
+ <_1524367564_1324_35658> <http://ft/uml/2#taggedValue> <_1524367776_92_37794> .
1059
+ <_1524367776_92_37794> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://ft/uml/2#TaggedValue> .
1060
+ <_1524367776_92_37794> <http://ft/uml/2#tagType> <_0_16000_14953> .
1061
+ <_1524367776_92_37794> <http://ft/uml/2#value> <_1524367776_92_37794-val> .
1062
+ <_1524367776_92_37794-val> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralString> .
1063
+ <_1524367776_92_37794-val> <http://uml/2#value> "Special key for unit tests:\n\n__DOC_INTERFACE__\n\n" .
1064
+ <_1524367564_1324_35658> <http://uml/2#generalization> <_1524367564_1339_35674> .
1065
+ <_1524367564_1339_35674> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
1066
+ #appendXMLID xmi:id="_1524367564_1339_35674"
1067
+ # appendRDFInTagURI
1068
+ <_1524367564_1339_35674> <http://uml/2#general> <_1524367564_1326_35660> .
1069
+ <_1524367564_1324_35658> <http://uml/2#generalization> <_1524367564_1341_35676> .
1070
+ <_1524367564_1341_35676> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
1071
+ #appendXMLID xmi:id="_1524367564_1341_35676"
1072
+ # appendRDFInTagURI
1073
+ <_1524367564_1341_35676> <http://uml/2#general> <_1524367564_1328_35662> .
1074
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1326_35660> .
1075
+ <_1524367564_1326_35660> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Interface> .
1076
+ #appendXMLID xmi:id="_1524367564_1326_35660"
1077
+ <_1524367564_1326_35660> <http://uml/2#name> "Interface2" .
1078
+ <_1524367564_1326_35660> <http://uml/2#isAbstract> "true" .
1079
+ <_1524367564_1326_35660> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1080
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1328_35662> .
1081
+ <_1524367564_1328_35662> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Interface> .
1082
+ #appendXMLID xmi:id="_1524367564_1328_35662"
1083
+ <_1524367564_1328_35662> <http://uml/2#name> "Interface4" .
1084
+ <_1524367564_1328_35662> <http://uml/2#isAbstract> "true" .
1085
+ <_1524367564_1328_35662> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1086
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1330_35664> .
1087
+ <_1524367564_1330_35664> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Interface> .
1088
+ #appendXMLID xmi:id="_1524367564_1330_35664"
1089
+ <_1524367564_1330_35664> <http://uml/2#name> "Interface3" .
1090
+ <_1524367564_1330_35664> <http://uml/2#isAbstract> "true" .
1091
+ <_1524367564_1330_35664> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1092
+ <_1524367564_1330_35664> <http://uml/2#generalization> <_1524367564_1343_35678> .
1093
+ <_1524367564_1343_35678> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
1094
+ #appendXMLID xmi:id="_1524367564_1343_35678"
1095
+ # appendRDFInTagURI
1096
+ <_1524367564_1343_35678> <http://uml/2#general> <_1524367564_1332_35666> .
1097
+ <_1524367564_1330_35664> <http://uml/2#ownedOperation> <_1524367564_1376_35736> .
1098
+ <_1524367564_1376_35736> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1099
+ #appendXMLID xmi:id="_1524367564_1376_35736"
1100
+ <_1524367564_1376_35736> <http://uml/2#name> "getAnInt" .
1101
+ <_1524367564_1376_35736> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1102
+ <_1524367564_1376_35736> <http://uml/2#ownedParameter> <_1524367564_1378_35739> .
1103
+ <_1524367564_1378_35739> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
1104
+ #appendXMLID xmi:id="_1524367564_1378_35739"
1105
+ <_1524367564_1378_35739> <http://uml/2#name> "return parameter" .
1106
+ <_1524367564_1378_35739> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
1107
+ <_1524367564_1378_35739> <http://uml/2#type> <_4_9_32140> .
1108
+ <_1524367564_1330_35664> <http://uml/2#ownedAttribute> <_1524367564_1374_35734> .
1109
+ <_1524367564_1374_35734> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1110
+ #appendXMLID xmi:id="_1524367564_1374_35734"
1111
+ <_1524367564_1374_35734> <http://uml/2#name> "uneString" .
1112
+ <_1524367564_1374_35734> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1113
+ <_1524367564_1374_35734> <http://uml/2#type> <_4_13_32142> .
1114
+ <_1524367564_1195_35416> <http://uml/2#ownedMember> <_1524367564_1332_35666> .
1115
+ <_1524367564_1332_35666> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Interface> .
1116
+ #appendXMLID xmi:id="_1524367564_1332_35666"
1117
+ <_1524367564_1332_35666> <http://uml/2#name> "Interface5" .
1118
+ <_1524367564_1332_35666> <http://uml/2#isAbstract> "true" .
1119
+ <_1524367564_1332_35666> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1120
+ <_1524367564_1332_35666> <http://uml/2#ownedAttribute> <_1524367564_1349_35709> .
1121
+ <_1524367564_1349_35709> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1122
+ #appendXMLID xmi:id="_1524367564_1349_35709"
1123
+ <_1524367564_1349_35709> <http://uml/2#name> "uneStringDansInterface5" .
1124
+ <_1524367564_1349_35709> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1125
+ <_1524367564_1349_35709> <http://uml/2#type> <_4_13_32142> .
1126
+ <_262232_219_37575> <http://uml/2#ownedMember> <_1524367564_1196_35417> .
1127
+ <_1524367564_1196_35417> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1128
+ #appendXMLID xmi:id="_1524367564_1196_35417"
1129
+ <_1524367564_1196_35417> <http://uml/2#name> "pack2" .
1130
+ <_1524367564_1196_35417> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1131
+ <_1524367564_1196_35417> <http://uml/2#ownedMember> <_1524367564_1383_35779> .
1132
+ <_1524367564_1383_35779> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
1133
+ #appendXMLID xmi:id="_1524367564_1383_35779"
1134
+ <_1524367564_1383_35779> <http://uml/2#name> "" .
1135
+ <_1524367564_1383_35779> <http://uml/2#memberEnd> <_1524367564_1384_35780> .
1136
+ <_1524367564_1383_35779> <http://uml/2#memberEnd> <_1524367564_1385_35781> .
1137
+ <_1524367564_1383_35779> <http://uml/2#ownedEnd> <_1524367564_1385_35781> .
1138
+ <_1524367564_1385_35781> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1139
+ #appendXMLID xmi:id="_1524367564_1385_35781"
1140
+ <_1524367564_1385_35781> <http://uml/2#name> "" .
1141
+ <_1524367564_1385_35781> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1142
+ <_1524367564_1385_35781> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1143
+ # appendRDFInTagURI
1144
+ <_1524367564_1385_35781> <http://uml/2#association> <_1524367564_1383_35779> .
1145
+ <_1524367564_1385_35781> <http://uml/2#type> <_1524367564_1216_35439> .
1146
+ # multiplicity upperValue
1147
+ <_1524367564_1385_35781> <http://uml/2#upperValue> <_1524367564_1385_35781_upperValue> .
1148
+ <_1524367564_1385_35781_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1149
+ <_1524367564_1385_35781_upperValue> <http://uml/2#value> "???" .
1150
+ # multiplicity lowerValue
1151
+ <_1524367564_1385_35781> <http://uml/2#lowerValue> <_1524367564_1385_35781_lowerValue> .
1152
+ <_1524367564_1385_35781_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1153
+ <_1524367564_1385_35781_lowerValue> <http://uml/2#value> "???" .
1154
+ <_1524367564_1196_35417> <http://uml/2#ownedMember> <_1524367564_1393_35794> .
1155
+ <_1524367564_1393_35794> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1156
+ #appendXMLID xmi:id="_1524367564_1393_35794"
1157
+ <_1524367564_1393_35794> <http://uml/2#name> "pack21" .
1158
+ <_1524367564_1393_35794> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1159
+ <_1524367564_1196_35417> <http://uml/2#ownedMember> <_1524367564_1216_35439> .
1160
+ <_1524367564_1216_35439> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1161
+ #appendXMLID xmi:id="_1524367564_1216_35439"
1162
+ <_1524367564_1216_35439> <http://uml/2#name> "Class10" .
1163
+ <_1524367564_1216_35439> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1164
+ <_1524367564_1216_35439> <http://uml/2#ownedAttribute> <_1524367564_1384_35780> .
1165
+ <_1524367564_1384_35780> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1166
+ #appendXMLID xmi:id="_1524367564_1384_35780"
1167
+ <_1524367564_1384_35780> <http://uml/2#name> "class1" .
1168
+ <_1524367564_1384_35780> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1169
+ <_1524367564_1384_35780> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1170
+ # appendRDFInTagURI
1171
+ <_1524367564_1384_35780> <http://uml/2#association> <_1524367564_1383_35779> .
1172
+ <_1524367564_1384_35780> <http://uml/2#type> <_1524367564_1247_35471> .
1173
+ # multiplicity upperValue
1174
+ <_1524367564_1384_35780> <http://uml/2#upperValue> <_1524367564_1384_35780_upperValue> .
1175
+ <_1524367564_1384_35780_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1176
+ <_1524367564_1384_35780_upperValue> <http://uml/2#value> "377" .
1177
+ # multiplicity lowerValue
1178
+ <_1524367564_1384_35780> <http://uml/2#lowerValue> <_1524367564_1384_35780_lowerValue> .
1179
+ <_1524367564_1384_35780_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1180
+ <_1524367564_1384_35780_lowerValue> <http://uml/2#value> "0" .
1181
+ <_1524367564_1196_35417> <http://uml/2#ownedMember> <_1524367564_1218_35441> .
1182
+ <_1524367564_1218_35441> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1183
+ #appendXMLID xmi:id="_1524367564_1218_35441"
1184
+ <_1524367564_1218_35441> <http://uml/2#name> "Classe3" .
1185
+ <_1524367564_1218_35441> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1186
+ <_1524367564_1218_35441> <http://uml/2#generalization> <_1524367564_1254_35478> .
1187
+ <_1524367564_1254_35478> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
1188
+ #appendXMLID xmi:id="_1524367564_1254_35478"
1189
+ # appendRDFInTagURI
1190
+ <_1524367564_1254_35478> <http://uml/2#general> <_1524367564_1206_35429> .
1191
+ <_1524367564_1218_35441> <http://uml/2#ownedOperation> <_1524367564_1422_35875> .
1192
+ <_1524367564_1422_35875> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1193
+ #appendXMLID xmi:id="_1524367564_1422_35875"
1194
+ <_1524367564_1422_35875> <http://uml/2#name> "methodeAbstraite" .
1195
+ <_1524367564_1422_35875> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1196
+ <_1524367564_1218_35441> <http://uml/2#ownedAttribute> <_1524367564_1444_35899> .
1197
+ <_1524367564_1444_35899> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1198
+ #appendXMLID xmi:id="_1524367564_1444_35899"
1199
+ <_1524367564_1444_35899> <http://uml/2#name> "invQual" .
1200
+ <_1524367564_1444_35899> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1201
+ <_1524367564_1444_35899> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1202
+ # appendRDFInTagURI
1203
+ <_1524367564_1444_35899> <http://uml/2#association> <_1524367564_1442_35897> .
1204
+ <_1524367564_1444_35899> <http://uml/2#type> <_1524367564_1247_35471> .
1205
+ # multiplicity upperValue
1206
+ <_1524367564_1444_35899> <http://uml/2#upperValue> <_1524367564_1444_35899_upperValue> .
1207
+ <_1524367564_1444_35899_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1208
+ <_1524367564_1444_35899_upperValue> <http://uml/2#value> "1" .
1209
+ # multiplicity lowerValue
1210
+ <_1524367564_1444_35899> <http://uml/2#lowerValue> <_1524367564_1444_35899_lowerValue> .
1211
+ <_1524367564_1444_35899_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1212
+ <_1524367564_1444_35899_lowerValue> <http://uml/2#value> "1" .
1213
+ <_1524367564_1196_35417> <http://uml/2#ownedMember> <_1524367564_1220_35443> .
1214
+ <_1524367564_1220_35443> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1215
+ #appendXMLID xmi:id="_1524367564_1220_35443"
1216
+ <_1524367564_1220_35443> <http://uml/2#name> "CompositeTargetClas" .
1217
+ <_1524367564_1220_35443> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1218
+ <_1524367564_1196_35417> <http://uml/2#ownedMember> <_1524367564_1222_35445> .
1219
+ <_1524367564_1222_35445> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1220
+ #appendXMLID xmi:id="_1524367564_1222_35445"
1221
+ <_1524367564_1222_35445> <http://uml/2#name> "ClassA" .
1222
+ <_1524367564_1222_35445> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1223
+ <_1524367564_1196_35417> <http://uml/2#ownedMember> <_1524367564_1224_35447> .
1224
+ <_1524367564_1224_35447> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1225
+ #appendXMLID xmi:id="_1524367564_1224_35447"
1226
+ <_1524367564_1224_35447> <http://uml/2#name> "MyException2" .
1227
+ <_1524367564_1224_35447> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1228
+ <_1524367564_1224_35447> <http://uml/2#generalization> <_1524367564_1256_35480> .
1229
+ <_1524367564_1256_35480> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
1230
+ #appendXMLID xmi:id="_1524367564_1256_35480"
1231
+ # appendRDFInTagURI
1232
+ <_1524367564_1256_35480> <http://uml/2#general> <_1524367564_1226_35449> .
1233
+ <_1524367564_1196_35417> <http://uml/2#ownedMember> <_1524367564_1228_35451> .
1234
+ <_1524367564_1228_35451> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1235
+ #appendXMLID xmi:id="_1524367564_1228_35451"
1236
+ <_1524367564_1228_35451> <http://uml/2#name> "MyException" .
1237
+ <_1524367564_1228_35451> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1238
+ <_262232_219_37575> <http://uml/2#ownedMember> <_1524367564_1394_35796> .
1239
+ <_1524367564_1394_35796> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1240
+ #appendXMLID xmi:id="_1524367564_1394_35796"
1241
+ <_1524367564_1394_35796> <http://uml/2#name> "java" .
1242
+ <_1524367564_1394_35796> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1243
+ <_1524367564_1394_35796> <http://uml/2#ownedMember> <_1524367564_1395_35797> .
1244
+ <_1524367564_1395_35797> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1245
+ #appendXMLID xmi:id="_1524367564_1395_35797"
1246
+ <_1524367564_1395_35797> <http://uml/2#name> "lang" .
1247
+ <_1524367564_1395_35797> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1248
+ <_1524367564_1395_35797> <http://uml/2#ownedMember> <_1524367564_1226_35449> .
1249
+ <_1524367564_1226_35449> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1250
+ #appendXMLID xmi:id="_1524367564_1226_35449"
1251
+ <_1524367564_1226_35449> <http://uml/2#name> "Exception" .
1252
+ <_1524367564_1226_35449> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1253
+ <_262232_219_37575> <http://uml/2#ownedMember> <_1524367564_1396_35799> .
1254
+ <_1524367564_1396_35799> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1255
+ #appendXMLID xmi:id="_1524367564_1396_35799"
1256
+ <_1524367564_1396_35799> <http://uml/2#name> "Divers" .
1257
+ <_1524367564_1396_35799> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1258
+ <_1524367564_1396_35799> <http://uml/2#ownedMember> <_1524367564_1397_35801> .
1259
+ <_1524367564_1397_35801> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Actor> .
1260
+ #appendXMLID xmi:id="_1524367564_1397_35801"
1261
+ <_1524367564_1397_35801> <http://uml/2#name> "UnActeur" .
1262
+ <_1524367564_1397_35801> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1263
+ <_1524367564_1396_35799> <http://uml/2#ownedMember> <_1524367564_1398_35802> .
1264
+ <_1524367564_1398_35802> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Actor> .
1265
+ #appendXMLID xmi:id="_1524367564_1398_35802"
1266
+ <_1524367564_1398_35802> <http://uml/2#name> "Actor" .
1267
+ <_1524367564_1398_35802> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1268
+ <_1524367564_1396_35799> <http://uml/2#ownedMember> <_1524367564_1399_35804> .
1269
+ <_1524367564_1399_35804> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#UseCase> .
1270
+ #appendXMLID xmi:id="_1524367564_1399_35804"
1271
+ <_1524367564_1399_35804> <http://uml/2#name> "UseCase" .
1272
+ <_1524367564_1399_35804> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1273
+ <_1524367564_1396_35799> <http://uml/2#ownedMember> <_1524367564_1400_35805> .
1274
+ <_1524367564_1400_35805> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Signal> .
1275
+ #appendXMLID xmi:id="_1524367564_1400_35805"
1276
+ <_1524367564_1400_35805> <http://uml/2#name> "Signal" .
1277
+ <_1524367564_1400_35805> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1278
+ <_1524367564_1396_35799> <http://uml/2#ownedMember> <_1524367564_1805_36940> .
1279
+ <_1524367564_1805_36940> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1280
+ #appendXMLID xmi:id="_1524367564_1805_36940"
1281
+ <_1524367564_1805_36940> <http://uml/2#name> "Package" .
1282
+ <_1524367564_1805_36940> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1283
+ <_1524367564_1396_35799> <http://uml/2#ownedMember> <_1524367564_1806_36941> .
1284
+ <_1524367564_1806_36941> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1285
+ #appendXMLID xmi:id="_1524367564_1806_36941"
1286
+ <_1524367564_1806_36941> <http://uml/2#name> "subsystem" .
1287
+ <_1524367564_1806_36941> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1288
+ <_1524367564_1806_36941> <http://uml/2#appliedStereotype> <_7341696_467_13144> .
1289
+ <_1524367564_1396_35799> <http://uml/2#ownedMember> <_1524367564_1807_36942> .
1290
+ <_1524367564_1807_36942> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1291
+ #appendXMLID xmi:id="_1524367564_1807_36942"
1292
+ <_1524367564_1807_36942> <http://uml/2#name> "Class" .
1293
+ <_1524367564_1807_36942> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1294
+ <_1524367564_1396_35799> <http://uml/2#ownedMember> <_1524367564_1809_36944> .
1295
+ <_1524367564_1809_36944> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Interface> .
1296
+ #appendXMLID xmi:id="_1524367564_1809_36944"
1297
+ <_1524367564_1809_36944> <http://uml/2#name> "interface" .
1298
+ <_1524367564_1809_36944> <http://uml/2#isAbstract> "true" .
1299
+ <_1524367564_1809_36944> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1300
+ <_1524367564_1396_35799> <http://uml/2#ownedMember> <_1524367564_1811_36946> .
1301
+ <_1524367564_1811_36946> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#UseCase> .
1302
+ #appendXMLID xmi:id="_1524367564_1811_36946"
1303
+ <_1524367564_1811_36946> <http://uml/2#name> "UseCase1" .
1304
+ <_1524367564_1811_36946> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1305
+ <_1524367564_1396_35799> <http://uml/2#ownedMember> <_1524367564_1814_36949> .
1306
+ <_1524367564_1814_36949> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Signal> .
1307
+ #appendXMLID xmi:id="_1524367564_1814_36949"
1308
+ <_1524367564_1814_36949> <http://uml/2#name> "Signal1" .
1309
+ <_1524367564_1814_36949> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1310
+ <_1524367564_1396_35799> <http://uml/2#ownedMember> <_1524367564_1817_36952> .
1311
+ <_1524367564_1817_36952> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Node> .
1312
+ #appendXMLID xmi:id="_1524367564_1817_36952"
1313
+ <_1524367564_1817_36952> <http://uml/2#name> "Node" .
1314
+ <_1524367564_1817_36952> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1315
+ <_1524367564_1396_35799> <http://uml/2#ownedMember> <_1524367564_1819_36954> .
1316
+ <_1524367564_1819_36954> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Component> .
1317
+ #appendXMLID xmi:id="_1524367564_1819_36954"
1318
+ <_1524367564_1819_36954> <http://uml/2#name> "Component" .
1319
+ <_1524367564_1819_36954> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1320
+ <_1524367564_1396_35799> <http://uml/2#ownedMember> <_1524367564_1823_36958> .
1321
+ <_1524367564_1823_36958> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
1322
+ #appendXMLID xmi:id="_1524367564_1823_36958"
1323
+ <_1524367564_1823_36958> <http://uml/2#name> "DataType" .
1324
+ <_1524367564_1823_36958> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1325
+ <_262232_219_37575> <http://uml/2#ownedMember> <_1524367564_1568_36207> .
1326
+ <_1524367564_1568_36207> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1327
+ #appendXMLID xmi:id="_1524367564_1568_36207"
1328
+ <_1524367564_1568_36207> <http://uml/2#name> "TypesPackagesContainer" .
1329
+ <_1524367564_1568_36207> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1330
+ <_1524367564_1568_36207> <http://uml/2#ownedMember> <_1524367564_1569_36208> .
1331
+ <_1524367564_1569_36208> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1332
+ #appendXMLID xmi:id="_1524367564_1569_36208"
1333
+ <_1524367564_1569_36208> <http://uml/2#name> "TypesPackage_Template" .
1334
+ <_1524367564_1569_36208> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1335
+ <_1524367564_1569_36208> <http://uml/2#ownedMember> <_1524367564_1570_36210> .
1336
+ <_1524367564_1570_36210> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1337
+ #appendXMLID xmi:id="_1524367564_1570_36210"
1338
+ <_1524367564_1570_36210> <http://uml/2#name> "BaseTypes" .
1339
+ <_1524367564_1570_36210> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1340
+ <_1524367564_1570_36210> <http://uml/2#ownedMember> <_1524367564_1571_36211> .
1341
+ <_1524367564_1571_36211> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
1342
+ #appendXMLID xmi:id="_1524367564_1571_36211"
1343
+ <_1524367564_1571_36211> <http://uml/2#name> "_integer" .
1344
+ <_1524367564_1571_36211> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1345
+ <_1524367564_1570_36210> <http://uml/2#ownedMember> <_1524367564_1572_36213> .
1346
+ <_1524367564_1572_36213> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
1347
+ #appendXMLID xmi:id="_1524367564_1572_36213"
1348
+ <_1524367564_1572_36213> <http://uml/2#name> "_char" .
1349
+ <_1524367564_1572_36213> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1350
+ <_1524367564_1570_36210> <http://uml/2#ownedMember> <_1524367564_1573_36215> .
1351
+ <_1524367564_1573_36215> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
1352
+ #appendXMLID xmi:id="_1524367564_1573_36215"
1353
+ <_1524367564_1573_36215> <http://uml/2#name> "_boolean" .
1354
+ <_1524367564_1573_36215> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1355
+ <_1524367564_1570_36210> <http://uml/2#ownedMember> <_1524367564_1574_36217> .
1356
+ <_1524367564_1574_36217> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
1357
+ #appendXMLID xmi:id="_1524367564_1574_36217"
1358
+ <_1524367564_1574_36217> <http://uml/2#name> "_string" .
1359
+ <_1524367564_1574_36217> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1360
+ <_1524367564_1570_36210> <http://uml/2#ownedMember> <_1524367564_1575_36219> .
1361
+ <_1524367564_1575_36219> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1362
+ #appendXMLID xmi:id="_1524367564_1575_36219"
1363
+ <_1524367564_1575_36219> <http://uml/2#name> "_class" .
1364
+ <_1524367564_1575_36219> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1365
+ <_1524367564_1570_36210> <http://uml/2#ownedMember> <_1524367564_1576_36220> .
1366
+ <_1524367564_1576_36220> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
1367
+ #appendXMLID xmi:id="_1524367564_1576_36220"
1368
+ <_1524367564_1576_36220> <http://uml/2#name> "_real" .
1369
+ <_1524367564_1576_36220> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1370
+ <_1524367564_1570_36210> <http://uml/2#ownedMember> <_1524367564_1577_36222> .
1371
+ <_1524367564_1577_36222> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
1372
+ #appendXMLID xmi:id="_1524367564_1577_36222"
1373
+ <_1524367564_1577_36222> <http://uml/2#name> "_toto" .
1374
+ <_1524367564_1577_36222> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1375
+ <_1524367564_1569_36208> <http://uml/2#ownedMember> <_1524367564_1578_36224> .
1376
+ <_1524367564_1578_36224> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1377
+ #appendXMLID xmi:id="_1524367564_1578_36224"
1378
+ <_1524367564_1578_36224> <http://uml/2#name> "DefaultTranslations" .
1379
+ <_1524367564_1578_36224> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1380
+ <_1524367564_1578_36224> <http://uml/2#ownedMember> <_1524367564_1579_36225> .
1381
+ <_1524367564_1579_36225> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1382
+ #appendXMLID xmi:id="_1524367564_1579_36225"
1383
+ <_1524367564_1579_36225> <http://uml/2#name> "MultipleAttribute" .
1384
+ <_1524367564_1579_36225> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1385
+ <_1524367564_1578_36224> <http://uml/2#ownedMember> <_1524367564_1580_36226> .
1386
+ <_1524367564_1580_36226> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1387
+ #appendXMLID xmi:id="_1524367564_1580_36226"
1388
+ <_1524367564_1580_36226> <http://uml/2#name> "FiniteAttribute" .
1389
+ <_1524367564_1580_36226> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1390
+ <_1524367564_1578_36224> <http://uml/2#ownedMember> <_1524367564_1581_36227> .
1391
+ <_1524367564_1581_36227> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1392
+ #appendXMLID xmi:id="_1524367564_1581_36227"
1393
+ <_1524367564_1581_36227> <http://uml/2#name> "OptionalMultipleAssociation" .
1394
+ <_1524367564_1581_36227> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1395
+ <_1524367564_1578_36224> <http://uml/2#ownedMember> <_1524367564_1582_36228> .
1396
+ <_1524367564_1582_36228> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1397
+ #appendXMLID xmi:id="_1524367564_1582_36228"
1398
+ <_1524367564_1582_36228> <http://uml/2#name> "MandatoryMultipleAssociation" .
1399
+ <_1524367564_1582_36228> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1400
+ <_1524367564_1578_36224> <http://uml/2#ownedMember> <_1524367564_1583_36229> .
1401
+ <_1524367564_1583_36229> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1402
+ #appendXMLID xmi:id="_1524367564_1583_36229"
1403
+ <_1524367564_1583_36229> <http://uml/2#name> "FiniteAssociation" .
1404
+ <_1524367564_1583_36229> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1405
+ <_1524367564_1578_36224> <http://uml/2#ownedMember> <_1524367564_1584_36230> .
1406
+ <_1524367564_1584_36230> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1407
+ #appendXMLID xmi:id="_1524367564_1584_36230"
1408
+ <_1524367564_1584_36230> <http://uml/2#name> "MultipleIOParameter" .
1409
+ <_1524367564_1584_36230> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1410
+ <_1524367564_1578_36224> <http://uml/2#ownedMember> <_1524367564_1585_36231> .
1411
+ <_1524367564_1585_36231> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1412
+ #appendXMLID xmi:id="_1524367564_1585_36231"
1413
+ <_1524367564_1585_36231> <http://uml/2#name> "FiniteIOParameter" .
1414
+ <_1524367564_1585_36231> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1415
+ <_1524367564_1578_36224> <http://uml/2#ownedMember> <_1524367564_1586_36232> .
1416
+ <_1524367564_1586_36232> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1417
+ #appendXMLID xmi:id="_1524367564_1586_36232"
1418
+ <_1524367564_1586_36232> <http://uml/2#name> "MultipleReturnParameter" .
1419
+ <_1524367564_1586_36232> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1420
+ <_1524367564_1578_36224> <http://uml/2#ownedMember> <_1524367564_1587_36233> .
1421
+ <_1524367564_1587_36233> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1422
+ #appendXMLID xmi:id="_1524367564_1587_36233"
1423
+ <_1524367564_1587_36233> <http://uml/2#name> "FiniteReturnParameter" .
1424
+ <_1524367564_1587_36233> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1425
+ <_1524367564_1578_36224> <http://uml/2#ownedMember> <_1524367564_1588_36234> .
1426
+ <_1524367564_1588_36234> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1427
+ #appendXMLID xmi:id="_1524367564_1588_36234"
1428
+ <_1524367564_1588_36234> <http://uml/2#name> "SimpleAttribute" .
1429
+ <_1524367564_1588_36234> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1430
+ <_1524367564_1578_36224> <http://uml/2#ownedMember> <_1524367564_1589_36235> .
1431
+ <_1524367564_1589_36235> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1432
+ #appendXMLID xmi:id="_1524367564_1589_36235"
1433
+ <_1524367564_1589_36235> <http://uml/2#name> "OptionalSimpleAssociation" .
1434
+ <_1524367564_1589_36235> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1435
+ <_1524367564_1578_36224> <http://uml/2#ownedMember> <_1524367564_1590_36236> .
1436
+ <_1524367564_1590_36236> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1437
+ #appendXMLID xmi:id="_1524367564_1590_36236"
1438
+ <_1524367564_1590_36236> <http://uml/2#name> "MandatorySimpleAssociation" .
1439
+ <_1524367564_1590_36236> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1440
+ <_1524367564_1578_36224> <http://uml/2#ownedMember> <_1524367564_1591_36237> .
1441
+ <_1524367564_1591_36237> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1442
+ #appendXMLID xmi:id="_1524367564_1591_36237"
1443
+ <_1524367564_1591_36237> <http://uml/2#name> "SimpleIOParameter" .
1444
+ <_1524367564_1591_36237> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1445
+ <_1524367564_1578_36224> <http://uml/2#ownedMember> <_1524367564_1592_36238> .
1446
+ <_1524367564_1592_36238> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1447
+ #appendXMLID xmi:id="_1524367564_1592_36238"
1448
+ <_1524367564_1592_36238> <http://uml/2#name> "SimpleReturnParameter" .
1449
+ <_1524367564_1592_36238> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1450
+ <_1524367564_1569_36208> <http://uml/2#ownedMember> <_1524367564_1593_36239> .
1451
+ <_1524367564_1593_36239> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1452
+ #appendXMLID xmi:id="_1524367564_1593_36239"
1453
+ <_1524367564_1593_36239> <http://uml/2#name> "TranslationClasses" .
1454
+ <_1524367564_1593_36239> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1455
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1594_36240> .
1456
+ <_1524367564_1594_36240> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1457
+ #appendXMLID xmi:id="_1524367564_1594_36240"
1458
+ <_1524367564_1594_36240> <http://uml/2#name> "vectorAttribute" .
1459
+ <_1524367564_1594_36240> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1460
+ <_1524367564_1594_36240> <http://uml/2#ownedOperation> <_1524367564_1595_36241> .
1461
+ <_1524367564_1595_36241> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1462
+ #appendXMLID xmi:id="_1524367564_1595_36241"
1463
+ <_1524367564_1595_36241> <http://uml/2#name> "declare" .
1464
+ <_1524367564_1595_36241> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1465
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1596_36244> .
1466
+ <_1524367564_1596_36244> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1467
+ #appendXMLID xmi:id="_1524367564_1596_36244"
1468
+ <_1524367564_1596_36244> <http://uml/2#name> "vectorAssociation" .
1469
+ <_1524367564_1596_36244> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1470
+ <_1524367564_1596_36244> <http://uml/2#ownedOperation> <_1524367564_1597_36245> .
1471
+ <_1524367564_1597_36245> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1472
+ #appendXMLID xmi:id="_1524367564_1597_36245"
1473
+ <_1524367564_1597_36245> <http://uml/2#name> "declare" .
1474
+ <_1524367564_1597_36245> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1475
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1598_36248> .
1476
+ <_1524367564_1598_36248> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1477
+ #appendXMLID xmi:id="_1524367564_1598_36248"
1478
+ <_1524367564_1598_36248> <http://uml/2#name> "vectorIOParameter" .
1479
+ <_1524367564_1598_36248> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1480
+ <_1524367564_1598_36248> <http://uml/2#ownedOperation> <_1524367564_1599_36249> .
1481
+ <_1524367564_1599_36249> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1482
+ #appendXMLID xmi:id="_1524367564_1599_36249"
1483
+ <_1524367564_1599_36249> <http://uml/2#name> "declare" .
1484
+ <_1524367564_1599_36249> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1485
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1600_36252> .
1486
+ <_1524367564_1600_36252> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1487
+ #appendXMLID xmi:id="_1524367564_1600_36252"
1488
+ <_1524367564_1600_36252> <http://uml/2#name> "vectorReturnParameter" .
1489
+ <_1524367564_1600_36252> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1490
+ <_1524367564_1600_36252> <http://uml/2#ownedOperation> <_1524367564_1601_36253> .
1491
+ <_1524367564_1601_36253> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1492
+ #appendXMLID xmi:id="_1524367564_1601_36253"
1493
+ <_1524367564_1601_36253> <http://uml/2#name> "declare" .
1494
+ <_1524367564_1601_36253> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1495
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1602_36256> .
1496
+ <_1524367564_1602_36256> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1497
+ #appendXMLID xmi:id="_1524367564_1602_36256"
1498
+ <_1524367564_1602_36256> <http://uml/2#name> "listAttribute" .
1499
+ <_1524367564_1602_36256> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1500
+ <_1524367564_1602_36256> <http://uml/2#ownedOperation> <_1524367564_1603_36257> .
1501
+ <_1524367564_1603_36257> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1502
+ #appendXMLID xmi:id="_1524367564_1603_36257"
1503
+ <_1524367564_1603_36257> <http://uml/2#name> "declare" .
1504
+ <_1524367564_1603_36257> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1505
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1604_36260> .
1506
+ <_1524367564_1604_36260> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1507
+ #appendXMLID xmi:id="_1524367564_1604_36260"
1508
+ <_1524367564_1604_36260> <http://uml/2#name> "listAssociation" .
1509
+ <_1524367564_1604_36260> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1510
+ <_1524367564_1604_36260> <http://uml/2#ownedOperation> <_1524367564_1605_36261> .
1511
+ <_1524367564_1605_36261> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1512
+ #appendXMLID xmi:id="_1524367564_1605_36261"
1513
+ <_1524367564_1605_36261> <http://uml/2#name> "declare" .
1514
+ <_1524367564_1605_36261> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1515
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1606_36264> .
1516
+ <_1524367564_1606_36264> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1517
+ #appendXMLID xmi:id="_1524367564_1606_36264"
1518
+ <_1524367564_1606_36264> <http://uml/2#name> "listIOParameter" .
1519
+ <_1524367564_1606_36264> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1520
+ <_1524367564_1606_36264> <http://uml/2#ownedOperation> <_1524367564_1607_36265> .
1521
+ <_1524367564_1607_36265> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1522
+ #appendXMLID xmi:id="_1524367564_1607_36265"
1523
+ <_1524367564_1607_36265> <http://uml/2#name> "declare" .
1524
+ <_1524367564_1607_36265> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1525
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1608_36268> .
1526
+ <_1524367564_1608_36268> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1527
+ #appendXMLID xmi:id="_1524367564_1608_36268"
1528
+ <_1524367564_1608_36268> <http://uml/2#name> "listReturnParameter" .
1529
+ <_1524367564_1608_36268> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1530
+ <_1524367564_1608_36268> <http://uml/2#ownedOperation> <_1524367564_1609_36269> .
1531
+ <_1524367564_1609_36269> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1532
+ #appendXMLID xmi:id="_1524367564_1609_36269"
1533
+ <_1524367564_1609_36269> <http://uml/2#name> "declare" .
1534
+ <_1524367564_1609_36269> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1535
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1610_36272> .
1536
+ <_1524367564_1610_36272> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1537
+ #appendXMLID xmi:id="_1524367564_1610_36272"
1538
+ <_1524367564_1610_36272> <http://uml/2#name> "setAttribute" .
1539
+ <_1524367564_1610_36272> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1540
+ <_1524367564_1610_36272> <http://uml/2#ownedOperation> <_1524367564_1611_36273> .
1541
+ <_1524367564_1611_36273> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1542
+ #appendXMLID xmi:id="_1524367564_1611_36273"
1543
+ <_1524367564_1611_36273> <http://uml/2#name> "declare" .
1544
+ <_1524367564_1611_36273> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1545
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1612_36276> .
1546
+ <_1524367564_1612_36276> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1547
+ #appendXMLID xmi:id="_1524367564_1612_36276"
1548
+ <_1524367564_1612_36276> <http://uml/2#name> "setAssociation" .
1549
+ <_1524367564_1612_36276> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1550
+ <_1524367564_1612_36276> <http://uml/2#ownedOperation> <_1524367564_1613_36277> .
1551
+ <_1524367564_1613_36277> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1552
+ #appendXMLID xmi:id="_1524367564_1613_36277"
1553
+ <_1524367564_1613_36277> <http://uml/2#name> "declare" .
1554
+ <_1524367564_1613_36277> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1555
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1614_36280> .
1556
+ <_1524367564_1614_36280> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1557
+ #appendXMLID xmi:id="_1524367564_1614_36280"
1558
+ <_1524367564_1614_36280> <http://uml/2#name> "setIOParameter" .
1559
+ <_1524367564_1614_36280> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1560
+ <_1524367564_1614_36280> <http://uml/2#ownedOperation> <_1524367564_1615_36281> .
1561
+ <_1524367564_1615_36281> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1562
+ #appendXMLID xmi:id="_1524367564_1615_36281"
1563
+ <_1524367564_1615_36281> <http://uml/2#name> "declare" .
1564
+ <_1524367564_1615_36281> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1565
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1616_36284> .
1566
+ <_1524367564_1616_36284> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1567
+ #appendXMLID xmi:id="_1524367564_1616_36284"
1568
+ <_1524367564_1616_36284> <http://uml/2#name> "setReturnParameter" .
1569
+ <_1524367564_1616_36284> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1570
+ <_1524367564_1616_36284> <http://uml/2#ownedOperation> <_1524367564_1617_36285> .
1571
+ <_1524367564_1617_36285> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1572
+ #appendXMLID xmi:id="_1524367564_1617_36285"
1573
+ <_1524367564_1617_36285> <http://uml/2#name> "declare" .
1574
+ <_1524367564_1617_36285> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1575
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1618_36288> .
1576
+ <_1524367564_1618_36288> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1577
+ #appendXMLID xmi:id="_1524367564_1618_36288"
1578
+ <_1524367564_1618_36288> <http://uml/2#name> "mapAttribute" .
1579
+ <_1524367564_1618_36288> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1580
+ <_1524367564_1618_36288> <http://uml/2#ownedOperation> <_1524367564_1619_36289> .
1581
+ <_1524367564_1619_36289> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1582
+ #appendXMLID xmi:id="_1524367564_1619_36289"
1583
+ <_1524367564_1619_36289> <http://uml/2#name> "declare" .
1584
+ <_1524367564_1619_36289> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1585
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1620_36292> .
1586
+ <_1524367564_1620_36292> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1587
+ #appendXMLID xmi:id="_1524367564_1620_36292"
1588
+ <_1524367564_1620_36292> <http://uml/2#name> "mapAssociation" .
1589
+ <_1524367564_1620_36292> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1590
+ <_1524367564_1620_36292> <http://uml/2#ownedOperation> <_1524367564_1621_36293> .
1591
+ <_1524367564_1621_36293> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1592
+ #appendXMLID xmi:id="_1524367564_1621_36293"
1593
+ <_1524367564_1621_36293> <http://uml/2#name> "declare" .
1594
+ <_1524367564_1621_36293> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1595
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1622_36296> .
1596
+ <_1524367564_1622_36296> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1597
+ #appendXMLID xmi:id="_1524367564_1622_36296"
1598
+ <_1524367564_1622_36296> <http://uml/2#name> "mapIOParameter" .
1599
+ <_1524367564_1622_36296> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1600
+ <_1524367564_1622_36296> <http://uml/2#ownedOperation> <_1524367564_1623_36297> .
1601
+ <_1524367564_1623_36297> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1602
+ #appendXMLID xmi:id="_1524367564_1623_36297"
1603
+ <_1524367564_1623_36297> <http://uml/2#name> "declare" .
1604
+ <_1524367564_1623_36297> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1605
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1624_36300> .
1606
+ <_1524367564_1624_36300> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1607
+ #appendXMLID xmi:id="_1524367564_1624_36300"
1608
+ <_1524367564_1624_36300> <http://uml/2#name> "mapReturnParameter" .
1609
+ <_1524367564_1624_36300> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1610
+ <_1524367564_1624_36300> <http://uml/2#ownedOperation> <_1524367564_1625_36301> .
1611
+ <_1524367564_1625_36301> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1612
+ #appendXMLID xmi:id="_1524367564_1625_36301"
1613
+ <_1524367564_1625_36301> <http://uml/2#name> "declare" .
1614
+ <_1524367564_1625_36301> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1615
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1626_36304> .
1616
+ <_1524367564_1626_36304> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1617
+ #appendXMLID xmi:id="_1524367564_1626_36304"
1618
+ <_1524367564_1626_36304> <http://uml/2#name> "multimapAttribute" .
1619
+ <_1524367564_1626_36304> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1620
+ <_1524367564_1626_36304> <http://uml/2#ownedOperation> <_1524367564_1627_36305> .
1621
+ <_1524367564_1627_36305> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1622
+ #appendXMLID xmi:id="_1524367564_1627_36305"
1623
+ <_1524367564_1627_36305> <http://uml/2#name> "declare" .
1624
+ <_1524367564_1627_36305> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1625
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1628_36308> .
1626
+ <_1524367564_1628_36308> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1627
+ #appendXMLID xmi:id="_1524367564_1628_36308"
1628
+ <_1524367564_1628_36308> <http://uml/2#name> "multimapAssociation" .
1629
+ <_1524367564_1628_36308> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1630
+ <_1524367564_1628_36308> <http://uml/2#ownedOperation> <_1524367564_1629_36309> .
1631
+ <_1524367564_1629_36309> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1632
+ #appendXMLID xmi:id="_1524367564_1629_36309"
1633
+ <_1524367564_1629_36309> <http://uml/2#name> "declare" .
1634
+ <_1524367564_1629_36309> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1635
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1630_36312> .
1636
+ <_1524367564_1630_36312> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1637
+ #appendXMLID xmi:id="_1524367564_1630_36312"
1638
+ <_1524367564_1630_36312> <http://uml/2#name> "multimapIOParameter" .
1639
+ <_1524367564_1630_36312> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1640
+ <_1524367564_1630_36312> <http://uml/2#ownedOperation> <_1524367564_1631_36313> .
1641
+ <_1524367564_1631_36313> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1642
+ #appendXMLID xmi:id="_1524367564_1631_36313"
1643
+ <_1524367564_1631_36313> <http://uml/2#name> "declare" .
1644
+ <_1524367564_1631_36313> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1645
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1632_36316> .
1646
+ <_1524367564_1632_36316> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1647
+ #appendXMLID xmi:id="_1524367564_1632_36316"
1648
+ <_1524367564_1632_36316> <http://uml/2#name> "multimapReturnParameter" .
1649
+ <_1524367564_1632_36316> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1650
+ <_1524367564_1632_36316> <http://uml/2#ownedOperation> <_1524367564_1633_36317> .
1651
+ <_1524367564_1633_36317> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1652
+ #appendXMLID xmi:id="_1524367564_1633_36317"
1653
+ <_1524367564_1633_36317> <http://uml/2#name> "declare" .
1654
+ <_1524367564_1633_36317> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1655
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1634_36320> .
1656
+ <_1524367564_1634_36320> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1657
+ #appendXMLID xmi:id="_1524367564_1634_36320"
1658
+ <_1524367564_1634_36320> <http://uml/2#name> "SingleAttribute" .
1659
+ <_1524367564_1634_36320> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1660
+ <_1524367564_1634_36320> <http://uml/2#ownedOperation> <_1524367564_1635_36321> .
1661
+ <_1524367564_1635_36321> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1662
+ #appendXMLID xmi:id="_1524367564_1635_36321"
1663
+ <_1524367564_1635_36321> <http://uml/2#name> "declare" .
1664
+ <_1524367564_1635_36321> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1665
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1636_36324> .
1666
+ <_1524367564_1636_36324> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1667
+ #appendXMLID xmi:id="_1524367564_1636_36324"
1668
+ <_1524367564_1636_36324> <http://uml/2#name> "SingleAssociation" .
1669
+ <_1524367564_1636_36324> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1670
+ <_1524367564_1636_36324> <http://uml/2#ownedOperation> <_1524367564_1637_36325> .
1671
+ <_1524367564_1637_36325> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1672
+ #appendXMLID xmi:id="_1524367564_1637_36325"
1673
+ <_1524367564_1637_36325> <http://uml/2#name> "declare" .
1674
+ <_1524367564_1637_36325> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1675
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1638_36328> .
1676
+ <_1524367564_1638_36328> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1677
+ #appendXMLID xmi:id="_1524367564_1638_36328"
1678
+ <_1524367564_1638_36328> <http://uml/2#name> "SingleIOParameter" .
1679
+ <_1524367564_1638_36328> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1680
+ <_1524367564_1638_36328> <http://uml/2#ownedOperation> <_1524367564_1639_36329> .
1681
+ <_1524367564_1639_36329> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1682
+ #appendXMLID xmi:id="_1524367564_1639_36329"
1683
+ <_1524367564_1639_36329> <http://uml/2#name> "declare" .
1684
+ <_1524367564_1639_36329> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1685
+ <_1524367564_1593_36239> <http://uml/2#ownedMember> <_1524367564_1640_36332> .
1686
+ <_1524367564_1640_36332> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1687
+ #appendXMLID xmi:id="_1524367564_1640_36332"
1688
+ <_1524367564_1640_36332> <http://uml/2#name> "SingleReturnParameter" .
1689
+ <_1524367564_1640_36332> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1690
+ <_1524367564_1640_36332> <http://uml/2#ownedOperation> <_1524367564_1641_36333> .
1691
+ <_1524367564_1641_36333> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1692
+ #appendXMLID xmi:id="_1524367564_1641_36333"
1693
+ <_1524367564_1641_36333> <http://uml/2#name> "declare" .
1694
+ <_1524367564_1641_36333> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1695
+ <_262232_219_37575> <http://uml/2#ownedMember> <_1524367564_1642_36336> .
1696
+ <_1524367564_1642_36336> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1697
+ #appendXMLID xmi:id="_1524367564_1642_36336"
1698
+ <_1524367564_1642_36336> <http://uml/2#name> "FirstStepsContainer" .
1699
+ <_1524367564_1642_36336> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1700
+ <_262232_219_37575> <http://uml/2#ownedMember> <_1524367564_1643_36337> .
1701
+ <_1524367564_1643_36337> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1702
+ #appendXMLID xmi:id="_1524367564_1643_36337"
1703
+ <_1524367564_1643_36337> <http://uml/2#name> "ModelsContainer" .
1704
+ <_1524367564_1643_36337> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1705
+ <_262232_219_37575> <http://uml/2#ownedMember> <_262232_9_37036> .
1706
+ <_262232_9_37036> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1707
+ #appendXMLID xmi:id="_262232_9_37036"
1708
+ <_262232_9_37036> <http://uml/2#name> "MiscObjects" .
1709
+ <_262232_9_37036> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1710
+ <_262232_9_37036> <http://uml/2#ownedMember> <_262232_10_37038> .
1711
+ <_262232_10_37038> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Actor> .
1712
+ #appendXMLID xmi:id="_262232_10_37038"
1713
+ <_262232_10_37038> <http://uml/2#name> "Actor" .
1714
+ <_262232_10_37038> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1715
+ <_262232_9_37036> <http://uml/2#ownedMember> <_262232_11_37039> .
1716
+ <_262232_11_37039> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#UseCase> .
1717
+ #appendXMLID xmi:id="_262232_11_37039"
1718
+ <_262232_11_37039> <http://uml/2#name> "UseCase" .
1719
+ <_262232_11_37039> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1720
+ <_262232_9_37036> <http://uml/2#ownedMember> <_262232_12_37040> .
1721
+ <_262232_12_37040> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Signal> .
1722
+ #appendXMLID xmi:id="_262232_12_37040"
1723
+ <_262232_12_37040> <http://uml/2#name> "Signal" .
1724
+ <_262232_12_37040> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1725
+ <_262232_9_37036> <http://uml/2#ownedMember> <_262232_17_37045> .
1726
+ <_262232_17_37045> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Node> .
1727
+ #appendXMLID xmi:id="_262232_17_37045"
1728
+ <_262232_17_37045> <http://uml/2#name> "Node" .
1729
+ <_262232_17_37045> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1730
+ <_262232_9_37036> <http://uml/2#ownedMember> <_262232_19_37047> .
1731
+ <_262232_19_37047> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Component> .
1732
+ #appendXMLID xmi:id="_262232_19_37047"
1733
+ <_262232_19_37047> <http://uml/2#name> "Component" .
1734
+ <_262232_19_37047> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1735
+ <_262232_219_37575> <http://uml/2#ownedMember> <_262232_33_37082> .
1736
+ <_262232_33_37082> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1737
+ #appendXMLID xmi:id="_262232_33_37082"
1738
+ <_262232_33_37082> <http://uml/2#name> "Package" .
1739
+ <_262232_33_37082> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1740
+ <_262232_33_37082> <http://uml/2#ownedMember> <_262232_42_37092> .
1741
+ <_262232_42_37092> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1742
+ #appendXMLID xmi:id="_262232_42_37092"
1743
+ <_262232_42_37092> <http://uml/2#name> "Package" .
1744
+ <_262232_42_37092> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1745
+ <_262232_42_37092> <http://uml/2#ownedMember> <_262232_58_37118> .
1746
+ <_262232_58_37118> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
1747
+ #appendXMLID xmi:id="_262232_58_37118"
1748
+ <_262232_58_37118> <http://uml/2#name> "" .
1749
+ <_262232_58_37118> <http://uml/2#memberEnd> <_262232_57_37117> .
1750
+ <_262232_58_37118> <http://uml/2#memberEnd> <_262232_59_37119> .
1751
+ <_262232_58_37118> <http://uml/2#ownedEnd> <_262232_59_37119> .
1752
+ <_262232_59_37119> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1753
+ #appendXMLID xmi:id="_262232_59_37119"
1754
+ <_262232_59_37119> <http://uml/2#name> "" .
1755
+ <_262232_59_37119> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1756
+ <_262232_59_37119> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1757
+ # appendRDFInTagURI
1758
+ <_262232_59_37119> <http://uml/2#association> <_262232_58_37118> .
1759
+ <_262232_59_37119> <http://uml/2#type> <_262232_34_37083> .
1760
+ # multiplicity upperValue
1761
+ <_262232_59_37119> <http://uml/2#upperValue> <_262232_59_37119_upperValue> .
1762
+ <_262232_59_37119_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
1763
+ <_262232_59_37119_upperValue> <http://uml/2#value> "-1" .
1764
+ # multiplicity lowerValue
1765
+ <_262232_59_37119> <http://uml/2#lowerValue> <_262232_59_37119_lowerValue> .
1766
+ <_262232_59_37119_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1767
+ <_262232_59_37119_lowerValue> <http://uml/2#value> "0" .
1768
+ <_262232_42_37092> <http://uml/2#ownedMember> <_262232_34_37083> .
1769
+ <_262232_34_37083> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1770
+ #appendXMLID xmi:id="_262232_34_37083"
1771
+ <_262232_34_37083> <http://uml/2#name> "Classx" .
1772
+ <_262232_34_37083> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1773
+ <_262232_34_37083> <http://uml/2#ownedAttribute> <_262232_36_37085> .
1774
+ <_262232_36_37085> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1775
+ #appendXMLID xmi:id="_262232_36_37085"
1776
+ <_262232_36_37085> <http://uml/2#name> "Attribute" .
1777
+ <_262232_36_37085> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1778
+ <_262232_36_37085> <http://uml/2#type> <_262232_46_37096> .
1779
+ <_262232_34_37083> <http://uml/2#ownedAttribute> <_262232_57_37117> .
1780
+ <_262232_57_37117> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1781
+ #appendXMLID xmi:id="_262232_57_37117"
1782
+ <_262232_57_37117> <http://uml/2#name> "linkTowerdExternal" .
1783
+ <_262232_57_37117> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1784
+ <_262232_57_37117> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1785
+ # appendRDFInTagURI
1786
+ <_262232_57_37117> <http://uml/2#association> <_262232_58_37118> .
1787
+ <_262232_57_37117> <http://uml/2#type> <_262232_55_37115> .
1788
+ # multiplicity upperValue
1789
+ <_262232_57_37117> <http://uml/2#upperValue> <_262232_57_37117_upperValue> .
1790
+ <_262232_57_37117_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
1791
+ <_262232_57_37117_upperValue> <http://uml/2#value> "-1" .
1792
+ # multiplicity lowerValue
1793
+ <_262232_57_37117> <http://uml/2#lowerValue> <_262232_57_37117_lowerValue> .
1794
+ <_262232_57_37117_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1795
+ <_262232_57_37117_lowerValue> <http://uml/2#value> "0" .
1796
+ <_262232_42_37092> <http://uml/2#ownedMember> <_262232_60_37127> .
1797
+ <_262232_60_37127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1798
+ #appendXMLID xmi:id="_262232_60_37127"
1799
+ <_262232_60_37127> <http://uml/2#name> "Design Pattern" .
1800
+ <_262232_60_37127> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1801
+ <_262232_60_37127> <http://uml/2#appliedStereotype> <_7341788_313_13164> .
1802
+ <_262232_33_37082> <http://uml/2#ownedMember> <_262232_43_37093> .
1803
+ <_262232_43_37093> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1804
+ #appendXMLID xmi:id="_262232_43_37093"
1805
+ <_262232_43_37093> <http://uml/2#name> "Package1" .
1806
+ <_262232_43_37093> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1807
+ <_262232_43_37093> <http://uml/2#ownedMember> <_262232_46_37096> .
1808
+ <_262232_46_37096> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
1809
+ #appendXMLID xmi:id="_262232_46_37096"
1810
+ <_262232_46_37096> <http://uml/2#name> "date" .
1811
+ <_262232_46_37096> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1812
+ <_262232_43_37093> <http://uml/2#ownedMember> <_262232_55_37115> .
1813
+ <_262232_55_37115> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1814
+ #appendXMLID xmi:id="_262232_55_37115"
1815
+ <_262232_55_37115> <http://uml/2#name> "ExternalClass" .
1816
+ <_262232_55_37115> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1817
+ <_262232_219_37575> <http://uml/2#ownedMember> <_262232_67_37145> .
1818
+ <_262232_67_37145> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1819
+ #appendXMLID xmi:id="_262232_67_37145"
1820
+ <_262232_67_37145> <http://uml/2#name> "Package1" .
1821
+ <_262232_67_37145> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1822
+ <_262232_67_37145> <http://uml/2#ownedMember> <_262232_138_37302> .
1823
+ <_262232_138_37302> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1824
+ #appendXMLID xmi:id="_262232_138_37302"
1825
+ <_262232_138_37302> <http://uml/2#name> "Class" .
1826
+ <_262232_138_37302> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1827
+ <_262232_138_37302> <http://uml/2#ownedAttribute> <_262232_140_37297> .
1828
+ <_262232_140_37297> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1829
+ #appendXMLID xmi:id="_262232_140_37297"
1830
+ <_262232_140_37297> <http://uml/2#name> "xyz" .
1831
+ <_262232_140_37297> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1832
+ <_262232_140_37297> <http://uml/2#type> <_4_5_32138> .
1833
+ # multiplicity upperValue
1834
+ <_262232_140_37297> <http://uml/2#upperValue> <_262232_140_37297_upperValue> .
1835
+ <_262232_140_37297_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
1836
+ <_262232_140_37297_upperValue> <http://uml/2#value> "-1" .
1837
+ <_262232_138_37302> <http://uml/2#ownedAttribute> <_262232_155_37396> .
1838
+ <_262232_155_37396> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1839
+ #appendXMLID xmi:id="_262232_155_37396"
1840
+ <_262232_155_37396> <http://uml/2#name> "Attribute" .
1841
+ <_262232_155_37396> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1842
+ <_262232_155_37396> <http://uml/2#type> <_4_9_32140> .
1843
+ # multiplicity upperValue
1844
+ <_262232_155_37396> <http://uml/2#upperValue> <_262232_155_37396_upperValue> .
1845
+ <_262232_155_37396_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1846
+ <_262232_155_37396_upperValue> <http://uml/2#value> "9" .
1847
+ <_262232_219_37575> <http://uml/2#ownedMember> <_262232_167_37419> .
1848
+ <_262232_167_37419> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1849
+ #appendXMLID xmi:id="_262232_167_37419"
1850
+ <_262232_167_37419> <http://uml/2#name> "NotesEtTaggedValue" .
1851
+ <_262232_167_37419> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1852
+ <_262232_167_37419> <http://uml/2#ownedMember> <_262232_168_37421> .
1853
+ <_262232_168_37421> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1854
+ #appendXMLID xmi:id="_262232_168_37421"
1855
+ <_262232_168_37421> <http://uml/2#name> "ClassAlbert" .
1856
+ <_262232_168_37421> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1857
+ <_262232_168_37421> <http://ft/uml/2#taggedValue> <_262232_171_37461> .
1858
+ <_262232_171_37461> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://ft/uml/2#TaggedValue> .
1859
+ <_262232_171_37461> <http://ft/uml/2#tagType> <_262232_165_37416> .
1860
+ <_262232_171_37461> <http://ft/uml/2#value> <_262232_171_37461-val> .
1861
+ <_262232_171_37461-val> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralString> .
1862
+ <_262232_171_37461-val> <http://uml/2#value> "pp" .
1863
+ <_262232_168_37421> <http://ft/uml/2#taggedValue> <_262232_172_37462> .
1864
+ <_262232_172_37462> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://ft/uml/2#TaggedValue> .
1865
+ <_262232_172_37462> <http://ft/uml/2#tagType> <_262232_165_37416> .
1866
+ <_262232_172_37462> <http://ft/uml/2#value> <_262232_172_37462-val> .
1867
+ <_262232_172_37462-val> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralString> .
1868
+ <_262232_172_37462-val> <http://uml/2#value> "p" .
1869
+ <_262232_168_37421> <http://ft/uml/2#taggedValue> <_262232_173_37463> .
1870
+ <_262232_173_37463> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://ft/uml/2#TaggedValue> .
1871
+ <_262232_173_37463> <http://ft/uml/2#tagType> <_262232_165_37416> .
1872
+ <_262232_173_37463> <http://ft/uml/2#value> <_262232_173_37463-val> .
1873
+ <_262232_173_37463-val> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralString> .
1874
+ <_262232_173_37463-val> <http://uml/2#value> "albert" .
1875
+ <_262232_168_37421> <http://ft/uml/2#taggedValue> <_262232_174_37464> .
1876
+ <_262232_174_37464> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://ft/uml/2#TaggedValue> .
1877
+ <_262232_174_37464> <http://ft/uml/2#tagType> <_262232_165_37416> .
1878
+ <_262232_174_37464> <http://ft/uml/2#value> <_262232_174_37464-val> .
1879
+ <_262232_174_37464-val> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralString> .
1880
+ <_262232_174_37464-val> <http://uml/2#value> "pp" .
1881
+ <_262232_168_37421> <http://ft/uml/2#taggedValue> <_262232_175_37465> .
1882
+ <_262232_175_37465> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://ft/uml/2#TaggedValue> .
1883
+ <_262232_175_37465> <http://ft/uml/2#tagType> <_262232_165_37416> .
1884
+ <_262232_175_37465> <http://ft/uml/2#value> <_262232_175_37465-val> .
1885
+ <_262232_175_37465-val> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralString> .
1886
+ <_262232_175_37465-val> <http://uml/2#value> "pp" .
1887
+ <_262232_168_37421> <http://ft/uml/2#taggedValue> <_262232_210_37550> .
1888
+ <_262232_210_37550> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://ft/uml/2#TaggedValue> .
1889
+ <_262232_210_37550> <http://ft/uml/2#tagType> <_262232_208_37545> .
1890
+ <_262232_210_37550> <http://ft/uml/2#value> <_262232_210_37550-val> .
1891
+ <_262232_210_37550-val> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralString> .
1892
+ <_262232_210_37550-val> <http://uml/2#value> "qualifiedVal" .
1893
+ <_262232_168_37421> <http://ft/uml/2#taggedValue> <_262232_211_37551> .
1894
+ <_262232_211_37551> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://ft/uml/2#TaggedValue> .
1895
+ <_262232_211_37551> <http://ft/uml/2#tagType> <_262232_208_37545> .
1896
+ <_262232_211_37551> <http://ft/uml/2#value> <_262232_211_37551-val> .
1897
+ <_262232_211_37551-val> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralString> .
1898
+ <_262232_211_37551-val> <http://uml/2#value> "val1" .
1899
+ <_262232_168_37421> <http://ft/uml/2#taggedValue> <_262232_176_37485> .
1900
+ <_262232_176_37485> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://ft/uml/2#TaggedValue> .
1901
+ <_262232_176_37485> <http://ft/uml/2#tagType> <_0_16001_13070> .
1902
+ <_262232_176_37485> <http://ft/uml/2#value> <_262232_176_37485-val> .
1903
+ <_262232_176_37485-val> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralString> .
1904
+ <_262232_176_37485-val> <http://uml/2#value> "Jean\nJean 2\nJean 3\nJean 4\na��" .
1905
+ <_262232_167_37419> <http://uml/2#ownedMember> <_262232_177_37487> .
1906
+ <_262232_177_37487> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1907
+ #appendXMLID xmi:id="_262232_177_37487"
1908
+ <_262232_177_37487> <http://uml/2#name> "ClassRene" .
1909
+ <_262232_177_37487> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1910
+ <_262232_177_37487> <http://ft/uml/2#taggedValue> <_262232_179_37490> .
1911
+ <_262232_179_37490> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://ft/uml/2#TaggedValue> .
1912
+ <_262232_179_37490> <http://ft/uml/2#tagType> <_0_16001_13070> .
1913
+ <_262232_179_37490> <http://ft/uml/2#value> <_262232_179_37490-val> .
1914
+ <_262232_179_37490-val> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralString> .
1915
+ <_262232_179_37490-val> <http://uml/2#value> "jean 2" .
1916
+ <_262232_219_37575> <http://uml/2#ownedMember> <_1524367564_1401_35823> .
1917
+ <_1524367564_1401_35823> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1918
+ #appendXMLID xmi:id="_1524367564_1401_35823"
1919
+ <_1524367564_1401_35823> <http://uml/2#name> "ClasseALaRacine" .
1920
+ <_1524367564_1401_35823> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1921
+ <_262232_219_37575> <http://uml/2#ownedMember> <_1524367744_1_36999> .
1922
+ <_1524367744_1_36999> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Signal> .
1923
+ #appendXMLID xmi:id="_1524367744_1_36999"
1924
+ <_1524367744_1_36999> <http://uml/2#name> "Signal" .
1925
+ <_1524367744_1_36999> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1926
+ # BEGIN ADDING 14 used ModelElement(s)
1927
+ <_0_16000_14953> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1928
+ <_0_16000_14953> <http://uml/2#name> "comment" .
1929
+ <_0_16000_14953> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1930
+ <_0_16000_14953> <http://uml/2#isUnique> "true" .
1931
+ <_0_16000_14953> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1932
+ <_0_16001_13070> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1933
+ <_0_16001_13070> <http://uml/2#name> "description" .
1934
+ <_0_16001_13070> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1935
+ <_0_16001_13070> <http://uml/2#isUnique> "true" .
1936
+ <_0_16001_13070> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1937
+ <_248775092_2_6499> <http://uml/2#ownedMember> <_0_14121_14949> .
1938
+ <_0_14121_14949> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1939
+ #appendXMLID xmi:id="_0_14121_14949"
1940
+ <_0_14121_14949> <http://uml/2#name> "ordered" .
1941
+ <_248775092_2_6499> <http://uml/2#ownedMember> <_7341696_495_13151> .
1942
+ <_7341696_495_13151> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Stereotype> .
1943
+ #appendXMLID xmi:id="_7341696_495_13151"
1944
+ <_7341696_495_13151> <http://uml/2#name> "process" .
1945
+ <_248775092_2_6499> <http://uml/2#ownedMember> <_7341696_516_13161> .
1946
+ <_7341696_516_13161> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Stereotype> .
1947
+ #appendXMLID xmi:id="_7341696_516_13161"
1948
+ <_7341696_516_13161> <http://uml/2#name> "create" .
1949
+ <_248775092_2_6499> <http://uml/2#ownedMember> <_0_40002_13127> .
1950
+ <_0_40002_13127> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Stereotype> .
1951
+ #appendXMLID xmi:id="_0_40002_13127"
1952
+ <_0_40002_13127> <http://uml/2#name> "interface" .
1953
+ <_248775092_2_6499> <http://uml/2#ownedMember> <_7341696_467_13144> .
1954
+ <_7341696_467_13144> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Stereotype> .
1955
+ #appendXMLID xmi:id="_7341696_467_13144"
1956
+ <_7341696_467_13144> <http://uml/2#name> "subsystem" .
1957
+ <_248775092_2_6499> <http://uml/2#ownedMember> <_7341788_313_13164> .
1958
+ <_7341788_313_13164> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Stereotype> .
1959
+ #appendXMLID xmi:id="_7341788_313_13164"
1960
+ <_7341788_313_13164> <http://uml/2#name> "design pattern" .
1961
+ <_248775092_2_6499> <http://uml/2#ownedMember> <_262232_165_37416> .
1962
+ <_262232_165_37416> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1963
+ #appendXMLID xmi:id="_262232_165_37416"
1964
+ <_262232_165_37416> <http://uml/2#name> "titi" .
1965
+ <_248775092_2_6499> <http://uml/2#ownedMember> <_262232_208_37545> .
1966
+ <_262232_208_37545> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1967
+ #appendXMLID xmi:id="_262232_208_37545"
1968
+ <_262232_208_37545> <http://uml/2#name> "tata" .
1969
+ # END ADDING 14 used ModelElement(s)
1970
+ # Used Datatypes
1971
+ <_248775092_2_6499> <http://uml/2#ownedMember> <_4_13_32142> .
1972
+ <_4_13_32142> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
1973
+ #appendXMLID xmi:id="_4_13_32142"
1974
+ <_4_13_32142> <http://uml/2#name> "string" .
1975
+ <_4_13_32142> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1976
+ <_248775092_2_6499> <http://uml/2#ownedMember> <_4_9_32140> .
1977
+ <_4_9_32140> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
1978
+ #appendXMLID xmi:id="_4_9_32140"
1979
+ <_4_9_32140> <http://uml/2#name> "integer" .
1980
+ <_4_9_32140> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1981
+ <_248775092_2_6499> <http://uml/2#ownedMember> <_4_5_32138> .
1982
+ <_4_5_32138> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
1983
+ #appendXMLID xmi:id="_4_5_32138"
1984
+ <_4_5_32138> <http://uml/2#name> "boolean" .
1985
+ <_4_5_32138> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1986
+ # end of file