ontomde-demo-struts 1.0.6
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.
- data/History.txt +2 -0
- data/Manifest.txt +33 -0
- data/README.txt +79 -0
- data/Rakefile +22 -0
- data/bin/ontomde-demo-struts-install +11 -0
- data/demo/1-unpack.bat +6 -0
- data/demo/1-unpack.sh +5 -0
- data/demo/2-generate.bat +4 -0
- data/demo/2-generate.sh +5 -0
- data/demo/3-start-webapp.bat +7 -0
- data/demo/3-start-webapp.sh +4 -0
- data/demo/domain/pom.xml +61 -0
- data/demo/mda/clean-generated.sh +24 -0
- data/demo/mda/pom.xml +178 -0
- data/demo/mda/src/main/mda/customDataTypes.rb +5 -0
- data/demo/mda/src/main/mda/dbDiscriminatorCache.rb +74 -0
- data/demo/mda/src/main/mda/javaMapping.rb-notused +302 -0
- data/demo/mda/src/main/mda/mda.rb +0 -0
- data/demo/mda/src/main/model-oe6/Big_Furniture_Shop.ofp +0 -0
- data/demo/mda/src/main/model-oe6/README.txt +4 -0
- data/demo/mda/src/main/model-oe6/model.emx.nt +562 -0
- data/demo/mda/src/main/model/.project +11 -0
- data/demo/mda/src/main/model/model.emx +1779 -0
- data/demo/mda/src/main/model/model.emx.nt +3575 -0
- data/demo/mda/src/main/model/model.emx.nt_kb.pprj +1438 -0
- data/demo/mda/src/main/model/model.emx.nt_kb.rdf +25 -0
- data/demo/mda/src/main/model/model.emx.nt_kb.rdfs +2242 -0
- data/demo/mda/src/main/profil-uml/.project +11 -0
- data/demo/mda/src/main/profil-uml/OntoMDE-profil.epx +419 -0
- data/demo/mda/src/main/resources/formatter.properties +260 -0
- data/demo/pom.xml +102 -0
- data/demo/webapp/pom.xml +119 -0
- data/lib/ontomde-demo-struts.rb +1 -0
- metadata +97 -0
@@ -0,0 +1,74 @@
|
|
1
|
+
# saved discriminator numbers
|
2
|
+
# This file is read and rewritten by generator
|
3
|
+
def declarePredefinedDiscrimators()
|
4
|
+
# first parameter is java qualified class name
|
5
|
+
# second parameter is the identifier used in database
|
6
|
+
# when different java type are stored in a
|
7
|
+
# single table and need to be differenciated.
|
8
|
+
db_disc("package1.AdresseType2",0)
|
9
|
+
db_disc("package1.Contrat",1)
|
10
|
+
db_disc("xmda.test.methods.UserDatagetsession_1MPC",2)
|
11
|
+
db_disc("package1.Session",3)
|
12
|
+
db_disc("xmda.test.methods.UserDatagetDUPONT1MPC",4)
|
13
|
+
db_disc("xmda.test.methods.UserDatagetDUPONT2MPC",5)
|
14
|
+
db_disc("package1.AdresseType1",6)
|
15
|
+
db_disc("package1.Client",7)
|
16
|
+
db_disc("xmda.test.UserData",9)
|
17
|
+
db_disc("package1.Adresse",10)
|
18
|
+
db_disc("xmda.test.methods.UserDatainit__ns_8_strutsAndTest_emx_nt_kb_Instance_10002MPC",14)
|
19
|
+
db_disc("package1.Femme",15)
|
20
|
+
db_disc("package1.Homme",16)
|
21
|
+
db_disc("xmda.test.methods.UserDatainitDUPONT2MPC",17)
|
22
|
+
db_disc("xmda.test.methods.UserDatainitsession_1MPC",18)
|
23
|
+
db_disc("xmda.test.methods.UserDatainitDUPONT1MPC",19)
|
24
|
+
db_disc("package1.methods.ClientajoutRapideContratMPC",20)
|
25
|
+
db_disc("java.lang.Class",21)
|
26
|
+
db_disc("com.jbpm.wrapper.process.Process",22)
|
27
|
+
db_disc("package1.Deliver",25)
|
28
|
+
db_disc("xmda.bpm.client.Process<>",30)
|
29
|
+
db_disc("package1.DeliverBis",31)
|
30
|
+
db_disc("xmda.bpm.client.Process<String>",32)
|
31
|
+
db_disc("package1.GraphVizDemo",33)
|
32
|
+
db_disc("package1.BinaryFile",34)
|
33
|
+
end
|
34
|
+
# ###########################
|
35
|
+
# END OF USER MODIFIABLE ZONE
|
36
|
+
# ###########################
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
# Conversion to model URI
|
41
|
+
def db_disc(k,v)
|
42
|
+
::Muml_Class::DB_DISCRIMINATOR[::Muml_Class::DB_URI_ALIAS[k]]=v
|
43
|
+
end
|
44
|
+
::Muml_Class::DB_URI_ALIAS.merge!({
|
45
|
+
%{com.jbpm.wrapper.process.Process} => %{com.jbpm.wrapper.process.Process} ,
|
46
|
+
%{java.lang.Class} => %{java.lang.Class} ,
|
47
|
+
%{package1.Deliver} => %{ukb__BZ1m8Ja5Edy8MdcZyeb5Kw_proc} ,
|
48
|
+
%{package1.Femme} => %{ukb__DmkocIC5Edykv_1FYm8uuQ} ,
|
49
|
+
%{package1.AdresseType1} => %{ukb__OwYN4EDQEdyns9CNPlmfXw} ,
|
50
|
+
%{package1.Adresse} => %{ukb__RHhQkDuPEdyltIorAFYEcg} ,
|
51
|
+
%{package1.AdresseType2} => %{ukb__VQg6EEDQEdyns9CNPlmfXw} ,
|
52
|
+
%{package1.DeliverBis} => %{ukb__XwnHEIu1EdyxkaPAgImFEg} ,
|
53
|
+
%{package1.Homme} => %{ukb___gYPIIC4Edykv_1FYm8uuQ} ,
|
54
|
+
%{package1.BinaryFile} => %{ukb__gLWKwKKKEdy9rpjqfOC8lg} ,
|
55
|
+
%{package1.Session} => %{ukb__jQ4fIDuOEdyltIorAFYEcg} ,
|
56
|
+
%{package1.Contrat} => %{ukb__p4-NcDuOEdyltIorAFYEcg} ,
|
57
|
+
%{package1.Client} => %{ukb__rtzBEDuOEdyltIorAFYEcg} ,
|
58
|
+
%{package1.methods.ClientajoutRapideContratMPC} => %{ukb__rtzBEDuOEdyltIorAFYEcgukb__ozRUMDuPEdyltIorAFYEcg_mpc} ,
|
59
|
+
%{package1.GraphVizDemo} => %{ukb__xEb28MkaEdyiw7_cul5zvw} ,
|
60
|
+
%{xmda.bpm.client.Process<>} => %{xmda.bpm.client.Process<>} ,
|
61
|
+
%{xmda.bpm.client.Process<String>} => %{xmda.bpm.client.Process<String>} ,
|
62
|
+
%{xmda.test.UserData} => %{xmda.test.UserData} ,
|
63
|
+
%{xmda.test.methods.UserDatagetDUPONT1MPC} => %{xmda.test.UserDatagetDUPONT1_mpc} ,
|
64
|
+
%{xmda.test.methods.UserDatagetDUPONT2MPC} => %{xmda.test.UserDatagetDUPONT2_mpc} ,
|
65
|
+
%{xmda.test.methods.UserDatagetsession_1MPC} => %{xmda.test.UserDatagetsession_1_mpc} ,
|
66
|
+
%{xmda.test.methods.UserDatainit__ns_8_strutsAndTest_emx_nt_kb_Instance_10002MPC} => %{xmda.test.UserDatainit__ns_8_strutsAndTest_emx_nt_kb_Instance_10002_mpc} ,
|
67
|
+
%{xmda.test.methods.UserDatainitDUPONT1MPC} => %{xmda.test.UserDataxmda.test.UserDatainitDUPONT1_mpc} ,
|
68
|
+
%{xmda.test.methods.UserDatainitDUPONT2MPC} => %{xmda.test.UserDataxmda.test.UserDatainitDUPONT2_mpc} ,
|
69
|
+
%{xmda.test.methods.UserDatainitsession_1MPC} => %{xmda.test.UserDataxmda.test.UserDatainitsession_1_mpc} ,
|
70
|
+
})
|
71
|
+
declarePredefinedDiscrimators();
|
72
|
+
#free ressources
|
73
|
+
def declarePredefinedDiscrimators()
|
74
|
+
end
|
@@ -0,0 +1,302 @@
|
|
1
|
+
#Template used for jsp input field generation
|
2
|
+
|
3
|
+
#wrapper to easylly create a new datatype mapping
|
4
|
+
#* umlDataTypeName is the name of the data type in source uml model
|
5
|
+
#* baseMapping is the base definition mapping to derive from
|
6
|
+
#* regexp is the string regexp used for display
|
7
|
+
def addDataTypeMapping(umlDataTypeName,baseMapping,regexp=nil,&block)
|
8
|
+
rubyName=umlDataTypeName.tr('^a-zA-Z0-9','_')
|
9
|
+
s=%{
|
10
|
+
class Java_mapping_#{rubyName} < #{baseMapping.name}
|
11
|
+
include Singleton
|
12
|
+
def appliesTo?(datatype)
|
13
|
+
return datatype.uml_name.to_s=="#{umlDataTypeName}"
|
14
|
+
end
|
15
|
+
#{regexp.nil? ? "" : %{
|
16
|
+
def getValidationRegexp
|
17
|
+
return /#{regexp.source}/
|
18
|
+
end
|
19
|
+
}
|
20
|
+
}
|
21
|
+
end
|
22
|
+
Java_mapping_#{rubyName}.class_eval( &block ) unless block.nil?
|
23
|
+
|
24
|
+
Java_mapping_#{rubyName}.instance #register
|
25
|
+
}
|
26
|
+
t=eval s
|
27
|
+
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
class Java_mapping
|
32
|
+
include Singleton
|
33
|
+
def getMappings
|
34
|
+
return @@types
|
35
|
+
end
|
36
|
+
@@types=Array.new
|
37
|
+
def initialize
|
38
|
+
return if self.class==Java_mapping
|
39
|
+
@@types << self
|
40
|
+
log.debug { %{registered(##{@@types.size}): #{self.class}} }
|
41
|
+
end
|
42
|
+
#returns true if this templates applies to datatype
|
43
|
+
def appliesTo?(datatype)
|
44
|
+
# inheriting class should redefine this method
|
45
|
+
log.error %{appliesTo? not implemented for #{self.class}}
|
46
|
+
return false
|
47
|
+
end
|
48
|
+
def getTemplate(datatype)
|
49
|
+
@@types.each {|t|
|
50
|
+
next unless t.appliesTo?(datatype)
|
51
|
+
return t
|
52
|
+
}
|
53
|
+
if !datatype.context[:silentlyForceUnknownDatatypeToString,false]
|
54
|
+
msg= %{No template #{self.class} found for datatype "#{datatype}"}
|
55
|
+
log.error msg unless log_already_displayed?(msg)
|
56
|
+
end
|
57
|
+
|
58
|
+
return Java_mapping_Text.instance
|
59
|
+
#return Java_mapping_error.instance
|
60
|
+
end
|
61
|
+
|
62
|
+
def getJavaType
|
63
|
+
# inheriting class should redefine this method
|
64
|
+
log.error %{getJavaType not implemented for #{self.class}}
|
65
|
+
return %{/* TODO: implement ruby getJavaType for #{self.class}*/}
|
66
|
+
end
|
67
|
+
|
68
|
+
# max length of this element represented as a string
|
69
|
+
attr :maxStringLength
|
70
|
+
attr_writer :maxStringLength
|
71
|
+
@maxStringLength=nil
|
72
|
+
|
73
|
+
def getValidationRegexp
|
74
|
+
#log.error %{getValidationRegexp not implemented for #{self.class}}
|
75
|
+
return nil #%{/* TODO: implement ruby getValidationRegexp for #{self.class}*/}
|
76
|
+
end
|
77
|
+
end
|
78
|
+
class Java_mapping_Text < Java_mapping
|
79
|
+
include Singleton
|
80
|
+
|
81
|
+
#default string length
|
82
|
+
@maxStringLength=10
|
83
|
+
|
84
|
+
MATCHING_UML_NAME=["String","string"]
|
85
|
+
#MATCHING_JAVA_NAME=["String","java.lang.String"]
|
86
|
+
def appliesTo?(datatype)
|
87
|
+
return true if MATCHING_UML_NAME.include?(datatype.uml_name_one)
|
88
|
+
#return true if MATCHING_JAVA_NAME.include?(datatype.java_qualifiedName)
|
89
|
+
return false
|
90
|
+
end
|
91
|
+
|
92
|
+
def getJavaType
|
93
|
+
return "java.lang.String"
|
94
|
+
end
|
95
|
+
end
|
96
|
+
class Java_mapping_Ordinal < Java_mapping_Text
|
97
|
+
include Singleton
|
98
|
+
end
|
99
|
+
|
100
|
+
class Java_mapping_Integer < Java_mapping_Ordinal
|
101
|
+
include Singleton
|
102
|
+
MATCHING_UML_NAME=["integer","Integer","int"]
|
103
|
+
#MATCHING_JAVA_NAME=[]
|
104
|
+
def appliesTo?(datatype)
|
105
|
+
return true if MATCHING_UML_NAME.include?(datatype.uml_name_one)
|
106
|
+
# return true if MATCHING_JAVA_NAME.include?(datatype.java_qualifiedName)
|
107
|
+
return false
|
108
|
+
end
|
109
|
+
|
110
|
+
|
111
|
+
def getJavaType
|
112
|
+
return "int"
|
113
|
+
end
|
114
|
+
|
115
|
+
end
|
116
|
+
class Java_mapping_Long < Java_mapping_Ordinal
|
117
|
+
include Singleton
|
118
|
+
MATCHING_UML_NAME=["long"]
|
119
|
+
#MATCHING_JAVA_NAME=[]
|
120
|
+
def appliesTo?(datatype)
|
121
|
+
return true if MATCHING_UML_NAME.include?(datatype.uml_name_one)
|
122
|
+
# return true if MATCHING_JAVA_NAME.include?(datatype.java_qualifiedName)
|
123
|
+
return false
|
124
|
+
end
|
125
|
+
def getJavaType
|
126
|
+
return "long"
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
|
131
|
+
class Java_mapping_File < Java_mapping
|
132
|
+
include Singleton
|
133
|
+
MATCHING_UML_NAME=["file"]
|
134
|
+
def appliesTo?(datatype)
|
135
|
+
return false unless datatype.kind_of?(Muml_DataType)
|
136
|
+
return true if MATCHING_UML_NAME.include?(datatype.uml_name_one)
|
137
|
+
#return datatype.struts_isBlob?
|
138
|
+
#return ["image"].include?(datatype.java_qualifiedName)
|
139
|
+
end
|
140
|
+
end
|
141
|
+
|
142
|
+
class Java_mapping_Boolean < Java_mapping
|
143
|
+
include Singleton
|
144
|
+
MATCHING_UML_NAME=["Boolean"]
|
145
|
+
#MATCHING_JAVA_NAME=[]
|
146
|
+
def appliesTo?(datatype)
|
147
|
+
return true if MATCHING_UML_NAME.include?(datatype.uml_name_one)
|
148
|
+
# return true if MATCHING_JAVA_NAME.include?(datatype.java_qualifiedName)
|
149
|
+
return false
|
150
|
+
end
|
151
|
+
|
152
|
+
#name of the key used by struts to referece
|
153
|
+
#current bean in session.
|
154
|
+
STRUTS_BEAN_KEY= "org.apache.struts.taglib.html.BEAN";
|
155
|
+
|
156
|
+
|
157
|
+
def getJavaType
|
158
|
+
return "boolean"
|
159
|
+
end
|
160
|
+
|
161
|
+
end
|
162
|
+
|
163
|
+
#struts jsp template for a timestamp datatype.
|
164
|
+
#A timestamp is a precise periode in time, including date,hours,minutes and seconds.
|
165
|
+
#NOTE:
|
166
|
+
# "Date" datatype name is discourage because it is ambiguous.
|
167
|
+
# (a java date is a timestamp)
|
168
|
+
# Calendar and TimeStamp should be prefered.
|
169
|
+
class Java_mapping_TimeStamp < Java_mapping
|
170
|
+
include Singleton
|
171
|
+
MATCHING_UML_NAME=["TimeStamp","Date"]
|
172
|
+
#MATCHING_JAVA_NAME=[]
|
173
|
+
def appliesTo?(datatype)
|
174
|
+
return true if MATCHING_UML_NAME.include?(datatype.uml_name_one)
|
175
|
+
#return true if MATCHING_JAVA_NAME.include?(datatype.java_qualifiedName)
|
176
|
+
return false
|
177
|
+
end
|
178
|
+
def getValidationRegexp
|
179
|
+
return nil
|
180
|
+
end
|
181
|
+
def getJavaType
|
182
|
+
return "java.util.Date"
|
183
|
+
end
|
184
|
+
|
185
|
+
end
|
186
|
+
|
187
|
+
#struts jsp template for a Calendar datatype.
|
188
|
+
#A Calendar datatype is a calendar date, not including hours,minutes and seconds
|
189
|
+
#A Calendar is not to be mistaken for a TimeStamp
|
190
|
+
#NOTE:
|
191
|
+
# "Date" datatype name is not used because it is ambiguous.
|
192
|
+
# Calendar and TimeStamp are used instead
|
193
|
+
class Java_mapping_Calendar < Java_mapping
|
194
|
+
include Singleton
|
195
|
+
MATCHING_UML_NAME=["Calendar"]
|
196
|
+
#MATCHING_JAVA_NAME=[]
|
197
|
+
def appliesTo?(datatype)
|
198
|
+
return true if MATCHING_UML_NAME.include?(datatype.uml_name_one)
|
199
|
+
#return true if MATCHING_JAVA_NAME.include?(datatype.java_qualifiedName)
|
200
|
+
return false
|
201
|
+
end
|
202
|
+
|
203
|
+
def getValidationRegexp
|
204
|
+
return nil
|
205
|
+
end
|
206
|
+
def getJavaType
|
207
|
+
return "java.util.Date"
|
208
|
+
end
|
209
|
+
|
210
|
+
end
|
211
|
+
|
212
|
+
|
213
|
+
|
214
|
+
|
215
|
+
class Java_mapping_GenericClass < Java_mapping
|
216
|
+
include Singleton
|
217
|
+
def appliesTo?(datatype)
|
218
|
+
return false if datatype.kind_of?(Muml_Enumeration)
|
219
|
+
return false if datatype.kind_of?(Muml_DataType)
|
220
|
+
#return true if datatype.kind_of?(Muml_Class)
|
221
|
+
return true
|
222
|
+
end
|
223
|
+
|
224
|
+
def getFormCopyTo(field)
|
225
|
+
a=field
|
226
|
+
if a.umlx_oneSide?
|
227
|
+
return %{_to.set#{a.java_NameBean}(this.get#{a.java_NameBean}().compareTo("nil")==0 ? null : #{a.uml_type_one.java_DAOClass_one.java_qualifiedName}.find(Long.parseLong(this.get#{a.java_NameBean}())));\n}
|
228
|
+
else # many
|
229
|
+
cm=a.java_getCollectionMapping
|
230
|
+
return <<END333
|
231
|
+
{ // UML: #{field.uml_name}
|
232
|
+
String[] src=this.get#{a.java_NameBean}();
|
233
|
+
#{cm.addCollectionInterface(a.uml_type_one.java_qualifiedName)} newCol= #{cm.addNew(a.uml_type_one.java_qualifiedName)};
|
234
|
+
int max=src==null ? 0 : src.length;
|
235
|
+
#{a.uml_type_one.java_qualifiedName} item=null;
|
236
|
+
for(int i=0; i<max;i++) {
|
237
|
+
//log.error("loading : "+src[i]);
|
238
|
+
if(src[i]==null) continue;
|
239
|
+
item=#{a.uml_type_one.java_DAOClass_one.java_qualifiedName}.find(Long.parseLong(src[i]));
|
240
|
+
newCol.add(item);
|
241
|
+
}
|
242
|
+
_to.set#{a.java_NameBean}(newCol);
|
243
|
+
}
|
244
|
+
END333
|
245
|
+
end
|
246
|
+
end
|
247
|
+
def getFormInitFrom(field)
|
248
|
+
a=field
|
249
|
+
if a.umlx_oneSide?
|
250
|
+
return %{this.set#{a.java_NameBean}(_from.get#{a.java_NameBean}()==null? "nil" : Long.toString(_from.get#{a.java_NameBean}().getId()));\n}
|
251
|
+
else
|
252
|
+
return %{
|
253
|
+
{ /*STRUTS:2001*/
|
254
|
+
this.set#{a.java_NameBean}(null);
|
255
|
+
Iterator<?> iter=_from.get#{a.java_NameBean}().iterator();
|
256
|
+
#{a.uml_type_one.java_qualifiedName} item=null;
|
257
|
+
while(iter.hasNext()){
|
258
|
+
item=(#{a.uml_type_one.java_qualifiedName})iter.next();
|
259
|
+
this.add#{a.java_NameBean}(Long.toString(item.getId()));
|
260
|
+
}
|
261
|
+
}
|
262
|
+
}
|
263
|
+
end
|
264
|
+
end
|
265
|
+
def getJavaType
|
266
|
+
mkfljmlkdq
|
267
|
+
end
|
268
|
+
|
269
|
+
end
|
270
|
+
|
271
|
+
class Java_mapping_GenericEnum < Java_mapping
|
272
|
+
include Singleton
|
273
|
+
def appliesTo?(datatype)
|
274
|
+
return true if datatype.kind_of?(Muml_Enumeration)
|
275
|
+
return false
|
276
|
+
end
|
277
|
+
|
278
|
+
|
279
|
+
NULL_ENUM_VALUE_AS_STRING="nil"
|
280
|
+
def getFormCopyTo(field)
|
281
|
+
a=field
|
282
|
+
return %{_to.set#{a.java_NameBean}(this.get#{a.java_NameBean}().compareTo("#{NULL_ENUM_VALUE_AS_STRING}")!=0 ? Enum.valueOf(#{a.uml_type_one.java_qualifiedName}.class,this.get#{a.java_NameBean}()):null);\n}
|
283
|
+
end
|
284
|
+
def getFormInitFrom(field)
|
285
|
+
#return "this.set#{field.java_NameBean}(_from.get#{field.java_NameBean}()==null ? -1 :_from.get#{field.java_NameBean}().ordinal());\n"
|
286
|
+
return %{this.set#{field.java_NameBean}(_from.get#{field.java_NameBean}()==null ? "#{NULL_ENUM_VALUE_AS_STRING}" :_from.get#{field.java_NameBean}().name());\n}
|
287
|
+
end
|
288
|
+
|
289
|
+
|
290
|
+
end
|
291
|
+
Java_mapping_GenericEnum.instance #register
|
292
|
+
|
293
|
+
Java_mapping_Calendar.instance #register
|
294
|
+
Java_mapping_Text.instance #register
|
295
|
+
Java_mapping_File.instance #register
|
296
|
+
Java_mapping_Boolean.instance #register
|
297
|
+
Java_mapping_TimeStamp.instance #register
|
298
|
+
Java_mapping_GenericClass.instance #register
|
299
|
+
Java_mapping_Long.instance #register
|
300
|
+
Java_mapping_Integer.instance #register
|
301
|
+
|
302
|
+
|
File without changes
|
Binary file
|
@@ -0,0 +1,562 @@
|
|
1
|
+
#!ontomdx
|
2
|
+
# END of IMPORTS
|
3
|
+
# model export
|
4
|
+
# model name=
|
5
|
+
<_1600127020_250_11899> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Model> .
|
6
|
+
<_1600127020_250_11899> <http://uml/2#name> "05 Data Model" .
|
7
|
+
<_1600127020_250_11899> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
8
|
+
<_1600127020_250_11899> <http://uml/2#ownedMember> <_1600127032_32_23716> .
|
9
|
+
<_1600127032_32_23716> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
|
10
|
+
<_1600127032_32_23716> <http://uml/2#name> "org" .
|
11
|
+
<_1600127032_32_23716> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
12
|
+
<_1600127032_32_23716> <http://uml/2#ownedMember> <_1600127032_33_23717> .
|
13
|
+
<_1600127032_33_23717> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
|
14
|
+
<_1600127032_33_23717> <http://uml/2#name> "bigshop" .
|
15
|
+
<_1600127032_33_23717> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
16
|
+
<_1600127032_33_23717> <http://uml/2#ownedMember> <_1600127020_1325_20750> .
|
17
|
+
<_1600127020_1325_20750> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
|
18
|
+
<_1600127020_1325_20750> <http://uml/2#name> "Ikea Information System" .
|
19
|
+
<_1600127020_1325_20750> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
20
|
+
<_1600127020_1325_20750> <http://uml/2#ownedMember> <_1600127020_725_12487> .
|
21
|
+
<_1600127020_725_12487> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
|
22
|
+
<_1600127020_725_12487> <http://uml/2#name> "" .
|
23
|
+
<_1600127020_725_12487> <http://uml/2#memberEnd> <_1600127020_723_12485> .
|
24
|
+
<_1600127020_725_12487> <http://uml/2#memberEnd> <_1600127020_724_12486> .
|
25
|
+
<_1600127020_725_12487> <http://uml/2#ownedEnd> <_1600127020_724_12486> .
|
26
|
+
<_1600127020_724_12486> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
27
|
+
<_1600127020_724_12486> <http://uml/2#name> "" .
|
28
|
+
<_1600127020_724_12486> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
29
|
+
<_1600127020_724_12486> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
|
30
|
+
# appendRDFInTagURI
|
31
|
+
<_1600127020_724_12486> <http://uml/2#association> <_1600127020_725_12487> .
|
32
|
+
<_1600127020_724_12486> <http://uml/2#type> <_1600127020_705_12467> .
|
33
|
+
# multiplicity upperValue
|
34
|
+
<_1600127020_724_12486> <http://uml/2#upperValue> <_1600127020_724_12486_upperValue> .
|
35
|
+
<_1600127020_724_12486_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
36
|
+
<_1600127020_724_12486_upperValue> <http://uml/2#value> "1" .
|
37
|
+
# multiplicity lowerValue
|
38
|
+
<_1600127020_724_12486> <http://uml/2#lowerValue> <_1600127020_724_12486_lowerValue> .
|
39
|
+
<_1600127020_724_12486_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
40
|
+
<_1600127020_724_12486_lowerValue> <http://uml/2#value> "1" .
|
41
|
+
<_1600127020_1325_20750> <http://uml/2#ownedMember> <_1600127020_735_12497> .
|
42
|
+
<_1600127020_735_12497> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
|
43
|
+
<_1600127020_735_12497> <http://uml/2#name> "" .
|
44
|
+
<_1600127020_735_12497> <http://uml/2#memberEnd> <_1600127020_733_12495> .
|
45
|
+
<_1600127020_735_12497> <http://uml/2#memberEnd> <_1600127020_734_12496> .
|
46
|
+
<_1600127020_735_12497> <http://uml/2#ownedEnd> <_1600127020_734_12496> .
|
47
|
+
<_1600127020_734_12496> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
48
|
+
<_1600127020_734_12496> <http://uml/2#name> "" .
|
49
|
+
<_1600127020_734_12496> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
50
|
+
<_1600127020_734_12496> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
|
51
|
+
# appendRDFInTagURI
|
52
|
+
<_1600127020_734_12496> <http://uml/2#association> <_1600127020_735_12497> .
|
53
|
+
<_1600127020_734_12496> <http://uml/2#type> <_1600127020_705_12467> .
|
54
|
+
# multiplicity upperValue
|
55
|
+
<_1600127020_734_12496> <http://uml/2#upperValue> <_1600127020_734_12496_upperValue> .
|
56
|
+
<_1600127020_734_12496_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
57
|
+
<_1600127020_734_12496_upperValue> <http://uml/2#value> "1" .
|
58
|
+
# multiplicity lowerValue
|
59
|
+
<_1600127020_734_12496> <http://uml/2#lowerValue> <_1600127020_734_12496_lowerValue> .
|
60
|
+
<_1600127020_734_12496_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
61
|
+
<_1600127020_734_12496_lowerValue> <http://uml/2#value> "1" .
|
62
|
+
<_1600127020_1325_20750> <http://uml/2#ownedMember> <_1600127020_745_12507> .
|
63
|
+
<_1600127020_745_12507> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
|
64
|
+
<_1600127020_745_12507> <http://uml/2#name> "" .
|
65
|
+
<_1600127020_745_12507> <http://uml/2#memberEnd> <_1600127020_743_12505> .
|
66
|
+
<_1600127020_745_12507> <http://uml/2#memberEnd> <_1600127020_744_12506> .
|
67
|
+
<_1600127020_745_12507> <http://uml/2#ownedEnd> <_1600127020_744_12506> .
|
68
|
+
<_1600127020_744_12506> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
69
|
+
<_1600127020_744_12506> <http://uml/2#name> "" .
|
70
|
+
<_1600127020_744_12506> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
71
|
+
<_1600127020_744_12506> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
|
72
|
+
# appendRDFInTagURI
|
73
|
+
<_1600127020_744_12506> <http://uml/2#association> <_1600127020_745_12507> .
|
74
|
+
<_1600127020_744_12506> <http://uml/2#type> <_1600127020_705_12467> .
|
75
|
+
# multiplicity upperValue
|
76
|
+
<_1600127020_744_12506> <http://uml/2#upperValue> <_1600127020_744_12506_upperValue> .
|
77
|
+
<_1600127020_744_12506_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
78
|
+
<_1600127020_744_12506_upperValue> <http://uml/2#value> "1" .
|
79
|
+
# multiplicity lowerValue
|
80
|
+
<_1600127020_744_12506> <http://uml/2#lowerValue> <_1600127020_744_12506_lowerValue> .
|
81
|
+
<_1600127020_744_12506_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
82
|
+
<_1600127020_744_12506_lowerValue> <http://uml/2#value> "1" .
|
83
|
+
<_1600127020_1325_20750> <http://uml/2#ownedMember> <_1600127020_943_12821> .
|
84
|
+
<_1600127020_943_12821> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
|
85
|
+
<_1600127020_943_12821> <http://uml/2#name> "" .
|
86
|
+
<_1600127020_943_12821> <http://uml/2#memberEnd> <_1600127020_941_12819> .
|
87
|
+
<_1600127020_943_12821> <http://uml/2#memberEnd> <_1600127020_942_12820> .
|
88
|
+
<_1600127020_943_12821> <http://uml/2#ownedEnd> <_1600127020_942_12820> .
|
89
|
+
<_1600127020_942_12820> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
90
|
+
<_1600127020_942_12820> <http://uml/2#name> "" .
|
91
|
+
<_1600127020_942_12820> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
92
|
+
<_1600127020_942_12820> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
|
93
|
+
# appendRDFInTagURI
|
94
|
+
<_1600127020_942_12820> <http://uml/2#association> <_1600127020_943_12821> .
|
95
|
+
<_1600127020_942_12820> <http://uml/2#type> <_1600127020_705_12467> .
|
96
|
+
# multiplicity upperValue
|
97
|
+
<_1600127020_942_12820> <http://uml/2#upperValue> <_1600127020_942_12820_upperValue> .
|
98
|
+
<_1600127020_942_12820_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
99
|
+
<_1600127020_942_12820_upperValue> <http://uml/2#value> "1" .
|
100
|
+
# multiplicity lowerValue
|
101
|
+
<_1600127020_942_12820> <http://uml/2#lowerValue> <_1600127020_942_12820_lowerValue> .
|
102
|
+
<_1600127020_942_12820_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
103
|
+
<_1600127020_942_12820_lowerValue> <http://uml/2#value> "1" .
|
104
|
+
<_1600127020_1325_20750> <http://uml/2#ownedMember> <_1600127020_705_12467> .
|
105
|
+
<_1600127020_705_12467> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
|
106
|
+
<_1600127020_705_12467> <http://uml/2#name> "Ikea Shop Information System" .
|
107
|
+
<_1600127020_705_12467> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
108
|
+
<_1600127020_705_12467> <http://uml/2#ownedComment> <_1600127020_1380_20862> .
|
109
|
+
<_1600127020_1380_20862> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
|
110
|
+
#TODO export type de la note
|
111
|
+
<_1600127020_1380_20862> <http://uml/2#body> "IKEA Shop Information system is the root element.
There is one IKEA Information System per IKEA shop location." .
|
112
|
+
<_1600127020_705_12467> <http://uml/2#ownedAttribute> <_1600127020_1915_23384> .
|
113
|
+
<_1600127020_1915_23384> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
114
|
+
<_1600127020_1915_23384> <http://uml/2#name> "shop location" .
|
115
|
+
<_1600127020_1915_23384> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
116
|
+
<_1600127020_1915_23384> <http://uml/2#type> <_4_13_8644> .
|
117
|
+
<_1600127020_705_12467> <http://uml/2#ownedAttribute> <_1600127020_723_12485> .
|
118
|
+
<_1600127020_723_12485> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
119
|
+
<_1600127020_723_12485> <http://uml/2#name> "orders" .
|
120
|
+
<_1600127020_723_12485> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
121
|
+
<_1600127020_723_12485> <http://uml/2#aggregation> <http://uml/2#aggregationKind_composite> .
|
122
|
+
# appendRDFInTagURI
|
123
|
+
<_1600127020_723_12485> <http://uml/2#association> <_1600127020_725_12487> .
|
124
|
+
<_1600127020_723_12485> <http://uml/2#type> <_1600127020_252_11902> .
|
125
|
+
# multiplicity upperValue
|
126
|
+
<_1600127020_723_12485> <http://uml/2#upperValue> <_1600127020_723_12485_upperValue> .
|
127
|
+
<_1600127020_723_12485_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
|
128
|
+
<_1600127020_723_12485_upperValue> <http://uml/2#value> "-1" .
|
129
|
+
# multiplicity lowerValue
|
130
|
+
<_1600127020_723_12485> <http://uml/2#lowerValue> <_1600127020_723_12485_lowerValue> .
|
131
|
+
<_1600127020_723_12485_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
132
|
+
<_1600127020_723_12485_lowerValue> <http://uml/2#value> "0" .
|
133
|
+
<_1600127020_705_12467> <http://uml/2#ownedAttribute> <_1600127020_733_12495> .
|
134
|
+
<_1600127020_733_12495> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
135
|
+
<_1600127020_733_12495> <http://uml/2#name> "payments" .
|
136
|
+
<_1600127020_733_12495> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
137
|
+
<_1600127020_733_12495> <http://uml/2#aggregation> <http://uml/2#aggregationKind_composite> .
|
138
|
+
# appendRDFInTagURI
|
139
|
+
<_1600127020_733_12495> <http://uml/2#association> <_1600127020_735_12497> .
|
140
|
+
<_1600127020_733_12495> <http://uml/2#type> <_1600127020_690_12443> .
|
141
|
+
# multiplicity upperValue
|
142
|
+
<_1600127020_733_12495> <http://uml/2#upperValue> <_1600127020_733_12495_upperValue> .
|
143
|
+
<_1600127020_733_12495_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
|
144
|
+
<_1600127020_733_12495_upperValue> <http://uml/2#value> "-1" .
|
145
|
+
# multiplicity lowerValue
|
146
|
+
<_1600127020_733_12495> <http://uml/2#lowerValue> <_1600127020_733_12495_lowerValue> .
|
147
|
+
<_1600127020_733_12495_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
148
|
+
<_1600127020_733_12495_lowerValue> <http://uml/2#value> "0" .
|
149
|
+
<_1600127020_705_12467> <http://uml/2#ownedAttribute> <_1600127020_743_12505> .
|
150
|
+
<_1600127020_743_12505> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
151
|
+
<_1600127020_743_12505> <http://uml/2#name> "products" .
|
152
|
+
<_1600127020_743_12505> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
153
|
+
<_1600127020_743_12505> <http://uml/2#aggregation> <http://uml/2#aggregationKind_composite> .
|
154
|
+
# appendRDFInTagURI
|
155
|
+
<_1600127020_743_12505> <http://uml/2#association> <_1600127020_745_12507> .
|
156
|
+
<_1600127020_743_12505> <http://uml/2#type> <_1600127020_271_11926> .
|
157
|
+
# multiplicity upperValue
|
158
|
+
<_1600127020_743_12505> <http://uml/2#upperValue> <_1600127020_743_12505_upperValue> .
|
159
|
+
<_1600127020_743_12505_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
|
160
|
+
<_1600127020_743_12505_upperValue> <http://uml/2#value> "-1" .
|
161
|
+
# multiplicity lowerValue
|
162
|
+
<_1600127020_743_12505> <http://uml/2#lowerValue> <_1600127020_743_12505_lowerValue> .
|
163
|
+
<_1600127020_743_12505_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
164
|
+
<_1600127020_743_12505_lowerValue> <http://uml/2#value> "0" .
|
165
|
+
<_1600127020_705_12467> <http://uml/2#ownedAttribute> <_1600127020_941_12819> .
|
166
|
+
<_1600127020_941_12819> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
167
|
+
<_1600127020_941_12819> <http://uml/2#name> "deliveries" .
|
168
|
+
<_1600127020_941_12819> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
169
|
+
<_1600127020_941_12819> <http://uml/2#aggregation> <http://uml/2#aggregationKind_composite> .
|
170
|
+
# appendRDFInTagURI
|
171
|
+
<_1600127020_941_12819> <http://uml/2#association> <_1600127020_943_12821> .
|
172
|
+
<_1600127020_941_12819> <http://uml/2#type> <_1600127020_916_12794> .
|
173
|
+
# multiplicity upperValue
|
174
|
+
<_1600127020_941_12819> <http://uml/2#upperValue> <_1600127020_941_12819_upperValue> .
|
175
|
+
<_1600127020_941_12819_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
|
176
|
+
<_1600127020_941_12819_upperValue> <http://uml/2#value> "-1" .
|
177
|
+
# multiplicity lowerValue
|
178
|
+
<_1600127020_941_12819> <http://uml/2#lowerValue> <_1600127020_941_12819_lowerValue> .
|
179
|
+
<_1600127020_941_12819_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
180
|
+
<_1600127020_941_12819_lowerValue> <http://uml/2#value> "0" .
|
181
|
+
<_1600127032_33_23717> <http://uml/2#ownedMember> <_1600127020_794_12609> .
|
182
|
+
<_1600127020_794_12609> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
|
183
|
+
<_1600127020_794_12609> <http://uml/2#name> "Catalog" .
|
184
|
+
<_1600127020_794_12609> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
185
|
+
<_1600127020_794_12609> <http://uml/2#ownedMember> <_1600127020_271_11926> .
|
186
|
+
<_1600127020_271_11926> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
|
187
|
+
<_1600127020_271_11926> <http://uml/2#name> "Product" .
|
188
|
+
<_1600127020_271_11926> <http://uml/2#isAbstract> "true" .
|
189
|
+
<_1600127020_271_11926> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
190
|
+
<_1600127020_271_11926> <http://uml/2#ownedComment> <_1600127020_1906_23353> .
|
191
|
+
<_1600127020_1906_23353> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
|
192
|
+
#TODO export type de la note
|
193
|
+
<_1600127020_1906_23353> <http://uml/2#body> "A product refers to an element that is on sale in a shop.



" .
|
194
|
+
<_1600127020_271_11926> <http://uml/2#ownedAttribute> <_1600127020_272_11927> .
|
195
|
+
<_1600127020_272_11927> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
196
|
+
<_1600127020_272_11927> <http://uml/2#name> "ref" .
|
197
|
+
<_1600127020_272_11927> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
198
|
+
<_1600127020_272_11927> <http://uml/2#type> <_1600127020_275_11930> .
|
199
|
+
<_1600127020_272_11927> <http://uml/2#ownedComment> <_1600127020_1907_23354> .
|
200
|
+
<_1600127020_1907_23354> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
|
201
|
+
#TODO export type de la note
|
202
|
+
<_1600127020_1907_23354> <http://uml/2#body> "a product is uniquely identified by its reference." .
|
203
|
+
<_1600127020_271_11926> <http://uml/2#ownedAttribute> <_1600127020_1935_23404> .
|
204
|
+
<_1600127020_1935_23404> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
205
|
+
<_1600127020_1935_23404> <http://uml/2#name> "label" .
|
206
|
+
<_1600127020_1935_23404> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
207
|
+
<_1600127020_1935_23404> <http://uml/2#type> <_4_13_8644> .
|
208
|
+
<_1600127020_794_12609> <http://uml/2#ownedMember> <_1600127020_777_12581> .
|
209
|
+
<_1600127020_777_12581> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
|
210
|
+
<_1600127020_777_12581> <http://uml/2#name> "Self Service Product" .
|
211
|
+
<_1600127020_777_12581> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
212
|
+
<_1600127020_777_12581> <http://uml/2#ownedComment> <_1600127020_1909_23356> .
|
213
|
+
<_1600127020_1909_23356> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
|
214
|
+
#TODO export type de la note
|
215
|
+
<_1600127020_1909_23356> <http://uml/2#body> "A kind of product that customer can pick up directly in warehouse before paiement." .
|
216
|
+
<_1600127020_777_12581> <http://uml/2#generalization> <_1600127020_782_12586> .
|
217
|
+
<_1600127020_782_12586> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
|
218
|
+
# appendRDFInTagURI
|
219
|
+
<_1600127020_782_12586> <http://uml/2#general> <_1600127020_271_11926> .
|
220
|
+
<_1600127020_777_12581> <http://uml/2#ownedAttribute> <_1600127020_787_12591> .
|
221
|
+
<_1600127020_787_12591> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
222
|
+
<_1600127020_787_12591> <http://uml/2#name> "stock location" .
|
223
|
+
<_1600127020_787_12591> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
224
|
+
<_1600127020_787_12591> <http://uml/2#type> <_4_9_8642> .
|
225
|
+
<_1600127020_787_12591> <http://uml/2#ownedComment> <_1600127020_1910_23357> .
|
226
|
+
<_1600127020_1910_23357> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
|
227
|
+
#TODO export type de la note
|
228
|
+
<_1600127020_1910_23357> <http://uml/2#body> "Location where a customer can pick up this product." .
|
229
|
+
<_1600127020_794_12609> <http://uml/2#ownedMember> <_1600127020_778_12582> .
|
230
|
+
<_1600127020_778_12582> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
|
231
|
+
<_1600127020_778_12582> <http://uml/2#name> "Warehouse Product" .
|
232
|
+
<_1600127020_778_12582> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
233
|
+
<_1600127020_778_12582> <http://uml/2#ownedComment> <_1600127020_1912_23361> .
|
234
|
+
<_1600127020_1912_23361> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Comment> .
|
235
|
+
#TODO export type de la note
|
236
|
+
<_1600127020_1912_23361> <http://uml/2#body> "A product that is only available trought a warehouseman." .
|
237
|
+
<_1600127020_778_12582> <http://uml/2#generalization> <_1600127020_786_12590> .
|
238
|
+
<_1600127020_786_12590> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Generalization> .
|
239
|
+
# appendRDFInTagURI
|
240
|
+
<_1600127020_786_12590> <http://uml/2#general> <_1600127020_271_11926> .
|
241
|
+
<_1600127020_794_12609> <http://uml/2#ownedMember> <_1600127020_275_11930> .
|
242
|
+
<_1600127020_275_11930> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
|
243
|
+
<_1600127020_275_11930> <http://uml/2#name> "ProductCode" .
|
244
|
+
<_1600127020_275_11930> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
245
|
+
<_1600127020_794_12609> <http://uml/2#ownedMember> <_1600127020_746_12522> .
|
246
|
+
<_1600127020_746_12522> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Enumeration> .
|
247
|
+
<_1600127020_746_12522> <http://uml/2#name> "Product Type" .
|
248
|
+
<_1600127020_746_12522> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
249
|
+
<_1600127020_746_12522> <http://uml/2#ownedLiteral> <_1600127020_747_12523> .
|
250
|
+
<_1600127020_747_12523> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
|
251
|
+
<_1600127020_747_12523> <http://uml/2#name> "SelfServiceProduct" .
|
252
|
+
<_1600127020_746_12522> <http://uml/2#ownedLiteral> <_1600127020_748_12524> .
|
253
|
+
<_1600127020_748_12524> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
|
254
|
+
<_1600127020_748_12524> <http://uml/2#name> "pickAfterPaiement" .
|
255
|
+
<_1600127032_33_23717> <http://uml/2#ownedMember> <_1600127020_801_12623> .
|
256
|
+
<_1600127020_801_12623> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
|
257
|
+
<_1600127020_801_12623> <http://uml/2#name> "Order" .
|
258
|
+
<_1600127020_801_12623> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
259
|
+
<_1600127020_801_12623> <http://uml/2#ownedMember> <_1600127020_268_11923> .
|
260
|
+
<_1600127020_268_11923> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
|
261
|
+
<_1600127020_268_11923> <http://uml/2#name> "" .
|
262
|
+
<_1600127020_268_11923> <http://uml/2#memberEnd> <_1600127020_266_11921> .
|
263
|
+
<_1600127020_268_11923> <http://uml/2#memberEnd> <_1600127020_267_11922> .
|
264
|
+
<_1600127020_268_11923> <http://uml/2#ownedEnd> <_1600127020_267_11922> .
|
265
|
+
<_1600127020_267_11922> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
266
|
+
<_1600127020_267_11922> <http://uml/2#name> "" .
|
267
|
+
<_1600127020_267_11922> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
268
|
+
<_1600127020_267_11922> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
|
269
|
+
# appendRDFInTagURI
|
270
|
+
<_1600127020_267_11922> <http://uml/2#association> <_1600127020_268_11923> .
|
271
|
+
<_1600127020_267_11922> <http://uml/2#type> <_1600127020_252_11902> .
|
272
|
+
# multiplicity upperValue
|
273
|
+
<_1600127020_267_11922> <http://uml/2#upperValue> <_1600127020_267_11922_upperValue> .
|
274
|
+
<_1600127020_267_11922_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
275
|
+
<_1600127020_267_11922_upperValue> <http://uml/2#value> "1" .
|
276
|
+
# multiplicity lowerValue
|
277
|
+
<_1600127020_267_11922> <http://uml/2#lowerValue> <_1600127020_267_11922_lowerValue> .
|
278
|
+
<_1600127020_267_11922_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
279
|
+
<_1600127020_267_11922_lowerValue> <http://uml/2#value> "1" .
|
280
|
+
<_1600127020_801_12623> <http://uml/2#ownedMember> <_1600127020_1674_21741> .
|
281
|
+
<_1600127020_1674_21741> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
|
282
|
+
<_1600127020_1674_21741> <http://uml/2#name> "kind" .
|
283
|
+
<_1600127020_1674_21741> <http://uml/2#memberEnd> <_1600127020_1672_21739> .
|
284
|
+
<_1600127020_1674_21741> <http://uml/2#memberEnd> <_1600127020_1673_21740> .
|
285
|
+
<_1600127020_1674_21741> <http://uml/2#ownedEnd> <_1600127020_1673_21740> .
|
286
|
+
<_1600127020_1673_21740> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
287
|
+
<_1600127020_1673_21740> <http://uml/2#name> "" .
|
288
|
+
<_1600127020_1673_21740> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
289
|
+
<_1600127020_1673_21740> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
|
290
|
+
# appendRDFInTagURI
|
291
|
+
<_1600127020_1673_21740> <http://uml/2#association> <_1600127020_1674_21741> .
|
292
|
+
<_1600127020_1673_21740> <http://uml/2#type> <_1600127020_258_11913> .
|
293
|
+
# multiplicity upperValue
|
294
|
+
<_1600127020_1673_21740> <http://uml/2#upperValue> <_1600127020_1673_21740_upperValue> .
|
295
|
+
<_1600127020_1673_21740_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
296
|
+
<_1600127020_1673_21740_upperValue> <http://uml/2#value> "undefined" .
|
297
|
+
# multiplicity lowerValue
|
298
|
+
<_1600127020_1673_21740> <http://uml/2#lowerValue> <_1600127020_1673_21740_lowerValue> .
|
299
|
+
<_1600127020_1673_21740_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
300
|
+
<_1600127020_1673_21740_lowerValue> <http://uml/2#value> "undefined" .
|
301
|
+
<_1600127020_801_12623> <http://uml/2#ownedMember> <_1600127020_252_11902> .
|
302
|
+
<_1600127020_252_11902> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
|
303
|
+
<_1600127020_252_11902> <http://uml/2#name> "Order" .
|
304
|
+
<_1600127020_252_11902> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
305
|
+
<_1600127020_252_11902> <http://uml/2#ownedOperation> <_1600127020_791_12604> .
|
306
|
+
<_1600127020_791_12604> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
|
307
|
+
<_1600127020_791_12604> <http://uml/2#name> "reserveItems" .
|
308
|
+
<_1600127020_791_12604> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
309
|
+
<_1600127020_252_11902> <http://uml/2#ownedAttribute> <_1600127020_253_11903> .
|
310
|
+
<_1600127020_253_11903> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
311
|
+
<_1600127020_253_11903> <http://uml/2#name> "number" .
|
312
|
+
<_1600127020_253_11903> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
313
|
+
<_1600127020_253_11903> <http://uml/2#type> <_1600127020_256_11906> .
|
314
|
+
<_1600127020_252_11902> <http://uml/2#ownedAttribute> <_1600127020_303_11980> .
|
315
|
+
<_1600127020_303_11980> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
316
|
+
<_1600127020_303_11980> <http://uml/2#name> "creation" .
|
317
|
+
<_1600127020_303_11980> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
318
|
+
<_1600127020_303_11980> <http://uml/2#type> <_1600127020_302_11979> .
|
319
|
+
<_1600127020_252_11902> <http://uml/2#ownedAttribute> <_1600127020_765_12559> .
|
320
|
+
<_1600127020_765_12559> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
321
|
+
<_1600127020_765_12559> <http://uml/2#name> "stockStatus" .
|
322
|
+
<_1600127020_765_12559> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
323
|
+
<_1600127020_765_12559> <http://uml/2#isDerived> "true" .
|
324
|
+
<_1600127020_765_12559> <http://uml/2#type> <_1600127020_767_12563> .
|
325
|
+
<_1600127020_252_11902> <http://uml/2#ownedAttribute> <_1600127020_266_11921> .
|
326
|
+
<_1600127020_266_11921> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
327
|
+
<_1600127020_266_11921> <http://uml/2#name> "order Items" .
|
328
|
+
<_1600127020_266_11921> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
329
|
+
<_1600127020_266_11921> <http://uml/2#aggregation> <http://uml/2#aggregationKind_composite> .
|
330
|
+
# appendRDFInTagURI
|
331
|
+
<_1600127020_266_11921> <http://uml/2#association> <_1600127020_268_11923> .
|
332
|
+
<_1600127020_266_11921> <http://uml/2#type> <_1600127020_258_11913> .
|
333
|
+
# multiplicity upperValue
|
334
|
+
<_1600127020_266_11921> <http://uml/2#upperValue> <_1600127020_266_11921_upperValue> .
|
335
|
+
<_1600127020_266_11921_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralUnlimitedNatural> .
|
336
|
+
<_1600127020_266_11921_upperValue> <http://uml/2#value> "-1" .
|
337
|
+
# multiplicity lowerValue
|
338
|
+
<_1600127020_266_11921> <http://uml/2#lowerValue> <_1600127020_266_11921_lowerValue> .
|
339
|
+
<_1600127020_266_11921_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
340
|
+
<_1600127020_266_11921_lowerValue> <http://uml/2#value> "0" .
|
341
|
+
<_1600127020_801_12623> <http://uml/2#ownedMember> <_1600127020_258_11913> .
|
342
|
+
<_1600127020_258_11913> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
|
343
|
+
<_1600127020_258_11913> <http://uml/2#name> "Order Item" .
|
344
|
+
<_1600127020_258_11913> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
345
|
+
<_1600127020_258_11913> <http://uml/2#ownedOperation> <_1600127020_792_12606> .
|
346
|
+
<_1600127020_792_12606> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Operation> .
|
347
|
+
<_1600127020_792_12606> <http://uml/2#name> "reserveItem" .
|
348
|
+
<_1600127020_792_12606> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
349
|
+
<_1600127020_258_11913> <http://uml/2#ownedAttribute> <_1600127020_290_11960> .
|
350
|
+
<_1600127020_290_11960> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
351
|
+
<_1600127020_290_11960> <http://uml/2#name> "quantity" .
|
352
|
+
<_1600127020_290_11960> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
353
|
+
<_1600127020_290_11960> <http://uml/2#type> <_4_9_8642> .
|
354
|
+
<_1600127020_258_11913> <http://uml/2#ownedAttribute> <_1600127020_762_12550> .
|
355
|
+
<_1600127020_762_12550> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
356
|
+
<_1600127020_762_12550> <http://uml/2#name> "stock" .
|
357
|
+
<_1600127020_762_12550> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
358
|
+
<_1600127020_762_12550> <http://uml/2#type> <_1600127020_758_12546> .
|
359
|
+
<_1600127020_258_11913> <http://uml/2#ownedAttribute> <_1600127020_1672_21739> .
|
360
|
+
<_1600127020_1672_21739> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
361
|
+
<_1600127020_1672_21739> <http://uml/2#name> "product" .
|
362
|
+
<_1600127020_1672_21739> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
363
|
+
<_1600127020_1672_21739> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
|
364
|
+
# appendRDFInTagURI
|
365
|
+
<_1600127020_1672_21739> <http://uml/2#association> <_1600127020_1674_21741> .
|
366
|
+
<_1600127020_1672_21739> <http://uml/2#type> <_1600127020_271_11926> .
|
367
|
+
# multiplicity upperValue
|
368
|
+
<_1600127020_1672_21739> <http://uml/2#upperValue> <_1600127020_1672_21739_upperValue> .
|
369
|
+
<_1600127020_1672_21739_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
370
|
+
<_1600127020_1672_21739_upperValue> <http://uml/2#value> "1" .
|
371
|
+
# multiplicity lowerValue
|
372
|
+
<_1600127020_1672_21739> <http://uml/2#lowerValue> <_1600127020_1672_21739_lowerValue> .
|
373
|
+
<_1600127020_1672_21739_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
374
|
+
<_1600127020_1672_21739_lowerValue> <http://uml/2#value> "1" .
|
375
|
+
<_1600127020_801_12623> <http://uml/2#ownedMember> <_1600127020_256_11906> .
|
376
|
+
<_1600127020_256_11906> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
|
377
|
+
<_1600127020_256_11906> <http://uml/2#name> "OrderNumber" .
|
378
|
+
<_1600127020_256_11906> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
379
|
+
<_1600127020_801_12623> <http://uml/2#ownedMember> <_1600127020_767_12563> .
|
380
|
+
<_1600127020_767_12563> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Enumeration> .
|
381
|
+
<_1600127020_767_12563> <http://uml/2#name> "OrderStockStatus" .
|
382
|
+
<_1600127020_767_12563> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
383
|
+
<_1600127020_767_12563> <http://uml/2#ownedLiteral> <_1600127020_768_12564> .
|
384
|
+
<_1600127020_768_12564> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
|
385
|
+
<_1600127020_768_12564> <http://uml/2#name> "RESERVED" .
|
386
|
+
<_1600127020_767_12563> <http://uml/2#ownedLiteral> <_1600127020_769_12565> .
|
387
|
+
<_1600127020_769_12565> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
|
388
|
+
<_1600127020_769_12565> <http://uml/2#name> "NOT_RESERVED" .
|
389
|
+
<_1600127020_767_12563> <http://uml/2#ownedLiteral> <_1600127020_770_12566> .
|
390
|
+
<_1600127020_770_12566> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
|
391
|
+
<_1600127020_770_12566> <http://uml/2#name> "PARTIALLY_RESERVED" .
|
392
|
+
<_1600127020_801_12623> <http://uml/2#ownedMember> <_1600127020_758_12546> .
|
393
|
+
<_1600127020_758_12546> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Enumeration> .
|
394
|
+
<_1600127020_758_12546> <http://uml/2#name> "ItemStockStatus" .
|
395
|
+
<_1600127020_758_12546> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
396
|
+
<_1600127020_758_12546> <http://uml/2#ownedLiteral> <_1600127020_759_12547> .
|
397
|
+
<_1600127020_759_12547> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
|
398
|
+
<_1600127020_759_12547> <http://uml/2#name> "RESERVED" .
|
399
|
+
<_1600127020_758_12546> <http://uml/2#ownedLiteral> <_1600127020_760_12548> .
|
400
|
+
<_1600127020_760_12548> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
|
401
|
+
<_1600127020_760_12548> <http://uml/2#name> "NOT_RESERVED" .
|
402
|
+
<_1600127020_758_12546> <http://uml/2#ownedLiteral> <_1600127020_761_12549> .
|
403
|
+
<_1600127020_761_12549> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
|
404
|
+
<_1600127020_761_12549> <http://uml/2#name> "NOT_AVAILABLE" .
|
405
|
+
<_1600127020_758_12546> <http://uml/2#ownedLiteral> <_1600127020_790_12602> .
|
406
|
+
<_1600127020_790_12602> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
|
407
|
+
<_1600127020_790_12602> <http://uml/2#name> "AVAILABLE_NOT_RESERVABLE" .
|
408
|
+
<_1600127032_33_23717> <http://uml/2#ownedMember> <_1600127020_817_12639> .
|
409
|
+
<_1600127020_817_12639> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
|
410
|
+
<_1600127020_817_12639> <http://uml/2#name> "Billing" .
|
411
|
+
<_1600127020_817_12639> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
412
|
+
<_1600127020_817_12639> <http://uml/2#ownedMember> <_1600127020_700_12453> .
|
413
|
+
<_1600127020_700_12453> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
|
414
|
+
<_1600127020_700_12453> <http://uml/2#name> "" .
|
415
|
+
<_1600127020_700_12453> <http://uml/2#memberEnd> <_1600127020_698_12451> .
|
416
|
+
<_1600127020_700_12453> <http://uml/2#memberEnd> <_1600127020_699_12452> .
|
417
|
+
<_1600127020_700_12453> <http://uml/2#ownedEnd> <_1600127020_699_12452> .
|
418
|
+
<_1600127020_699_12452> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
419
|
+
<_1600127020_699_12452> <http://uml/2#name> "" .
|
420
|
+
<_1600127020_699_12452> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
421
|
+
<_1600127020_699_12452> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
|
422
|
+
# appendRDFInTagURI
|
423
|
+
<_1600127020_699_12452> <http://uml/2#association> <_1600127020_700_12453> .
|
424
|
+
<_1600127020_699_12452> <http://uml/2#type> <_1600127020_690_12443> .
|
425
|
+
# multiplicity upperValue
|
426
|
+
<_1600127020_699_12452> <http://uml/2#upperValue> <_1600127020_699_12452_upperValue> .
|
427
|
+
<_1600127020_699_12452_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
428
|
+
<_1600127020_699_12452_upperValue> <http://uml/2#value> "1" .
|
429
|
+
# multiplicity lowerValue
|
430
|
+
<_1600127020_699_12452> <http://uml/2#lowerValue> <_1600127020_699_12452_lowerValue> .
|
431
|
+
<_1600127020_699_12452_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
432
|
+
<_1600127020_699_12452_lowerValue> <http://uml/2#value> "0" .
|
433
|
+
<_1600127020_817_12639> <http://uml/2#ownedMember> <_1600127020_690_12443> .
|
434
|
+
<_1600127020_690_12443> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
|
435
|
+
<_1600127020_690_12443> <http://uml/2#name> "Payment" .
|
436
|
+
<_1600127020_690_12443> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
437
|
+
<_1600127020_690_12443> <http://uml/2#ownedAttribute> <_1600127020_701_12459> .
|
438
|
+
<_1600127020_701_12459> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
439
|
+
<_1600127020_701_12459> <http://uml/2#name> "number" .
|
440
|
+
<_1600127020_701_12459> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
441
|
+
<_1600127020_701_12459> <http://uml/2#type> <_1600127020_703_12463> .
|
442
|
+
<_1600127020_690_12443> <http://uml/2#ownedAttribute> <_1600127020_755_12535> .
|
443
|
+
<_1600127020_755_12535> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
444
|
+
<_1600127020_755_12535> <http://uml/2#name> "paiement" .
|
445
|
+
<_1600127020_755_12535> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
446
|
+
<_1600127020_755_12535> <http://uml/2#type> <_1600127020_749_12528> .
|
447
|
+
<_1600127020_690_12443> <http://uml/2#ownedAttribute> <_1600127020_772_12573> .
|
448
|
+
<_1600127020_772_12573> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
449
|
+
<_1600127020_772_12573> <http://uml/2#name> "pickUp" .
|
450
|
+
<_1600127020_772_12573> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
451
|
+
<_1600127020_772_12573> <http://uml/2#type> <_1600127020_775_12576> .
|
452
|
+
<_1600127020_690_12443> <http://uml/2#ownedAttribute> <_1600127020_698_12451> .
|
453
|
+
<_1600127020_698_12451> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
454
|
+
<_1600127020_698_12451> <http://uml/2#name> "order" .
|
455
|
+
<_1600127020_698_12451> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
456
|
+
<_1600127020_698_12451> <http://uml/2#aggregation> <http://uml/2#aggregationKind_shared> .
|
457
|
+
# appendRDFInTagURI
|
458
|
+
<_1600127020_698_12451> <http://uml/2#association> <_1600127020_700_12453> .
|
459
|
+
<_1600127020_698_12451> <http://uml/2#type> <_1600127020_252_11902> .
|
460
|
+
# multiplicity upperValue
|
461
|
+
<_1600127020_698_12451> <http://uml/2#upperValue> <_1600127020_698_12451_upperValue> .
|
462
|
+
<_1600127020_698_12451_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
463
|
+
<_1600127020_698_12451_upperValue> <http://uml/2#value> "1" .
|
464
|
+
# multiplicity lowerValue
|
465
|
+
<_1600127020_698_12451> <http://uml/2#lowerValue> <_1600127020_698_12451_lowerValue> .
|
466
|
+
<_1600127020_698_12451_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
467
|
+
<_1600127020_698_12451_lowerValue> <http://uml/2#value> "1" .
|
468
|
+
<_1600127020_817_12639> <http://uml/2#ownedMember> <_1600127020_703_12463> .
|
469
|
+
<_1600127020_703_12463> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
|
470
|
+
<_1600127020_703_12463> <http://uml/2#name> "PaymentNumber" .
|
471
|
+
<_1600127020_703_12463> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
472
|
+
<_1600127020_817_12639> <http://uml/2#ownedMember> <_1600127020_749_12528> .
|
473
|
+
<_1600127020_749_12528> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Enumeration> .
|
474
|
+
<_1600127020_749_12528> <http://uml/2#name> "PaiementMethod" .
|
475
|
+
<_1600127020_749_12528> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
476
|
+
<_1600127020_749_12528> <http://uml/2#ownedLiteral> <_1600127020_750_12529> .
|
477
|
+
<_1600127020_750_12529> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
|
478
|
+
<_1600127020_750_12529> <http://uml/2#name> "VISA" .
|
479
|
+
<_1600127020_749_12528> <http://uml/2#ownedLiteral> <_1600127020_751_12530> .
|
480
|
+
<_1600127020_751_12530> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
|
481
|
+
<_1600127020_751_12530> <http://uml/2#name> "AMEX" .
|
482
|
+
<_1600127020_749_12528> <http://uml/2#ownedLiteral> <_1600127020_752_12531> .
|
483
|
+
<_1600127020_752_12531> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
|
484
|
+
<_1600127020_752_12531> <http://uml/2#name> "CASH" .
|
485
|
+
<_1600127020_749_12528> <http://uml/2#ownedLiteral> <_1600127020_753_12533> .
|
486
|
+
<_1600127020_753_12533> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
|
487
|
+
<_1600127020_753_12533> <http://uml/2#name> "DINNERS" .
|
488
|
+
<_1600127020_749_12528> <http://uml/2#ownedLiteral> <_1600127020_754_12534> .
|
489
|
+
<_1600127020_754_12534> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#EnumerationLiteral> .
|
490
|
+
<_1600127020_754_12534> <http://uml/2#name> "COFINOGA" .
|
491
|
+
<_1600127032_33_23717> <http://uml/2#ownedMember> <_1600127020_1338_20774> .
|
492
|
+
<_1600127020_1338_20774> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
|
493
|
+
<_1600127020_1338_20774> <http://uml/2#name> "Delivery" .
|
494
|
+
<_1600127020_1338_20774> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
495
|
+
<_1600127020_1338_20774> <http://uml/2#ownedMember> <_1600127020_932_12810> .
|
496
|
+
<_1600127020_932_12810> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Association> .
|
497
|
+
<_1600127020_932_12810> <http://uml/2#name> "" .
|
498
|
+
<_1600127020_932_12810> <http://uml/2#memberEnd> <_1600127020_930_12808> .
|
499
|
+
<_1600127020_932_12810> <http://uml/2#memberEnd> <_1600127020_931_12809> .
|
500
|
+
<_1600127020_932_12810> <http://uml/2#ownedEnd> <_1600127020_931_12809> .
|
501
|
+
<_1600127020_931_12809> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
502
|
+
<_1600127020_931_12809> <http://uml/2#name> "" .
|
503
|
+
<_1600127020_931_12809> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
504
|
+
<_1600127020_931_12809> <http://uml/2#aggregation> <http://uml/2#aggregationKind_none> .
|
505
|
+
# appendRDFInTagURI
|
506
|
+
<_1600127020_931_12809> <http://uml/2#association> <_1600127020_932_12810> .
|
507
|
+
<_1600127020_931_12809> <http://uml/2#type> <_1600127020_916_12794> .
|
508
|
+
# multiplicity upperValue
|
509
|
+
<_1600127020_931_12809> <http://uml/2#upperValue> <_1600127020_931_12809_upperValue> .
|
510
|
+
<_1600127020_931_12809_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
511
|
+
<_1600127020_931_12809_upperValue> <http://uml/2#value> "1" .
|
512
|
+
# multiplicity lowerValue
|
513
|
+
<_1600127020_931_12809> <http://uml/2#lowerValue> <_1600127020_931_12809_lowerValue> .
|
514
|
+
<_1600127020_931_12809_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
515
|
+
<_1600127020_931_12809_lowerValue> <http://uml/2#value> "0" .
|
516
|
+
<_1600127020_1338_20774> <http://uml/2#ownedMember> <_1600127020_916_12794> .
|
517
|
+
<_1600127020_916_12794> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Class> .
|
518
|
+
<_1600127020_916_12794> <http://uml/2#name> "Delivery" .
|
519
|
+
<_1600127020_916_12794> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
520
|
+
<_1600127020_916_12794> <http://uml/2#ownedAttribute> <_1600127020_930_12808> .
|
521
|
+
<_1600127020_930_12808> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Property> .
|
522
|
+
<_1600127020_930_12808> <http://uml/2#name> "payment" .
|
523
|
+
<_1600127020_930_12808> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
524
|
+
<_1600127020_930_12808> <http://uml/2#aggregation> <http://uml/2#aggregationKind_shared> .
|
525
|
+
# appendRDFInTagURI
|
526
|
+
<_1600127020_930_12808> <http://uml/2#association> <_1600127020_932_12810> .
|
527
|
+
<_1600127020_930_12808> <http://uml/2#type> <_1600127020_690_12443> .
|
528
|
+
# multiplicity upperValue
|
529
|
+
<_1600127020_930_12808> <http://uml/2#upperValue> <_1600127020_930_12808_upperValue> .
|
530
|
+
<_1600127020_930_12808_upperValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
531
|
+
<_1600127020_930_12808_upperValue> <http://uml/2#value> "1" .
|
532
|
+
# multiplicity lowerValue
|
533
|
+
<_1600127020_930_12808> <http://uml/2#lowerValue> <_1600127020_930_12808_lowerValue> .
|
534
|
+
<_1600127020_930_12808_lowerValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#LiteralInteger> .
|
535
|
+
<_1600127020_930_12808_lowerValue> <http://uml/2#value> "1" .
|
536
|
+
<_1600127020_1338_20774> <http://uml/2#ownedMember> <_1600127020_775_12576> .
|
537
|
+
<_1600127020_775_12576> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
|
538
|
+
<_1600127020_775_12576> <http://uml/2#name> "PickUpNumber" .
|
539
|
+
<_1600127020_775_12576> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
540
|
+
<_1600127032_33_23717> <http://uml/2#ownedMember> <_1600127020_828_12650> .
|
541
|
+
<_1600127020_828_12650> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#Package> .
|
542
|
+
<_1600127020_828_12650> <http://uml/2#name> "CoreDataTypes" .
|
543
|
+
<_1600127020_828_12650> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
544
|
+
<_1600127020_828_12650> <http://uml/2#ownedMember> <_1600127020_301_11978> .
|
545
|
+
<_1600127020_301_11978> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
|
546
|
+
<_1600127020_301_11978> <http://uml/2#name> "Calendar" .
|
547
|
+
<_1600127020_301_11978> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
548
|
+
<_1600127020_828_12650> <http://uml/2#ownedMember> <_1600127020_302_11979> .
|
549
|
+
<_1600127020_302_11979> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
|
550
|
+
<_1600127020_302_11979> <http://uml/2#name> "Timestamp" .
|
551
|
+
<_1600127020_302_11979> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
552
|
+
# <!-- ADDING used ModelElement(s) -->
|
553
|
+
# <!-- ADDING used ModelElement(s) -->
|
554
|
+
<_1600127020_250_11899> <http://uml/2#ownedMember> <_4_13_8644> .
|
555
|
+
<_4_13_8644> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
|
556
|
+
<_4_13_8644> <http://uml/2#name> "string" .
|
557
|
+
<_4_13_8644> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
558
|
+
<_1600127020_250_11899> <http://uml/2#ownedMember> <_4_9_8642> .
|
559
|
+
<_4_9_8642> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://uml/2#PrimitiveType> .
|
560
|
+
<_4_9_8642> <http://uml/2#name> "integer" .
|
561
|
+
<_4_9_8642> <http://uml/2#visibility> <http://uml/2#visibilityKind_public> .
|
562
|
+
# end of file
|