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,1627 @@
1
+ #!ontomdx
2
+ # END of IMPORTS
3
+ # model export
4
+ # model name=
5
+ <_1524367684_2_52508> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Model> .
6
+ <_1524367684_2_52508> <http://uml/2#name> "simple1" .
7
+ <_1524367684_2_52508> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
8
+ <_1524367684_2_52508> <http://uml/2#ownedMember> <_1524367564_1195_52648> .
9
+ <_1524367564_1195_52648> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
10
+ <_1524367564_1195_52648> <http://uml/2#name> "pack1" .
11
+ <_1524367564_1195_52648> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
12
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1424_52711> .
13
+ <_1524367564_1424_52711> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
14
+ <_1524367564_1424_52711> <http://uml/2#name> "" .
15
+ <_1524367564_1424_52711> <http://uml/2#memberEnd> <_1524367564_1425_52709> .
16
+ <_1524367564_1424_52711> <http://uml/2#memberEnd> <_1524367564_1426_52712> .
17
+ <_1524367564_1424_52711> <http://uml/2#ownedEnd> <_1524367564_1426_52712> .
18
+ <_1524367564_1426_52712> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
19
+ <_1524367564_1426_52712> <http://uml/2#name> "wq" .
20
+ <_1524367564_1426_52712> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
21
+ <_1524367564_1426_52712> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
22
+ # appendRDFInTagURI
23
+ <_1524367564_1426_52712> <http://uml/2#association> <_1524367564_1424_52711> .
24
+ <_1524367564_1426_52712> <http://uml/2#type> <_1524367564_1247_52673> .
25
+ # multiplicity upperValue
26
+ <_1524367564_1426_52712> <http://uml/2#upperValue> <_1524367564_1426_52712_upperValue> .
27
+ <_1524367564_1426_52712_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
28
+ <_1524367564_1426_52712_upperValue> <http://uml/2#value> "1" .
29
+ # multiplicity lowerValue
30
+ <_1524367564_1426_52712> <http://uml/2#lowerValue> <_1524367564_1426_52712_lowerValue> .
31
+ <_1524367564_1426_52712_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
32
+ <_1524367564_1426_52712_lowerValue> <http://uml/2#value> "1" .
33
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1433_52715> .
34
+ <_1524367564_1433_52715> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
35
+ <_1524367564_1433_52715> <http://uml/2#name> "" .
36
+ <_1524367564_1433_52715> <http://uml/2#memberEnd> <_1524367564_1434_52713> .
37
+ <_1524367564_1433_52715> <http://uml/2#memberEnd> <_1524367564_1435_52716> .
38
+ <_1524367564_1433_52715> <http://uml/2#ownedEnd> <_1524367564_1435_52716> .
39
+ <_1524367564_1435_52716> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
40
+ <_1524367564_1435_52716> <http://uml/2#name> "" .
41
+ <_1524367564_1435_52716> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
42
+ <_1524367564_1435_52716> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
43
+ # appendRDFInTagURI
44
+ <_1524367564_1435_52716> <http://uml/2#association> <_1524367564_1433_52715> .
45
+ <_1524367564_1435_52716> <http://uml/2#type> <_1524367564_1247_52673> .
46
+ # multiplicity upperValue
47
+ <_1524367564_1435_52716> <http://uml/2#upperValue> <_1524367564_1435_52716_upperValue> .
48
+ <_1524367564_1435_52716_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
49
+ <_1524367564_1435_52716_upperValue> <http://uml/2#value> "1" .
50
+ # multiplicity lowerValue
51
+ <_1524367564_1435_52716> <http://uml/2#lowerValue> <_1524367564_1435_52716_lowerValue> .
52
+ <_1524367564_1435_52716_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
53
+ <_1524367564_1435_52716_lowerValue> <http://uml/2#value> "1" .
54
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1442_52719> .
55
+ <_1524367564_1442_52719> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
56
+ <_1524367564_1442_52719> <http://uml/2#name> "" .
57
+ <_1524367564_1442_52719> <http://uml/2#memberEnd> <_1524367564_1443_52717> .
58
+ <_1524367564_1442_52719> <http://uml/2#memberEnd> <_1524367564_1444_52720> .
59
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1453_52722> .
60
+ <_1524367564_1453_52722> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
61
+ <_1524367564_1453_52722> <http://uml/2#name> "" .
62
+ <_1524367564_1453_52722> <http://uml/2#memberEnd> <_1524367564_1454_52721> .
63
+ <_1524367564_1453_52722> <http://uml/2#memberEnd> <_1524367564_1455_52723> .
64
+ <_1524367564_1453_52722> <http://uml/2#ownedEnd> <_1524367564_1455_52723> .
65
+ <_1524367564_1455_52723> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
66
+ <_1524367564_1455_52723> <http://uml/2#name> "owner" .
67
+ <_1524367564_1455_52723> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
68
+ <_1524367564_1455_52723> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
69
+ # appendRDFInTagURI
70
+ <_1524367564_1455_52723> <http://uml/2#association> <_1524367564_1453_52722> .
71
+ <_1524367564_1455_52723> <http://uml/2#type> <_1524367564_1247_52673> .
72
+ # multiplicity upperValue
73
+ <_1524367564_1455_52723> <http://uml/2#upperValue> <_1524367564_1455_52723_upperValue> .
74
+ <_1524367564_1455_52723_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
75
+ <_1524367564_1455_52723_upperValue> <http://uml/2#value> "1" .
76
+ # multiplicity lowerValue
77
+ <_1524367564_1455_52723> <http://uml/2#lowerValue> <_1524367564_1455_52723_lowerValue> .
78
+ <_1524367564_1455_52723_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
79
+ <_1524367564_1455_52723_lowerValue> <http://uml/2#value> "1" .
80
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1462_52726> .
81
+ <_1524367564_1462_52726> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
82
+ <_1524367564_1462_52726> <http://uml/2#name> "" .
83
+ <_1524367564_1462_52726> <http://uml/2#memberEnd> <_1524367564_1463_52724> .
84
+ <_1524367564_1462_52726> <http://uml/2#memberEnd> <_1524367564_1464_52727> .
85
+ <_1524367564_1462_52726> <http://uml/2#ownedEnd> <_1524367564_1464_52727> .
86
+ <_1524367564_1464_52727> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
87
+ <_1524367564_1464_52727> <http://uml/2#name> "classdetest_ro" .
88
+ <_1524367564_1464_52727> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
89
+ <_1524367564_1464_52727> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
90
+ # appendRDFInTagURI
91
+ <_1524367564_1464_52727> <http://uml/2#association> <_1524367564_1462_52726> .
92
+ <_1524367564_1464_52727> <http://uml/2#type> <_1524367564_1247_52673> .
93
+ # multiplicity upperValue
94
+ <_1524367564_1464_52727> <http://uml/2#upperValue> <_1524367564_1464_52727_upperValue> .
95
+ <_1524367564_1464_52727_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
96
+ <_1524367564_1464_52727_upperValue> <http://uml/2#value> "1" .
97
+ # multiplicity lowerValue
98
+ <_1524367564_1464_52727> <http://uml/2#lowerValue> <_1524367564_1464_52727_lowerValue> .
99
+ <_1524367564_1464_52727_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
100
+ <_1524367564_1464_52727_lowerValue> <http://uml/2#value> "1" .
101
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1472_52730> .
102
+ <_1524367564_1472_52730> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
103
+ <_1524367564_1472_52730> <http://uml/2#name> "" .
104
+ <_1524367564_1472_52730> <http://uml/2#memberEnd> <_1524367564_1473_52728> .
105
+ <_1524367564_1472_52730> <http://uml/2#memberEnd> <_1524367564_1474_52731> .
106
+ <_1524367564_1472_52730> <http://uml/2#ownedEnd> <_1524367564_1474_52731> .
107
+ <_1524367564_1474_52731> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
108
+ <_1524367564_1474_52731> <http://uml/2#name> "" .
109
+ <_1524367564_1474_52731> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
110
+ <_1524367564_1474_52731> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
111
+ # appendRDFInTagURI
112
+ <_1524367564_1474_52731> <http://uml/2#association> <_1524367564_1472_52730> .
113
+ <_1524367564_1474_52731> <http://uml/2#type> <_1524367564_1247_52673> .
114
+ # multiplicity upperValue
115
+ <_1524367564_1474_52731> <http://uml/2#upperValue> <_1524367564_1474_52731_upperValue> .
116
+ <_1524367564_1474_52731_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
117
+ <_1524367564_1474_52731_upperValue> <http://uml/2#value> "???" .
118
+ # multiplicity lowerValue
119
+ <_1524367564_1474_52731> <http://uml/2#lowerValue> <_1524367564_1474_52731_lowerValue> .
120
+ <_1524367564_1474_52731_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
121
+ <_1524367564_1474_52731_lowerValue> <http://uml/2#value> "???" .
122
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1483_52733> .
123
+ <_1524367564_1483_52733> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
124
+ <_1524367564_1483_52733> <http://uml/2#name> "" .
125
+ <_1524367564_1483_52733> <http://uml/2#memberEnd> <_1524367564_1484_52732> .
126
+ <_1524367564_1483_52733> <http://uml/2#memberEnd> <_1524367564_1485_52734> .
127
+ <_1524367564_1483_52733> <http://uml/2#ownedEnd> <_1524367564_1484_52732> .
128
+ <_1524367564_1484_52732> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
129
+ <_1524367564_1484_52732> <http://uml/2#name> "roleB" .
130
+ <_1524367564_1484_52732> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
131
+ <_1524367564_1484_52732> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
132
+ # appendRDFInTagURI
133
+ <_1524367564_1484_52732> <http://uml/2#association> <_1524367564_1483_52733> .
134
+ <_1524367564_1484_52732> <http://uml/2#type> <_1524367564_1222_52797> .
135
+ # multiplicity upperValue
136
+ <_1524367564_1484_52732> <http://uml/2#upperValue> <_1524367564_1484_52732_upperValue> .
137
+ <_1524367564_1484_52732_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
138
+ <_1524367564_1484_52732_upperValue> <http://uml/2#value> "890" .
139
+ # multiplicity lowerValue
140
+ <_1524367564_1484_52732> <http://uml/2#lowerValue> <_1524367564_1484_52732_lowerValue> .
141
+ <_1524367564_1484_52732_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
142
+ <_1524367564_1484_52732_lowerValue> <http://uml/2#value> "49" .
143
+ <_1524367564_1483_52733> <http://uml/2#ownedEnd> <_1524367564_1485_52734> .
144
+ <_1524367564_1485_52734> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
145
+ <_1524367564_1485_52734> <http://uml/2#name> "classdetest" .
146
+ <_1524367564_1485_52734> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
147
+ <_1524367564_1485_52734> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
148
+ # appendRDFInTagURI
149
+ <_1524367564_1485_52734> <http://uml/2#association> <_1524367564_1483_52733> .
150
+ <_1524367564_1485_52734> <http://uml/2#type> <_1524367564_1247_52673> .
151
+ # multiplicity upperValue
152
+ <_1524367564_1485_52734> <http://uml/2#upperValue> <_1524367564_1485_52734_upperValue> .
153
+ <_1524367564_1485_52734_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
154
+ <_1524367564_1485_52734_upperValue> <http://uml/2#value> "1" .
155
+ # multiplicity lowerValue
156
+ <_1524367564_1485_52734> <http://uml/2#lowerValue> <_1524367564_1485_52734_lowerValue> .
157
+ <_1524367564_1485_52734_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
158
+ <_1524367564_1485_52734_lowerValue> <http://uml/2#value> "1" .
159
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1492_52736> .
160
+ <_1524367564_1492_52736> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
161
+ <_1524367564_1492_52736> <http://uml/2#name> "" .
162
+ <_1524367564_1492_52736> <http://uml/2#memberEnd> <_1524367564_1493_52735> .
163
+ <_1524367564_1492_52736> <http://uml/2#memberEnd> <_1524367564_1494_52737> .
164
+ <_1524367564_1492_52736> <http://uml/2#ownedEnd> <_1524367564_1494_52737> .
165
+ <_1524367564_1494_52737> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
166
+ <_1524367564_1494_52737> <http://uml/2#name> "" .
167
+ <_1524367564_1494_52737> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
168
+ <_1524367564_1494_52737> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
169
+ # appendRDFInTagURI
170
+ <_1524367564_1494_52737> <http://uml/2#association> <_1524367564_1492_52736> .
171
+ <_1524367564_1494_52737> <http://uml/2#type> <_1524367564_1247_52673> .
172
+ # multiplicity upperValue
173
+ <_1524367564_1494_52737> <http://uml/2#upperValue> <_1524367564_1494_52737_upperValue> .
174
+ <_1524367564_1494_52737_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
175
+ <_1524367564_1494_52737_upperValue> <http://uml/2#value> "1" .
176
+ # multiplicity lowerValue
177
+ <_1524367564_1494_52737> <http://uml/2#lowerValue> <_1524367564_1494_52737_lowerValue> .
178
+ <_1524367564_1494_52737_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
179
+ <_1524367564_1494_52737_lowerValue> <http://uml/2#value> "1" .
180
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1501_52739> .
181
+ <_1524367564_1501_52739> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
182
+ <_1524367564_1501_52739> <http://uml/2#name> "" .
183
+ <_1524367564_1501_52739> <http://uml/2#memberEnd> <_1524367564_1502_52738> .
184
+ <_1524367564_1501_52739> <http://uml/2#memberEnd> <_1524367564_1503_52740> .
185
+ <_1524367564_1501_52739> <http://uml/2#ownedEnd> <_1524367564_1503_52740> .
186
+ <_1524367564_1503_52740> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
187
+ <_1524367564_1503_52740> <http://uml/2#name> "classdetest_no" .
188
+ <_1524367564_1503_52740> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
189
+ <_1524367564_1503_52740> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
190
+ # appendRDFInTagURI
191
+ <_1524367564_1503_52740> <http://uml/2#association> <_1524367564_1501_52739> .
192
+ <_1524367564_1503_52740> <http://uml/2#type> <_1524367564_1247_52673> .
193
+ # multiplicity upperValue
194
+ <_1524367564_1503_52740> <http://uml/2#upperValue> <_1524367564_1503_52740_upperValue> .
195
+ <_1524367564_1503_52740_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
196
+ <_1524367564_1503_52740_upperValue> <http://uml/2#value> "1" .
197
+ # multiplicity lowerValue
198
+ <_1524367564_1503_52740> <http://uml/2#lowerValue> <_1524367564_1503_52740_lowerValue> .
199
+ <_1524367564_1503_52740_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
200
+ <_1524367564_1503_52740_lowerValue> <http://uml/2#value> "1" .
201
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1510_52742> .
202
+ <_1524367564_1510_52742> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
203
+ <_1524367564_1510_52742> <http://uml/2#name> "" .
204
+ <_1524367564_1510_52742> <http://uml/2#memberEnd> <_1524367564_1511_52741> .
205
+ <_1524367564_1510_52742> <http://uml/2#memberEnd> <_1524367564_1512_52743> .
206
+ <_1524367564_1510_52742> <http://uml/2#ownedEnd> <_1524367564_1512_52743> .
207
+ <_1524367564_1512_52743> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
208
+ <_1524367564_1512_52743> <http://uml/2#name> "classdetest_d" .
209
+ <_1524367564_1512_52743> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
210
+ <_1524367564_1512_52743> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
211
+ # appendRDFInTagURI
212
+ <_1524367564_1512_52743> <http://uml/2#association> <_1524367564_1510_52742> .
213
+ <_1524367564_1512_52743> <http://uml/2#type> <_1524367564_1247_52673> .
214
+ # multiplicity upperValue
215
+ <_1524367564_1512_52743> <http://uml/2#upperValue> <_1524367564_1512_52743_upperValue> .
216
+ <_1524367564_1512_52743_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
217
+ <_1524367564_1512_52743_upperValue> <http://uml/2#value> "1" .
218
+ # multiplicity lowerValue
219
+ <_1524367564_1512_52743> <http://uml/2#lowerValue> <_1524367564_1512_52743_lowerValue> .
220
+ <_1524367564_1512_52743_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
221
+ <_1524367564_1512_52743_lowerValue> <http://uml/2#value> "1" .
222
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1250427384_704_52745> .
223
+ <_1250427384_704_52745> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
224
+ <_1250427384_704_52745> <http://uml/2#name> "" .
225
+ <_1250427384_704_52745> <http://uml/2#memberEnd> <_1250427384_703_52744> .
226
+ <_1250427384_704_52745> <http://uml/2#memberEnd> <_1250427384_705_52746> .
227
+ <_1250427384_704_52745> <http://uml/2#ownedEnd> <_1250427384_705_52746> .
228
+ <_1250427384_705_52746> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
229
+ <_1250427384_705_52746> <http://uml/2#name> "" .
230
+ <_1250427384_705_52746> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
231
+ <_1250427384_705_52746> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
232
+ # appendRDFInTagURI
233
+ <_1250427384_705_52746> <http://uml/2#association> <_1250427384_704_52745> .
234
+ <_1250427384_705_52746> <http://uml/2#type> <_1524367564_1247_52673> .
235
+ # multiplicity upperValue
236
+ <_1250427384_705_52746> <http://uml/2#upperValue> <_1250427384_705_52746_upperValue> .
237
+ <_1250427384_705_52746_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
238
+ <_1250427384_705_52746_upperValue> <http://uml/2#value> "1" .
239
+ # multiplicity lowerValue
240
+ <_1250427384_705_52746> <http://uml/2#lowerValue> <_1250427384_705_52746_lowerValue> .
241
+ <_1250427384_705_52746_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
242
+ <_1250427384_705_52746_lowerValue> <http://uml/2#value> "1" .
243
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1600127000_74_53317> .
244
+ <_1600127000_74_53317> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
245
+ <_1600127000_74_53317> <http://uml/2#name> "" .
246
+ <_1600127000_74_53317> <http://uml/2#memberEnd> <_1600127000_72_53315> .
247
+ <_1600127000_74_53317> <http://uml/2#memberEnd> <_1600127000_73_53316> .
248
+ <_1600127000_74_53317> <http://uml/2#ownedEnd> <_1600127000_73_53316> .
249
+ <_1600127000_73_53316> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
250
+ <_1600127000_73_53316> <http://uml/2#name> "owner 2" .
251
+ <_1600127000_73_53316> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
252
+ <_1600127000_73_53316> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
253
+ # appendRDFInTagURI
254
+ <_1600127000_73_53316> <http://uml/2#association> <_1600127000_74_53317> .
255
+ <_1600127000_73_53316> <http://uml/2#type> <_1524367564_1247_52673> .
256
+ # multiplicity upperValue
257
+ <_1600127000_73_53316> <http://uml/2#upperValue> <_1600127000_73_53316_upperValue> .
258
+ <_1600127000_73_53316_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
259
+ <_1600127000_73_53316_upperValue> <http://uml/2#value> "1" .
260
+ # multiplicity lowerValue
261
+ <_1600127000_73_53316> <http://uml/2#lowerValue> <_1600127000_73_53316_lowerValue> .
262
+ <_1600127000_73_53316_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
263
+ <_1600127000_73_53316_lowerValue> <http://uml/2#value> "1" .
264
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1600127064_46_56202> .
265
+ <_1600127064_46_56202> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
266
+ <_1600127064_46_56202> <http://uml/2#name> "" .
267
+ <_1600127064_46_56202> <http://uml/2#memberEnd> <_1600127064_44_56200> .
268
+ <_1600127064_46_56202> <http://uml/2#memberEnd> <_1600127064_45_56201> .
269
+ <_1600127064_46_56202> <http://uml/2#ownedEnd> <_1600127064_45_56201> .
270
+ <_1600127064_45_56201> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
271
+ <_1600127064_45_56201> <http://uml/2#name> "" .
272
+ <_1600127064_45_56201> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
273
+ <_1600127064_45_56201> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
274
+ # appendRDFInTagURI
275
+ <_1600127064_45_56201> <http://uml/2#association> <_1600127064_46_56202> .
276
+ <_1600127064_45_56201> <http://uml/2#type> <_1524367564_1247_52673> .
277
+ # multiplicity upperValue
278
+ <_1600127064_45_56201> <http://uml/2#upperValue> <_1600127064_45_56201_upperValue> .
279
+ <_1600127064_45_56201_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
280
+ <_1600127064_45_56201_upperValue> <http://uml/2#value> "undefined" .
281
+ # multiplicity lowerValue
282
+ <_1600127064_45_56201> <http://uml/2#lowerValue> <_1600127064_45_56201_lowerValue> .
283
+ <_1600127064_45_56201_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
284
+ <_1600127064_45_56201_lowerValue> <http://uml/2#value> "undefined" .
285
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1600126996_33_52781> .
286
+ <_1600126996_33_52781> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
287
+ <_1600126996_33_52781> <http://uml/2#name> "" .
288
+ <_1600126996_33_52781> <http://uml/2#memberEnd> <_1600126996_31_52780> .
289
+ <_1600126996_33_52781> <http://uml/2#memberEnd> <_1600126996_32_52782> .
290
+ <_1600126996_33_52781> <http://uml/2#ownedEnd> <_1600126996_32_52782> .
291
+ <_1600126996_32_52782> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
292
+ <_1600126996_32_52782> <http://uml/2#name> "" .
293
+ <_1600126996_32_52782> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
294
+ <_1600126996_32_52782> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
295
+ # appendRDFInTagURI
296
+ <_1600126996_32_52782> <http://uml/2#association> <_1600126996_33_52781> .
297
+ <_1600126996_32_52782> <http://uml/2#type> <_1250427384_649_52777> .
298
+ # multiplicity upperValue
299
+ <_1600126996_32_52782> <http://uml/2#upperValue> <_1600126996_32_52782_upperValue> .
300
+ <_1600126996_32_52782_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
301
+ <_1600126996_32_52782_upperValue> <http://uml/2#value> "1" .
302
+ # multiplicity lowerValue
303
+ <_1600126996_32_52782> <http://uml/2#lowerValue> <_1600126996_32_52782_lowerValue> .
304
+ <_1600126996_32_52782_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
305
+ <_1600126996_32_52782_lowerValue> <http://uml/2#value> "1" .
306
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1197_52649> .
307
+ <_1524367564_1197_52649> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
308
+ <_1524367564_1197_52649> <http://uml/2#name> "pack11" .
309
+ <_1524367564_1197_52649> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
310
+ <_1524367564_1197_52649> <http://uml/2#ownedMember> <_1524367564_1523_52652> .
311
+ <_1524367564_1523_52652> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
312
+ <_1524367564_1523_52652> <http://uml/2#name> "" .
313
+ <_1524367564_1523_52652> <http://uml/2#memberEnd> <_1524367564_1525_52651> .
314
+ <_1524367564_1523_52652> <http://uml/2#memberEnd> <_1524367564_1524_52653> .
315
+ <_1524367564_1197_52649> <http://uml/2#ownedMember> <_1524367564_1532_52655> .
316
+ <_1524367564_1532_52655> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
317
+ <_1524367564_1532_52655> <http://uml/2#name> "" .
318
+ <_1524367564_1532_52655> <http://uml/2#memberEnd> <_1524367564_1534_52654> .
319
+ <_1524367564_1532_52655> <http://uml/2#memberEnd> <_1524367564_1533_52656> .
320
+ <_1524367564_1197_52649> <http://uml/2#ownedMember> <_1524367564_1541_52658> .
321
+ <_1524367564_1541_52658> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
322
+ <_1524367564_1541_52658> <http://uml/2#name> "" .
323
+ <_1524367564_1541_52658> <http://uml/2#memberEnd> <_1524367564_1542_52657> .
324
+ <_1524367564_1541_52658> <http://uml/2#memberEnd> <_1524367564_1543_52659> .
325
+ <_1524367564_1197_52649> <http://uml/2#ownedMember> <_1524367564_1208_52650> .
326
+ <_1524367564_1208_52650> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
327
+ <_1524367564_1208_52650> <http://uml/2#name> "ClassDeuxNxPkg" .
328
+ <_1524367564_1208_52650> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
329
+ <_1524367564_1208_52650> <http://uml/2#ownedAttribute> <_1524367564_1525_52651> .
330
+ <_1524367564_1525_52651> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
331
+ <_1524367564_1525_52651> <http://uml/2#name> "bidi_cdt_2_1" .
332
+ <_1524367564_1525_52651> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
333
+ <_1524367564_1525_52651> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
334
+ # appendRDFInTagURI
335
+ <_1524367564_1525_52651> <http://uml/2#association> <_1524367564_1523_52652> .
336
+ <_1524367564_1525_52651> <http://uml/2#type> <_1524367564_1247_52673> .
337
+ # multiplicity upperValue
338
+ <_1524367564_1525_52651> <http://uml/2#upperValue> <_1524367564_1525_52651_upperValue> .
339
+ <_1524367564_1525_52651_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
340
+ <_1524367564_1525_52651_upperValue> <http://uml/2#value> "1" .
341
+ # multiplicity lowerValue
342
+ <_1524367564_1525_52651> <http://uml/2#lowerValue> <_1524367564_1525_52651_lowerValue> .
343
+ <_1524367564_1525_52651_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
344
+ <_1524367564_1525_52651_lowerValue> <http://uml/2#value> "1" .
345
+ <_1524367564_1208_52650> <http://uml/2#ownedAttribute> <_1524367564_1534_52654> .
346
+ <_1524367564_1534_52654> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
347
+ <_1524367564_1534_52654> <http://uml/2#name> "bidi_cdt_1_1" .
348
+ <_1524367564_1534_52654> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
349
+ <_1524367564_1534_52654> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
350
+ # appendRDFInTagURI
351
+ <_1524367564_1534_52654> <http://uml/2#association> <_1524367564_1532_52655> .
352
+ <_1524367564_1534_52654> <http://uml/2#type> <_1524367564_1247_52673> .
353
+ # multiplicity upperValue
354
+ <_1524367564_1534_52654> <http://uml/2#upperValue> <_1524367564_1534_52654_upperValue> .
355
+ <_1524367564_1534_52654_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
356
+ <_1524367564_1534_52654_upperValue> <http://uml/2#value> "1" .
357
+ # multiplicity lowerValue
358
+ <_1524367564_1534_52654> <http://uml/2#lowerValue> <_1524367564_1534_52654_lowerValue> .
359
+ <_1524367564_1534_52654_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
360
+ <_1524367564_1534_52654_lowerValue> <http://uml/2#value> "1" .
361
+ <_1524367564_1208_52650> <http://uml/2#ownedAttribute> <_1524367564_1542_52657> .
362
+ <_1524367564_1542_52657> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
363
+ <_1524367564_1542_52657> <http://uml/2#name> "bidi_cdt_3_s" .
364
+ <_1524367564_1542_52657> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
365
+ <_1524367564_1542_52657> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
366
+ # appendRDFInTagURI
367
+ <_1524367564_1542_52657> <http://uml/2#association> <_1524367564_1541_52658> .
368
+ <_1524367564_1542_52657> <http://uml/2#type> <_1524367564_1247_52673> .
369
+ # multiplicity upperValue
370
+ <_1524367564_1542_52657> <http://uml/2#upperValue> <_1524367564_1542_52657_upperValue> .
371
+ <_1524367564_1542_52657_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
372
+ <_1524367564_1542_52657_upperValue> <http://uml/2#value> "-1" .
373
+ # multiplicity lowerValue
374
+ <_1524367564_1542_52657> <http://uml/2#lowerValue> <_1524367564_1542_52657_lowerValue> .
375
+ <_1524367564_1542_52657_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
376
+ <_1524367564_1542_52657_lowerValue> <http://uml/2#value> "0" .
377
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1307_52661> .
378
+ <_1524367564_1307_52661> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Enumeration> .
379
+ <_1524367564_1307_52661> <http://uml/2#name> "Couleurs" .
380
+ <_1524367564_1307_52661> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
381
+ <_1524367564_1307_52661> <http://uml/2#ownedComment> <_1600127064_47_56207> .
382
+ <_1600127064_47_56207> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
383
+ #TODO export type de la note
384
+ <_1600127064_47_56207> <http://uml/2#body> "Special comment added for unit testing:&#xD;&#xA;__DOC_ENUM__" .
385
+ <_1524367564_1307_52661> <http://uml/2#ownedLiteral> <_1524367564_1379_52662> .
386
+ <_1524367564_1379_52662> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
387
+ <_1524367564_1379_52662> <http://uml/2#name> "Pique" .
388
+ <_1524367564_1307_52661> <http://uml/2#ownedLiteral> <_1524367564_1380_52663> .
389
+ <_1524367564_1380_52663> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
390
+ <_1524367564_1380_52663> <http://uml/2#name> "Coeur" .
391
+ <_1524367564_1307_52661> <http://uml/2#ownedLiteral> <_1524367564_1381_52664> .
392
+ <_1524367564_1381_52664> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
393
+ <_1524367564_1381_52664> <http://uml/2#name> "Carreau" .
394
+ <_1524367564_1307_52661> <http://uml/2#ownedLiteral> <_1524367564_1382_52665> .
395
+ <_1524367564_1382_52665> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
396
+ <_1524367564_1382_52665> <http://uml/2#name> "Trefle" .
397
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1309_52666> .
398
+ <_1524367564_1309_52666> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Enumeration> .
399
+ <_1524367564_1309_52666> <http://uml/2#name> "OutOfSpaceEnum" .
400
+ <_1524367564_1309_52666> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
401
+ <_1524367564_1309_52666> <http://uml/2#ownedLiteral> <_1600126996_17_52667> .
402
+ <_1600126996_17_52667> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
403
+ <_1600126996_17_52667> <http://uml/2#name> "green" .
404
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1311_52668> .
405
+ <_1524367564_1311_52668> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Enumeration> .
406
+ <_1524367564_1311_52668> <http://uml/2#name> "EmptyEnum" .
407
+ <_1524367564_1311_52668> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
408
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1206_52669> .
409
+ <_1524367564_1206_52669> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
410
+ <_1524367564_1206_52669> <http://uml/2#name> "ClasseAbstraite" .
411
+ <_1524367564_1206_52669> <http://uml/2#isAbstract> "true" .
412
+ <_1524367564_1206_52669> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
413
+ <_1524367564_1206_52669> <http://uml/2#ownedOperation> <_1524367564_1420_52670> .
414
+ <_1524367564_1420_52670> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
415
+ <_1524367564_1420_52670> <http://uml/2#name> "methodeAbstraite" .
416
+ <_1524367564_1420_52670> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
417
+ <_1524367564_1420_52670> <http://uml/2#isAbstract> "true" .
418
+ <_1524367564_1206_52669> <http://uml/2#ownedOperation> <_1600127064_48_56211> .
419
+ <_1600127064_48_56211> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
420
+ <_1600127064_48_56211> <http://uml/2#name> "abstractMethodOne" .
421
+ <_1600127064_48_56211> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
422
+ <_1600127064_48_56211> <http://uml/2#isAbstract> "true" .
423
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1214_52671> .
424
+ <_1524367564_1214_52671> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
425
+ <_1524367564_1214_52671> <http://uml/2#name> "ClasseAvecInnerClasseZ" .
426
+ <_1524367564_1214_52671> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
427
+ <_1524367564_1214_52671> <http://uml/2#nestedClassifier> <_1524367564_1210_52672> .
428
+ <_1524367564_1210_52672> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
429
+ <_1524367564_1210_52672> <http://uml/2#name> "InnerClasseZ" .
430
+ <_1524367564_1210_52672> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
431
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1247_52673> .
432
+ <_1524367564_1247_52673> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
433
+ <_1524367564_1247_52673> <http://uml/2#name> "Classe De Test" .
434
+ <_1524367564_1247_52673> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
435
+ <_1524367564_1247_52673> <http://uml/2#ownedComment> <_1600127064_51_56217> .
436
+ <_1600127064_51_56217> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
437
+ #TODO export type de la note
438
+ <_1600127064_51_56217> <http://uml/2#body> "Special comment added for unit testing:&#xD;&#xA;&#xD;&#xA;__DOC_CDT__&#xD;&#xA;" .
439
+ <_1524367564_1247_52673> <http://uml/2#generalization> <_1524367564_1250_52675> .
440
+ <_1524367564_1250_52675> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
441
+ # appendRDFInTagURI
442
+ <_1524367564_1250_52675> <http://uml/2#general> <_1524367564_1200_52756> .
443
+ <_1524367564_1247_52673> <http://uml/2#implementation> <_1250427384_644_52676> .
444
+ <_1250427384_644_52676> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Implementation> .
445
+ # appendRDFInTagURI
446
+ <_1250427384_644_52676> <http://uml/2#client> <_1524367564_1247_52673> .
447
+ # appendRDFInTagURI
448
+ <_1250427384_644_52676> <http://uml/2#supplier> <_1250427384_643_52763> .
449
+ <_1524367564_1247_52673> <http://uml/2#implementation> <_1250427384_648_52677> .
450
+ <_1250427384_648_52677> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Implementation> .
451
+ # appendRDFInTagURI
452
+ <_1250427384_648_52677> <http://uml/2#client> <_1524367564_1247_52673> .
453
+ # appendRDFInTagURI
454
+ <_1250427384_648_52677> <http://uml/2#supplier> <_1250427384_647_52771> .
455
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1524367564_1291_52685> .
456
+ <_1524367564_1291_52685> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
457
+ <_1524367564_1291_52685> <http://uml/2#name> "getClasss3Element" .
458
+ <_1524367564_1291_52685> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
459
+ <_1524367564_1291_52685> <http://uml/2#returnResult> <_1524367564_1313_52686> .
460
+ <_1524367564_1313_52686> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
461
+ <_1524367564_1313_52686> <http://uml/2#name> "return parameter" .
462
+ <_1524367564_1313_52686> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
463
+ <_1524367564_1313_52686> <http://uml/2#type> <_1524367564_1218_52793> .
464
+ # multiplicity upperValue
465
+ <_1524367564_1313_52686> <http://uml/2#upperValue> <_1524367564_1313_52686_upperValue> .
466
+ <_1524367564_1313_52686_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
467
+ <_1524367564_1313_52686_upperValue> <http://uml/2#value> "1" .
468
+ # multiplicity lowerValue
469
+ <_1524367564_1313_52686> <http://uml/2#lowerValue> <_1524367564_1313_52686_lowerValue> .
470
+ <_1524367564_1313_52686_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
471
+ <_1524367564_1313_52686_lowerValue> <http://uml/2#value> "0" .
472
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1524367564_1293_52687> .
473
+ <_1524367564_1293_52687> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
474
+ <_1524367564_1293_52687> <http://uml/2#name> "getAnInt" .
475
+ <_1524367564_1293_52687> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
476
+ <_1524367564_1293_52687> <http://uml/2#returnResult> <_1524367564_1315_52688> .
477
+ <_1524367564_1315_52688> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
478
+ <_1524367564_1315_52688> <http://uml/2#name> "return parameter" .
479
+ <_1524367564_1315_52688> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
480
+ <_1524367564_1315_52688> <http://uml/2#type> <_4_9_8642> .
481
+ # multiplicity upperValue
482
+ <_1524367564_1315_52688> <http://uml/2#upperValue> <_1524367564_1315_52688_upperValue> .
483
+ <_1524367564_1315_52688_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
484
+ <_1524367564_1315_52688_upperValue> <http://uml/2#value> "1" .
485
+ # multiplicity lowerValue
486
+ <_1524367564_1315_52688> <http://uml/2#lowerValue> <_1524367564_1315_52688_lowerValue> .
487
+ <_1524367564_1315_52688_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
488
+ <_1524367564_1315_52688_lowerValue> <http://uml/2#value> "0" .
489
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1524367564_1294_52689> .
490
+ <_1524367564_1294_52689> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
491
+ <_1524367564_1294_52689> <http://uml/2#name> "get A Boolean" .
492
+ <_1524367564_1294_52689> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
493
+ <_1524367564_1294_52689> <http://uml/2#returnResult> <_1524367564_1316_52690> .
494
+ <_1524367564_1316_52690> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
495
+ <_1524367564_1316_52690> <http://uml/2#name> "return parameter" .
496
+ <_1524367564_1316_52690> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
497
+ <_1524367564_1316_52690> <http://uml/2#type> <_4_5_8640> .
498
+ # multiplicity upperValue
499
+ <_1524367564_1316_52690> <http://uml/2#upperValue> <_1524367564_1316_52690_upperValue> .
500
+ <_1524367564_1316_52690_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
501
+ <_1524367564_1316_52690_upperValue> <http://uml/2#value> "1" .
502
+ # multiplicity lowerValue
503
+ <_1524367564_1316_52690> <http://uml/2#lowerValue> <_1524367564_1316_52690_lowerValue> .
504
+ <_1524367564_1316_52690_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
505
+ <_1524367564_1316_52690_lowerValue> <http://uml/2#value> "0" .
506
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1524367564_1295_52691> .
507
+ <_1524367564_1295_52691> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
508
+ <_1524367564_1295_52691> <http://uml/2#name> "a Static Void Operation" .
509
+ <_1524367564_1295_52691> <http://uml/2#isStatic> "true" .
510
+ <_1524367564_1295_52691> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
511
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1524367564_1296_52692> .
512
+ <_1524367564_1296_52692> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
513
+ <_1524367564_1296_52692> <http://uml/2#name> "a Private Method" .
514
+ <_1524367564_1296_52692> <http://uml/2#visibility> <http://uml/2#visibilityKind_private> .
515
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1524367564_1297_52693> .
516
+ <_1524367564_1297_52693> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
517
+ <_1524367564_1297_52693> <http://uml/2#name> "aProtectedMethod" .
518
+ <_1524367564_1297_52693> <http://uml/2#visibility> <http://uml/2#visibilityKind_protected> .
519
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1524367564_1298_52694> .
520
+ <_1524367564_1298_52694> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
521
+ <_1524367564_1298_52694> <http://uml/2#name> "aPackageMethod" .
522
+ <_1524367564_1298_52694> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
523
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1524367564_1299_52695> .
524
+ <_1524367564_1299_52695> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
525
+ <_1524367564_1299_52695> <http://uml/2#name> "aBinaryOperation" .
526
+ <_1524367564_1299_52695> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
527
+ <_1524367564_1299_52695> <http://uml/2#ownedParameter> <_1600127064_49_56213> .
528
+ <_1600127064_49_56213> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
529
+ <_1600127064_49_56213> <http://uml/2#name> "OwnedParameter1" .
530
+ <_1600127064_49_56213> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_in> .
531
+ <_1600127064_49_56213> <http://uml/2#type> <_1524367564_1218_52793> .
532
+ # multiplicity upperValue
533
+ <_1600127064_49_56213> <http://uml/2#upperValue> <_1600127064_49_56213_upperValue> .
534
+ <_1600127064_49_56213_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
535
+ <_1600127064_49_56213_upperValue> <http://uml/2#value> "1" .
536
+ # multiplicity lowerValue
537
+ <_1600127064_49_56213> <http://uml/2#lowerValue> <_1600127064_49_56213_lowerValue> .
538
+ <_1600127064_49_56213_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
539
+ <_1600127064_49_56213_lowerValue> <http://uml/2#value> "1" .
540
+ <_1524367564_1299_52695> <http://uml/2#ownedParameter> <_1600127064_50_56214> .
541
+ <_1600127064_50_56214> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
542
+ <_1600127064_50_56214> <http://uml/2#name> "p2" .
543
+ <_1600127064_50_56214> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_in> .
544
+ <_1600127064_50_56214> <http://uml/2#type> <_1524367564_1218_52793> .
545
+ # multiplicity upperValue
546
+ <_1600127064_50_56214> <http://uml/2#upperValue> <_1600127064_50_56214_upperValue> .
547
+ <_1600127064_50_56214_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
548
+ <_1600127064_50_56214_upperValue> <http://uml/2#value> "1" .
549
+ # multiplicity lowerValue
550
+ <_1600127064_50_56214> <http://uml/2#lowerValue> <_1600127064_50_56214_lowerValue> .
551
+ <_1600127064_50_56214_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
552
+ <_1600127064_50_56214_lowerValue> <http://uml/2#value> "1" .
553
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1524367564_1303_52696> .
554
+ <_1524367564_1303_52696> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
555
+ <_1524367564_1303_52696> <http://uml/2#name> "methodeThrowsMyExceptionAndMyException2" .
556
+ <_1524367564_1303_52696> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
557
+ # appendRDFInTagURI
558
+ <_1524367564_1303_52696> <http://uml/2#raisedException> <_1524367564_1224_52798> .
559
+ # appendRDFInTagURI
560
+ <_1524367564_1303_52696> <http://uml/2#raisedException> <_1524367564_1228_52800> .
561
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1524367564_1304_52699> .
562
+ <_1524367564_1304_52699> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
563
+ <_1524367564_1304_52699> <http://uml/2#name> "methodeThrowsMyException" .
564
+ <_1524367564_1304_52699> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
565
+ # appendRDFInTagURI
566
+ <_1524367564_1304_52699> <http://uml/2#raisedException> <_1524367564_1228_52800> .
567
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1524367564_1305_52701> .
568
+ <_1524367564_1305_52701> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
569
+ <_1524367564_1305_52701> <http://uml/2#name> "methodeThrowsWithParam" .
570
+ <_1524367564_1305_52701> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
571
+ <_1524367564_1305_52701> <http://uml/2#ownedParameter> <_1524367564_1321_52702> .
572
+ <_1524367564_1321_52702> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
573
+ <_1524367564_1321_52702> <http://uml/2#name> "sans nom2" .
574
+ <_1524367564_1321_52702> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_in> .
575
+ <_1524367564_1321_52702> <http://uml/2#type> <_4_13_8644> .
576
+ # multiplicity upperValue
577
+ <_1524367564_1321_52702> <http://uml/2#upperValue> <_1524367564_1321_52702_upperValue> .
578
+ <_1524367564_1321_52702_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
579
+ <_1524367564_1321_52702_upperValue> <http://uml/2#value> "1" .
580
+ # multiplicity lowerValue
581
+ <_1524367564_1321_52702> <http://uml/2#lowerValue> <_1524367564_1321_52702_lowerValue> .
582
+ <_1524367564_1321_52702_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
583
+ <_1524367564_1321_52702_lowerValue> <http://uml/2#value> "0" .
584
+ <_1524367564_1305_52701> <http://uml/2#returnResult> <_1524367564_1320_52703> .
585
+ <_1524367564_1320_52703> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
586
+ <_1524367564_1320_52703> <http://uml/2#name> "return parameter" .
587
+ <_1524367564_1320_52703> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
588
+ <_1524367564_1320_52703> <http://uml/2#type> <_4_9_8642> .
589
+ # multiplicity upperValue
590
+ <_1524367564_1320_52703> <http://uml/2#upperValue> <_1524367564_1320_52703_upperValue> .
591
+ <_1524367564_1320_52703_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
592
+ <_1524367564_1320_52703_upperValue> <http://uml/2#value> "1" .
593
+ # multiplicity lowerValue
594
+ <_1524367564_1320_52703> <http://uml/2#lowerValue> <_1524367564_1320_52703_lowerValue> .
595
+ <_1524367564_1320_52703_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
596
+ <_1524367564_1320_52703_lowerValue> <http://uml/2#value> "0" .
597
+ # appendRDFInTagURI
598
+ <_1524367564_1305_52701> <http://uml/2#raisedException> <_1524367564_1224_52798> .
599
+ # appendRDFInTagURI
600
+ <_1524367564_1305_52701> <http://uml/2#raisedException> <_1524367564_1228_52800> .
601
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1524367564_1306_52706> .
602
+ <_1524367564_1306_52706> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
603
+ <_1524367564_1306_52706> <http://uml/2#name> "methodWithObjectParams*" .
604
+ <_1524367564_1306_52706> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
605
+ <_1524367564_1306_52706> <http://uml/2#ownedParameter> <_1524367564_1322_52707> .
606
+ <_1524367564_1322_52707> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
607
+ <_1524367564_1322_52707> <http://uml/2#name> "class3Param" .
608
+ <_1524367564_1322_52707> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_in> .
609
+ <_1524367564_1322_52707> <http://uml/2#type> <_1524367564_1218_52793> .
610
+ # multiplicity upperValue
611
+ <_1524367564_1322_52707> <http://uml/2#upperValue> <_1524367564_1322_52707_upperValue> .
612
+ <_1524367564_1322_52707_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
613
+ <_1524367564_1322_52707_upperValue> <http://uml/2#value> "1" .
614
+ # multiplicity lowerValue
615
+ <_1524367564_1322_52707> <http://uml/2#lowerValue> <_1524367564_1322_52707_lowerValue> .
616
+ <_1524367564_1322_52707_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
617
+ <_1524367564_1322_52707_lowerValue> <http://uml/2#value> "0" .
618
+ <_1524367564_1306_52706> <http://uml/2#ownedParameter> <_1524367564_1323_52708> .
619
+ <_1524367564_1323_52708> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
620
+ <_1524367564_1323_52708> <http://uml/2#name> "classe3ParamMult" .
621
+ <_1524367564_1323_52708> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_in> .
622
+ <_1524367564_1323_52708> <http://uml/2#type> <_1524367564_1218_52793> .
623
+ # multiplicity upperValue
624
+ <_1524367564_1323_52708> <http://uml/2#upperValue> <_1524367564_1323_52708_upperValue> .
625
+ <_1524367564_1323_52708_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
626
+ <_1524367564_1323_52708_upperValue> <http://uml/2#value> "-1" .
627
+ # multiplicity lowerValue
628
+ <_1524367564_1323_52708> <http://uml/2#lowerValue> <_1524367564_1323_52708_lowerValue> .
629
+ <_1524367564_1323_52708_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
630
+ <_1524367564_1323_52708_lowerValue> <http://uml/2#value> "0" .
631
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1250427384_707_52747> .
632
+ <_1250427384_707_52747> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
633
+ <_1250427384_707_52747> <http://uml/2#name> "methodReturnSetOfClasse3" .
634
+ <_1250427384_707_52747> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
635
+ <_1250427384_707_52747> <http://uml/2#returnResult> <_1250427384_708_52748> .
636
+ <_1250427384_708_52748> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
637
+ <_1250427384_708_52748> <http://uml/2#name> "return parameter" .
638
+ <_1250427384_708_52748> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
639
+ <_1250427384_708_52748> <http://uml/2#type> <_1524367564_1218_52793> .
640
+ # multiplicity upperValue
641
+ <_1250427384_708_52748> <http://uml/2#upperValue> <_1250427384_708_52748_upperValue> .
642
+ <_1250427384_708_52748_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
643
+ <_1250427384_708_52748_upperValue> <http://uml/2#value> "-1" .
644
+ # multiplicity lowerValue
645
+ <_1250427384_708_52748> <http://uml/2#lowerValue> <_1250427384_708_52748_lowerValue> .
646
+ <_1250427384_708_52748_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
647
+ <_1250427384_708_52748_lowerValue> <http://uml/2#value> "1" .
648
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1600126996_11_52750> .
649
+ <_1600126996_11_52750> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
650
+ <_1600126996_11_52750> <http://uml/2#name> "methodReturnListOfClasse3" .
651
+ <_1600126996_11_52750> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
652
+ <_1600126996_11_52750> <http://uml/2#returnResult> <_1600126996_12_52752> .
653
+ <_1600126996_12_52752> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
654
+ <_1600126996_12_52752> <http://uml/2#name> "return parameter" .
655
+ <_1600126996_12_52752> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
656
+ <_1600126996_12_52752> <http://uml/2#type> <_1524367564_1218_52793> .
657
+ <_1600126996_12_52752> <http://uml/2#appliedStereotype> <_1250427408_97_53506> .
658
+ <_1600126996_12_52752> <http://uml/2#isOrdered> "true" .
659
+ # multiplicity upperValue
660
+ <_1600126996_12_52752> <http://uml/2#upperValue> <_1600126996_12_52752_upperValue> .
661
+ <_1600126996_12_52752_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
662
+ <_1600126996_12_52752_upperValue> <http://uml/2#value> "-1" .
663
+ # multiplicity lowerValue
664
+ <_1600126996_12_52752> <http://uml/2#lowerValue> <_1600126996_12_52752_lowerValue> .
665
+ <_1600126996_12_52752_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
666
+ <_1600126996_12_52752_lowerValue> <http://uml/2#value> "1" .
667
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1600126996_15_52753> .
668
+ <_1600126996_15_52753> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
669
+ <_1600126996_15_52753> <http://uml/2#name> "UpperCaseMethod" .
670
+ <_1600126996_15_52753> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
671
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1600127064_8_56154> .
672
+ <_1600127064_8_56154> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
673
+ <_1600127064_8_56154> <http://uml/2#name> "setAnInt" .
674
+ <_1600127064_8_56154> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
675
+ <_1600127064_8_56154> <http://uml/2#ownedParameter> <_1600127064_9_56155> .
676
+ <_1600127064_9_56155> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
677
+ <_1600127064_9_56155> <http://uml/2#name> "anIntParam" .
678
+ <_1600127064_9_56155> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_in> .
679
+ <_1600127064_9_56155> <http://uml/2#type> <_4_9_8642> .
680
+ <_1600127064_9_56155> <http://uml/2#ownedComment> <_1600127064_53_56221> .
681
+ <_1600127064_53_56221> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
682
+ #TODO export type de la note
683
+ <_1600127064_53_56221> <http://uml/2#body> "special token used in unit tests:&#xD;&#xA;&#xD;&#xA;__DOC_PARAM__&#xD;&#xA;" .
684
+ # multiplicity upperValue
685
+ <_1600127064_9_56155> <http://uml/2#upperValue> <_1600127064_9_56155_upperValue> .
686
+ <_1600127064_9_56155_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
687
+ <_1600127064_9_56155_upperValue> <http://uml/2#value> "1" .
688
+ # multiplicity lowerValue
689
+ <_1600127064_9_56155> <http://uml/2#lowerValue> <_1600127064_9_56155_lowerValue> .
690
+ <_1600127064_9_56155_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
691
+ <_1600127064_9_56155_lowerValue> <http://uml/2#value> "1" .
692
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1600127064_12_56158> .
693
+ <_1600127064_12_56158> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
694
+ <_1600127064_12_56158> <http://uml/2#name> "a Package Method" .
695
+ <_1600127064_12_56158> <http://uml/2#visibility> <http://uml/2#visibilityKind_package> .
696
+ <_1524367564_1247_52673> <http://uml/2#ownedOperation> <_1600127064_1608_59308> .
697
+ <_1600127064_1608_59308> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
698
+ <_1600127064_1608_59308> <http://uml/2#name> "methodReturnListOfClasse3bis" .
699
+ <_1600127064_1608_59308> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
700
+ <_1600127064_1608_59308> <http://uml/2#returnResult> <_1600127064_1609_59309> .
701
+ <_1600127064_1609_59309> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
702
+ <_1600127064_1609_59309> <http://uml/2#name> "return parameter" .
703
+ <_1600127064_1609_59309> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
704
+ <_1600127064_1609_59309> <http://uml/2#type> <_1524367564_1218_52793> .
705
+ # multiplicity upperValue
706
+ <_1600127064_1609_59309> <http://uml/2#upperValue> <_1600127064_1609_59309_upperValue> .
707
+ <_1600127064_1609_59309_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
708
+ <_1600127064_1609_59309_upperValue> <http://uml/2#value> "-1" .
709
+ # multiplicity lowerValue
710
+ <_1600127064_1609_59309> <http://uml/2#lowerValue> <_1600127064_1609_59309_lowerValue> .
711
+ <_1600127064_1609_59309_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
712
+ <_1600127064_1609_59309_lowerValue> <http://uml/2#value> "0" .
713
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1284_52678> .
714
+ <_1524367564_1284_52678> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
715
+ <_1524367564_1284_52678> <http://uml/2#name> "prop1" .
716
+ <_1524367564_1284_52678> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
717
+ <_1524367564_1284_52678> <http://uml/2#type> <_1524367564_1247_52673> .
718
+ # multiplicity upperValue
719
+ <_1524367564_1284_52678> <http://uml/2#upperValue> <_1524367564_1284_52678_upperValue> .
720
+ <_1524367564_1284_52678_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
721
+ <_1524367564_1284_52678_upperValue> <http://uml/2#value> "1" .
722
+ # multiplicity lowerValue
723
+ <_1524367564_1284_52678> <http://uml/2#lowerValue> <_1524367564_1284_52678_lowerValue> .
724
+ <_1524367564_1284_52678_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
725
+ <_1524367564_1284_52678_lowerValue> <http://uml/2#value> "0" .
726
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1285_52679> .
727
+ <_1524367564_1285_52679> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
728
+ <_1524367564_1285_52679> <http://uml/2#name> "an Int Attribute" .
729
+ <_1524367564_1285_52679> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
730
+ <_1524367564_1285_52679> <http://uml/2#type> <_4_9_8642> .
731
+ <_1524367564_1285_52679> <http://uml/2#ownedComment> <_1600127064_54_56222> .
732
+ <_1600127064_54_56222> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
733
+ #TODO export type de la note
734
+ <_1600127064_54_56222> <http://uml/2#body> "special token for unit tests:&#xD;&#xA;&#xD;&#xA; __DOC_PROP__ &#xD;&#xA;" .
735
+ # multiplicity upperValue
736
+ <_1524367564_1285_52679> <http://uml/2#upperValue> <_1524367564_1285_52679_upperValue> .
737
+ <_1524367564_1285_52679_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
738
+ <_1524367564_1285_52679_upperValue> <http://uml/2#value> "1" .
739
+ # multiplicity lowerValue
740
+ <_1524367564_1285_52679> <http://uml/2#lowerValue> <_1524367564_1285_52679_lowerValue> .
741
+ <_1524367564_1285_52679_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
742
+ <_1524367564_1285_52679_lowerValue> <http://uml/2#value> "0" .
743
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1286_52680> .
744
+ <_1524367564_1286_52680> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
745
+ <_1524367564_1286_52680> <http://uml/2#name> "a String Attribute" .
746
+ <_1524367564_1286_52680> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
747
+ <_1524367564_1286_52680> <http://uml/2#type> <_1600127000_84_53336> .
748
+ # multiplicity upperValue
749
+ <_1524367564_1286_52680> <http://uml/2#upperValue> <_1524367564_1286_52680_upperValue> .
750
+ <_1524367564_1286_52680_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
751
+ <_1524367564_1286_52680_upperValue> <http://uml/2#value> "1" .
752
+ # multiplicity lowerValue
753
+ <_1524367564_1286_52680> <http://uml/2#lowerValue> <_1524367564_1286_52680_lowerValue> .
754
+ <_1524367564_1286_52680_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
755
+ <_1524367564_1286_52680_lowerValue> <http://uml/2#value> "0" .
756
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1287_52681> .
757
+ <_1524367564_1287_52681> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
758
+ <_1524367564_1287_52681> <http://uml/2#name> "a Static Int Attribute" .
759
+ <_1524367564_1287_52681> <http://uml/2#isStatic> "true" .
760
+ <_1524367564_1287_52681> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
761
+ <_1524367564_1287_52681> <http://uml/2#type> <_4_9_8642> .
762
+ <_1524367564_1287_52681> <http://uml/2#ownedComment> <_1600127000_86_53338> .
763
+ <_1600127000_86_53338> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
764
+ #TODO export type de la note
765
+ <_1600127000_86_53338> <http://uml/2#body> "aStringAttribute Utilise DataType String d�finit dans ce mod�le (pour tester les datatypes maison)" .
766
+ # multiplicity upperValue
767
+ <_1524367564_1287_52681> <http://uml/2#upperValue> <_1524367564_1287_52681_upperValue> .
768
+ <_1524367564_1287_52681_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
769
+ <_1524367564_1287_52681_upperValue> <http://uml/2#value> "1" .
770
+ # multiplicity lowerValue
771
+ <_1524367564_1287_52681> <http://uml/2#lowerValue> <_1524367564_1287_52681_lowerValue> .
772
+ <_1524367564_1287_52681_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
773
+ <_1524367564_1287_52681_lowerValue> <http://uml/2#value> "0" .
774
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1288_52682> .
775
+ <_1524367564_1288_52682> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
776
+ <_1524367564_1288_52682> <http://uml/2#name> "aStringArrayAttribute" .
777
+ <_1524367564_1288_52682> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
778
+ <_1524367564_1288_52682> <http://uml/2#type> <_4_13_8644> .
779
+ # multiplicity upperValue
780
+ <_1524367564_1288_52682> <http://uml/2#upperValue> <_1524367564_1288_52682_upperValue> .
781
+ <_1524367564_1288_52682_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
782
+ <_1524367564_1288_52682_upperValue> <http://uml/2#value> "-1" .
783
+ # multiplicity lowerValue
784
+ <_1524367564_1288_52682> <http://uml/2#lowerValue> <_1524367564_1288_52682_lowerValue> .
785
+ <_1524367564_1288_52682_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
786
+ <_1524367564_1288_52682_lowerValue> <http://uml/2#value> "0" .
787
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1289_52683> .
788
+ <_1524367564_1289_52683> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
789
+ <_1524367564_1289_52683> <http://uml/2#name> "couleur" .
790
+ <_1524367564_1289_52683> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
791
+ <_1524367564_1289_52683> <http://uml/2#type> <_1524367564_1307_52661> .
792
+ <_1524367564_1289_52683> <http://uml/2#ownedComment> <_1600127064_52_56218> .
793
+ <_1600127064_52_56218> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
794
+ #TODO export type de la note
795
+ <_1600127064_52_56218> <http://uml/2#body> "Special comment added for unit testing:&#xD;&#xA;&#xD;&#xA;__DOC_PROP_ENUM__&#xD;&#xA;&#xD;&#xA;" .
796
+ # multiplicity upperValue
797
+ <_1524367564_1289_52683> <http://uml/2#upperValue> <_1524367564_1289_52683_upperValue> .
798
+ <_1524367564_1289_52683_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
799
+ <_1524367564_1289_52683_upperValue> <http://uml/2#value> "1" .
800
+ # multiplicity lowerValue
801
+ <_1524367564_1289_52683> <http://uml/2#lowerValue> <_1524367564_1289_52683_lowerValue> .
802
+ <_1524367564_1289_52683_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
803
+ <_1524367564_1289_52683_lowerValue> <http://uml/2#value> "0" .
804
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1290_52684> .
805
+ <_1524367564_1290_52684> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
806
+ <_1524367564_1290_52684> <http://uml/2#name> "anObjectParameter" .
807
+ <_1524367564_1290_52684> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
808
+ <_1524367564_1290_52684> <http://uml/2#type> <_1524367564_1222_52797> .
809
+ # multiplicity upperValue
810
+ <_1524367564_1290_52684> <http://uml/2#upperValue> <_1524367564_1290_52684_upperValue> .
811
+ <_1524367564_1290_52684_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
812
+ <_1524367564_1290_52684_upperValue> <http://uml/2#value> "1" .
813
+ # multiplicity lowerValue
814
+ <_1524367564_1290_52684> <http://uml/2#lowerValue> <_1524367564_1290_52684_lowerValue> .
815
+ <_1524367564_1290_52684_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
816
+ <_1524367564_1290_52684_lowerValue> <http://uml/2#value> "0" .
817
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1250427384_722_52749> .
818
+ <_1250427384_722_52749> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
819
+ <_1250427384_722_52749> <http://uml/2#name> "orderedString" .
820
+ <_1250427384_722_52749> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
821
+ <_1250427384_722_52749> <http://uml/2#isOrdered> "true" .
822
+ <_1250427384_722_52749> <http://uml/2#isUnique> "true" .
823
+ <_1250427384_722_52749> <http://uml/2#type> <_4_13_8644> .
824
+ # multiplicity upperValue
825
+ <_1250427384_722_52749> <http://uml/2#upperValue> <_1250427384_722_52749_upperValue> .
826
+ <_1250427384_722_52749_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
827
+ <_1250427384_722_52749_upperValue> <http://uml/2#value> "-1" .
828
+ # multiplicity lowerValue
829
+ <_1250427384_722_52749> <http://uml/2#lowerValue> <_1250427384_722_52749_lowerValue> .
830
+ <_1250427384_722_52749_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
831
+ <_1250427384_722_52749_lowerValue> <http://uml/2#value> "1" .
832
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1600127000_75_53321> .
833
+ <_1600127000_75_53321> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
834
+ <_1600127000_75_53321> <http://uml/2#name> "couleurZeroOne" .
835
+ <_1600127000_75_53321> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
836
+ <_1600127000_75_53321> <http://uml/2#isUnique> "true" .
837
+ <_1600127000_75_53321> <http://uml/2#type> <_1524367564_1307_52661> .
838
+ # multiplicity upperValue
839
+ <_1600127000_75_53321> <http://uml/2#upperValue> <_1600127000_75_53321_upperValue> .
840
+ <_1600127000_75_53321_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
841
+ <_1600127000_75_53321_upperValue> <http://uml/2#value> "1" .
842
+ # multiplicity lowerValue
843
+ <_1600127000_75_53321> <http://uml/2#lowerValue> <_1600127000_75_53321_lowerValue> .
844
+ <_1600127000_75_53321_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
845
+ <_1600127000_75_53321_lowerValue> <http://uml/2#value> "0" .
846
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1600127000_77_53323> .
847
+ <_1600127000_77_53323> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
848
+ <_1600127000_77_53323> <http://uml/2#name> "couleurZeroMany" .
849
+ <_1600127000_77_53323> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
850
+ <_1600127000_77_53323> <http://uml/2#isUnique> "true" .
851
+ <_1600127000_77_53323> <http://uml/2#type> <_1524367564_1307_52661> .
852
+ # multiplicity upperValue
853
+ <_1600127000_77_53323> <http://uml/2#upperValue> <_1600127000_77_53323_upperValue> .
854
+ <_1600127000_77_53323_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
855
+ <_1600127000_77_53323_upperValue> <http://uml/2#value> "-1" .
856
+ # multiplicity lowerValue
857
+ <_1600127000_77_53323> <http://uml/2#lowerValue> <_1600127000_77_53323_lowerValue> .
858
+ <_1600127000_77_53323_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
859
+ <_1600127000_77_53323_lowerValue> <http://uml/2#value> "0" .
860
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1600127000_78_53324> .
861
+ <_1600127000_78_53324> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
862
+ <_1600127000_78_53324> <http://uml/2#name> "couleurOneMany" .
863
+ <_1600127000_78_53324> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
864
+ <_1600127000_78_53324> <http://uml/2#isUnique> "true" .
865
+ <_1600127000_78_53324> <http://uml/2#type> <_1524367564_1307_52661> .
866
+ # multiplicity upperValue
867
+ <_1600127000_78_53324> <http://uml/2#upperValue> <_1600127000_78_53324_upperValue> .
868
+ <_1600127000_78_53324_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
869
+ <_1600127000_78_53324_upperValue> <http://uml/2#value> "-1" .
870
+ # multiplicity lowerValue
871
+ <_1600127000_78_53324> <http://uml/2#lowerValue> <_1600127000_78_53324_lowerValue> .
872
+ <_1600127000_78_53324_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
873
+ <_1600127000_78_53324_lowerValue> <http://uml/2#value> "1" .
874
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1600127000_82_53332> .
875
+ <_1600127000_82_53332> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
876
+ <_1600127000_82_53332> <http://uml/2#name> "derivedA" .
877
+ <_1600127000_82_53332> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
878
+ <_1600127000_82_53332> <http://uml/2#isDerived> "true" .
879
+ <_1600127000_82_53332> <http://uml/2#type> <_1524367564_1222_52797> .
880
+ # multiplicity upperValue
881
+ <_1600127000_82_53332> <http://uml/2#upperValue> <_1600127000_82_53332_upperValue> .
882
+ <_1600127000_82_53332_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
883
+ <_1600127000_82_53332_upperValue> <http://uml/2#value> "1" .
884
+ # multiplicity lowerValue
885
+ <_1600127000_82_53332> <http://uml/2#lowerValue> <_1600127000_82_53332_lowerValue> .
886
+ <_1600127000_82_53332_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
887
+ <_1600127000_82_53332_lowerValue> <http://uml/2#value> "1" .
888
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1600127064_10_56156> .
889
+ <_1600127064_10_56156> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
890
+ <_1600127064_10_56156> <http://uml/2#name> "aBooleanAttribute" .
891
+ <_1600127064_10_56156> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
892
+ <_1600127064_10_56156> <http://uml/2#type> <_4_5_8640> .
893
+ # multiplicity upperValue
894
+ <_1600127064_10_56156> <http://uml/2#upperValue> <_1600127064_10_56156_upperValue> .
895
+ <_1600127064_10_56156_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
896
+ <_1600127064_10_56156_upperValue> <http://uml/2#value> "1" .
897
+ # multiplicity lowerValue
898
+ <_1600127064_10_56156> <http://uml/2#lowerValue> <_1600127064_10_56156_lowerValue> .
899
+ <_1600127064_10_56156_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
900
+ <_1600127064_10_56156_lowerValue> <http://uml/2#value> "1" .
901
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1600127064_1821_59554> .
902
+ <_1600127064_1821_59554> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
903
+ <_1600127064_1821_59554> <http://uml/2#name> "a Non Unique Attribute" .
904
+ <_1600127064_1821_59554> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
905
+ <_1600127064_1821_59554> <http://uml/2#type> <_1600127000_84_53336> .
906
+ # multiplicity upperValue
907
+ <_1600127064_1821_59554> <http://uml/2#upperValue> <_1600127064_1821_59554_upperValue> .
908
+ <_1600127064_1821_59554_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
909
+ <_1600127064_1821_59554_upperValue> <http://uml/2#value> "-1" .
910
+ # multiplicity lowerValue
911
+ <_1600127064_1821_59554> <http://uml/2#lowerValue> <_1600127064_1821_59554_lowerValue> .
912
+ <_1600127064_1821_59554_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
913
+ <_1600127064_1821_59554_lowerValue> <http://uml/2#value> "1" .
914
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1600127064_1823_59557> .
915
+ <_1600127064_1823_59557> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
916
+ <_1600127064_1823_59557> <http://uml/2#name> "a Unique Attribute" .
917
+ <_1600127064_1823_59557> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
918
+ <_1600127064_1823_59557> <http://uml/2#isUnique> "true" .
919
+ <_1600127064_1823_59557> <http://uml/2#type> <_1600127000_84_53336> .
920
+ # multiplicity upperValue
921
+ <_1600127064_1823_59557> <http://uml/2#upperValue> <_1600127064_1823_59557_upperValue> .
922
+ <_1600127064_1823_59557_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
923
+ <_1600127064_1823_59557_upperValue> <http://uml/2#value> "-1" .
924
+ # multiplicity lowerValue
925
+ <_1600127064_1823_59557> <http://uml/2#lowerValue> <_1600127064_1823_59557_lowerValue> .
926
+ <_1600127064_1823_59557_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
927
+ <_1600127064_1823_59557_lowerValue> <http://uml/2#value> "1" .
928
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1425_52709> .
929
+ <_1524367564_1425_52709> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
930
+ <_1524367564_1425_52709> <http://uml/2#name> "withQualifierMany" .
931
+ <_1524367564_1425_52709> <http://uml/2#visibility> <http://uml/2#visibilityKind_private> .
932
+ <_1524367564_1425_52709> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
933
+ # appendRDFInTagURI
934
+ <_1524367564_1425_52709> <http://uml/2#association> <_1524367564_1424_52711> .
935
+ <_1524367564_1425_52709> <http://uml/2#qualifier> <_1250427384_763_52710> .
936
+ <_1250427384_763_52710> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
937
+ <_1250427384_763_52710> <http://uml/2#name> "aQualifier2" .
938
+ <_1250427384_763_52710> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
939
+ <_1250427384_763_52710> <http://uml/2#type> <_4_13_8644> .
940
+ # multiplicity upperValue
941
+ <_1250427384_763_52710> <http://uml/2#upperValue> <_1250427384_763_52710_upperValue> .
942
+ <_1250427384_763_52710_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
943
+ <_1250427384_763_52710_upperValue> <http://uml/2#value> "1" .
944
+ # multiplicity lowerValue
945
+ <_1250427384_763_52710> <http://uml/2#lowerValue> <_1250427384_763_52710_lowerValue> .
946
+ <_1250427384_763_52710_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
947
+ <_1250427384_763_52710_lowerValue> <http://uml/2#value> "1" .
948
+ <_1524367564_1425_52709> <http://uml/2#type> <_1524367564_1218_52793> .
949
+ # multiplicity upperValue
950
+ <_1524367564_1425_52709> <http://uml/2#upperValue> <_1524367564_1425_52709_upperValue> .
951
+ <_1524367564_1425_52709_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
952
+ <_1524367564_1425_52709_upperValue> <http://uml/2#value> "-1" .
953
+ # multiplicity lowerValue
954
+ <_1524367564_1425_52709> <http://uml/2#lowerValue> <_1524367564_1425_52709_lowerValue> .
955
+ <_1524367564_1425_52709_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
956
+ <_1524367564_1425_52709_lowerValue> <http://uml/2#value> "0" .
957
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1434_52713> .
958
+ <_1524367564_1434_52713> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
959
+ <_1524367564_1434_52713> <http://uml/2#name> "withQualifier" .
960
+ <_1524367564_1434_52713> <http://uml/2#visibility> <http://uml/2#visibilityKind_private> .
961
+ <_1524367564_1434_52713> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
962
+ # appendRDFInTagURI
963
+ <_1524367564_1434_52713> <http://uml/2#association> <_1524367564_1433_52715> .
964
+ <_1524367564_1434_52713> <http://uml/2#qualifier> <_1250427384_726_52714> .
965
+ <_1250427384_726_52714> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
966
+ <_1250427384_726_52714> <http://uml/2#name> "aQualifier" .
967
+ <_1250427384_726_52714> <http://uml/2#visibility> <http://uml/2#visibilityKind_private> .
968
+ <_1250427384_726_52714> <http://uml/2#isUnique> "true" .
969
+ <_1250427384_726_52714> <http://uml/2#type> <_4_13_8644> .
970
+ # multiplicity upperValue
971
+ <_1250427384_726_52714> <http://uml/2#upperValue> <_1250427384_726_52714_upperValue> .
972
+ <_1250427384_726_52714_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
973
+ <_1250427384_726_52714_upperValue> <http://uml/2#value> "1" .
974
+ # multiplicity lowerValue
975
+ <_1250427384_726_52714> <http://uml/2#lowerValue> <_1250427384_726_52714_lowerValue> .
976
+ <_1250427384_726_52714_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
977
+ <_1250427384_726_52714_lowerValue> <http://uml/2#value> "1" .
978
+ <_1524367564_1434_52713> <http://uml/2#type> <_1524367564_1218_52793> .
979
+ # multiplicity upperValue
980
+ <_1524367564_1434_52713> <http://uml/2#upperValue> <_1524367564_1434_52713_upperValue> .
981
+ <_1524367564_1434_52713_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
982
+ <_1524367564_1434_52713_upperValue> <http://uml/2#value> "1" .
983
+ # multiplicity lowerValue
984
+ <_1524367564_1434_52713> <http://uml/2#lowerValue> <_1524367564_1434_52713_lowerValue> .
985
+ <_1524367564_1434_52713_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
986
+ <_1524367564_1434_52713_lowerValue> <http://uml/2#value> "0" .
987
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1443_52717> .
988
+ <_1524367564_1443_52717> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
989
+ <_1524367564_1443_52717> <http://uml/2#name> "withQualifierBiNav" .
990
+ <_1524367564_1443_52717> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
991
+ <_1524367564_1443_52717> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
992
+ # appendRDFInTagURI
993
+ <_1524367564_1443_52717> <http://uml/2#association> <_1524367564_1442_52719> .
994
+ <_1524367564_1443_52717> <http://uml/2#qualifier> <_1250427384_765_52718> .
995
+ <_1250427384_765_52718> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
996
+ <_1250427384_765_52718> <http://uml/2#name> "aQualifier" .
997
+ <_1250427384_765_52718> <http://uml/2#visibility> <http://uml/2#visibilityKind_private> .
998
+ <_1250427384_765_52718> <http://uml/2#isUnique> "true" .
999
+ <_1250427384_765_52718> <http://uml/2#type> <_4_13_8644> .
1000
+ # multiplicity upperValue
1001
+ <_1250427384_765_52718> <http://uml/2#upperValue> <_1250427384_765_52718_upperValue> .
1002
+ <_1250427384_765_52718_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1003
+ <_1250427384_765_52718_upperValue> <http://uml/2#value> "1" .
1004
+ # multiplicity lowerValue
1005
+ <_1250427384_765_52718> <http://uml/2#lowerValue> <_1250427384_765_52718_lowerValue> .
1006
+ <_1250427384_765_52718_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1007
+ <_1250427384_765_52718_lowerValue> <http://uml/2#value> "1" .
1008
+ <_1524367564_1443_52717> <http://uml/2#type> <_1524367564_1218_52793> .
1009
+ # multiplicity upperValue
1010
+ <_1524367564_1443_52717> <http://uml/2#upperValue> <_1524367564_1443_52717_upperValue> .
1011
+ <_1524367564_1443_52717_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1012
+ <_1524367564_1443_52717_upperValue> <http://uml/2#value> "1" .
1013
+ # multiplicity lowerValue
1014
+ <_1524367564_1443_52717> <http://uml/2#lowerValue> <_1524367564_1443_52717_lowerValue> .
1015
+ <_1524367564_1443_52717_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1016
+ <_1524367564_1443_52717_lowerValue> <http://uml/2#value> "0" .
1017
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1454_52721> .
1018
+ <_1524367564_1454_52721> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1019
+ <_1524367564_1454_52721> <http://uml/2#name> "compositeElement" .
1020
+ <_1524367564_1454_52721> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1021
+ <_1524367564_1454_52721> <http://uml/2#aggregation> <http://uml/2#aggregationKind_composite> .
1022
+ # appendRDFInTagURI
1023
+ <_1524367564_1454_52721> <http://uml/2#association> <_1524367564_1453_52722> .
1024
+ <_1524367564_1454_52721> <http://uml/2#type> <_1524367564_1220_52796> .
1025
+ # multiplicity upperValue
1026
+ <_1524367564_1454_52721> <http://uml/2#upperValue> <_1524367564_1454_52721_upperValue> .
1027
+ <_1524367564_1454_52721_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
1028
+ <_1524367564_1454_52721_upperValue> <http://uml/2#value> "-1" .
1029
+ # multiplicity lowerValue
1030
+ <_1524367564_1454_52721> <http://uml/2#lowerValue> <_1524367564_1454_52721_lowerValue> .
1031
+ <_1524367564_1454_52721_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1032
+ <_1524367564_1454_52721_lowerValue> <http://uml/2#value> "0" .
1033
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1463_52724> .
1034
+ <_1524367564_1463_52724> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1035
+ <_1524367564_1463_52724> <http://uml/2#name> "readOnlyT" .
1036
+ <_1524367564_1463_52724> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1037
+ <_1524367564_1463_52724> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1038
+ # appendRDFInTagURI
1039
+ <_1524367564_1463_52724> <http://uml/2#association> <_1524367564_1462_52726> .
1040
+ <_1524367564_1463_52724> <http://uml/2#type> <_1524367564_1222_52797> .
1041
+ # multiplicity upperValue
1042
+ <_1524367564_1463_52724> <http://uml/2#upperValue> <_1524367564_1463_52724_upperValue> .
1043
+ <_1524367564_1463_52724_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1044
+ <_1524367564_1463_52724_upperValue> <http://uml/2#value> "1" .
1045
+ # multiplicity lowerValue
1046
+ <_1524367564_1463_52724> <http://uml/2#lowerValue> <_1524367564_1463_52724_lowerValue> .
1047
+ <_1524367564_1463_52724_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1048
+ <_1524367564_1463_52724_lowerValue> <http://uml/2#value> "1" .
1049
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1473_52728> .
1050
+ <_1524367564_1473_52728> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1051
+ <_1524367564_1473_52728> <http://uml/2#name> "sortedA" .
1052
+ <_1524367564_1473_52728> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1053
+ <_1524367564_1473_52728> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1054
+ <_1524367564_1473_52728> <http://uml/2#isOrdered> "true" .
1055
+ <_1524367564_1473_52728> <http://uml/2#isUnique> "true" .
1056
+ # appendRDFInTagURI
1057
+ <_1524367564_1473_52728> <http://uml/2#association> <_1524367564_1472_52730> .
1058
+ <_1524367564_1473_52728> <http://uml/2#type> <_1524367564_1222_52797> .
1059
+ # multiplicity upperValue
1060
+ <_1524367564_1473_52728> <http://uml/2#upperValue> <_1524367564_1473_52728_upperValue> .
1061
+ <_1524367564_1473_52728_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
1062
+ <_1524367564_1473_52728_upperValue> <http://uml/2#value> "-1" .
1063
+ # multiplicity lowerValue
1064
+ <_1524367564_1473_52728> <http://uml/2#lowerValue> <_1524367564_1473_52728_lowerValue> .
1065
+ <_1524367564_1473_52728_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1066
+ <_1524367564_1473_52728_lowerValue> <http://uml/2#value> "0" .
1067
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1493_52735> .
1068
+ <_1524367564_1493_52735> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1069
+ <_1524367564_1493_52735> <http://uml/2#name> "roleA" .
1070
+ <_1524367564_1493_52735> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1071
+ <_1524367564_1493_52735> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1072
+ <_1524367564_1493_52735> <http://uml/2#isOrdered> "true" .
1073
+ <_1524367564_1493_52735> <http://uml/2#isUnique> "true" .
1074
+ # appendRDFInTagURI
1075
+ <_1524367564_1493_52735> <http://uml/2#association> <_1524367564_1492_52736> .
1076
+ <_1524367564_1493_52735> <http://uml/2#type> <_1524367564_1222_52797> .
1077
+ # multiplicity upperValue
1078
+ <_1524367564_1493_52735> <http://uml/2#upperValue> <_1524367564_1493_52735_upperValue> .
1079
+ <_1524367564_1493_52735_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1080
+ <_1524367564_1493_52735_upperValue> <http://uml/2#value> "1" .
1081
+ # multiplicity lowerValue
1082
+ <_1524367564_1493_52735> <http://uml/2#lowerValue> <_1524367564_1493_52735_lowerValue> .
1083
+ <_1524367564_1493_52735_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1084
+ <_1524367564_1493_52735_lowerValue> <http://uml/2#value> "0" .
1085
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1502_52738> .
1086
+ <_1524367564_1502_52738> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1087
+ <_1524367564_1502_52738> <http://uml/2#name> "nonUnique" .
1088
+ <_1524367564_1502_52738> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1089
+ <_1524367564_1502_52738> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1090
+ # appendRDFInTagURI
1091
+ <_1524367564_1502_52738> <http://uml/2#association> <_1524367564_1501_52739> .
1092
+ <_1524367564_1502_52738> <http://uml/2#type> <_1524367564_1222_52797> .
1093
+ # multiplicity upperValue
1094
+ <_1524367564_1502_52738> <http://uml/2#upperValue> <_1524367564_1502_52738_upperValue> .
1095
+ <_1524367564_1502_52738_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1096
+ <_1524367564_1502_52738_upperValue> <http://uml/2#value> "1" .
1097
+ # multiplicity lowerValue
1098
+ <_1524367564_1502_52738> <http://uml/2#lowerValue> <_1524367564_1502_52738_lowerValue> .
1099
+ <_1524367564_1502_52738_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1100
+ <_1524367564_1502_52738_lowerValue> <http://uml/2#value> "1" .
1101
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1511_52741> .
1102
+ <_1524367564_1511_52741> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1103
+ <_1524367564_1511_52741> <http://uml/2#name> "/derivedA" .
1104
+ <_1524367564_1511_52741> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1105
+ <_1524367564_1511_52741> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1106
+ # appendRDFInTagURI
1107
+ <_1524367564_1511_52741> <http://uml/2#association> <_1524367564_1510_52742> .
1108
+ <_1524367564_1511_52741> <http://uml/2#type> <_1524367564_1222_52797> .
1109
+ # multiplicity upperValue
1110
+ <_1524367564_1511_52741> <http://uml/2#upperValue> <_1524367564_1511_52741_upperValue> .
1111
+ <_1524367564_1511_52741_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1112
+ <_1524367564_1511_52741_upperValue> <http://uml/2#value> "1" .
1113
+ # multiplicity lowerValue
1114
+ <_1524367564_1511_52741> <http://uml/2#lowerValue> <_1524367564_1511_52741_lowerValue> .
1115
+ <_1524367564_1511_52741_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1116
+ <_1524367564_1511_52741_lowerValue> <http://uml/2#value> "1" .
1117
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1524_52653> .
1118
+ <_1524367564_1524_52653> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1119
+ <_1524367564_1524_52653> <http://uml/2#name> "bidi_c2_2_s" .
1120
+ <_1524367564_1524_52653> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1121
+ <_1524367564_1524_52653> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1122
+ # appendRDFInTagURI
1123
+ <_1524367564_1524_52653> <http://uml/2#association> <_1524367564_1523_52652> .
1124
+ <_1524367564_1524_52653> <http://uml/2#type> <_1524367564_1208_52650> .
1125
+ # multiplicity upperValue
1126
+ <_1524367564_1524_52653> <http://uml/2#upperValue> <_1524367564_1524_52653_upperValue> .
1127
+ <_1524367564_1524_52653_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
1128
+ <_1524367564_1524_52653_upperValue> <http://uml/2#value> "-1" .
1129
+ # multiplicity lowerValue
1130
+ <_1524367564_1524_52653> <http://uml/2#lowerValue> <_1524367564_1524_52653_lowerValue> .
1131
+ <_1524367564_1524_52653_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1132
+ <_1524367564_1524_52653_lowerValue> <http://uml/2#value> "0" .
1133
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1533_52656> .
1134
+ <_1524367564_1533_52656> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1135
+ <_1524367564_1533_52656> <http://uml/2#name> "bidi_c2_1_1" .
1136
+ <_1524367564_1533_52656> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1137
+ <_1524367564_1533_52656> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1138
+ # appendRDFInTagURI
1139
+ <_1524367564_1533_52656> <http://uml/2#association> <_1524367564_1532_52655> .
1140
+ <_1524367564_1533_52656> <http://uml/2#type> <_1524367564_1208_52650> .
1141
+ # multiplicity upperValue
1142
+ <_1524367564_1533_52656> <http://uml/2#upperValue> <_1524367564_1533_52656_upperValue> .
1143
+ <_1524367564_1533_52656_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1144
+ <_1524367564_1533_52656_upperValue> <http://uml/2#value> "1" .
1145
+ # multiplicity lowerValue
1146
+ <_1524367564_1533_52656> <http://uml/2#lowerValue> <_1524367564_1533_52656_lowerValue> .
1147
+ <_1524367564_1533_52656_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1148
+ <_1524367564_1533_52656_lowerValue> <http://uml/2#value> "1" .
1149
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1524367564_1543_52659> .
1150
+ <_1524367564_1543_52659> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1151
+ <_1524367564_1543_52659> <http://uml/2#name> "bidi_c2_3_s" .
1152
+ <_1524367564_1543_52659> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1153
+ <_1524367564_1543_52659> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1154
+ # appendRDFInTagURI
1155
+ <_1524367564_1543_52659> <http://uml/2#association> <_1524367564_1541_52658> .
1156
+ <_1524367564_1543_52659> <http://uml/2#type> <_1524367564_1208_52650> .
1157
+ # multiplicity upperValue
1158
+ <_1524367564_1543_52659> <http://uml/2#upperValue> <_1524367564_1543_52659_upperValue> .
1159
+ <_1524367564_1543_52659_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
1160
+ <_1524367564_1543_52659_upperValue> <http://uml/2#value> "-1" .
1161
+ # multiplicity lowerValue
1162
+ <_1524367564_1543_52659> <http://uml/2#lowerValue> <_1524367564_1543_52659_lowerValue> .
1163
+ <_1524367564_1543_52659_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1164
+ <_1524367564_1543_52659_lowerValue> <http://uml/2#value> "0" .
1165
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1250427384_703_52744> .
1166
+ <_1250427384_703_52744> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1167
+ <_1250427384_703_52744> <http://uml/2#name> "interface5" .
1168
+ <_1250427384_703_52744> <http://uml/2#visibility> <http://uml/2#visibilityKind_private> .
1169
+ <_1250427384_703_52744> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1170
+ # appendRDFInTagURI
1171
+ <_1250427384_703_52744> <http://uml/2#association> <_1250427384_704_52745> .
1172
+ <_1250427384_703_52744> <http://uml/2#type> <_1250427384_649_52777> .
1173
+ # multiplicity upperValue
1174
+ <_1250427384_703_52744> <http://uml/2#upperValue> <_1250427384_703_52744_upperValue> .
1175
+ <_1250427384_703_52744_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
1176
+ <_1250427384_703_52744_upperValue> <http://uml/2#value> "-1" .
1177
+ # multiplicity lowerValue
1178
+ <_1250427384_703_52744> <http://uml/2#lowerValue> <_1250427384_703_52744_lowerValue> .
1179
+ <_1250427384_703_52744_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1180
+ <_1250427384_703_52744_lowerValue> <http://uml/2#value> "0" .
1181
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1600127000_72_53315> .
1182
+ <_1600127000_72_53315> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1183
+ <_1600127000_72_53315> <http://uml/2#name> "compositeElementOne" .
1184
+ <_1600127000_72_53315> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1185
+ <_1600127000_72_53315> <http://uml/2#aggregation> <http://uml/2#aggregationKind_composite> .
1186
+ # appendRDFInTagURI
1187
+ <_1600127000_72_53315> <http://uml/2#association> <_1600127000_74_53317> .
1188
+ <_1600127000_72_53315> <http://uml/2#type> <_1524367564_1220_52796> .
1189
+ # multiplicity upperValue
1190
+ <_1600127000_72_53315> <http://uml/2#upperValue> <_1600127000_72_53315_upperValue> .
1191
+ <_1600127000_72_53315_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1192
+ <_1600127000_72_53315_upperValue> <http://uml/2#value> "1" .
1193
+ # multiplicity lowerValue
1194
+ <_1600127000_72_53315> <http://uml/2#lowerValue> <_1600127000_72_53315_lowerValue> .
1195
+ <_1600127000_72_53315_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1196
+ <_1600127000_72_53315_lowerValue> <http://uml/2#value> "0" .
1197
+ <_1524367564_1247_52673> <http://uml/2#ownedAttribute> <_1600127064_44_56200> .
1198
+ <_1600127064_44_56200> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1199
+ <_1600127064_44_56200> <http://uml/2#name> "classeabstraite" .
1200
+ <_1600127064_44_56200> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1201
+ <_1600127064_44_56200> <http://uml/2#aggregation> <http://uml/2#aggregationKind_shared> .
1202
+ # appendRDFInTagURI
1203
+ <_1600127064_44_56200> <http://uml/2#association> <_1600127064_46_56202> .
1204
+ <_1600127064_44_56200> <http://uml/2#type> <_1524367564_1206_52669> .
1205
+ # multiplicity upperValue
1206
+ <_1600127064_44_56200> <http://uml/2#upperValue> <_1600127064_44_56200_upperValue> .
1207
+ <_1600127064_44_56200_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1208
+ <_1600127064_44_56200_upperValue> <http://uml/2#value> "1" .
1209
+ # multiplicity lowerValue
1210
+ <_1600127064_44_56200> <http://uml/2#lowerValue> <_1600127064_44_56200_lowerValue> .
1211
+ <_1600127064_44_56200_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1212
+ <_1600127064_44_56200_lowerValue> <http://uml/2#value> "0" .
1213
+ <_1524367564_1247_52673> <http://uml/2#nestedClassifier> <_1600127064_1_56146> .
1214
+ <_1600127064_1_56146> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1215
+ <_1600127064_1_56146> <http://uml/2#name> "InnerClassInsideCdt" .
1216
+ <_1600127064_1_56146> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1217
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1204_52754> .
1218
+ <_1524367564_1204_52754> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1219
+ <_1524367564_1204_52754> <http://uml/2#name> "classWithEntityAuxiliaryStereotype" .
1220
+ <_1524367564_1204_52754> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1221
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1198_52755> .
1222
+ <_1524367564_1198_52755> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1223
+ <_1524367564_1198_52755> <http://uml/2#name> "RootClass" .
1224
+ <_1524367564_1198_52755> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1225
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1200_52756> .
1226
+ <_1524367564_1200_52756> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1227
+ <_1524367564_1200_52756> <http://uml/2#name> "FondationClass" .
1228
+ <_1524367564_1200_52756> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1229
+ <_1524367564_1200_52756> <http://uml/2#generalization> <_1524367564_1252_52757> .
1230
+ <_1524367564_1252_52757> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
1231
+ # appendRDFInTagURI
1232
+ <_1524367564_1252_52757> <http://uml/2#general> <_1524367564_1198_52755> .
1233
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1202_52758> .
1234
+ <_1524367564_1202_52758> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1235
+ <_1524367564_1202_52758> <http://uml/2#name> "FondationClass2" .
1236
+ <_1524367564_1202_52758> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1237
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1524367564_1212_52759> .
1238
+ <_1524367564_1212_52759> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1239
+ <_1524367564_1212_52759> <http://uml/2#name> "ClassWithCustomConstructor" .
1240
+ <_1524367564_1212_52759> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1241
+ <_1524367564_1212_52759> <http://uml/2#ownedOperation> <_1524367564_1550_52760> .
1242
+ <_1524367564_1550_52760> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1243
+ <_1524367564_1550_52760> <http://uml/2#name> "customConstructor" .
1244
+ <_1524367564_1550_52760> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1245
+ <_1524367564_1550_52760> <http://uml/2#appliedStereotype> <_7341696_516_13088> .
1246
+ <_1524367564_1550_52760> <http://uml/2#ownedParameter> <_1524367564_1552_52761> .
1247
+ <_1524367564_1552_52761> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
1248
+ <_1524367564_1552_52761> <http://uml/2#name> "i" .
1249
+ <_1524367564_1552_52761> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_in> .
1250
+ <_1524367564_1552_52761> <http://uml/2#type> <_4_9_8642> .
1251
+ # multiplicity upperValue
1252
+ <_1524367564_1552_52761> <http://uml/2#upperValue> <_1524367564_1552_52761_upperValue> .
1253
+ <_1524367564_1552_52761_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1254
+ <_1524367564_1552_52761_upperValue> <http://uml/2#value> "1" .
1255
+ # multiplicity lowerValue
1256
+ <_1524367564_1552_52761> <http://uml/2#lowerValue> <_1524367564_1552_52761_lowerValue> .
1257
+ <_1524367564_1552_52761_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1258
+ <_1524367564_1552_52761_lowerValue> <http://uml/2#value> "0" .
1259
+ <_1524367564_1212_52759> <http://uml/2#ownedOperation> <_1600126996_16_52762> .
1260
+ <_1600126996_16_52762> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1261
+ <_1600126996_16_52762> <http://uml/2#name> "defaultConstructor" .
1262
+ <_1600126996_16_52762> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1263
+ <_1600126996_16_52762> <http://uml/2#appliedStereotype> <_7341696_516_13088> .
1264
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1250427384_643_52763> .
1265
+ <_1250427384_643_52763> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Interface> .
1266
+ <_1250427384_643_52763> <http://uml/2#name> "Interface1" .
1267
+ <_1250427384_643_52763> <http://uml/2#isAbstract> "true" .
1268
+ <_1250427384_643_52763> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1269
+ <_1250427384_643_52763> <http://uml/2#ownedComment> <_1250427388_1_52764> .
1270
+ <_1250427388_1_52764> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
1271
+ #TODO export type de la note
1272
+ <_1250427388_1_52764> <http://uml/2#body> "MIGRATION TODO: change this class to an interface&#xD;&#xA;&#xD;&#xA;Special comment added for unit testing:&#xD;&#xA;__DOC_INTERFACE__" .
1273
+ <_1250427384_643_52763> <http://uml/2#generalization> <_1524367564_1339_52765> .
1274
+ <_1524367564_1339_52765> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
1275
+ # appendRDFInTagURI
1276
+ <_1524367564_1339_52765> <http://uml/2#general> <_1250427384_645_52767> .
1277
+ <_1250427384_643_52763> <http://uml/2#generalization> <_1524367564_1341_52766> .
1278
+ <_1524367564_1341_52766> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
1279
+ # appendRDFInTagURI
1280
+ <_1524367564_1341_52766> <http://uml/2#general> <_1250427384_646_52769> .
1281
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1250427384_645_52767> .
1282
+ <_1250427384_645_52767> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Interface> .
1283
+ <_1250427384_645_52767> <http://uml/2#name> "Interface2" .
1284
+ <_1250427384_645_52767> <http://uml/2#isAbstract> "true" .
1285
+ <_1250427384_645_52767> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1286
+ <_1250427384_645_52767> <http://uml/2#ownedComment> <_1250427388_2_52768> .
1287
+ <_1250427388_2_52768> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
1288
+ #TODO export type de la note
1289
+ <_1250427388_2_52768> <http://uml/2#body> "MIGRATION TODO: change this class to an interface" .
1290
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1250427384_646_52769> .
1291
+ <_1250427384_646_52769> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Interface> .
1292
+ <_1250427384_646_52769> <http://uml/2#name> "Interface4" .
1293
+ <_1250427384_646_52769> <http://uml/2#isAbstract> "true" .
1294
+ <_1250427384_646_52769> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1295
+ <_1250427384_646_52769> <http://uml/2#ownedComment> <_1250427388_3_52770> .
1296
+ <_1250427388_3_52770> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
1297
+ #TODO export type de la note
1298
+ <_1250427388_3_52770> <http://uml/2#body> "MIGRATION TODO: change this class to an interface" .
1299
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1250427384_647_52771> .
1300
+ <_1250427384_647_52771> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Interface> .
1301
+ <_1250427384_647_52771> <http://uml/2#name> "Interface3" .
1302
+ <_1250427384_647_52771> <http://uml/2#isAbstract> "true" .
1303
+ <_1250427384_647_52771> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1304
+ <_1250427384_647_52771> <http://uml/2#ownedComment> <_1250427388_4_52772> .
1305
+ <_1250427388_4_52772> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
1306
+ #TODO export type de la note
1307
+ <_1250427388_4_52772> <http://uml/2#body> "MIGRATION TODO: change this class to an interface" .
1308
+ <_1250427384_647_52771> <http://uml/2#generalization> <_1524367564_1343_52773> .
1309
+ <_1524367564_1343_52773> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
1310
+ # appendRDFInTagURI
1311
+ <_1524367564_1343_52773> <http://uml/2#general> <_1250427384_649_52777> .
1312
+ <_1250427384_647_52771> <http://uml/2#ownedOperation> <_1524367564_1376_52775> .
1313
+ <_1524367564_1376_52775> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1314
+ <_1524367564_1376_52775> <http://uml/2#name> "getAnInt" .
1315
+ <_1524367564_1376_52775> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1316
+ <_1524367564_1376_52775> <http://uml/2#returnResult> <_1524367564_1378_52776> .
1317
+ <_1524367564_1378_52776> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Parameter> .
1318
+ <_1524367564_1378_52776> <http://uml/2#name> "return parameter" .
1319
+ <_1524367564_1378_52776> <http://uml/2#direction> <http://uml/2#parameterDirectionKind_return> .
1320
+ <_1524367564_1378_52776> <http://uml/2#type> <_4_9_8642> .
1321
+ # multiplicity upperValue
1322
+ <_1524367564_1378_52776> <http://uml/2#upperValue> <_1524367564_1378_52776_upperValue> .
1323
+ <_1524367564_1378_52776_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1324
+ <_1524367564_1378_52776_upperValue> <http://uml/2#value> "1" .
1325
+ # multiplicity lowerValue
1326
+ <_1524367564_1378_52776> <http://uml/2#lowerValue> <_1524367564_1378_52776_lowerValue> .
1327
+ <_1524367564_1378_52776_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1328
+ <_1524367564_1378_52776_lowerValue> <http://uml/2#value> "0" .
1329
+ <_1250427384_647_52771> <http://uml/2#ownedAttribute> <_1524367564_1374_52774> .
1330
+ <_1524367564_1374_52774> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1331
+ <_1524367564_1374_52774> <http://uml/2#name> "uneString" .
1332
+ <_1524367564_1374_52774> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1333
+ <_1524367564_1374_52774> <http://uml/2#type> <_4_13_8644> .
1334
+ # multiplicity upperValue
1335
+ <_1524367564_1374_52774> <http://uml/2#upperValue> <_1524367564_1374_52774_upperValue> .
1336
+ <_1524367564_1374_52774_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1337
+ <_1524367564_1374_52774_upperValue> <http://uml/2#value> "1" .
1338
+ # multiplicity lowerValue
1339
+ <_1524367564_1374_52774> <http://uml/2#lowerValue> <_1524367564_1374_52774_lowerValue> .
1340
+ <_1524367564_1374_52774_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1341
+ <_1524367564_1374_52774_lowerValue> <http://uml/2#value> "0" .
1342
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1250427384_649_52777> .
1343
+ <_1250427384_649_52777> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Interface> .
1344
+ <_1250427384_649_52777> <http://uml/2#name> "Interface5" .
1345
+ <_1250427384_649_52777> <http://uml/2#isAbstract> "true" .
1346
+ <_1250427384_649_52777> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1347
+ <_1250427384_649_52777> <http://uml/2#ownedComment> <_1250427388_5_52778> .
1348
+ <_1250427388_5_52778> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
1349
+ #TODO export type de la note
1350
+ <_1250427388_5_52778> <http://uml/2#body> "MIGRATION TODO: change this class to an interface" .
1351
+ <_1250427384_649_52777> <http://uml/2#ownedAttribute> <_1524367564_1349_52779> .
1352
+ <_1524367564_1349_52779> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1353
+ <_1524367564_1349_52779> <http://uml/2#name> "uneStringDansInterface5" .
1354
+ <_1524367564_1349_52779> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1355
+ <_1524367564_1349_52779> <http://uml/2#type> <_4_13_8644> .
1356
+ # multiplicity upperValue
1357
+ <_1524367564_1349_52779> <http://uml/2#upperValue> <_1524367564_1349_52779_upperValue> .
1358
+ <_1524367564_1349_52779_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1359
+ <_1524367564_1349_52779_upperValue> <http://uml/2#value> "1" .
1360
+ # multiplicity lowerValue
1361
+ <_1524367564_1349_52779> <http://uml/2#lowerValue> <_1524367564_1349_52779_lowerValue> .
1362
+ <_1524367564_1349_52779_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1363
+ <_1524367564_1349_52779_lowerValue> <http://uml/2#value> "0" .
1364
+ <_1250427384_649_52777> <http://uml/2#ownedAttribute> <_1600126996_31_52780> .
1365
+ <_1600126996_31_52780> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1366
+ <_1600126996_31_52780> <http://uml/2#name> "interfaceComposante" .
1367
+ <_1600126996_31_52780> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1368
+ <_1600126996_31_52780> <http://uml/2#aggregation> <http://uml/2#aggregationKind_composite> .
1369
+ # appendRDFInTagURI
1370
+ <_1600126996_31_52780> <http://uml/2#association> <_1600126996_33_52781> .
1371
+ <_1600126996_31_52780> <http://uml/2#type> <_1600126996_23_52783> .
1372
+ # multiplicity upperValue
1373
+ <_1600126996_31_52780> <http://uml/2#upperValue> <_1600126996_31_52780_upperValue> .
1374
+ <_1600126996_31_52780_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
1375
+ <_1600126996_31_52780_upperValue> <http://uml/2#value> "-1" .
1376
+ # multiplicity lowerValue
1377
+ <_1600126996_31_52780> <http://uml/2#lowerValue> <_1600126996_31_52780_lowerValue> .
1378
+ <_1600126996_31_52780_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1379
+ <_1600126996_31_52780_lowerValue> <http://uml/2#value> "0" .
1380
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1600126996_23_52783> .
1381
+ <_1600126996_23_52783> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Interface> .
1382
+ <_1600126996_23_52783> <http://uml/2#name> "InterfaceComposante" .
1383
+ <_1600126996_23_52783> <http://uml/2#isAbstract> "true" .
1384
+ <_1600126996_23_52783> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1385
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1600126996_34_52784> .
1386
+ <_1600126996_34_52784> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1387
+ <_1600126996_34_52784> <http://uml/2#name> "CComposante" .
1388
+ <_1600126996_34_52784> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1389
+ <_1600126996_34_52784> <http://uml/2#implementation> <_1600126996_37_52785> .
1390
+ <_1600126996_37_52785> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Implementation> .
1391
+ # appendRDFInTagURI
1392
+ <_1600126996_37_52785> <http://uml/2#client> <_1600126996_34_52784> .
1393
+ # appendRDFInTagURI
1394
+ <_1600126996_37_52785> <http://uml/2#supplier> <_1600126996_23_52783> .
1395
+ <_1524367564_1195_52648> <http://uml/2#ownedMember> <_1600127000_84_53336> .
1396
+ <_1600127000_84_53336> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
1397
+ <_1600127000_84_53336> <http://uml/2#name> "String" .
1398
+ <_1600127000_84_53336> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1399
+ <_1524367684_2_52508> <http://uml/2#ownedMember> <_1524367564_1196_52787> .
1400
+ <_1524367564_1196_52787> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1401
+ <_1524367564_1196_52787> <http://uml/2#name> "pack2" .
1402
+ <_1524367564_1196_52787> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1403
+ <_1524367564_1196_52787> <http://uml/2#ownedMember> <_1524367564_1383_52791> .
1404
+ <_1524367564_1383_52791> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
1405
+ <_1524367564_1383_52791> <http://uml/2#name> "" .
1406
+ <_1524367564_1383_52791> <http://uml/2#memberEnd> <_1524367564_1384_52790> .
1407
+ <_1524367564_1383_52791> <http://uml/2#memberEnd> <_1524367564_1385_52792> .
1408
+ <_1524367564_1383_52791> <http://uml/2#ownedEnd> <_1524367564_1385_52792> .
1409
+ <_1524367564_1385_52792> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1410
+ <_1524367564_1385_52792> <http://uml/2#name> "" .
1411
+ <_1524367564_1385_52792> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1412
+ <_1524367564_1385_52792> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1413
+ # appendRDFInTagURI
1414
+ <_1524367564_1385_52792> <http://uml/2#association> <_1524367564_1383_52791> .
1415
+ <_1524367564_1385_52792> <http://uml/2#type> <_1524367564_1216_52789> .
1416
+ # multiplicity upperValue
1417
+ <_1524367564_1385_52792> <http://uml/2#upperValue> <_1524367564_1385_52792_upperValue> .
1418
+ <_1524367564_1385_52792_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1419
+ <_1524367564_1385_52792_upperValue> <http://uml/2#value> "???" .
1420
+ # multiplicity lowerValue
1421
+ <_1524367564_1385_52792> <http://uml/2#lowerValue> <_1524367564_1385_52792_lowerValue> .
1422
+ <_1524367564_1385_52792_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1423
+ <_1524367564_1385_52792_lowerValue> <http://uml/2#value> "???" .
1424
+ <_1524367564_1196_52787> <http://uml/2#ownedMember> <_1524367564_1393_52788> .
1425
+ <_1524367564_1393_52788> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1426
+ <_1524367564_1393_52788> <http://uml/2#name> "pack21" .
1427
+ <_1524367564_1393_52788> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1428
+ <_1524367564_1196_52787> <http://uml/2#ownedMember> <_1524367564_1216_52789> .
1429
+ <_1524367564_1216_52789> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1430
+ <_1524367564_1216_52789> <http://uml/2#name> "Class10" .
1431
+ <_1524367564_1216_52789> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1432
+ <_1524367564_1216_52789> <http://uml/2#ownedAttribute> <_1524367564_1384_52790> .
1433
+ <_1524367564_1384_52790> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1434
+ <_1524367564_1384_52790> <http://uml/2#name> "class1" .
1435
+ <_1524367564_1384_52790> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1436
+ <_1524367564_1384_52790> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1437
+ # appendRDFInTagURI
1438
+ <_1524367564_1384_52790> <http://uml/2#association> <_1524367564_1383_52791> .
1439
+ <_1524367564_1384_52790> <http://uml/2#type> <_1524367564_1247_52673> .
1440
+ # multiplicity upperValue
1441
+ <_1524367564_1384_52790> <http://uml/2#upperValue> <_1524367564_1384_52790_upperValue> .
1442
+ <_1524367564_1384_52790_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1443
+ <_1524367564_1384_52790_upperValue> <http://uml/2#value> "377" .
1444
+ # multiplicity lowerValue
1445
+ <_1524367564_1384_52790> <http://uml/2#lowerValue> <_1524367564_1384_52790_lowerValue> .
1446
+ <_1524367564_1384_52790_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1447
+ <_1524367564_1384_52790_lowerValue> <http://uml/2#value> "0" .
1448
+ <_1524367564_1196_52787> <http://uml/2#ownedMember> <_1524367564_1218_52793> .
1449
+ <_1524367564_1218_52793> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1450
+ <_1524367564_1218_52793> <http://uml/2#name> "Classe3" .
1451
+ <_1524367564_1218_52793> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1452
+ <_1524367564_1218_52793> <http://uml/2#generalization> <_1524367564_1254_52794> .
1453
+ <_1524367564_1254_52794> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
1454
+ # appendRDFInTagURI
1455
+ <_1524367564_1254_52794> <http://uml/2#general> <_1524367564_1206_52669> .
1456
+ <_1524367564_1218_52793> <http://uml/2#ownedOperation> <_1524367564_1422_52795> .
1457
+ <_1524367564_1422_52795> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
1458
+ <_1524367564_1422_52795> <http://uml/2#name> "methodeAbstraite" .
1459
+ <_1524367564_1422_52795> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1460
+ <_1524367564_1218_52793> <http://uml/2#ownedAttribute> <_1524367564_1444_52720> .
1461
+ <_1524367564_1444_52720> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1462
+ <_1524367564_1444_52720> <http://uml/2#name> "invQual" .
1463
+ <_1524367564_1444_52720> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1464
+ <_1524367564_1444_52720> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
1465
+ # appendRDFInTagURI
1466
+ <_1524367564_1444_52720> <http://uml/2#association> <_1524367564_1442_52719> .
1467
+ <_1524367564_1444_52720> <http://uml/2#type> <_1524367564_1247_52673> .
1468
+ # multiplicity upperValue
1469
+ <_1524367564_1444_52720> <http://uml/2#upperValue> <_1524367564_1444_52720_upperValue> .
1470
+ <_1524367564_1444_52720_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1471
+ <_1524367564_1444_52720_upperValue> <http://uml/2#value> "1" .
1472
+ # multiplicity lowerValue
1473
+ <_1524367564_1444_52720> <http://uml/2#lowerValue> <_1524367564_1444_52720_lowerValue> .
1474
+ <_1524367564_1444_52720_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1475
+ <_1524367564_1444_52720_lowerValue> <http://uml/2#value> "1" .
1476
+ <_1524367564_1196_52787> <http://uml/2#ownedMember> <_1524367564_1220_52796> .
1477
+ <_1524367564_1220_52796> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1478
+ <_1524367564_1220_52796> <http://uml/2#name> "CompositeTargetClas" .
1479
+ <_1524367564_1220_52796> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1480
+ <_1524367564_1196_52787> <http://uml/2#ownedMember> <_1524367564_1222_52797> .
1481
+ <_1524367564_1222_52797> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1482
+ <_1524367564_1222_52797> <http://uml/2#name> "ClassA" .
1483
+ <_1524367564_1222_52797> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1484
+ <_1524367564_1196_52787> <http://uml/2#ownedMember> <_1524367564_1224_52798> .
1485
+ <_1524367564_1224_52798> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1486
+ <_1524367564_1224_52798> <http://uml/2#name> "MyException2" .
1487
+ <_1524367564_1224_52798> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1488
+ <_1524367564_1224_52798> <http://uml/2#generalization> <_1524367564_1256_52799> .
1489
+ <_1524367564_1256_52799> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
1490
+ # appendRDFInTagURI
1491
+ <_1524367564_1256_52799> <http://uml/2#general> <_1524367564_1226_52808> .
1492
+ <_1524367564_1196_52787> <http://uml/2#ownedMember> <_1524367564_1228_52800> .
1493
+ <_1524367564_1228_52800> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1494
+ <_1524367564_1228_52800> <http://uml/2#name> "MyException" .
1495
+ <_1524367564_1228_52800> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1496
+ <_1524367564_1228_52800> <http://uml/2#generalization> <_1524367564_1258_52801> .
1497
+ <_1524367564_1258_52801> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
1498
+ # appendRDFInTagURI
1499
+ <_1524367564_1258_52801> <http://uml/2#general> <_1524367564_1226_52808> .
1500
+ <_1524367564_1196_52787> <http://uml/2#ownedMember> <_1600126996_18_52802> .
1501
+ <_1600126996_18_52802> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1502
+ <_1600126996_18_52802> <http://uml/2#name> "subCompositeTargetClass" .
1503
+ <_1600126996_18_52802> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1504
+ <_1600126996_18_52802> <http://uml/2#generalization> <_1600126996_22_52803> .
1505
+ <_1600126996_22_52803> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
1506
+ # appendRDFInTagURI
1507
+ <_1600126996_22_52803> <http://uml/2#general> <_1524367564_1220_52796> .
1508
+ <_1524367684_2_52508> <http://uml/2#ownedMember> <_1524367564_1394_52806> .
1509
+ <_1524367564_1394_52806> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1510
+ <_1524367564_1394_52806> <http://uml/2#name> "java" .
1511
+ <_1524367564_1394_52806> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1512
+ <_1524367564_1394_52806> <http://uml/2#ownedMember> <_1524367564_1395_52807> .
1513
+ <_1524367564_1395_52807> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1514
+ <_1524367564_1395_52807> <http://uml/2#name> "lang" .
1515
+ <_1524367564_1395_52807> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1516
+ <_1524367564_1395_52807> <http://uml/2#ownedMember> <_1524367564_1226_52808> .
1517
+ <_1524367564_1226_52808> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1518
+ <_1524367564_1226_52808> <http://uml/2#name> "Exception" .
1519
+ <_1524367564_1226_52808> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1520
+ <_1524367684_2_52508> <http://uml/2#ownedMember> <_1524367564_1396_52809> .
1521
+ <_1524367564_1396_52809> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1522
+ <_1524367564_1396_52809> <http://uml/2#name> "Divers" .
1523
+ <_1524367564_1396_52809> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1524
+ <_1524367564_1396_52809> <http://uml/2#ownedMember> <_1524367564_1397_52810> .
1525
+ <_1524367564_1397_52810> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Actor> .
1526
+ <_1524367564_1397_52810> <http://uml/2#name> "UnActeur" .
1527
+ <_1524367564_1397_52810> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1528
+ <_1524367564_1396_52809> <http://uml/2#ownedMember> <_1524367564_1398_52811> .
1529
+ <_1524367564_1398_52811> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Actor> .
1530
+ <_1524367564_1398_52811> <http://uml/2#name> "Actor" .
1531
+ <_1524367564_1398_52811> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1532
+ <_1524367564_1396_52809> <http://uml/2#ownedMember> <_1524367564_1399_52812> .
1533
+ <_1524367564_1399_52812> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#UseCase> .
1534
+ <_1524367564_1399_52812> <http://uml/2#name> "UseCase" .
1535
+ <_1524367564_1399_52812> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1536
+ <_1524367564_1396_52809> <http://uml/2#ownedMember> <_1524367564_1400_52813> .
1537
+ <_1524367564_1400_52813> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Signal> .
1538
+ <_1524367564_1400_52813> <http://uml/2#name> "Signal" .
1539
+ <_1524367564_1400_52813> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1540
+ <_1524367564_1396_52809> <http://uml/2#ownedMember> <_1524367684_26_52814> .
1541
+ <_1524367684_26_52814> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1542
+ <_1524367684_26_52814> <http://uml/2#name> "Instance1" .
1543
+ <_1524367684_26_52814> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1544
+ <_1524367684_2_52508> <http://uml/2#ownedMember> <_1524367564_1401_52817> .
1545
+ <_1524367564_1401_52817> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1546
+ <_1524367564_1401_52817> <http://uml/2#name> "ClasseALaRacine" .
1547
+ <_1524367564_1401_52817> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1548
+ <_1524367684_2_52508> <http://uml/2#ownedMember> <_1600127000_51_53284> .
1549
+ <_1600127000_51_53284> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
1550
+ <_1600127000_51_53284> <http://uml/2#name> "testEnumAsString" .
1551
+ <_1600127000_51_53284> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1552
+ <_1600127000_51_53284> <http://uml/2#ownedMember> <_1600127000_52_53285> .
1553
+ <_1600127000_52_53285> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1554
+ <_1600127000_52_53285> <http://uml/2#name> "Car" .
1555
+ <_1600127000_52_53285> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1556
+ <_1600127000_52_53285> <http://uml/2#ownedAttribute> <_1600127000_57_53290> .
1557
+ <_1600127000_57_53290> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1558
+ <_1600127000_57_53290> <http://uml/2#name> "carCategory" .
1559
+ <_1600127000_57_53290> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1560
+ <_1600127000_57_53290> <http://uml/2#type> <_1600127000_53_53286> .
1561
+ # multiplicity upperValue
1562
+ <_1600127000_57_53290> <http://uml/2#upperValue> <_1600127000_57_53290_upperValue> .
1563
+ <_1600127000_57_53290_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1564
+ <_1600127000_57_53290_upperValue> <http://uml/2#value> "1" .
1565
+ # multiplicity lowerValue
1566
+ <_1600127000_57_53290> <http://uml/2#lowerValue> <_1600127000_57_53290_lowerValue> .
1567
+ <_1600127000_57_53290_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1568
+ <_1600127000_57_53290_lowerValue> <http://uml/2#value> "1" .
1569
+ <_1600127000_52_53285> <http://uml/2#ownedAttribute> <_1600127000_60_53293> .
1570
+ <_1600127000_60_53293> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
1571
+ <_1600127000_60_53293> <http://uml/2#name> "name" .
1572
+ <_1600127000_60_53293> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1573
+ <_1600127000_60_53293> <http://uml/2#type> <_4_13_8644> .
1574
+ # multiplicity upperValue
1575
+ <_1600127000_60_53293> <http://uml/2#upperValue> <_1600127000_60_53293_upperValue> .
1576
+ <_1600127000_60_53293_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1577
+ <_1600127000_60_53293_upperValue> <http://uml/2#value> "1" .
1578
+ # multiplicity lowerValue
1579
+ <_1600127000_60_53293> <http://uml/2#lowerValue> <_1600127000_60_53293_lowerValue> .
1580
+ <_1600127000_60_53293_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
1581
+ <_1600127000_60_53293_lowerValue> <http://uml/2#value> "1" .
1582
+ <_1600127000_51_53284> <http://uml/2#ownedMember> <_1600127000_53_53286> .
1583
+ <_1600127000_53_53286> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Enumeration> .
1584
+ <_1600127000_53_53286> <http://uml/2#name> "CarCategory" .
1585
+ <_1600127000_53_53286> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1586
+ <_1600127000_53_53286> <http://uml/2#ownedLiteral> <_1600127000_54_53287> .
1587
+ <_1600127000_54_53287> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
1588
+ <_1600127000_54_53287> <http://uml/2#name> "Sedan" .
1589
+ <_1600127000_53_53286> <http://uml/2#ownedLiteral> <_1600127000_55_53288> .
1590
+ <_1600127000_55_53288> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
1591
+ <_1600127000_55_53288> <http://uml/2#name> "Sport" .
1592
+ <_1600127000_53_53286> <http://uml/2#ownedLiteral> <_1600127000_56_53289> .
1593
+ <_1600127000_56_53289> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
1594
+ <_1600127000_56_53289> <http://uml/2#name> "SUV" .
1595
+ <_1524367684_2_52508> <http://uml/2#ownedMember> <_1600127000_79_53328> .
1596
+ <_1600127000_79_53328> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
1597
+ <_1600127000_79_53328> <http://uml/2#name> "ClassWithParameter" .
1598
+ <_1600127000_79_53328> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1599
+ <_1524367684_2_52508> <http://uml/2#ownedMember> <_1600127000_87_53342> .
1600
+ <_1600127000_87_53342> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Interface> .
1601
+ <_1600127000_87_53342> <http://uml/2#name> "InterfaceAsClassStereotypeInterface" .
1602
+ <_1600127000_87_53342> <http://uml/2#isAbstract> "true" .
1603
+ <_1600127000_87_53342> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1604
+ # <!-- ADDING used ModelElement(s) -->
1605
+ <_1524367684_2_52508> <http://uml/2#ownedMember> <_1250427408_97_53506> .
1606
+ <_1250427408_97_53506> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Stereotype> .
1607
+ <_1250427408_97_53506> <http://uml/2#name> "orderedParameter" .
1608
+ <_1524367684_2_52508> <http://uml/2#ownedMember> <_7341696_516_13088> .
1609
+ <_7341696_516_13088> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Stereotype> .
1610
+ <_7341696_516_13088> <http://uml/2#name> "create" .
1611
+ <_1524367684_2_52508> <http://uml/2#ownedMember> <_0_40002_13054> .
1612
+ <_0_40002_13054> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Stereotype> .
1613
+ <_0_40002_13054> <http://uml/2#name> "interface" .
1614
+ # <!-- ADDING used ModelElement(s) -->
1615
+ <_1524367684_2_52508> <http://uml/2#ownedMember> <_4_9_8642> .
1616
+ <_4_9_8642> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
1617
+ <_4_9_8642> <http://uml/2#name> "integer" .
1618
+ <_4_9_8642> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1619
+ <_1524367684_2_52508> <http://uml/2#ownedMember> <_4_5_8640> .
1620
+ <_4_5_8640> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
1621
+ <_4_5_8640> <http://uml/2#name> "boolean" .
1622
+ <_4_5_8640> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1623
+ <_1524367684_2_52508> <http://uml/2#ownedMember> <_4_13_8644> .
1624
+ <_4_13_8644> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
1625
+ <_4_13_8644> <http://uml/2#name> "string" .
1626
+ <_4_13_8644> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
1627
+ # end of file