ontomde-uml2 1.0.6 → 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 (39) hide show
  1. data/Manifest.txt +38 -22
  2. data/README.txt +21 -2
  3. data/Rakefile +1 -1
  4. data/bin/ontomde-umlToProtege +4 -0
  5. data/lib/ontomde-uml2.rb +19 -17
  6. data/lib/ontomde-uml2/UMLdatatypeMapping.rb +441 -0
  7. data/lib/ontomde-uml2/autoImplement.rb +170 -166
  8. data/lib/ontomde-uml2/check.rb +1 -1
  9. data/lib/ontomde-uml2/component.rb +45 -0
  10. data/lib/ontomde-uml2/createAndAdd.rb +32 -20
  11. data/lib/ontomde-uml2/dotDiagram.rb +1 -1
  12. data/lib/ontomde-uml2/kb.rb +4 -0
  13. data/lib/ontomde-uml2/kb/MYMODEL_kb.pprj +2377 -0
  14. data/lib/ontomde-uml2/kb/MYMODEL_kb.rdf +2 -0
  15. data/lib/ontomde-uml2/kb/MYMODEL_kb.rdfs +441 -0
  16. data/lib/ontomde-uml2/kb/MYMODEL_meta.pprj +874 -0
  17. data/lib/ontomde-uml2/kb/command.rb +143 -0
  18. data/lib/ontomde-uml2/kb/datatypeMapping.rb +99 -0
  19. data/lib/ontomde-uml2/kb/protege.rb +687 -0
  20. data/lib/ontomde-uml2/multipleInheritance.rb +1 -1
  21. data/lib/ontomde-uml2/salvageErrors.rb +1 -1
  22. data/lib/ontomde-uml2/select.rb +83 -5
  23. data/lib/ontomde-uml2/shortcut.rb +23 -8
  24. data/lib/ontomde-uml2/uml2.pprj +943 -0
  25. data/lib/ontomde-uml2/uml2.rb +62 -29
  26. data/lib/ontomde-uml2/uml2.rdf +768 -0
  27. data/lib/ontomde-uml2/uml2.rdfs +3233 -0
  28. data/lib/ontomde-uml2/umlx.rb +31 -9
  29. data/lib/ontomde-uml2/version.rb +1 -1
  30. data/lib/ontomde-uml2/versionSignature.rb +1 -1
  31. data/lib/ontomde-uml2/xsd.pprj +1063 -0
  32. data/lib/ontomde-uml2/xsd.rdf +2 -0
  33. data/lib/ontomde-uml2/xsd.rdfs +17 -0
  34. data/test/_test_dot.rb +1 -1
  35. data/test/_test_perf.rb +1 -1
  36. data/test/test_base.rb +1 -1
  37. data/test/test_clone.rb +5 -5
  38. data/test/test_misc.rb +3 -3
  39. metadata +47 -29
@@ -1,7 +1,7 @@
1
1
  require 'singleton'
2
2
 
3
- class Crdf_Model
4
- # Loads UML2 metamodel.
3
+ class Crdf_Repository
4
+ # Loads UML2 metamodel from protege/2000 DSL model.
5
5
  def loadUml2
6
6
  loadMetaModelFromFile("#{File.dirname(__FILE__)}/uml2.rdfs.nt");
7
7
  addTypeIndex(Muml_Class)
@@ -11,7 +11,8 @@ end
11
11
 
12
12
  module Muml_Classifier
13
13
  # Returns in a Set any class this class inherit froms, both directly and indirectly (trough other classes)
14
- #parameter is used internaly for recursion and should not be used.
14
+ #Note:
15
+ # parameter is used internaly for recursion and should not be used.
15
16
  def umlx_classifier_generalization_indirect(s=Set.new)
