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.
- data/Manifest.txt +38 -22
- data/README.txt +21 -2
- data/Rakefile +1 -1
- data/bin/ontomde-umlToProtege +4 -0
- data/lib/ontomde-uml2.rb +19 -17
- data/lib/ontomde-uml2/UMLdatatypeMapping.rb +441 -0
- data/lib/ontomde-uml2/autoImplement.rb +170 -166
- data/lib/ontomde-uml2/check.rb +1 -1
- data/lib/ontomde-uml2/component.rb +45 -0
- data/lib/ontomde-uml2/createAndAdd.rb +32 -20
- data/lib/ontomde-uml2/dotDiagram.rb +1 -1
- data/lib/ontomde-uml2/kb.rb +4 -0
- data/lib/ontomde-uml2/kb/MYMODEL_kb.pprj +2377 -0
- data/lib/ontomde-uml2/kb/MYMODEL_kb.rdf +2 -0
- data/lib/ontomde-uml2/kb/MYMODEL_kb.rdfs +441 -0
- data/lib/ontomde-uml2/kb/MYMODEL_meta.pprj +874 -0
- data/lib/ontomde-uml2/kb/command.rb +143 -0
- data/lib/ontomde-uml2/kb/datatypeMapping.rb +99 -0
- data/lib/ontomde-uml2/kb/protege.rb +687 -0
- data/lib/ontomde-uml2/multipleInheritance.rb +1 -1
- data/lib/ontomde-uml2/salvageErrors.rb +1 -1
- data/lib/ontomde-uml2/select.rb +83 -5
- data/lib/ontomde-uml2/shortcut.rb +23 -8
- data/lib/ontomde-uml2/uml2.pprj +943 -0
- data/lib/ontomde-uml2/uml2.rb +62 -29
- data/lib/ontomde-uml2/uml2.rdf +768 -0
- data/lib/ontomde-uml2/uml2.rdfs +3233 -0
- data/lib/ontomde-uml2/umlx.rb +31 -9
- data/lib/ontomde-uml2/version.rb +1 -1
- data/lib/ontomde-uml2/versionSignature.rb +1 -1
- data/lib/ontomde-uml2/xsd.pprj +1063 -0
- data/lib/ontomde-uml2/xsd.rdf +2 -0
- data/lib/ontomde-uml2/xsd.rdfs +17 -0
- data/test/_test_dot.rb +1 -1
- data/test/_test_perf.rb +1 -1
- data/test/test_base.rb +1 -1
- data/test/test_clone.rb +5 -5
- data/test/test_misc.rb +3 -3
- metadata +47 -29
data/lib/ontomde-uml2/umlx.rb
CHANGED
@@ -12,7 +12,7 @@ module Muml_Operation
|
|
12
12
|
rdf_safe_attr_reader_many :umlx_businessMethod
|
13
13
|
end
|
14
14
|
|
15
|
-
module
|
15
|
+
module Mrdf_Repository
|
16
16
|
def umlx_MarkAllAsbusinessMethod!
|
17
17
|
each { |k,m|
|
18
18
|
next unless m.kind_of?(Muml_Operation) || m.kind_of?(Muml_Classifier)
|
@@ -21,6 +21,19 @@ module Mrdf_Model
|
|
21
21
|
m.umlx_businessMethod=RDF_TRUE
|
22
22
|
}
|
23
23
|
end
|
24
|
+
|
25
|
+
# prune empty enumeration (without literal) with a dummy value
|
26
|
+
# this can be usefull to hide bug in third party sofware which do not support this.
|
27
|
+
# This is however usefull in a code generation context because an enum could have
|
28
|
+
# values in one configuration and not in another.
|
29
|
+
def umlx_pruneEmptyEnums!
|
30
|
+
uml_Enumeration_all.each { |enu|
|
31
|
+
next if enu.uml_ownedLiteral.empty?
|
32
|
+
puts "WARNING: empty enum found in model. (#{enu}). Because this may cause bugs in some software (hibernate spring), a dummy vaue has been added. You may disable this feature using appropriate command line option.";
|
33
|
+
lit=enu.umlx_createAndAddLiteral("dummy")
|
34
|
+
lit.umlx_createAndAddComment("#{lit.rdf_uri}-comment", "dummy literal value added by generator to avoid bugs in third party sofwares (hibernate spring)")
|
35
|
+
}
|
36
|
+
end
|
24
37
|
end
|
25
38
|
|
26
39
|
|
@@ -154,6 +167,15 @@ module Muml_TypedElement
|
|
154
167
|
return uml_upperValue_one.umlx_equalOne?
|
155
168
|
#return (uml_upperValue.empty? || uml_upperValue.to_s=="1")
|
156
169
|
end
|
170
|
+
#
|
171
|
+
#Returns true if lowerValue is equal to one
|
172
|
+
#NOTE:
|
173
|
+
#* returns true if lowerValue is undefined or empty
|
174
|
+
def umlx_lowerValueIsOne?
|
175
|
+
return true if uml_lowerValue.empty? # 1 is assumed to be defaut
|
176
|
+
return uml_lowerValue_one.umlx_equalOne?
|
177
|
+
#return (uml_lowerValue.empty? || uml_lowerValue.to_s=="1")
|
178
|
+
end
|
157
179
|
|
158
180
|
#returns true if lowerValue is equal to zero
|
159
181
|
#NOTE:
|
@@ -166,7 +188,7 @@ module Muml_TypedElement
|
|
166
188
|
end
|
167
189
|
|
168
190
|
|
169
|
-
module
|
191
|
+
module Mrdf_Repository
|
170
192
|
#TO BE DONE
|
171
193
|
def umlx_computeIsAnException
|
172
194
|
end
|
@@ -230,7 +252,7 @@ module Muml_Package
|
|
230
252
|
end
|
231
253
|
end
|
232
254
|
|
233
|
-
module
|
255
|
+
module Mrdf_Repository
|
234
256
|
|
235
257
|
#Model name to be ignored
|
236
258
|
#Typicaly containing metamodels
|
@@ -254,7 +276,7 @@ module Mrdf_Model
|
|
254
276
|
ret<< c
|
255
277
|
}
|
256
278
|
if ret.empty?
|
257
|
-
log.error { "umlx_model:no model found in
|
279
|
+
log.error { "umlx_model:no model found in rdf_Repository" }
|
258
280
|
return nil
|
259
281
|
elsif ret.length > 1
|
260
282
|
ms=""; ret.each { |m| ms=ms+m.uml_name.to_s+"," }
|
@@ -277,7 +299,7 @@ module Muml_Classifier
|
|
277
299
|
#}
|
278
300
|
|
279
301
|
log.error { "umlx_model:no model found for #{self.class.name} #{self}" }
|
280
|
-
return
|
302
|
+
return rdf_Repository.umlx_model
|
281
303
|
end
|
282
304
|
end
|
283
305
|
|
@@ -352,7 +374,7 @@ module Muml_Namespace
|
|
352
374
|
|
353
375
|
searchPath=[]
|
354
376
|
if startpoint==UMLX_SEARCH_EVERY_MODEL
|
355
|
-
|
377
|
+
rdf_Repository.each { |k,c|
|
356
378
|
if c.kind_of?(Muml_Model)
|
357
379
|
searchPath<< c
|
358
380
|
end
|
@@ -442,7 +464,7 @@ END
|
|
442
464
|
|
443
465
|
end
|
444
466
|
|
445
|
-
module
|
467
|
+
module Mrdf_Repository
|
446
468
|
# A properly behaved model should not have inheritance from non abstract class.
|
447
469
|
# This transformation enforces that inheritance is always from an abstract class
|
448
470
|
|
@@ -620,11 +642,11 @@ end
|
|
620
642
|
|
621
643
|
module Mrdf_Resource
|
622
644
|
def umlx_reserved_model
|
623
|
-
return
|
645
|
+
return rdf_Repository.umlx_reserved_model
|
624
646
|
end
|
625
647
|
end
|
626
648
|
|
627
|
-
module
|
649
|
+
module Mrdf_Repository
|
628
650
|
UMLX_RESERVED_MODEL_URI="http://xmda-reserved"
|
629
651
|
def umlx_reserved_model
|
630
652
|
r=self[UMLX_RESERVED_MODEL_URI]
|
data/lib/ontomde-uml2/version.rb
CHANGED
@@ -0,0 +1,1063 @@
|
|
1
|
+
; Sat May 24 09:50:27 CEST 2008
|
2
|
+
;
|
3
|
+
;+ (version "3.3.1")
|
4
|
+
;+ (build "Build 430")
|
5
|
+
|
6
|
+
([BROWSER_SLOT_NAMES] of Property_List
|
7
|
+
|
8
|
+
(properties
|
9
|
+
[xsd_ProjectKB_Instance_10094]
|
10
|
+
[xsd_ProjectKB_Instance_10095]
|
11
|
+
[xsd_ProjectKB_Instance_10096]))
|
12
|
+
|
13
|
+
([CLSES_TAB] of Widget
|
14
|
+
|
15
|
+
(widget_class_name "edu.stanford.smi.protege.widget.ClsesTab"))
|
16
|
+
|
17
|
+
([FORMS_TAB] of Widget
|
18
|
+
|
19
|
+
(widget_class_name "edu.stanford.smi.protege.widget.FormsTab"))
|
20
|
+
|
21
|
+
([INSTANCE_ANNOTATION_FORM_WIDGET] of Widget
|
22
|
+
|
23
|
+
(height 476)
|
24
|
+
(is_hidden FALSE)
|
25
|
+
(name ":INSTANCE-ANNOTATION")
|
26
|
+
(property_list [KB_260914_Instance_33])
|
27
|
+
(widget_class_name "edu.stanford.smi.protege.widget.FormWidget")
|
28
|
+
(width 603)
|
29
|
+
(x 0)
|
30
|
+
(y 0))
|
31
|
+
|
32
|
+
([INSTANCES_TAB] of Widget
|
33
|
+
|
34
|
+
(widget_class_name "edu.stanford.smi.protege.widget.InstancesTab"))
|
35
|
+
|
36
|
+
([KB_054348_Instance_0] of String
|
37
|
+
|
38
|
+
(name "renaming_namespaces"))
|
39
|
+
|
40
|
+
([KB_054348_Instance_1] of String
|
41
|
+
|
42
|
+
(name "namespaces")
|
43
|
+
(string_value "xsd http://ft/xsd# umlx http://ft/uml/2# _xmi__ type/@xmi: _xmi lowerValue/@xmi: _xmi_ upperValue/@xmi: ns_2s http://ft/uml/2s# uml2 http://uml/2# rdfs http://www.w3.org/2000/01/rdf-schema# rdf http://www.w3.org/1999/02/22-rdf-syntax-ns# "))
|
44
|
+
|
45
|
+
([KB_260914_Instance_0] of Property_List
|
46
|
+
|
47
|
+
(name "class widget properties")
|
48
|
+
(properties
|
49
|
+
[KB_260914_Instance_1]
|
50
|
+
[KB_260914_Instance_2]
|
51
|
+
[KB_260914_Instance_3]
|
52
|
+
[KB_260914_Instance_4]
|
53
|
+
[KB_260914_Instance_5]
|
54
|
+
[KB_260914_Instance_6]
|
55
|
+
[KB_260914_Instance_7]
|
56
|
+
[KB_260914_Instance_8]
|
57
|
+
[KB_260914_Instance_9]
|
58
|
+
[KB_260914_Instance_10]))
|
59
|
+
|
60
|
+
([KB_260914_Instance_1] of Widget
|
61
|
+
|
62
|
+
(height 120)
|
63
|
+
(label "Constraints")
|
64
|
+
(name ":SLOT-CONSTRAINTS")
|
65
|
+
(property_list [uml2_ProjectKB_Instance_10113])
|
66
|
+
(widget_class_name "edu.stanford.smi.protege.widget.ConstraintsWidget")
|
67
|
+
(width 200)
|
68
|
+
(x 400)
|
69
|
+
(y 0))
|
70
|
+
|
71
|
+
([KB_260914_Instance_10] of Property_List
|
72
|
+
|
73
|
+
(name "layout properties")
|
74
|
+
(properties [KB_260914_Instance_11]))
|
75
|
+
|
76
|
+
([KB_260914_Instance_11] of String
|
77
|
+
|
78
|
+
(name "vertical_stretcher")
|
79
|
+
(string_value ":DIRECT-TEMPLATE-SLOTS"))
|
80
|
+
|
81
|
+
([KB_260914_Instance_12] of Property_List
|
82
|
+
|
83
|
+
(name "slot widget properties")
|
84
|
+
(properties
|
85
|
+
[KB_260914_Instance_13]
|
86
|
+
[KB_260914_Instance_14]
|
87
|
+
[KB_260914_Instance_15]
|
88
|
+
[KB_260914_Instance_16]
|
89
|
+
[KB_260914_Instance_17]
|
90
|
+
[KB_260914_Instance_18]
|
91
|
+
[KB_260914_Instance_19]
|
92
|
+
[KB_260914_Instance_20]
|
93
|
+
[KB_260914_Instance_21]
|
94
|
+
[KB_260914_Instance_22]
|
95
|
+
[KB_260914_Instance_23]
|
96
|
+
[KB_260914_Instance_24]
|
97
|
+
[KB_260914_Instance_25]
|
98
|
+
[KB_260914_Instance_26]
|
99
|
+
[KB_260914_Instance_27]
|
100
|
+
[KB_260914_Instance_28]
|
101
|
+
[uml2_ProjectKB_Instance_10122]))
|
102
|
+
|
103
|
+
([KB_260914_Instance_13] of Widget
|
104
|
+
|
105
|
+
(height 60)
|
106
|
+
(label "Cardinality")
|
107
|
+
(name ":SLOT-MINIMUM-CARDINALITY")
|
108
|
+
(property_list [uml2_ProjectKB_Instance_10130])
|
109
|
+
(widget_class_name "edu.stanford.smi.protege.widget.MinimumCardinalityWidget")
|
110
|
+
(width 200)
|
111
|
+
(x 200)
|
112
|
+
(y 120))
|
113
|
+
|
114
|
+
([KB_260914_Instance_14] of Widget
|
115
|
+
|
116
|
+
(height 35)
|
117
|
+
(name ":SLOT-MAXIMUM-CARDINALITY")
|
118
|
+
(property_list [uml2_ProjectKB_Instance_10131])
|
119
|
+
(widget_class_name "edu.stanford.smi.protege.widget.MaximumCardinalityWidget")
|
120
|
+
(width 200)
|
121
|
+
(x 200)
|
122
|
+
(y 180))
|
123
|
+
|
124
|
+
([KB_260914_Instance_15] of Widget
|
125
|
+
|
126
|
+
(name ":SLOT-CONSTRAINTS"))
|
127
|
+
|
128
|
+
([KB_260914_Instance_16] of Widget
|
129
|
+
|
130
|
+
(name ":DIRECT-TYPE"))
|
131
|
+
|
132
|
+
([KB_260914_Instance_17] of Widget
|
133
|
+
|
134
|
+
(height 95)
|
135
|
+
(label "Domain")
|
136
|
+
(name ":DIRECT-DOMAIN")
|
137
|
+
(property_list [uml2_ProjectKB_Instance_10123])
|
138
|
+
(widget_class_name "edu.stanford.smi.protege.widget.DirectDomainWidget")
|
139
|
+
(width 200)
|
140
|
+
(x 400)
|
141
|
+
(y 180))
|
142
|
+
|
143
|
+
([KB_260914_Instance_18] of Widget
|
144
|
+
|
145
|
+
(height 90)
|
146
|
+
(label "Template Values")
|
147
|
+
(name ":SLOT-VALUES")
|
148
|
+
(property_list [uml2_ProjectKB_Instance_10124])
|
149
|
+
(widget_class_name "edu.stanford.smi.protege.widget.SlotValuesWidget")
|
150
|
+
(width 200)
|
151
|
+
(x 400)
|
152
|
+
(y 0))
|
153
|
+
|
154
|
+
([KB_260914_Instance_19] of Widget
|
155
|
+
|
156
|
+
(name ":DIRECT-SUPERSLOTS"))
|
157
|
+
|
158
|
+
([KB_260914_Instance_2] of Widget
|
159
|
+
|
160
|
+
(name ":DIRECT-INSTANCES"))
|
161
|
+
|
162
|
+
([KB_260914_Instance_20] of Widget
|
163
|
+
|
164
|
+
(name ":DIRECT-SUBSLOTS"))
|
165
|
+
|
166
|
+
([KB_260914_Instance_21] of Widget
|
167
|
+
|
168
|
+
(height 90)
|
169
|
+
(label "Default")
|
170
|
+
(name ":SLOT-DEFAULTS")
|
171
|
+
(property_list [uml2_ProjectKB_Instance_10125])
|
172
|
+
(widget_class_name "edu.stanford.smi.protege.widget.DefaultValuesWidget")
|
173
|
+
(width 200)
|
174
|
+
(x 400)
|
175
|
+
(y 90))
|
176
|
+
|
177
|
+
([KB_260914_Instance_22] of Widget
|
178
|
+
|
179
|
+
(height 120)
|
180
|
+
(label "Documentation")
|
181
|
+
(name ":DOCUMENTATION")
|
182
|
+
(property_list [uml2_ProjectKB_Instance_10126])
|
183
|
+
(widget_class_name "edu.stanford.smi.protege.widget.DocumentationWidget")
|
184
|
+
(width 200)
|
185
|
+
(x 200)
|
186
|
+
(y 0))
|
187
|
+
|
188
|
+
([KB_260914_Instance_23] of Widget
|
189
|
+
|
190
|
+
(height 60)
|
191
|
+
(label "Maximum")
|
192
|
+
(name ":SLOT-NUMERIC-MAXIMUM")
|
193
|
+
(property_list [uml2_ProjectKB_Instance_10127])
|
194
|
+
(widget_class_name "edu.stanford.smi.protege.widget.NumericMaximumWidget")
|
195
|
+
(width 100)
|
196
|
+
(x 100)
|
197
|
+
(y 215))
|
198
|
+
|
199
|
+
([KB_260914_Instance_24] of Widget
|
200
|
+
|
201
|
+
(height 60)
|
202
|
+
(label "Minimum")
|
203
|
+
(name ":SLOT-NUMERIC-MINIMUM")
|
204
|
+
(property_list [uml2_ProjectKB_Instance_10128])
|
205
|
+
(widget_class_name "edu.stanford.smi.protege.widget.NumericMinimumWidget")
|
206
|
+
(width 100)
|
207
|
+
(x 0)
|
208
|
+
(y 215))
|
209
|
+
|
210
|
+
([KB_260914_Instance_25] of Widget
|
211
|
+
|
212
|
+
(name ":ASSOCIATED-FACET"))
|
213
|
+
|
214
|
+
([KB_260914_Instance_26] of Widget
|
215
|
+
|
216
|
+
(height 60)
|
217
|
+
(label "Name")
|
218
|
+
(name ":NAME")
|
219
|
+
(property_list [uml2_ProjectKB_Instance_10129])
|
220
|
+
(widget_class_name "edu.stanford.smi.protege.widget.InstanceNameWidget")
|
221
|
+
(width 200)
|
222
|
+
(x 0)
|
223
|
+
(y 0))
|
224
|
+
|
225
|
+
([KB_260914_Instance_27] of Widget
|
226
|
+
|
227
|
+
(height 60)
|
228
|
+
(label "Inverse Slot")
|
229
|
+
(name ":SLOT-INVERSE")
|
230
|
+
(property_list [uml2_ProjectKB_Instance_10132])
|
231
|
+
(widget_class_name "edu.stanford.smi.protege.widget.InverseSlotWidget")
|
232
|
+
(width 200)
|
233
|
+
(x 200)
|
234
|
+
(y 215))
|
235
|
+
|
236
|
+
([KB_260914_Instance_28] of Widget
|
237
|
+
|
238
|
+
(height 155)
|
239
|
+
(label "Value Type")
|
240
|
+
(name ":SLOT-VALUE-TYPE")
|
241
|
+
(property_list [uml2_ProjectKB_Instance_10133])
|
242
|
+
(widget_class_name "edu.stanford.smi.protege.widget.ValueTypeWidget")
|
243
|
+
(width 200)
|
244
|
+
(x 0)
|
245
|
+
(y 60))
|
246
|
+
|
247
|
+
([KB_260914_Instance_29] of Property_List
|
248
|
+
|
249
|
+
(name "facet widget properties")
|
250
|
+
(properties
|
251
|
+
[KB_260914_Instance_30]
|
252
|
+
[KB_260914_Instance_31]
|
253
|
+
[KB_260914_Instance_32]))
|
254
|
+
|
255
|
+
([KB_260914_Instance_3] of Widget
|
256
|
+
|
257
|
+
(name ":DIRECT-SUBCLASSES"))
|
258
|
+
|
259
|
+
([KB_260914_Instance_30] of Widget
|
260
|
+
|
261
|
+
(height 60)
|
262
|
+
(label "Name")
|
263
|
+
(name ":NAME")
|
264
|
+
(widget_class_name "edu.stanford.smi.protege.widget.InstanceNameWidget")
|
265
|
+
(width 200)
|
266
|
+
(x 0)
|
267
|
+
(y 0))
|
268
|
+
|
269
|
+
([KB_260914_Instance_31] of Widget
|
270
|
+
|
271
|
+
(height 120)
|
272
|
+
(label "Documentation")
|
273
|
+
(name ":DOCUMENTATION")
|
274
|
+
(widget_class_name "edu.stanford.smi.protege.widget.DocumentationWidget")
|
275
|
+
(width 200)
|
276
|
+
(x 200)
|
277
|
+
(y 0))
|
278
|
+
|
279
|
+
([KB_260914_Instance_32] of Widget
|
280
|
+
|
281
|
+
(height 60)
|
282
|
+
(label "Associated Slot")
|
283
|
+
(name ":ASSOCIATED-SLOT")
|
284
|
+
(widget_class_name "edu.stanford.smi.protege.widget.InstanceFieldWidget")
|
285
|
+
(width 200)
|
286
|
+
(x 0)
|
287
|
+
(y 60))
|
288
|
+
|
289
|
+
([KB_260914_Instance_33] of Property_List
|
290
|
+
|
291
|
+
(properties
|
292
|
+
[KB_260914_Instance_34]
|
293
|
+
[KB_260914_Instance_35]
|
294
|
+
[KB_260914_Instance_36]
|
295
|
+
[KB_260914_Instance_37]))
|
296
|
+
|
297
|
+
([KB_260914_Instance_34] of Widget
|
298
|
+
|
299
|
+
(name ":ANNOTATED-INSTANCE"))
|
300
|
+
|
301
|
+
([KB_260914_Instance_35] of Widget
|
302
|
+
|
303
|
+
(name ":CREATOR"))
|
304
|
+
|
305
|
+
([KB_260914_Instance_36] of Widget
|
306
|
+
|
307
|
+
(name ":CREATION-TIMESTAMP"))
|
308
|
+
|
309
|
+
([KB_260914_Instance_37] of Widget
|
310
|
+
|
311
|
+
(height 100)
|
312
|
+
(is_hidden FALSE)
|
313
|
+
(name ":ANNOTATION-TEXT")
|
314
|
+
(widget_class_name "edu.stanford.smi.protege.widget.YellowStickyWidget")
|
315
|
+
(width 200)
|
316
|
+
(x 0)
|
317
|
+
(y 0))
|
318
|
+
|
319
|
+
([KB_260914_Instance_38] of Property_List
|
320
|
+
|
321
|
+
(properties
|
322
|
+
[KB_260914_Instance_39]
|
323
|
+
[KB_260914_Instance_40]
|
324
|
+
[KB_260914_Instance_41]
|
325
|
+
[KB_260914_Instance_42]))
|
326
|
+
|
327
|
+
([KB_260914_Instance_39] of Widget
|
328
|
+
|
329
|
+
(height 60)
|
330
|
+
(is_hidden FALSE)
|
331
|
+
(label "Name")
|
332
|
+
(name ":PAL-NAME")
|
333
|
+
(widget_class_name "edu.stanford.smi.protege.widget.TextFieldWidget")
|
334
|
+
(width 275)
|
335
|
+
(x 0)
|
336
|
+
(y 0))
|
337
|
+
|
338
|
+
([KB_260914_Instance_4] of Widget
|
339
|
+
|
340
|
+
(name ":DIRECT-SUPERCLASSES"))
|
341
|
+
|
342
|
+
([KB_260914_Instance_40] of Widget
|
343
|
+
|
344
|
+
(height 180)
|
345
|
+
(is_hidden FALSE)
|
346
|
+
(label "Range")
|
347
|
+
(name ":PAL-RANGE")
|
348
|
+
(widget_class_name "edu.stanford.smi.protegex.widget.pal.constraint.PalRangeWidget")
|
349
|
+
(width 250)
|
350
|
+
(x 275)
|
351
|
+
(y 180))
|
352
|
+
|
353
|
+
([KB_260914_Instance_41] of Widget
|
354
|
+
|
355
|
+
(height 180)
|
356
|
+
(is_hidden FALSE)
|
357
|
+
(label "Description")
|
358
|
+
(name ":PAL-DESCRIPTION")
|
359
|
+
(widget_class_name "edu.stanford.smi.protege.widget.TextAreaWidget")
|
360
|
+
(width 250)
|
361
|
+
(x 275)
|
362
|
+
(y 0))
|
363
|
+
|
364
|
+
([KB_260914_Instance_42] of Widget
|
365
|
+
|
366
|
+
(height 300)
|
367
|
+
(is_hidden FALSE)
|
368
|
+
(label "Statement")
|
369
|
+
(name ":PAL-STATEMENT")
|
370
|
+
(widget_class_name "edu.stanford.smi.protegex.widget.pal.constraint.PalConstraintWidget")
|
371
|
+
(width 275)
|
372
|
+
(x 0)
|
373
|
+
(y 60))
|
374
|
+
|
375
|
+
([KB_260914_Instance_5] of Widget
|
376
|
+
|
377
|
+
(height 120)
|
378
|
+
(label "Documentation")
|
379
|
+
(name ":DOCUMENTATION")
|
380
|
+
(property_list [uml2_ProjectKB_Instance_10116])
|
381
|
+
(widget_class_name "edu.stanford.smi.protege.widget.DocumentationWidget")
|
382
|
+
(width 200)
|
383
|
+
(x 200)
|
384
|
+
(y 0))
|
385
|
+
|
386
|
+
([KB_260914_Instance_6] of Widget
|
387
|
+
|
388
|
+
(height 60)
|
389
|
+
(label "Name")
|
390
|
+
(name ":NAME")
|
391
|
+
(property_list [uml2_ProjectKB_Instance_10117])
|
392
|
+
(widget_class_name "edu.stanford.smi.protege.widget.InstanceNameWidget")
|
393
|
+
(width 200)
|
394
|
+
(x 0)
|
395
|
+
(y 0))
|
396
|
+
|
397
|
+
([KB_260914_Instance_7] of Widget
|
398
|
+
|
399
|
+
(height 60)
|
400
|
+
(label "Role")
|
401
|
+
(name ":ROLE")
|
402
|
+
(property_list [uml2_ProjectKB_Instance_10121])
|
403
|
+
(widget_class_name "edu.stanford.smi.protege.widget.RoleWidget")
|
404
|
+
(width 200)
|
405
|
+
(x 0)
|
406
|
+
(y 60))
|
407
|
+
|
408
|
+
([KB_260914_Instance_8] of Widget
|
409
|
+
|
410
|
+
(name ":DIRECT-TYPE"))
|
411
|
+
|
412
|
+
([KB_260914_Instance_9] of Widget
|
413
|
+
|
414
|
+
(height 150)
|
415
|
+
(label "Template Slots")
|
416
|
+
(name ":DIRECT-TEMPLATE-SLOTS")
|
417
|
+
(property_list [uml2_ProjectKB_Instance_10118])
|
418
|
+
(widget_class_name "edu.stanford.smi.protege.widget.TemplateSlotsWidget")
|
419
|
+
(width 600)
|
420
|
+
(x 0)
|
421
|
+
(y 120))
|
422
|
+
|
423
|
+
([KB_383860_Instance_0] of String
|
424
|
+
|
425
|
+
(name "factory_class_name")
|
426
|
+
(string_value "edu.stanford.smi.protegex.storage.rdf.configurable.RDFCBackend"))
|
427
|
+
|
428
|
+
([KB_383860_Instance_1] of Options
|
429
|
+
|
430
|
+
(confirm_on_remove FALSE)
|
431
|
+
(display_abstract_class_icon TRUE)
|
432
|
+
(display_hidden_classes TRUE)
|
433
|
+
(display_multi_parent_class_icon TRUE)
|
434
|
+
(is_readonly FALSE)
|
435
|
+
(update_modification_slots FALSE))
|
436
|
+
|
437
|
+
([KB_383860_Instance_87] of Property_List
|
438
|
+
|
439
|
+
(properties [uml2_ProjectKB_Instance_92]))
|
440
|
+
|
441
|
+
([KB_383860_Instance_88] of String
|
442
|
+
|
443
|
+
(name "rdfs_file_name")
|
444
|
+
(string_value "xsd.rdfs"))
|
445
|
+
|
446
|
+
([KB_383860_Instance_89] of String
|
447
|
+
|
448
|
+
(name "rdf_file_name")
|
449
|
+
(string_value "xsd.rdf"))
|
450
|
+
|
451
|
+
([KB_383860_Instance_90] of String
|
452
|
+
|
453
|
+
(name "namespace_name")
|
454
|
+
(string_value "http://protege.stanford.edu/kb#"))
|
455
|
+
|
456
|
+
([KB_383860_Instance_91] of Boolean
|
457
|
+
|
458
|
+
(boolean_value TRUE)
|
459
|
+
(name "use_roundtrip"))
|
460
|
+
|
461
|
+
([PAL_FORM_WIDGET] of Widget
|
462
|
+
|
463
|
+
(height 476)
|
464
|
+
(is_hidden FALSE)
|
465
|
+
(name ":PAL-CONSTRAINT")
|
466
|
+
(property_list [KB_260914_Instance_38])
|
467
|
+
(widget_class_name "edu.stanford.smi.protege.widget.FormWidget")
|
468
|
+
(width 603)
|
469
|
+
(x 0)
|
470
|
+
(y 0))
|
471
|
+
|
472
|
+
([PROJECT] of Project
|
473
|
+
|
474
|
+
(browser_slot_names [BROWSER_SLOT_NAMES])
|
475
|
+
(customized_instance_widgets
|
476
|
+
[STANDARD_SLOT_FORM_WIDGET]
|
477
|
+
[PAL_FORM_WIDGET]
|
478
|
+
[STANDARD_CLASS_FORM_WIDGET]
|
479
|
+
[STANDARD_FACET_FORM_WIDGET]
|
480
|
+
[INSTANCE_ANNOTATION_FORM_WIDGET])
|
481
|
+
(default_cls_metaclass ":STANDARD-CLASS")
|
482
|
+
(default_facet_metaclass ":STANDARD-FACET")
|
483
|
+
(default_instance_widget_class_name "edu.stanford.smi.protege.widget.FormWidget")
|
484
|
+
(default_slot_metaclass ":STANDARD-SLOT")
|
485
|
+
(next_frame_number 0)
|
486
|
+
(options [KB_383860_Instance_1])
|
487
|
+
(sources [SOURCES])
|
488
|
+
(tabs
|
489
|
+
[CLSES_TAB]
|
490
|
+
[SLOTS_TAB]
|
491
|
+
[FORMS_TAB]
|
492
|
+
[INSTANCES_TAB]
|
493
|
+
[QUERIES_TAB]))
|
494
|
+
|
495
|
+
([QUERIES_TAB] of Widget
|
496
|
+
|
497
|
+
(property_list [KB_383860_Instance_87])
|
498
|
+
(widget_class_name "edu.stanford.smi.protegex.queries_tab.QueriesTab"))
|
499
|
+
|
500
|
+
([SLOTS_TAB] of Widget
|
501
|
+
|
502
|
+
(widget_class_name "edu.stanford.smi.protege.widget.SlotsTab"))
|
503
|
+
|
504
|
+
([SOURCES] of Property_List
|
505
|
+
|
506
|
+
(properties
|
507
|
+
[KB_383860_Instance_0]
|
508
|
+
[KB_383860_Instance_88]
|
509
|
+
[KB_383860_Instance_89]
|
510
|
+
[KB_383860_Instance_90]
|
511
|
+
[KB_383860_Instance_91]
|
512
|
+
[KB_054348_Instance_0]
|
513
|
+
[KB_054348_Instance_1]))
|
514
|
+
|
515
|
+
([STANDARD_CLASS_FORM_WIDGET] of Widget
|
516
|
+
|
517
|
+
(name ":STANDARD-CLASS")
|
518
|
+
(property_list [KB_260914_Instance_0])
|
519
|
+
(widget_class_name "edu.stanford.smi.protege.widget.FormWidget"))
|
520
|
+
|
521
|
+
([STANDARD_FACET_FORM_WIDGET] of Widget
|
522
|
+
|
523
|
+
(name ":STANDARD-FACET")
|
524
|
+
(property_list [KB_260914_Instance_29])
|
525
|
+
(widget_class_name "edu.stanford.smi.protege.widget.FormWidget"))
|
526
|
+
|
527
|
+
([STANDARD_SLOT_FORM_WIDGET] of Widget
|
528
|
+
|
529
|
+
(name ":STANDARD-SLOT")
|
530
|
+
(property_list [KB_260914_Instance_12])
|
531
|
+
(widget_class_name "edu.stanford.smi.protege.widget.FormWidget"))
|
532
|
+
|
533
|
+
([uml2_ProjectKB_Instance_10113] of Property_List
|
534
|
+
|
535
|
+
(properties
|
536
|
+
[uml2_ProjectKB_Instance_10114]
|
537
|
+
[uml2_ProjectKB_Instance_10115]))
|
538
|
+
|
539
|
+
([uml2_ProjectKB_Instance_10114] of Boolean
|
540
|
+
|
541
|
+
(boolean_value FALSE)
|
542
|
+
(name "ButtonDisplayed-View References to Value"))
|
543
|
+
|
544
|
+
([uml2_ProjectKB_Instance_10115] of Boolean
|
545
|
+
|
546
|
+
(boolean_value FALSE)
|
547
|
+
(name "ButtonDisplayed-Delete Instance"))
|
548
|
+
|
549
|
+
([uml2_ProjectKB_Instance_10116] of Property_List
|
550
|
+
)
|
551
|
+
|
552
|
+
([uml2_ProjectKB_Instance_10117] of Property_List
|
553
|
+
)
|
554
|
+
|
555
|
+
([uml2_ProjectKB_Instance_10118] of Property_List
|
556
|
+
|
557
|
+
(properties
|
558
|
+
[uml2_ProjectKB_Instance_10119]
|
559
|
+
[uml2_ProjectKB_Instance_10120]))
|
560
|
+
|
561
|
+
([uml2_ProjectKB_Instance_10119] of Boolean
|
562
|
+
|
563
|
+
(boolean_value FALSE)
|
564
|
+
(name "ButtonDisplayed-Move up"))
|
565
|
+
|
566
|
+
([uml2_ProjectKB_Instance_10120] of Boolean
|
567
|
+
|
568
|
+
(boolean_value FALSE)
|
569
|
+
(name "ButtonDisplayed-Move down"))
|
570
|
+
|
571
|
+
([uml2_ProjectKB_Instance_10121] of Property_List
|
572
|
+
)
|
573
|
+
|
574
|
+
([uml2_ProjectKB_Instance_10122] of Property_List
|
575
|
+
|
576
|
+
(name "layout properties"))
|
577
|
+
|
578
|
+
([uml2_ProjectKB_Instance_10123] of Property_List
|
579
|
+
)
|
580
|
+
|
581
|
+
([uml2_ProjectKB_Instance_10124] of Property_List
|
582
|
+
)
|
583
|
+
|
584
|
+
([uml2_ProjectKB_Instance_10125] of Property_List
|
585
|
+
)
|
586
|
+
|
587
|
+
([uml2_ProjectKB_Instance_10126] of Property_List
|
588
|
+
)
|
589
|
+
|
590
|
+
([uml2_ProjectKB_Instance_10127] of Property_List
|
591
|
+
)
|
592
|
+
|
593
|
+
([uml2_ProjectKB_Instance_10128] of Property_List
|
594
|
+
)
|
595
|
+
|
596
|
+
([uml2_ProjectKB_Instance_10129] of Property_List
|
597
|
+
)
|
598
|
+
|
599
|
+
([uml2_ProjectKB_Instance_10130] of Property_List
|
600
|
+
)
|
601
|
+
|
602
|
+
([uml2_ProjectKB_Instance_10131] of Property_List
|
603
|
+
)
|
604
|
+
|
605
|
+
([uml2_ProjectKB_Instance_10132] of Property_List
|
606
|
+
)
|
607
|
+
|
608
|
+
([uml2_ProjectKB_Instance_10133] of Property_List
|
609
|
+
)
|
610
|
+
|
611
|
+
([uml2_ProjectKB_Instance_92] of String
|
612
|
+
|
613
|
+
(name "SearchTab_Query"))
|
614
|
+
|
615
|
+
([xsd_ProjectKB_Instance_0] of Widget
|
616
|
+
|
617
|
+
(is_hidden TRUE)
|
618
|
+
(property_list [xsd_ProjectKB_Instance_1])
|
619
|
+
(widget_class_name "TGViztab.TGVizTab"))
|
620
|
+
|
621
|
+
([xsd_ProjectKB_Instance_1] of Property_List
|
622
|
+
)
|
623
|
+
|
624
|
+
([xsd_ProjectKB_Instance_10] of Widget
|
625
|
+
|
626
|
+
(is_hidden TRUE)
|
627
|
+
(property_list [xsd_ProjectKB_Instance_11])
|
628
|
+
(widget_class_name "edu.stanford.smi.RemoteKBTab.WordNetTab"))
|
629
|
+
|
630
|
+
([xsd_ProjectKB_Instance_10073] of Widget
|
631
|
+
|
632
|
+
(is_hidden FALSE)
|
633
|
+
(name "uml2:Operation")
|
634
|
+
(property_list [xsd_ProjectKB_Instance_10074])
|
635
|
+
(widget_class_name "edu.stanford.smi.protege.widget.FormWidget"))
|
636
|
+
|
637
|
+
([xsd_ProjectKB_Instance_10074] of Property_List
|
638
|
+
|
639
|
+
(properties [xsd_ProjectKB_Instance_10075]))
|
640
|
+
|
641
|
+
([xsd_ProjectKB_Instance_10075] of Property_List
|
642
|
+
|
643
|
+
(name "layout properties"))
|
644
|
+
|
645
|
+
([xsd_ProjectKB_Instance_10076] of Widget
|
646
|
+
|
647
|
+
(is_hidden FALSE)
|
648
|
+
(name "uml2:Property")
|
649
|
+
(property_list [xsd_ProjectKB_Instance_10077])
|
650
|
+
(widget_class_name "edu.stanford.smi.protege.widget.FormWidget"))
|
651
|
+
|
652
|
+
([xsd_ProjectKB_Instance_10077] of Property_List
|
653
|
+
|
654
|
+
(properties [xsd_ProjectKB_Instance_10078]))
|
655
|
+
|
656
|
+
([xsd_ProjectKB_Instance_10078] of Property_List
|
657
|
+
|
658
|
+
(name "layout properties"))
|
659
|
+
|
660
|
+
([xsd_ProjectKB_Instance_10079] of Widget
|
661
|
+
|
662
|
+
(is_hidden FALSE)
|
663
|
+
(name "uml2:Interface")
|
664
|
+
(property_list [xsd_ProjectKB_Instance_10080])
|
665
|
+
(widget_class_name "edu.stanford.smi.protege.widget.FormWidget"))
|
666
|
+
|
667
|
+
([xsd_ProjectKB_Instance_10080] of Property_List
|
668
|
+
|
669
|
+
(properties [xsd_ProjectKB_Instance_10081]))
|
670
|
+
|
671
|
+
([xsd_ProjectKB_Instance_10081] of Property_List
|
672
|
+
|
673
|
+
(name "layout properties"))
|
674
|
+
|
675
|
+
([xsd_ProjectKB_Instance_10082] of Widget
|
676
|
+
|
677
|
+
(is_hidden FALSE)
|
678
|
+
(name "uml2:Package")
|
679
|
+
(property_list [xsd_ProjectKB_Instance_10083])
|
680
|
+
(widget_class_name "edu.stanford.smi.protege.widget.FormWidget"))
|
681
|
+
|
682
|
+
([xsd_ProjectKB_Instance_10083] of Property_List
|
683
|
+
|
684
|
+
(properties [xsd_ProjectKB_Instance_10084]))
|
685
|
+
|
686
|
+
([xsd_ProjectKB_Instance_10084] of Property_List
|
687
|
+
|
688
|
+
(name "layout properties"))
|
689
|
+
|
690
|
+
([xsd_ProjectKB_Instance_10085] of Widget
|
691
|
+
|
692
|
+
(is_hidden FALSE)
|
693
|
+
(name "uml2:Model")
|
694
|
+
(property_list [xsd_ProjectKB_Instance_10086])
|
695
|
+
(widget_class_name "edu.stanford.smi.protege.widget.FormWidget"))
|
696
|
+
|
697
|
+
([xsd_ProjectKB_Instance_10086] of Property_List
|
698
|
+
|
699
|
+
(properties [xsd_ProjectKB_Instance_10087]))
|
700
|
+
|
701
|
+
([xsd_ProjectKB_Instance_10087] of Property_List
|
702
|
+
|
703
|
+
(name "layout properties"))
|
704
|
+
|
705
|
+
([xsd_ProjectKB_Instance_10088] of Widget
|
706
|
+
|
707
|
+
(is_hidden FALSE)
|
708
|
+
(name "uml2:LiteralInteger")
|
709
|
+
(property_list [xsd_ProjectKB_Instance_10089])
|
710
|
+
(widget_class_name "edu.stanford.smi.protege.widget.FormWidget"))
|
711
|
+
|
712
|
+
([xsd_ProjectKB_Instance_10089] of Property_List
|
713
|
+
|
714
|
+
(properties [xsd_ProjectKB_Instance_10090]))
|
715
|
+
|
716
|
+
([xsd_ProjectKB_Instance_10090] of Property_List
|
717
|
+
|
718
|
+
(name "layout properties"))
|
719
|
+
|
720
|
+
([xsd_ProjectKB_Instance_10091] of Widget
|
721
|
+
|
722
|
+
(is_hidden FALSE)
|
723
|
+
(name "uml2:LiteralUnlimitedNatural")
|
724
|
+
(property_list [xsd_ProjectKB_Instance_10092])
|
725
|
+
(widget_class_name "edu.stanford.smi.protege.widget.FormWidget"))
|
726
|
+
|
727
|
+
([xsd_ProjectKB_Instance_10092] of Property_List
|
728
|
+
|
729
|
+
(properties [xsd_ProjectKB_Instance_10093]))
|
730
|
+
|
731
|
+
([xsd_ProjectKB_Instance_10093] of Property_List
|
732
|
+
|
733
|
+
(name "layout properties"))
|
734
|
+
|
735
|
+
([xsd_ProjectKB_Instance_10094] of String
|
736
|
+
|
737
|
+
(name ":INSTANCE-ANNOTATION")
|
738
|
+
(string_value "%3AANNOTATION-TEXT"))
|
739
|
+
|
740
|
+
([xsd_ProjectKB_Instance_10095] of String
|
741
|
+
|
742
|
+
(name ":PAL-CONSTRAINT")
|
743
|
+
(string_value "%3APAL-NAME"))
|
744
|
+
|
745
|
+
([xsd_ProjectKB_Instance_10096] of String
|
746
|
+
|
747
|
+
(name ":META-CLASS")
|
748
|
+
(string_value "%3ANAME"))
|
749
|
+
|
750
|
+
([xsd_ProjectKB_Instance_11] of Property_List
|
751
|
+
)
|
752
|
+
|
753
|
+
([xsd_ProjectKB_Instance_12] of Widget
|
754
|
+
|
755
|
+
(is_hidden TRUE)
|
756
|
+
(property_list [xsd_ProjectKB_Instance_13])
|
757
|
+
(widget_class_name "edu.stanford.smi.protegex.owl.ui.metadatatab.OWLMetadataTab"))
|
758
|
+
|
759
|
+
([xsd_ProjectKB_Instance_13] of Property_List
|
760
|
+
)
|
761
|
+
|
762
|
+
([xsd_ProjectKB_Instance_14] of Widget
|
763
|
+
|
764
|
+
(is_hidden TRUE)
|
765
|
+
(property_list [xsd_ProjectKB_Instance_15])
|
766
|
+
(widget_class_name "edu.stanford.smi.protegex.changes.ChangesTab"))
|
767
|
+
|
768
|
+
([xsd_ProjectKB_Instance_15] of Property_List
|
769
|
+
)
|
770
|
+
|
771
|
+
([xsd_ProjectKB_Instance_16] of Widget
|
772
|
+
|
773
|
+
(is_hidden TRUE)
|
774
|
+
(property_list [xsd_ProjectKB_Instance_17])
|
775
|
+
(widget_class_name "edu.stanford.smi.protegex.owl.ui.widget.OWLFormsTab"))
|
776
|
+
|
777
|
+
([xsd_ProjectKB_Instance_17] of Property_List
|
778
|
+
)
|
779
|
+
|
780
|
+
([xsd_ProjectKB_Instance_18] of Widget
|
781
|
+
|
782
|
+
(is_hidden TRUE)
|
783
|
+
(property_list [xsd_ProjectKB_Instance_19])
|
784
|
+
(widget_class_name "ezpal.EZPalTab"))
|
785
|
+
|
786
|
+
([xsd_ProjectKB_Instance_19] of Property_List
|
787
|
+
)
|
788
|
+
|
789
|
+
([xsd_ProjectKB_Instance_2] of Widget
|
790
|
+
|
791
|
+
(is_hidden TRUE)
|
792
|
+
(property_list [xsd_ProjectKB_Instance_3])
|
793
|
+
(widget_class_name "dfki.protege.ontoviz_tab.OntovizTab"))
|
794
|
+
|
795
|
+
([xsd_ProjectKB_Instance_20] of Widget
|
796
|
+
|
797
|
+
(is_hidden TRUE)
|
798
|
+
(property_list [xsd_ProjectKB_Instance_21])
|
799
|
+
(widget_class_name "edu.stanford.smi.protegex.owl.swrl.ui.tab.SWRLTab"))
|
800
|
+
|
801
|
+
([xsd_ProjectKB_Instance_21] of Property_List
|
802
|
+
)
|
803
|
+
|
804
|
+
([xsd_ProjectKB_Instance_22] of Widget
|
805
|
+
|
806
|
+
(is_hidden TRUE)
|
807
|
+
(property_list [xsd_ProjectKB_Instance_23])
|
808
|
+
(widget_class_name "edu.stanford.smi.protegex.fctab.FacetConstraintsTab"))
|
809
|
+
|
810
|
+
([xsd_ProjectKB_Instance_23] of Property_List
|
811
|
+
)
|
812
|
+
|
813
|
+
([xsd_ProjectKB_Instance_24] of Widget
|
814
|
+
|
815
|
+
(is_hidden TRUE)
|
816
|
+
(property_list [xsd_ProjectKB_Instance_25])
|
817
|
+
(widget_class_name "edu.stanford.smi.protegex.changes.changesKBViewTab.ChangesKBViewTab"))
|
818
|
+
|
819
|
+
([xsd_ProjectKB_Instance_25] of Property_List
|
820
|
+
)
|
821
|
+
|
822
|
+
([xsd_ProjectKB_Instance_26] of Widget
|
823
|
+
|
824
|
+
(is_hidden TRUE)
|
825
|
+
(property_list [xsd_ProjectKB_Instance_27])
|
826
|
+
(widget_class_name "edu.stanford.smi.protegex.xml.tab.XMLTab"))
|
827
|
+
|
828
|
+
([xsd_ProjectKB_Instance_27] of Property_List
|
829
|
+
)
|
830
|
+
|
831
|
+
([xsd_ProjectKB_Instance_28] of Widget
|
832
|
+
|
833
|
+
(is_hidden TRUE)
|
834
|
+
(property_list [xsd_ProjectKB_Instance_29])
|
835
|
+
(widget_class_name "edu.stanford.smi.protegex.prompt.PromptTab"))
|
836
|
+
|
837
|
+
([xsd_ProjectKB_Instance_29] of Property_List
|
838
|
+
)
|
839
|
+
|
840
|
+
([xsd_ProjectKB_Instance_3] of Property_List
|
841
|
+
)
|
842
|
+
|
843
|
+
([xsd_ProjectKB_Instance_30] of Widget
|
844
|
+
|
845
|
+
(is_hidden TRUE)
|
846
|
+
(property_list [xsd_ProjectKB_Instance_31])
|
847
|
+
(widget_class_name "edu.stanford.smi.protege.widget.KAToolTab"))
|
848
|
+
|
849
|
+
([xsd_ProjectKB_Instance_31] of Property_List
|
850
|
+
)
|
851
|
+
|
852
|
+
([xsd_ProjectKB_Instance_32] of Widget
|
853
|
+
|
854
|
+
(is_hidden TRUE)
|
855
|
+
(property_list [xsd_ProjectKB_Instance_33])
|
856
|
+
(widget_class_name "edu.stanford.smi.protegex.owl.ui.properties.OWLPropertiesTab"))
|
857
|
+
|
858
|
+
([xsd_ProjectKB_Instance_33] of Property_List
|
859
|
+
)
|
860
|
+
|
861
|
+
([xsd_ProjectKB_Instance_34] of Widget
|
862
|
+
|
863
|
+
(is_hidden TRUE)
|
864
|
+
(property_list [xsd_ProjectKB_Instance_35])
|
865
|
+
(widget_class_name "edu.stanford.smi.protege.widget.ProtegePropertiesTab"))
|
866
|
+
|
867
|
+
([xsd_ProjectKB_Instance_35] of Property_List
|
868
|
+
)
|
869
|
+
|
870
|
+
([xsd_ProjectKB_Instance_36] of Widget
|
871
|
+
|
872
|
+
(is_hidden TRUE)
|
873
|
+
(property_list [xsd_ProjectKB_Instance_37])
|
874
|
+
(widget_class_name "edu.stanford.smi.protegex.widget.pal.PalConstraintsTab"))
|
875
|
+
|
876
|
+
([xsd_ProjectKB_Instance_37] of Property_List
|
877
|
+
)
|
878
|
+
|
879
|
+
([xsd_ProjectKB_Instance_38] of Widget
|
880
|
+
|
881
|
+
(is_hidden TRUE)
|
882
|
+
(property_list [xsd_ProjectKB_Instance_39])
|
883
|
+
(widget_class_name "edu.stanford.smi.protege.widget.instance_tree.KnowledgeTreeTab"))
|
884
|
+
|
885
|
+
([xsd_ProjectKB_Instance_39] of Property_List
|
886
|
+
)
|
887
|
+
|
888
|
+
([xsd_ProjectKB_Instance_4] of Widget
|
889
|
+
|
890
|
+
(is_hidden TRUE)
|
891
|
+
(property_list [xsd_ProjectKB_Instance_5])
|
892
|
+
(widget_class_name "script.ProtegeScriptTab"))
|
893
|
+
|
894
|
+
([xsd_ProjectKB_Instance_40] of Widget
|
895
|
+
|
896
|
+
(is_hidden TRUE)
|
897
|
+
(property_list [xsd_ProjectKB_Instance_41])
|
898
|
+
(widget_class_name "edu.stanford.smi.protege.widget.instance_tree.InstanceTreeTab"))
|
899
|
+
|
900
|
+
([xsd_ProjectKB_Instance_41] of Property_List
|
901
|
+
)
|
902
|
+
|
903
|
+
([xsd_ProjectKB_Instance_42] of Widget
|
904
|
+
|
905
|
+
(is_hidden TRUE)
|
906
|
+
(property_list [xsd_ProjectKB_Instance_43])
|
907
|
+
(widget_class_name "edu.stanford.smi.protegex.changes.stats.ChangeStatisticsTab"))
|
908
|
+
|
909
|
+
([xsd_ProjectKB_Instance_43] of Property_List
|
910
|
+
)
|
911
|
+
|
912
|
+
([xsd_ProjectKB_Instance_44] of Widget
|
913
|
+
|
914
|
+
(is_hidden TRUE)
|
915
|
+
(property_list [xsd_ProjectKB_Instance_45])
|
916
|
+
(widget_class_name "se.liu.ida.JessTab.JessTab"))
|
917
|
+
|
918
|
+
([xsd_ProjectKB_Instance_45] of Property_List
|
919
|
+
)
|
920
|
+
|
921
|
+
([xsd_ProjectKB_Instance_46] of Widget
|
922
|
+
|
923
|
+
(is_hidden TRUE)
|
924
|
+
(property_list [xsd_ProjectKB_Instance_47])
|
925
|
+
(widget_class_name "ca.uvic.csr.shrimp.jambalaya.JambalayaTab"))
|
926
|
+
|
927
|
+
([xsd_ProjectKB_Instance_47] of Property_List
|
928
|
+
)
|
929
|
+
|
930
|
+
([xsd_ProjectKB_Instance_48] of Widget
|
931
|
+
|
932
|
+
(is_hidden TRUE)
|
933
|
+
(property_list [xsd_ProjectKB_Instance_49])
|
934
|
+
(widget_class_name "edu.stanford.smi.protegex.datamaster.DataMasterTab"))
|
935
|
+
|
936
|
+
([xsd_ProjectKB_Instance_49] of Property_List
|
937
|
+
)
|
938
|
+
|
939
|
+
([xsd_ProjectKB_Instance_5] of Property_List
|
940
|
+
)
|
941
|
+
|
942
|
+
([xsd_ProjectKB_Instance_50] of Widget
|
943
|
+
|
944
|
+
(is_hidden TRUE)
|
945
|
+
(property_list [xsd_ProjectKB_Instance_51])
|
946
|
+
(widget_class_name "edu.stanford.smi.protegex.owl.ui.individuals.OWLIndividualsTab"))
|
947
|
+
|
948
|
+
([xsd_ProjectKB_Instance_51] of Property_List
|
949
|
+
)
|
950
|
+
|
951
|
+
([xsd_ProjectKB_Instance_52] of Widget
|
952
|
+
|
953
|
+
(is_hidden TRUE)
|
954
|
+
(property_list [xsd_ProjectKB_Instance_53])
|
955
|
+
(widget_class_name "uk.ac.man.cs.mig.coode.debugger.test.DebuggerTestTab"))
|
956
|
+
|
957
|
+
([xsd_ProjectKB_Instance_53] of Property_List
|
958
|
+
)
|
959
|
+
|
960
|
+
([xsd_ProjectKB_Instance_54] of Widget
|
961
|
+
|
962
|
+
(is_hidden TRUE)
|
963
|
+
(property_list [xsd_ProjectKB_Instance_55])
|
964
|
+
(widget_class_name "edu.stanford.smi.protegex.owl.ui.cls.OWLClassesTab"))
|
965
|
+
|
966
|
+
([xsd_ProjectKB_Instance_55] of Property_List
|
967
|
+
)
|
968
|
+
|
969
|
+
([xsd_ProjectKB_Instance_56] of Widget
|
970
|
+
|
971
|
+
(is_hidden TRUE)
|
972
|
+
(property_list [xsd_ProjectKB_Instance_57])
|
973
|
+
(widget_class_name "org.algernon.kb.okbc.protege.plugins.AlgernonTab"))
|
974
|
+
|
975
|
+
([xsd_ProjectKB_Instance_57] of Property_List
|
976
|
+
)
|
977
|
+
|
978
|
+
([xsd_ProjectKB_Instance_58] of Widget
|
979
|
+
|
980
|
+
(is_hidden TRUE)
|
981
|
+
(property_list [xsd_ProjectKB_Instance_59])
|
982
|
+
(widget_class_name "edu.stanford.smi.protegex.widget.pal.PalQueriesTab"))
|
983
|
+
|
984
|
+
([xsd_ProjectKB_Instance_59] of Property_List
|
985
|
+
)
|
986
|
+
|
987
|
+
([xsd_ProjectKB_Instance_6] of Widget
|
988
|
+
|
989
|
+
(is_hidden TRUE)
|
990
|
+
(property_list [xsd_ProjectKB_Instance_7])
|
991
|
+
(widget_class_name "edu.stanford.smi.protege.widget.ClsesAndInstancesTab"))
|
992
|
+
|
993
|
+
([xsd_ProjectKB_Instance_60] of Widget
|
994
|
+
|
995
|
+
(is_hidden TRUE)
|
996
|
+
(property_list [xsd_ProjectKB_Instance_61])
|
997
|
+
(widget_class_name "edu.stanford.smi.protegex.chatPlugin.ChatTab"))
|
998
|
+
|
999
|
+
([xsd_ProjectKB_Instance_61] of Property_List
|
1000
|
+
)
|
1001
|
+
|
1002
|
+
([xsd_ProjectKB_Instance_62] of Widget
|
1003
|
+
|
1004
|
+
(is_hidden TRUE)
|
1005
|
+
(property_list [xsd_ProjectKB_Instance_63])
|
1006
|
+
(widget_class_name "edu.stanford.smi.RemoteKBTab.UMLSTab"))
|
1007
|
+
|
1008
|
+
([xsd_ProjectKB_Instance_63] of Property_List
|
1009
|
+
)
|
1010
|
+
|
1011
|
+
([xsd_ProjectKB_Instance_64] of Widget
|
1012
|
+
|
1013
|
+
(is_hidden TRUE)
|
1014
|
+
(property_list [xsd_ProjectKB_Instance_65])
|
1015
|
+
(widget_class_name "edu.stanford.smi.protegex.server_changes.prompt.UsersTab"))
|
1016
|
+
|
1017
|
+
([xsd_ProjectKB_Instance_65] of Property_List
|
1018
|
+
)
|
1019
|
+
|
1020
|
+
([xsd_ProjectKB_Instance_66] of Widget
|
1021
|
+
|
1022
|
+
(is_hidden TRUE)
|
1023
|
+
(property_list [xsd_ProjectKB_Instance_67])
|
1024
|
+
(widget_class_name "uk.ac.man.ac.mig.coode.individuals.ui.OWLDLIndividualsTab"))
|
1025
|
+
|
1026
|
+
([xsd_ProjectKB_Instance_67] of Property_List
|
1027
|
+
)
|
1028
|
+
|
1029
|
+
([xsd_ProjectKB_Instance_68] of Widget
|
1030
|
+
|
1031
|
+
(is_hidden TRUE)
|
1032
|
+
(property_list [xsd_ProjectKB_Instance_69])
|
1033
|
+
(widget_class_name "uk.ac.man.cs.mig.coode.owlviz.ui.OWLVizTab"))
|
1034
|
+
|
1035
|
+
([xsd_ProjectKB_Instance_69] of Property_List
|
1036
|
+
)
|
1037
|
+
|
1038
|
+
([xsd_ProjectKB_Instance_7] of Property_List
|
1039
|
+
)
|
1040
|
+
|
1041
|
+
([xsd_ProjectKB_Instance_70] of Widget
|
1042
|
+
|
1043
|
+
(is_hidden FALSE)
|
1044
|
+
(name "uml2:Class")
|
1045
|
+
(property_list [xsd_ProjectKB_Instance_71])
|
1046
|
+
(widget_class_name "edu.stanford.smi.protege.widget.FormWidget"))
|
1047
|
+
|
1048
|
+
([xsd_ProjectKB_Instance_71] of Property_List
|
1049
|
+
|
1050
|
+
(properties [xsd_ProjectKB_Instance_72]))
|
1051
|
+
|
1052
|
+
([xsd_ProjectKB_Instance_72] of Property_List
|
1053
|
+
|
1054
|
+
(name "layout properties"))
|
1055
|
+
|
1056
|
+
([xsd_ProjectKB_Instance_8] of Widget
|
1057
|
+
|
1058
|
+
(is_hidden TRUE)
|
1059
|
+
(property_list [xsd_ProjectKB_Instance_9])
|
1060
|
+
(widget_class_name "edu.stanford.smi.protege.keywordsearch.StringSearch"))
|
1061
|
+
|
1062
|
+
([xsd_ProjectKB_Instance_9] of Property_List
|
1063
|
+
)
|