16
17
  self.uml_generalization.each { |gene|
17
18
  gene.uml_general.each{ |c|
@@ -26,7 +27,8 @@ end
26
27
 
27
28
  module Muml_Namespace
28
29
  # Returns containing package.
29
- # NOTE: Returns null if containing package is a Model.
30
+ #Note:
31
+ # Returns null if containing package is a Model.
30
32
  def umlx_package
31
33
  #TODO: utiliser relation inverse when available
32
34
  p=umlx_owner_one
@@ -38,7 +40,7 @@ module Muml_Namespace
38
40
  #
39
41
  # Kept for possible future use.
40
42
  def _computePackage_notUsed
41
- rdf_model.each { |a,x|
43
+ rdf_Repository.each { |a,x|
42
44
  if(x.class==Cuml_Class)
43
45
  x.uml_nestedClassifier {
44
46
  return x if e==self
@@ -54,19 +56,27 @@ module Muml_Namespace
54
56
  end
55
57
  end
56
58
  module Muml_Namespace
57
- #Returns the chain of namespace owning this element including this element
59
+ # return true if element is a namespace root.
60
+ # Such an element is either an element stereotyped "root" or an instance of uml_Model.
61
+ # a root element name is not part of the qualified name of its enclosed elements.
62
+ def umlx_isARootNamespace?
63
+ return self.kind_of?(Muml_Model) || self.umlx_hasStereotype?("root")
64
+ end
65
+ # Returns the chain of namespace owning this element including this element
58
66
  def umlx_hierarchy
67
+ isarn=self.umlx_isARootNamespace?
59
68
  p=umlx_package
60
- if(p==nil) # || p.kind_of?(Muml_Model))
69
+ r=nil
70
+ if(p==nil || isarn ) # || p.kind_of?(Muml_Model))
61
71
  r=Array.new()
62
72
  else
63
73
  r=p.umlx_hierarchy
64
74
  end
65
- r.push(self) if !self.kind_of?(Muml_Model)
75
+ r.push(self) if !isarn
66
76
  return r
67
77
  end
68
78
 
69
- #Returns the chain of namespace owning this element *NOT* including this element
79
+ # Returns the chain of namespace owning this element *NOT* including this element
70
80
  def umlx_sub_hierarchy
71
81
  p=umlx_package
72
82
  if(p==nil)
@@ -79,9 +89,9 @@ module Muml_Namespace
79
89
  end
80
90
 
81
91
  module ::Muml_NamedElement
82
- #Internal use
92
+ # Internal use
83
93
  #
84
- #Used by web server
94
+ # Used by web server
85
95
  def to_s
86
96
  s=uml_name.to_s
87
97
  return s if s.length>0
@@ -89,26 +99,26 @@ module ::Muml_NamedElement
89
99
  end
90
100
  end
91
101
  module ::Muml_Generalization
92
- #Internal use
102
+ # Internal use
93
103
  #
94
- #Used by web server
104
+ # Used by web server
95
105
  def to_s
96
106
  return "->#{uml_general.to_s}"
97
107
  end
98
108
  end
99
109
  module ::Muml_Implementation
100
- #Internal use
110
+ # Internal use
101
111
  #
102
- #Used by web server
112
+ # Used by web server
103
113
  def to_s
104
114
  return "->#{uml_realizingClassifier.to_s}"
105
115
  end
106
116
  end
107
117
 
108
118
  module ::Muml_Association
109
- #Internal use
119
+ # Internal use
110
120
  #
111
- #Used by web server
121
+ # Used by web server
112
122
  def to_s
113
123
  return "#{uml_ownedEnd}->#{uml_memberEnd}"
114
124
  end
@@ -136,7 +146,7 @@ module ::Muml_LiteralInteger
136
146
  end
137
147
 
138
148
  module ::Muml_Property
139
- #Returns the other end of the association this property is linked to.
149
+ # Returns the other end of the association this property is linked to.
140
150
  #NOTES:
141
151
  # Returns nil if this class is not part of an association
142
152
  # Returns nil if other en is not navigable.
@@ -164,10 +174,20 @@ module ::Muml_Class
164
174
  end
165
175
 
166
176
  # returns true if this class is a direct composante member end of a composition.
167
- # NOTE:
177
+ #Note:
168
178
  # This method returns direct relations only.
169
- # cf: umlx_isComposanteRec? for recursive
179
+ #See:
180
+ #* #umlx_isComposanteRec? for recursive behavior.
181
+ #* #umlx_getComposite
170
182
  def umlx_isComposante?
183
+ return !umlx_getComposite.nil?
184
+ end
185
+
186
+ # returns direct composite element for this class if it exists, nil otherwise.
187
+ #Note:
188
+ # This method returns direct relations only.
189
+ #See: #umlx_isComposante?
190
+ def umlx_getComposite
171
191
  #(self.umlx_ownedAttribute-self.uml_ownedAttribute).each { |a|
172
192
  (self.umlx_ownedAttribute).each { |a|
173
193
  next if self.uml_ownedAttribute.include?(a)
@@ -176,13 +196,14 @@ module ::Muml_Class
176
196
  #[a, a.umlx_otherEnd].each { |p|
177
197
  [a].each { |p|
178
198
 
179
- return true if (!p.nil?) && (!p.uml_aggregation_one0.nil?)&& (p.uml_aggregation_one.isComposite?)
199
+ return p if (!p.nil?) && (!p.uml_aggregation_one0.nil?)&& (p.uml_aggregation_one.isComposite?)
180
200
  }}
181
- return false
201
+ return nil
182
202
  end
203
+
183
204
 
184
205
  # returns true if this class is this class or one of its inheriting class is a direct composante member end of a composition.
185
- # cf: umlx_isComposante? for non recursive behavior.
206
+ #See: #umlx_isComposante? for non recursive behavior.
186
207
  def umlx_isComposanteRec?
187
208
  return true if umlx_isComposante?
188
209
  self.umlx_classifier_generalization_indirect.each {|c|
@@ -190,9 +211,23 @@ module ::Muml_Class
190
211
  }
191
212
  return false
192
213
  end
214
+
215
+ # returns first composite found.
216
+ #See: #umlx_isComposanteRec? for non recursive behavior.
217
+ def umlx_getCompositeRec()
218
+ ci=umlx_getComposite
219
+ return ci unless ci.nil?
220
+
221
+ self.umlx_classifier_generalization_indirect.each {|c|
222
+ ci=c.umlx_getCompositeRec()
223
+ return ci unless ci.nil?
224
+ }
225
+ return nil
226
+ end
227
+
193
228
 
194
229
  # returns true if this class carries directly a composition
195
- # cf umlx_carryCompositionRec? for recursive behavior.
230
+ #See: #umlx_carryCompositionRec? for recursive behavior.
196
231
  def umlx_carryComposition?
197
232
  (self.uml_ownedAttribute+self.umlx_ownedAttribute).each { |a|
198
233
  #next if !p.kind_of?(Cuml_Property)
@@ -203,9 +238,9 @@ module ::Muml_Class
203
238
  }}
204
239
  return false
205
240
  end
206
- #
241
+
207
242
  # returns true if this class or one of its inherited classes carries directly a composition
208
- # cf umlx_carryComposition? for non recursive behavior.
243
+ #See: #umlx_carryComposition? for non recursive behavior.
209
244
  def umlx_carryCompositionRec?
210
245
  return true if umlx_carryComposition?
211
246
  self.umlx_classifier_generalization_indirect.each {|c|
@@ -216,7 +251,7 @@ module ::Muml_Class
216
251
  end
217
252
 
218
253
  module Muml_Operation
219
- #retrieve operation return parameter if any (nil otherwise)
254
+ # retrieve operation return parameter if any (nil otherwise)
220
255
  def umlx_returnResult_one0
221
256
  fp=nil
222
257
  uml_returnResult.each { |p|
@@ -232,5 +267,3 @@ module Muml_Operation
232
267
  end
233
268
  end
234
269
 
235
-
236
- #end # ProfileCoreUML
@@ -0,0 +1,768 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <rdf:RDF xmlns:fn="http://www.w3.org/2005/xpath-functions" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:uml="http://schema.omg.org/spec/UML/2.1" xmlns:xmi="http://schema.omg.org/spec/XMI/2.1" xmlns:xs="http://www.w3.org/2001/XMLSchema">
4
+
5
+ <rdf:Description rdf:about="EAPK_290D6205_00C0_45f0_A3BF_0BF11BC28D42">
6
+
7
+ <rdf:type rdf:resource="http://uml/2#Model"/>
8
+
9
+ </rdf:Description>
10
+
11
+ <rdf:Description rdf:about="EAPK_290D6205_00C0_45f0_A3BF_0BF11BC28D42">
12
+
13
+ <ns0:name xmlns:ns0="http://uml/2#">simple1</ns0:name>
14
+
15
+ </rdf:Description>
16
+
17
+ <rdf:Description rdf:about="EAPK_290D6205_00C0_45f0_A3BF_0BF11BC28D42">
18
+
19
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
20
+
21
+ </rdf:Description>
22
+
23
+ <rdf:Description rdf:about="EAPK_290D6205_00C0_45f0_A3BF_0BF11BC28D42">
24
+
25
+ <ns0:ownedMember xmlns:ns0="http://uml/2#" rdf:resource="EAPK_02628C2D_4B42_4e3d_948F_A07DD8152828"/>
26
+
27
+ </rdf:Description>
28
+
29
+ <rdf:Description rdf:about="EAPK_02628C2D_4B42_4e3d_948F_A07DD8152828">
30
+
31
+ <rdf:type rdf:resource="http://uml/2#Package"/>
32
+
33
+ </rdf:Description>
34
+
35
+ <rdf:Description rdf:about="EAPK_02628C2D_4B42_4e3d_948F_A07DD8152828">
36
+
37
+ <ns0:name xmlns:ns0="http://uml/2#">pack1</ns0:name>
38
+
39
+ </rdf:Description>
40
+
41
+ <rdf:Description rdf:about="EAPK_02628C2D_4B42_4e3d_948F_A07DD8152828">
42
+
43
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
44
+
45
+ </rdf:Description>
46
+
47
+ <rdf:Description rdf:about="EAID_D37A3533_D134_4d74_9354_FE24C38B1864">
48
+
49
+ <rdf:type rdf:resource="http://uml/2#Class"/>
50
+
51
+ </rdf:Description>
52
+
53
+ <rdf:Description rdf:about="EAID_D37A3533_D134_4d74_9354_FE24C38B1864">
54
+
55
+ <ns0:name xmlns:ns0="http://uml/2#">ClassWithAuxiliaryStereotype</ns0:name>
56
+
57
+ </rdf:Description>
58
+
59
+ <rdf:Description rdf:about="EAID_D37A3533_D134_4d74_9354_FE24C38B1864">
60
+
61
+ <ns0:isAbstract xmlns:ns0="http://uml/2#"></ns0:isAbstract>
62
+
63
+ </rdf:Description>
64
+
65
+ <rdf:Description rdf:about="EAID_D37A3533_D134_4d74_9354_FE24C38B1864">
66
+
67
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
68
+
69
+ </rdf:Description>
70
+
71
+ <rdf:Description rdf:about="EAID_9D533E8C_E4D4_4580_9F78_BB245408C105">
72
+
73
+ <rdf:type rdf:resource="http://uml/2#Class"/>
74
+
75
+ </rdf:Description>
76
+
77
+ <rdf:Description rdf:about="EAID_9D533E8C_E4D4_4580_9F78_BB245408C105">
78
+
79
+ <ns0:name xmlns:ns0="http://uml/2#">ClassWithCustomConstructor</ns0:name>
80
+
81
+ </rdf:Description>
82
+
83
+ <rdf:Description rdf:about="EAID_9D533E8C_E4D4_4580_9F78_BB245408C105">
84
+
85
+ <ns0:isAbstract xmlns:ns0="http://uml/2#"></ns0:isAbstract>
86
+
87
+ </rdf:Description>
88
+
89
+ <rdf:Description rdf:about="EAID_9D533E8C_E4D4_4580_9F78_BB245408C105">
90
+
91
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
92
+
93
+ </rdf:Description>
94
+
95
+ <rdf:Description rdf:about="EAID_9D533E8C_E4D4_4580_9F78_BB245408C105">
96
+
97
+ <ns0:ownedOperation xmlns:ns0="http://uml/2#" rdf:resource="EAID_18649CB8_9C62_4762_B319_C8B601CA732F"/>
98
+
99
+ </rdf:Description>
100
+
101
+ <rdf:Description rdf:about="EAID_18649CB8_9C62_4762_B319_C8B601CA732F">
102
+
103
+ <rdf:type rdf:resource="http://uml/2#Operation"/>
104
+
105
+ </rdf:Description>
106
+
107
+ <rdf:Description rdf:about="EAID_18649CB8_9C62_4762_B319_C8B601CA732F">
108
+
109
+ <ns0:name xmlns:ns0="http://uml/2#">Operation</ns0:name>
110
+
111
+ </rdf:Description>
112
+
113
+ <rdf:Description rdf:about="EAID_18649CB8_9C62_4762_B319_C8B601CA732F">
114
+
115
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
116
+
117
+ </rdf:Description>
118
+
119
+ <rdf:Description rdf:about="EAID_60287626_8818_44c8_B027_E79DE490D920">
120
+
121
+ <rdf:type rdf:resource="http://uml/2#Class"/>
122
+
123
+ </rdf:Description>
124
+
125
+ <rdf:Description rdf:about="EAID_60287626_8818_44c8_B027_E79DE490D920">
126
+
127
+ <ns0:name xmlns:ns0="http://uml/2#">ClasseAbstraite</ns0:name>
128
+
129
+ </rdf:Description>
130
+
131
+ <rdf:Description rdf:about="EAID_60287626_8818_44c8_B027_E79DE490D920">
132
+
133
+ <ns0:isAbstract xmlns:ns0="http://uml/2#">true</ns0:isAbstract>
134
+
135
+ </rdf:Description>
136
+
137
+ <rdf:Description rdf:about="EAID_60287626_8818_44c8_B027_E79DE490D920">
138
+
139
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
140
+
141
+ </rdf:Description>
142
+
143
+ <rdf:Description rdf:about="EAID_60287626_8818_44c8_B027_E79DE490D920">
144
+
145
+ <ns0:ownedOperation xmlns:ns0="http://uml/2#" rdf:resource="EAID_1A2BA12B_56FF_44b4_AB8E_605DD8B32DEB"/>
146
+
147
+ </rdf:Description>
148
+
149
+ <rdf:Description rdf:about="EAID_1A2BA12B_56FF_44b4_AB8E_605DD8B32DEB">
150
+
151
+ <rdf:type rdf:resource="http://uml/2#Operation"/>
152
+
153
+ </rdf:Description>
154
+
155
+ <rdf:Description rdf:about="EAID_1A2BA12B_56FF_44b4_AB8E_605DD8B32DEB">
156
+
157
+ <ns0:name xmlns:ns0="http://uml/2#">methodeAbstraite</ns0:name>
158
+
159
+ </rdf:Description>
160
+
161
+ <rdf:Description rdf:about="EAID_1A2BA12B_56FF_44b4_AB8E_605DD8B32DEB">
162
+
163
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
164
+
165
+ </rdf:Description>
166
+
167
+ <rdf:Description rdf:about="EAID_AA110724_8287_4045_B42E_4F1DEDE6A9E0">
168
+
169
+ <rdf:type rdf:resource="http://uml/2#Class"/>
170
+
171
+ </rdf:Description>
172
+
173
+ <rdf:Description rdf:about="EAID_AA110724_8287_4045_B42E_4F1DEDE6A9E0">
174
+
175
+ <ns0:name xmlns:ns0="http://uml/2#">ClasseAvecInnerClasseZ</ns0:name>
176
+
177
+ </rdf:Description>
178
+
179
+ <rdf:Description rdf:about="EAID_AA110724_8287_4045_B42E_4F1DEDE6A9E0">
180
+
181
+ <ns0:isAbstract xmlns:ns0="http://uml/2#"></ns0:isAbstract>
182
+
183
+ </rdf:Description>
184
+
185
+ <rdf:Description rdf:about="EAID_AA110724_8287_4045_B42E_4F1DEDE6A9E0">
186
+
187
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
188
+
189
+ </rdf:Description>
190
+
191
+ <rdf:Description rdf:about="EAID_9D4AD445_35CA_490b_B5DA_44D3DF1AA8C2">
192
+
193
+ <rdf:type rdf:resource="http://uml/2#Class"/>
194
+
195
+ </rdf:Description>
196
+
197
+ <rdf:Description rdf:about="EAID_9D4AD445_35CA_490b_B5DA_44D3DF1AA8C2">
198
+
199
+ <ns0:name xmlns:ns0="http://uml/2#">ClasseDeTest</ns0:name>
200
+
201
+ </rdf:Description>
202
+
203
+ <rdf:Description rdf:about="EAID_9D4AD445_35CA_490b_B5DA_44D3DF1AA8C2">
204
+
205
+ <ns0:isAbstract xmlns:ns0="http://uml/2#"></ns0:isAbstract>
206
+
207
+ </rdf:Description>
208
+
209
+ <rdf:Description rdf:about="EAID_9D4AD445_35CA_490b_B5DA_44D3DF1AA8C2">
210
+
211
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
212
+
213
+ </rdf:Description>
214
+
215
+ <rdf:Description rdf:about="_1524367564_1247_52673">
216
+
217
+ <ns0:ownedAttribute xmlns:ns0="http://uml/2#" rdf:resource="EAID_2E2B5550_BE72_4aab_87B6_BD84C629384B"/>
218
+
219
+ </rdf:Description>
220
+
221
+ <rdf:Description rdf:about="EAID_2E2B5550_BE72_4aab_87B6_BD84C629384B">
222
+
223
+ <rdf:type rdf:resource="http://uml/2#Property"/>
224
+
225
+ </rdf:Description>
226
+
227
+ <rdf:Description rdf:about="EAID_2E2B5550_BE72_4aab_87B6_BD84C629384B">
228
+
229
+ <ns0:name xmlns:ns0="http://uml/2#">prop1</ns0:name>
230
+
231
+ </rdf:Description>
232
+
233
+ <rdf:Description rdf:about="EAID_2E2B5550_BE72_4aab_87B6_BD84C629384B">
234
+
235
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
236
+
237
+ </rdf:Description>
238
+
239
+ <rdf:Description rdf:about="EAID_2E2B5550_BE72_4aab_87B6_BD84C629384B">
240
+
241
+ <ns0:type xmlns:ns0="http://uml/2#" rdf:resource="type/@xmi:idref"/>
242
+
243
+ </rdf:Description>
244
+
245
+ <rdf:Description rdf:about="_1524367564_1247_52673">
246
+
247
+ <ns0:ownedAttribute xmlns:ns0="http://uml/2#" rdf:resource="EAID_46659355_7299_43b8_9703_B73367F689DE"/>
248
+
249
+ </rdf:Description>
250
+
251
+ <rdf:Description rdf:about="EAID_46659355_7299_43b8_9703_B73367F689DE">
252
+
253
+ <rdf:type rdf:resource="http://uml/2#Property"/>
254
+
255
+ </rdf:Description>
256
+
257
+ <rdf:Description rdf:about="EAID_46659355_7299_43b8_9703_B73367F689DE">
258
+
259
+ <ns0:name xmlns:ns0="http://uml/2#">anIntAttribute</ns0:name>
260
+
261
+ </rdf:Description>
262
+
263
+ <rdf:Description rdf:about="EAID_46659355_7299_43b8_9703_B73367F689DE">
264
+
265
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
266
+
267
+ </rdf:Description>
268
+
269
+ <rdf:Description rdf:about="EAID_46659355_7299_43b8_9703_B73367F689DE">
270
+
271
+ <ns0:type xmlns:ns0="http://uml/2#" rdf:resource="type/@xmi:idref"/>
272
+
273
+ </rdf:Description>
274
+
275
+ <rdf:Description rdf:about="_1524367564_1247_52673">
276
+
277
+ <ns0:ownedAttribute xmlns:ns0="http://uml/2#" rdf:resource="EAID_8EE7DBE4_FCB6_42ec_8598_4AADCA400E5C"/>
278
+
279
+ </rdf:Description>
280
+
281
+ <rdf:Description rdf:about="EAID_8EE7DBE4_FCB6_42ec_8598_4AADCA400E5C">
282
+
283
+ <rdf:type rdf:resource="http://uml/2#Property"/>
284
+
285
+ </rdf:Description>
286
+
287
+ <rdf:Description rdf:about="EAID_8EE7DBE4_FCB6_42ec_8598_4AADCA400E5C">
288
+
289
+ <ns0:name xmlns:ns0="http://uml/2#">aStringAttribute</ns0:name>
290
+
291
+ </rdf:Description>
292
+
293
+ <rdf:Description rdf:about="EAID_8EE7DBE4_FCB6_42ec_8598_4AADCA400E5C">
294
+
295
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
296
+
297
+ </rdf:Description>
298
+
299
+ <rdf:Description rdf:about="EAID_8EE7DBE4_FCB6_42ec_8598_4AADCA400E5C">
300
+
301
+ <ns0:type xmlns:ns0="http://uml/2#" rdf:resource="type/@xmi:idref"/>
302
+
303
+ </rdf:Description>
304
+
305
+ <rdf:Description rdf:about="_1524367564_1247_52673">
306
+
307
+ <ns0:ownedAttribute xmlns:ns0="http://uml/2#" rdf:resource="EAID_E7E83D04_82A3_4551_BDF9_1DA0E2EFBBE6"/>
308
+
309
+ </rdf:Description>
310
+
311
+ <rdf:Description rdf:about="EAID_E7E83D04_82A3_4551_BDF9_1DA0E2EFBBE6">
312
+
313
+ <rdf:type rdf:resource="http://uml/2#Property"/>
314
+
315
+ </rdf:Description>
316
+
317
+ <rdf:Description rdf:about="EAID_E7E83D04_82A3_4551_BDF9_1DA0E2EFBBE6">
318
+
319
+ <ns0:name xmlns:ns0="http://uml/2#">aStaticIntAttribute</ns0:name>
320
+
321
+ </rdf:Description>
322
+
323
+ <rdf:Description rdf:about="EAID_E7E83D04_82A3_4551_BDF9_1DA0E2EFBBE6">
324
+
325
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
326
+
327
+ </rdf:Description>
328
+
329
+ <rdf:Description rdf:about="EAID_E7E83D04_82A3_4551_BDF9_1DA0E2EFBBE6">
330
+
331
+ <ns0:type xmlns:ns0="http://uml/2#" rdf:resource="type/@xmi:idref"/>
332
+
333
+ </rdf:Description>
334
+
335
+ <rdf:Description rdf:about="EAID_E7E83D04_82A3_4551_BDF9_1DA0E2EFBBE6">
336
+
337
+ <ns0:isStatic xmlns:ns0="http://uml/2#">true</ns0:isStatic>
338
+
339
+ </rdf:Description>
340
+
341
+ <rdf:Description rdf:about="_1524367564_1247_52673">
342
+
343
+ <ns0:ownedAttribute xmlns:ns0="http://uml/2#" rdf:resource="EAID_5CA2417B_0441_4ee3_880D_DD4096E1169D"/>
344
+
345
+ </rdf:Description>
346
+
347
+ <rdf:Description rdf:about="EAID_5CA2417B_0441_4ee3_880D_DD4096E1169D">
348
+
349
+ <rdf:type rdf:resource="http://uml/2#Property"/>
350
+
351
+ </rdf:Description>
352
+
353
+ <rdf:Description rdf:about="EAID_5CA2417B_0441_4ee3_880D_DD4096E1169D">
354
+
355
+ <ns0:name xmlns:ns0="http://uml/2#">aStringArrayAttribute</ns0:name>
356
+
357
+ </rdf:Description>
358
+
359
+ <rdf:Description rdf:about="EAID_5CA2417B_0441_4ee3_880D_DD4096E1169D">
360
+
361
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
362
+
363
+ </rdf:Description>
364
+
365
+ <rdf:Description rdf:about="EAID_5CA2417B_0441_4ee3_880D_DD4096E1169D">
366
+
367
+ <ns0:type xmlns:ns0="http://uml/2#" rdf:resource="type/@xmi:idref"/>
368
+
369
+ </rdf:Description>
370
+
371
+ <rdf:Description rdf:about="EAID_5CA2417B_0441_4ee3_880D_DD4096E1169D">
372
+
373
+ <ns0:lowerValue xmlns:ns0="http://uml/2#" rdf:resource="lowerValue/@xmi:id"/>
374
+
375
+ </rdf:Description>
376
+
377
+ <rdf:Description rdf:about="lowerValue/@xmi:id">
378
+
379
+ <rdf:type rdf:resource="http://uml/2#LiteralInteger"/>
380
+
381
+ </rdf:Description>
382
+
383
+ <rdf:Description rdf:about="lowerValue/@xmi:id">
384
+
385
+ <ns0:value xmlns:ns0="http://uml/2#">lowerValue/@value</ns0:value>
386
+
387
+ </rdf:Description>
388
+
389
+ <rdf:Description rdf:about="EAID_5CA2417B_0441_4ee3_880D_DD4096E1169D">
390
+
391
+ <ns0:upperValue xmlns:ns0="http://uml/2#" rdf:resource="upperValue/@xmi:id"/>
392
+
393
+ </rdf:Description>
394
+
395
+ <rdf:Description rdf:about="upperValue/@xmi:id">
396
+
397
+ <rdf:type rdf:resource="http://uml/2#LiteralUnlimitedNatural"/>
398
+
399
+ </rdf:Description>
400
+
401
+ <rdf:Description rdf:about="_1524367564_1425_52709_upperValue">
402
+
403
+ <ns0:value xmlns:ns0="http://uml/2#">-1</ns0:value>
404
+
405
+ </rdf:Description>
406
+
407
+ <rdf:Description rdf:about="EAID_F200877F_9149_42f9_A85E_7620074FB721">
408
+
409
+ <rdf:type rdf:resource="http://uml/2#Class"/>
410
+
411
+ </rdf:Description>
412
+
413
+ <rdf:Description rdf:about="EAID_F200877F_9149_42f9_A85E_7620074FB721">
414
+
415
+ <ns0:name xmlns:ns0="http://uml/2#">FondationClass</ns0:name>
416
+
417
+ </rdf:Description>
418
+
419
+ <rdf:Description rdf:about="EAID_F200877F_9149_42f9_A85E_7620074FB721">
420
+
421
+ <ns0:isAbstract xmlns:ns0="http://uml/2#"></ns0:isAbstract>
422
+
423
+ </rdf:Description>
424
+
425
+ <rdf:Description rdf:about="EAID_F200877F_9149_42f9_A85E_7620074FB721">
426
+
427
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
428
+
429
+ </rdf:Description>
430
+
431
+ <rdf:Description rdf:about="EAID_B7ECC32E_B8B2_4c13_B85E_3F048EC630C2">
432
+
433
+ <rdf:type rdf:resource="http://uml/2#Class"/>
434
+
435
+ </rdf:Description>
436
+
437
+ <rdf:Description rdf:about="EAID_B7ECC32E_B8B2_4c13_B85E_3F048EC630C2">
438
+
439
+ <ns0:name xmlns:ns0="http://uml/2#">FondationClass2</ns0:name>
440
+
441
+ </rdf:Description>
442
+
443
+ <rdf:Description rdf:about="EAID_B7ECC32E_B8B2_4c13_B85E_3F048EC630C2">
444
+
445
+ <ns0:isAbstract xmlns:ns0="http://uml/2#"></ns0:isAbstract>
446
+
447
+ </rdf:Description>
448
+
449
+ <rdf:Description rdf:about="EAID_B7ECC32E_B8B2_4c13_B85E_3F048EC630C2">
450
+
451
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
452
+
453
+ </rdf:Description>
454
+
455
+ <rdf:Description rdf:about="EAID_14BF974E_DFAB_40a9_8A47_D095E04E83E7">
456
+
457
+ <rdf:type rdf:resource="http://uml/2#Class"/>
458
+
459
+ </rdf:Description>
460
+
461
+ <rdf:Description rdf:about="EAID_14BF974E_DFAB_40a9_8A47_D095E04E83E7">
462
+
463
+ <ns0:name xmlns:ns0="http://uml/2#">RootClass</ns0:name>
464
+
465
+ </rdf:Description>
466
+
467
+ <rdf:Description rdf:about="EAID_14BF974E_DFAB_40a9_8A47_D095E04E83E7">
468
+
469
+ <ns0:isAbstract xmlns:ns0="http://uml/2#"></ns0:isAbstract>
470
+
471
+ </rdf:Description>
472
+
473
+ <rdf:Description rdf:about="EAID_14BF974E_DFAB_40a9_8A47_D095E04E83E7">
474
+
475
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
476
+
477
+ </rdf:Description>
478
+
479
+ <rdf:Description rdf:about="EAID_59F1624E_D011_4964_92C4_643AD2225A15">
480
+
481
+ <rdf:type rdf:resource="http://uml/2#Interface"/>
482
+
483
+ </rdf:Description>
484
+
485
+ <rdf:Description rdf:about="EAID_59F1624E_D011_4964_92C4_643AD2225A15">
486
+
487
+ <ns0:name xmlns:ns0="http://uml/2#">Interface1</ns0:name>
488
+
489
+ </rdf:Description>
490
+
491
+ <rdf:Description rdf:about="EAID_59F1624E_D011_4964_92C4_643AD2225A15">
492
+
493
+ <ns0:isAbstract xmlns:ns0="http://uml/2#">true</ns0:isAbstract>
494
+
495
+ </rdf:Description>
496
+
497
+ <rdf:Description rdf:about="EAID_59F1624E_D011_4964_92C4_643AD2225A15">
498
+
499
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
500
+
501
+ </rdf:Description>
502
+
503
+ <rdf:Description rdf:about="EAID_5400F4CB_ECD8_40e1_8E3D_FF895F39A1B0">
504
+
505
+ <rdf:type rdf:resource="http://uml/2#Interface"/>
506
+
507
+ </rdf:Description>
508
+
509
+ <rdf:Description rdf:about="EAID_5400F4CB_ECD8_40e1_8E3D_FF895F39A1B0">
510
+
511
+ <ns0:name xmlns:ns0="http://uml/2#">Interface2</ns0:name>
512
+
513
+ </rdf:Description>
514
+
515
+ <rdf:Description rdf:about="EAID_5400F4CB_ECD8_40e1_8E3D_FF895F39A1B0">
516
+
517
+ <ns0:isAbstract xmlns:ns0="http://uml/2#">true</ns0:isAbstract>
518
+
519
+ </rdf:Description>
520
+
521
+ <rdf:Description rdf:about="EAID_5400F4CB_ECD8_40e1_8E3D_FF895F39A1B0">
522
+
523
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
524
+
525
+ </rdf:Description>
526
+
527
+ <rdf:Description rdf:about="EAID_B9691AA7_1D11_4d93_8063_C9A11D6965BF">
528
+
529
+ <rdf:type rdf:resource="http://uml/2#Interface"/>
530
+
531
+ </rdf:Description>
532
+
533
+ <rdf:Description rdf:about="EAID_B9691AA7_1D11_4d93_8063_C9A11D6965BF">
534
+
535
+ <ns0:name xmlns:ns0="http://uml/2#">Interface3</ns0:name>
536
+
537
+ </rdf:Description>
538
+
539
+ <rdf:Description rdf:about="EAID_B9691AA7_1D11_4d93_8063_C9A11D6965BF">
540
+
541
+ <ns0:isAbstract xmlns:ns0="http://uml/2#">true</ns0:isAbstract>
542
+
543
+ </rdf:Description>
544
+
545
+ <rdf:Description rdf:about="EAID_B9691AA7_1D11_4d93_8063_C9A11D6965BF">
546
+
547
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
548
+
549
+ </rdf:Description>
550
+
551
+ <rdf:Description rdf:about="_1524367564_1247_52673">
552
+
553
+ <ns0:ownedAttribute xmlns:ns0="http://uml/2#" rdf:resource="EAID_2A63136A_5238_4bec_9143_A783D70029DE"/>
554
+
555
+ </rdf:Description>
556
+
557
+ <rdf:Description rdf:about="EAID_2A63136A_5238_4bec_9143_A783D70029DE">
558
+
559
+ <rdf:type rdf:resource="http://uml/2#Property"/>
560
+
561
+ </rdf:Description>
562
+
563
+ <rdf:Description rdf:about="EAID_2A63136A_5238_4bec_9143_A783D70029DE">
564
+
565
+ <ns0:name xmlns:ns0="http://uml/2#">uneString</ns0:name>
566
+
567
+ </rdf:Description>
568
+
569
+ <rdf:Description rdf:about="EAID_2A63136A_5238_4bec_9143_A783D70029DE">
570
+
571
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
572
+
573
+ </rdf:Description>
574
+
575
+ <rdf:Description rdf:about="EAID_2A63136A_5238_4bec_9143_A783D70029DE">
576
+
577
+ <ns0:type xmlns:ns0="http://uml/2#" rdf:resource="type/@xmi:idref"/>
578
+
579
+ </rdf:Description>
580
+
581
+ <rdf:Description rdf:about="EAID_2A63136A_5238_4bec_9143_A783D70029DE">
582
+
583
+ <ns0:isStatic xmlns:ns0="http://uml/2#">true</ns0:isStatic>
584
+
585
+ </rdf:Description>
586
+
587
+ <rdf:Description rdf:about="EAID_B9691AA7_1D11_4d93_8063_C9A11D6965BF">
588
+
589
+ <ns0:ownedOperation xmlns:ns0="http://uml/2#" rdf:resource="EAID_500D5147_B297_4ed1_B3E6_9D8FF798B14B"/>
590
+
591
+ </rdf:Description>
592
+
593
+ <rdf:Description rdf:about="EAID_500D5147_B297_4ed1_B3E6_9D8FF798B14B">
594
+
595
+ <rdf:type rdf:resource="http://uml/2#Operation"/>
596
+
597
+ </rdf:Description>
598
+
599
+ <rdf:Description rdf:about="EAID_500D5147_B297_4ed1_B3E6_9D8FF798B14B">
600
+
601
+ <ns0:name xmlns:ns0="http://uml/2#">getAnInt</ns0:name>
602
+
603
+ </rdf:Description>
604
+
605
+ <rdf:Description rdf:about="EAID_500D5147_B297_4ed1_B3E6_9D8FF798B14B">
606
+
607
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
608
+
609
+ </rdf:Description>
610
+
611
+ <rdf:Description rdf:about="EAID_6AB46136_766F_4efa_A16A_EE027E52AB73">
612
+
613
+ <rdf:type rdf:resource="http://uml/2#Interface"/>
614
+
615
+ </rdf:Description>
616
+
617
+ <rdf:Description rdf:about="EAID_6AB46136_766F_4efa_A16A_EE027E52AB73">
618
+
619
+ <ns0:name xmlns:ns0="http://uml/2#">Interface4</ns0:name>
620
+
621
+ </rdf:Description>
622
+
623
+ <rdf:Description rdf:about="EAID_6AB46136_766F_4efa_A16A_EE027E52AB73">
624
+
625
+ <ns0:isAbstract xmlns:ns0="http://uml/2#">true</ns0:isAbstract>
626
+
627
+ </rdf:Description>
628
+
629
+ <rdf:Description rdf:about="EAID_6AB46136_766F_4efa_A16A_EE027E52AB73">
630
+
631
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
632
+
633
+ </rdf:Description>
634
+
635
+ <rdf:Description rdf:about="EAID_9ACF4A81_FDB5_42cd_BB4D_AD1972681B68">
636
+
637
+ <rdf:type rdf:resource="http://uml/2#Interface"/>
638
+
639
+ </rdf:Description>
640
+
641
+ <rdf:Description rdf:about="EAID_9ACF4A81_FDB5_42cd_BB4D_AD1972681B68">
642
+
643
+ <ns0:name xmlns:ns0="http://uml/2#">Interface5</ns0:name>
644
+
645
+ </rdf:Description>
646
+
647
+ <rdf:Description rdf:about="EAID_9ACF4A81_FDB5_42cd_BB4D_AD1972681B68">
648
+
649
+ <ns0:isAbstract xmlns:ns0="http://uml/2#">true</ns0:isAbstract>
650
+
651
+ </rdf:Description>
652
+
653
+ <rdf:Description rdf:about="EAID_9ACF4A81_FDB5_42cd_BB4D_AD1972681B68">
654
+
655
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
656
+
657
+ </rdf:Description>
658
+
659
+ <rdf:Description rdf:about="_1524367564_1247_52673">
660
+
661
+ <ns0:ownedAttribute xmlns:ns0="http://uml/2#" rdf:resource="EAID_BDCC0108_563C_448b_8592_A1DBE1D3AE16"/>
662
+
663
+ </rdf:Description>
664
+
665
+ <rdf:Description rdf:about="EAID_BDCC0108_563C_448b_8592_A1DBE1D3AE16">
666
+
667
+ <rdf:type rdf:resource="http://uml/2#Property"/>
668
+
669
+ </rdf:Description>
670
+
671
+ <rdf:Description rdf:about="EAID_BDCC0108_563C_448b_8592_A1DBE1D3AE16">
672
+
673
+ <ns0:name xmlns:ns0="http://uml/2#">uneStringDansInterface5</ns0:name>
674
+
675
+ </rdf:Description>
676
+
677
+ <rdf:Description rdf:about="EAID_BDCC0108_563C_448b_8592_A1DBE1D3AE16">
678
+
679
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
680
+
681
+ </rdf:Description>
682
+
683
+ <rdf:Description rdf:about="EAID_BDCC0108_563C_448b_8592_A1DBE1D3AE16">
684
+
685
+ <ns0:type xmlns:ns0="http://uml/2#" rdf:resource="type/@xmi:idref"/>
686
+
687
+ </rdf:Description>
688
+
689
+ <rdf:Description rdf:about="EAID_BDCC0108_563C_448b_8592_A1DBE1D3AE16">
690
+
691
+ <ns0:isStatic xmlns:ns0="http://uml/2#">true</ns0:isStatic>
692
+
693
+ </rdf:Description>
694
+
695
+ <rdf:Description rdf:about="EAPK_02628C2D_4B42_4e3d_948F_A07DD8152828">
696
+
697
+ <ns0:ownedMember xmlns:ns0="http://uml/2#" rdf:resource="EAPK_8728FD15_D6DD_47eb_AD37_7B34841FC958"/>
698
+
699
+ </rdf:Description>
700
+
701
+ <rdf:Description rdf:about="EAPK_8728FD15_D6DD_47eb_AD37_7B34841FC958">
702
+
703
+ <rdf:type rdf:resource="http://uml/2#Package"/>
704
+
705
+ </rdf:Description>
706
+
707
+ <rdf:Description rdf:about="EAPK_8728FD15_D6DD_47eb_AD37_7B34841FC958">
708
+
709
+ <ns0:name xmlns:ns0="http://uml/2#">pack11</ns0:name>
710
+
711
+ </rdf:Description>
712
+
713
+ <rdf:Description rdf:about="EAPK_8728FD15_D6DD_47eb_AD37_7B34841FC958">
714
+
715
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
716
+
717
+ </rdf:Description>
718
+
719
+ <rdf:Description rdf:about="EAID_9E52BAB8_B4B3_4888_AF53_C884EB21EB74">
720
+
721
+ <rdf:type rdf:resource="http://uml/2#Class"/>
722
+
723
+ </rdf:Description>
724
+
725
+ <rdf:Description rdf:about="EAID_9E52BAB8_B4B3_4888_AF53_C884EB21EB74">
726
+
727
+ <ns0:name xmlns:ns0="http://uml/2#">ClassDeuxNxPkg</ns0:name>
728
+
729
+ </rdf:Description>
730
+
731
+ <rdf:Description rdf:about="EAID_9E52BAB8_B4B3_4888_AF53_C884EB21EB74">
732
+
733
+ <ns0:isAbstract xmlns:ns0="http://uml/2#"></ns0:isAbstract>
734
+
735
+ </rdf:Description>
736
+
737
+ <rdf:Description rdf:about="EAID_9E52BAB8_B4B3_4888_AF53_C884EB21EB74">
738
+
739
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
740
+
741
+ </rdf:Description>
742
+
743
+ <rdf:Description rdf:about="EAPK_290D6205_00C0_45f0_A3BF_0BF11BC28D42">
744
+
745
+ <ns0:ownedMember xmlns:ns0="http://uml/2#" rdf:resource="EAPK_3DCBE170_CC52_4cc2_9EA4_22E3060C869E"/>
746
+
747
+ </rdf:Description>
748
+
749
+ <rdf:Description rdf:about="EAPK_3DCBE170_CC52_4cc2_9EA4_22E3060C869E">
750
+
751
+ <rdf:type rdf:resource="http://uml/2#Package"/>
752
+
753
+ </rdf:Description>
754
+
755
+ <rdf:Description rdf:about="EAPK_3DCBE170_CC52_4cc2_9EA4_22E3060C869E">
756
+
757
+ <ns0:name xmlns:ns0="http://uml/2#">pack2</ns0:name>
758
+
759
+ </rdf:Description>
760
+
761
+ <rdf:Description rdf:about="EAPK_3DCBE170_CC52_4cc2_9EA4_22E3060C869E">
762
+
763
+ <ns0:visibility xmlns:ns0="http://uml/2#" rdf:resource="http://uml/2#visibilityKind_public"/>
764
+
765
+ </rdf:Description>
766
+
767
+ </rdf:RDF>
768
+