@blockml/bom 0.9.4 → 0.9.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.
Files changed (100) hide show
  1. package/blocks/org/blockml/bml/bom/Library.bml +20 -28
  2. package/blocks/org/blockml/bml/bom/README.bml +14 -21
  3. package/blocks/org/blockml/bml/bom/UrmodellType.bml +16 -20
  4. package/blocks/org/blockml/bml/bom/api/ParseOptions.bml +19 -20
  5. package/blocks/org/blockml/bml/bom/api/ParseResult.bml +22 -21
  6. package/blocks/org/blockml/bml/bom/api/SerializeOptions.bml +19 -20
  7. package/blocks/org/blockml/bml/bom/api/SerializeResult.bml +22 -21
  8. package/blocks/org/blockml/bml/bom/api/TypeRegistryReader.bml +13 -17
  9. package/blocks/org/blockml/bml/bom/api/ValidateOptions.bml +25 -22
  10. package/blocks/org/blockml/bml/bom/api/ValidateResult.bml +22 -21
  11. package/blocks/org/blockml/bml/bom/block/AliasEntry.bml +28 -23
  12. package/blocks/org/blockml/bml/bom/block/BlockDefinition.bml +142 -57
  13. package/blocks/org/blockml/bml/bom/block/ChangelogEntry.bml +25 -22
  14. package/blocks/org/blockml/bml/bom/block/DocumentationExample.bml +34 -25
  15. package/blocks/org/blockml/bml/bom/block/DocumentationProseEntry.bml +28 -23
  16. package/blocks/org/blockml/bml/bom/block/DocumentationReference.bml +52 -31
  17. package/blocks/org/blockml/bml/bom/block/GenericType.bml +22 -21
  18. package/blocks/org/blockml/bml/bom/block/KeywordEntry.bml +28 -23
  19. package/blocks/org/blockml/bml/bom/block/TypeReferenceEntityInstance.bml +22 -21
  20. package/blocks/org/blockml/bml/bom/capability/BomEquals.bml +22 -21
  21. package/blocks/org/blockml/bml/bom/capability/StripProvenance.bml +19 -20
  22. package/blocks/org/blockml/bml/bom/common/CharacterDataForm.bml +16 -19
  23. package/blocks/org/blockml/bml/bom/common/Diagnostic.bml +25 -22
  24. package/blocks/org/blockml/bml/bom/common/DiagnosticSeverity.bml +16 -19
  25. package/blocks/org/blockml/bml/bom/common/EmptyElementForm.bml +16 -19
  26. package/blocks/org/blockml/bml/bom/common/HostValue.bml +13 -17
  27. package/blocks/org/blockml/bml/bom/common/MemberSectionName.bml +16 -19
  28. package/blocks/org/blockml/bml/bom/common/MetadataElementTrivia.bml +16 -19
  29. package/blocks/org/blockml/bml/bom/common/SourceInfo.bml +35 -23
  30. package/blocks/org/blockml/bml/bom/common/SourceLocation.bml +28 -23
  31. package/blocks/org/blockml/bml/bom/common/UnknownXmlNode.bml +28 -23
  32. package/blocks/org/blockml/bml/bom/common/XmlNodeKind.bml +16 -19
  33. package/blocks/org/blockml/bml/bom/common/XmlRenderingBlock.bml +16 -19
  34. package/blocks/org/blockml/bml/bom/common/XmlRenderingMember.bml +25 -22
  35. package/blocks/org/blockml/bml/bom/common/XmlTrivia.bml +19 -20
  36. package/blocks/org/blockml/bml/bom/composition/BlockInstance.bml +55 -32
  37. package/blocks/org/blockml/bml/bom/composition/BlockInstanceNode.bml +25 -22
  38. package/blocks/org/blockml/bml/bom/composition/CompositionNode.bml +16 -19
  39. package/blocks/org/blockml/bml/bom/composition/CompositionTemplate.bml +28 -23
  40. package/blocks/org/blockml/bml/bom/composition/DirectiveAttribute.bml +16 -19
  41. package/blocks/org/blockml/bml/bom/composition/EachDirective.bml +25 -22
  42. package/blocks/org/blockml/bml/bom/composition/GenericsBinding.bml +26 -23
  43. package/blocks/org/blockml/bml/bom/composition/IfDirective.bml +19 -20
  44. package/blocks/org/blockml/bml/bom/composition/InstanceAggregationComposition.bml +22 -21
  45. package/blocks/org/blockml/bml/bom/composition/UnlessDirective.bml +19 -20
  46. package/blocks/org/blockml/bml/bom/composition/VirtualContainerNode.bml +28 -23
  47. package/blocks/org/blockml/bml/bom/composition/WithBinding.bml +19 -20
  48. package/blocks/org/blockml/bml/bom/composition/WithDirective.bml +19 -20
  49. package/blocks/org/blockml/bml/bom/document/BomDocument.bml +25 -23
  50. package/blocks/org/blockml/bml/bom/documentation/AbstractionPrinciple.bml +16 -21
  51. package/blocks/org/blockml/bml/bom/documentation/ArchitectureOverview.bml +16 -21
  52. package/blocks/org/blockml/bml/bom/documentation/AuthoredSurfaceTable.bml +14 -17
  53. package/blocks/org/blockml/bml/bom/documentation/CalibratorExample.bml +19 -24
  54. package/blocks/org/blockml/bml/bom/documentation/CompositionDirectives.bml +16 -21
  55. package/blocks/org/blockml/bml/bom/documentation/DesignDecisions.bml +25 -29
  56. package/blocks/org/blockml/bml/bom/documentation/InstanceIdRules.bml +18 -22
  57. package/blocks/org/blockml/bml/bom/documentation/Introduction.bml +16 -21
  58. package/blocks/org/blockml/bml/bom/documentation/LayerSeparation.bml +17 -22
  59. package/blocks/org/blockml/bml/bom/documentation/MemberValueSemantics.bml +20 -22
  60. package/blocks/org/blockml/bml/bom/documentation/PackageOwnership.bml +24 -28
  61. package/blocks/org/blockml/bml/bom/documentation/PublicApi.bml +24 -27
  62. package/blocks/org/blockml/bml/bom/documentation/RelatedDiagnostics.bml +15 -19
  63. package/blocks/org/blockml/bml/bom/documentation/ScopeExclusions.bml +16 -20
  64. package/blocks/org/blockml/bml/bom/documentation/SubBlockAndEmbeddedBlocks.bml +17 -21
  65. package/blocks/org/blockml/bml/bom/documentation/TypeExpressionsOverview.bml +17 -22
  66. package/blocks/org/blockml/bml/bom/documentation/ValidationResponsibilities.bml +16 -21
  67. package/blocks/org/blockml/bml/bom/documentation/VersionRules.bml +16 -20
  68. package/blocks/org/blockml/bml/bom/documentation/XmlComments.bml +17 -21
  69. package/blocks/org/blockml/bml/bom/member/AggregationDefinition.bml +34 -25
  70. package/blocks/org/blockml/bml/bom/member/AssociationDefinition.bml +22 -21
  71. package/blocks/org/blockml/bml/bom/member/CapabilityDefinition.bml +37 -26
  72. package/blocks/org/blockml/bml/bom/member/ConstrainableDefinition.bml +16 -19
  73. package/blocks/org/blockml/bml/bom/member/EmbeddedExpression.bml +22 -21
  74. package/blocks/org/blockml/bml/bom/member/ImplementationBlock.bml +28 -23
  75. package/blocks/org/blockml/bml/bom/member/MemberDefinition.bml +16 -19
  76. package/blocks/org/blockml/bml/bom/member/MemberDefinitionBase.bml +79 -40
  77. package/blocks/org/blockml/bml/bom/member/PropertyDefinition.bml +37 -26
  78. package/blocks/org/blockml/bml/bom/member/PropertyValueEntry.bml +18 -21
  79. package/blocks/org/blockml/bml/bom/type/AnonymousStructType.bml +19 -20
  80. package/blocks/org/blockml/bml/bom/type/GenericParameterReference.bml +19 -20
  81. package/blocks/org/blockml/bml/bom/type/GroupedTypeExpression.bml +22 -21
  82. package/blocks/org/blockml/bml/bom/type/InstanceConfiguration.bml +19 -20
  83. package/blocks/org/blockml/bml/bom/type/Multiplicity.bml +19 -20
  84. package/blocks/org/blockml/bml/bom/type/NamedTypeReference.bml +28 -23
  85. package/blocks/org/blockml/bml/bom/type/SelfTypeReference.bml +16 -19
  86. package/blocks/org/blockml/bml/bom/type/StructField.bml +19 -20
  87. package/blocks/org/blockml/bml/bom/type/TypeDescriptor.bml +14 -19
  88. package/blocks/org/blockml/bml/bom/type/TypeExpression.bml +16 -19
  89. package/blocks/org/blockml/bml/bom/type/UnionTypeExpression.bml +19 -20
  90. package/blocks/org/blockml/bml/bom/value/Address.bml +31 -24
  91. package/blocks/org/blockml/bml/bom/value/AddressValue.bml +19 -20
  92. package/blocks/org/blockml/bml/bom/value/ExpressionValue.bml +25 -22
  93. package/blocks/org/blockml/bml/bom/value/InterpolatedTextValue.bml +26 -22
  94. package/blocks/org/blockml/bml/bom/value/LiteralValue.bml +25 -22
  95. package/blocks/org/blockml/bml/bom/value/MemberValue.bml +16 -19
  96. package/dist/types/block-definition.d.ts +10 -0
  97. package/dist/types/block-definition.d.ts.map +1 -1
  98. package/dist/types/common.d.ts +6 -0
  99. package/dist/types/common.d.ts.map +1 -1
  100. package/package.json +2 -2
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — BlockDefinition
3
- FQN: org.blockml.bml.bom.block.BlockDefinition
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — BlockDefinition
2
+ FQN: org.blockml.bml.bom.block.BlockDefinition-->
3
+ <bomblock:BlockDefinition xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,132 +17,223 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>BlockDefinition</name>
27
- <type>bomblock:BlockDefinition</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Parse-result shape of a block definition document</is>
30
-
31
- <documentation>Urmodell BlockDefinition — distinct from org.blockml.bml.definition.BlockDefinition (meta-model). Stores declared members only — not inherited. TS: baseType and version optional for corpus compatibility; doc 12 normative future may require them.</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Parse-result shape of a block definition document
25
+ </is>
26
+ <documentation>
27
+ Urmodell BlockDefinition — distinct from org.blockml.bml.definition.BlockDefinition (meta-model). Stores declared members only — not inherited. TS: baseType and version optional for corpus compatibility; doc 12 normative future may require them.
28
+ </documentation>
33
29
  <references>
34
30
  <see type="def:BlockDefinition" relation="SeeAlso" />
35
31
  </references>
36
-
37
32
  <properties>
38
33
  <name type="type:Text">
39
- <documentation>name (required). TS type: type:Text.</documentation>
34
+ <documentation>
35
+ name (required). TS type: type:Text.
36
+ </documentation>
40
37
  </name>
41
38
  <type type="type:Text">
42
- <documentation>type (required). TS type: type:Text.</documentation>
39
+ <documentation>
40
+ type (required). TS type: type:Text.
41
+ </documentation>
43
42
  </type>
44
43
  <baseType type="type:Text">
45
- <documentation>baseType (optional). TS type: type:Text.</documentation>
44
+ <documentation>
45
+ baseType (optional). TS type: type:Text.
46
+ </documentation>
46
47
  </baseType>
47
48
  <baseTypeExpression type="bomtype:TypeExpression">
48
- <documentation>Full authored baseType when not a plain FQN (generics, instance configuration). (optional)</documentation>
49
+ <documentation>
50
+ Full authored baseType when not a plain FQN (generics, instance configuration). (optional)
51
+ </documentation>
49
52
  </baseTypeExpression>
50
53
  <version type="type:Text">
51
- <documentation>version (optional). TS type: type:Text.</documentation>
54
+ <documentation>
55
+ version (optional). TS type: type:Text.
56
+ </documentation>
52
57
  </version>
53
58
  <is type="type:Text">
54
- <documentation>is (optional). TS type: type:Text.</documentation>
59
+ <documentation>
60
+ is (optional). TS type: type:Text.
61
+ </documentation>
55
62
  </is>
56
63
  <summaries type="bomblock:DocumentationProseEntry[]">
57
- <documentation>summaries (optional). TS type: bomblock:DocumentationProseEntry[].</documentation>
64
+ <documentation>
65
+ summaries (optional). TS type: bomblock:DocumentationProseEntry[].
66
+ </documentation>
58
67
  </summaries>
59
68
  <keywords type="bomblock:KeywordEntry[]">
60
- <documentation>keywords (optional). TS type: bomblock:KeywordEntry[].</documentation>
69
+ <documentation>
70
+ keywords (optional). TS type: bomblock:KeywordEntry[].
71
+ </documentation>
61
72
  </keywords>
62
73
  <language type="bomblock:TypeReferenceEntityInstance">
63
- <documentation>language (optional). TS type: bomblock:TypeReferenceEntityInstance.</documentation>
74
+ <documentation>
75
+ language (optional). TS type: bomblock:TypeReferenceEntityInstance.
76
+ </documentation>
64
77
  </language>
65
78
  <languageFqn type="type:Text">
66
- <documentation>languageFqn (optional). TS type: type:Text.</documentation>
79
+ <documentation>
80
+ languageFqn (optional). TS type: type:Text.
81
+ </documentation>
67
82
  </languageFqn>
68
83
  <documentations type="bomblock:DocumentationProseEntry[]">
69
- <documentation>documentations (optional). TS type: bomblock:DocumentationProseEntry[].</documentation>
84
+ <documentation>
85
+ documentations (optional). TS type: bomblock:DocumentationProseEntry[].
86
+ </documentation>
70
87
  </documentations>
71
88
  <isNot type="type:Text">
72
- <documentation>TS field isNot; BML XML element is isnot. (optional)</documentation>
89
+ <documentation>
90
+ TS field isNot; BML XML element is isnot. (optional)
91
+ </documentation>
73
92
  </isNot>
74
93
  <aliases type="bomblock:AliasEntry[]">
75
- <documentation>aliases (optional). TS type: bomblock:AliasEntry[].</documentation>
94
+ <documentation>
95
+ aliases (optional). TS type: bomblock:AliasEntry[].
96
+ </documentation>
76
97
  </aliases>
77
98
  <since type="type:Text">
78
- <documentation>since (optional). TS type: type:Text.</documentation>
99
+ <documentation>
100
+ since (optional). TS type: type:Text.
101
+ </documentation>
79
102
  </since>
80
103
  <changelog type="bomblock:ChangelogEntry[]">
81
- <documentation>changelog (optional). TS type: bomblock:ChangelogEntry[].</documentation>
104
+ <documentation>
105
+ changelog (optional). TS type: bomblock:ChangelogEntry[].
106
+ </documentation>
82
107
  </changelog>
83
108
  <examples type="bomblock:DocumentationExample[]">
84
- <documentation>examples (optional). TS type: bomblock:DocumentationExample[].</documentation>
109
+ <documentation>
110
+ examples (optional). TS type: bomblock:DocumentationExample[].
111
+ </documentation>
85
112
  </examples>
86
113
  <references type="bomblock:DocumentationReference[]">
87
- <documentation>references (optional). TS type: bomblock:DocumentationReference[].</documentation>
114
+ <documentation>
115
+ references (optional). TS type: bomblock:DocumentationReference[].
116
+ </documentation>
88
117
  </references>
89
118
  <abstract type="type:Boolean">
90
- <documentation>abstract (optional). TS type: type:Boolean.</documentation>
119
+ <documentation>
120
+ abstract (optional). TS type: type:Boolean.
121
+ </documentation>
91
122
  </abstract>
92
123
  <final type="type:Boolean">
93
- <documentation>final (optional). TS type: type:Boolean.</documentation>
124
+ <documentation>
125
+ final (optional). TS type: type:Boolean.
126
+ </documentation>
94
127
  </final>
95
128
  <xmlRendering type="bomcommon:XmlRenderingBlock">
96
- <documentation>xmlRendering (optional). TS type: bomcommon:XmlRenderingBlock.</documentation>
129
+ <documentation>
130
+ xmlRendering (optional). TS type: bomcommon:XmlRenderingBlock.
131
+ </documentation>
97
132
  </xmlRendering>
98
133
  <generics type="bomcomp:GenericsBinding">
99
- <documentation>Misplaced bml:generics on a Block definition. (optional)</documentation>
134
+ <documentation>
135
+ Misplaced bml:generics on a Block definition. (optional)
136
+ </documentation>
100
137
  </generics>
101
138
  <visibility type="type:Text">
102
- <documentation>"private" | "protected" | "public". Sub-Blocks only. (optional)</documentation>
139
+ <documentation>
140
+ "private" | "protected" | "public". Sub-Blocks only. (optional)
141
+ </documentation>
103
142
  </visibility>
104
143
  <contracts type="bomblock:TypeReferenceEntityInstance[]">
105
- <documentation>contracts (optional). TS type: bomblock:TypeReferenceEntityInstance[].</documentation>
144
+ <documentation>
145
+ contracts (optional). TS type: bomblock:TypeReferenceEntityInstance[].
146
+ </documentation>
106
147
  </contracts>
107
148
  <genericTypes type="bomblock:GenericType[]">
108
- <documentation>genericTypes (optional). TS type: bomblock:GenericType[].</documentation>
149
+ <documentation>
150
+ genericTypes (optional). TS type: bomblock:GenericType[].
151
+ </documentation>
109
152
  </genericTypes>
110
153
  <definitionFqn type="type:Text">
111
- <documentation>definitionFqn (optional). TS type: type:Text.</documentation>
154
+ <documentation>
155
+ definitionFqn (optional). TS type: type:Text.
156
+ </documentation>
112
157
  </definitionFqn>
113
158
  <constraints type="bomcomp:BlockInstance[]">
114
- <documentation>constraints (optional). TS type: bomcomp:BlockInstance[].</documentation>
159
+ <documentation>
160
+ constraints (optional). TS type: bomcomp:BlockInstance[].
161
+ </documentation>
115
162
  </constraints>
116
163
  <members type="bommember:MemberDefinition[]">
117
- <documentation>members (required). TS type: bommember:MemberDefinition[].</documentation>
164
+ <documentation>
165
+ members (required). TS type: bommember:MemberDefinition[].
166
+ </documentation>
118
167
  </members>
119
168
  <subBlocks type="bomblock:BlockDefinition[]">
120
- <documentation>subBlocks (required). TS type: bomblock:BlockDefinition[].</documentation>
169
+ <documentation>
170
+ subBlocks (required). TS type: bomblock:BlockDefinition[].
171
+ </documentation>
121
172
  </subBlocks>
122
173
  <embeddedBlocks type="bomblock:BlockDefinition[]">
123
- <documentation>embeddedBlocks (required). TS type: bomblock:BlockDefinition[].</documentation>
174
+ <documentation>
175
+ embeddedBlocks (required). TS type: bomblock:BlockDefinition[].
176
+ </documentation>
124
177
  </embeddedBlocks>
125
178
  <compositions type="bomcomp:CompositionTemplate[]">
126
- <documentation>compositions (required). TS type: bomcomp:CompositionTemplate[].</documentation>
179
+ <documentation>
180
+ compositions (required). TS type: bomcomp:CompositionTemplate[].
181
+ </documentation>
127
182
  </compositions>
128
183
  <xmlTrivia type="bomcommon:XmlTrivia">
129
- <documentation>xmlTrivia (optional). TS type: bomcommon:XmlTrivia.</documentation>
184
+ <documentation>
185
+ xmlTrivia (optional). TS type: bomcommon:XmlTrivia.
186
+ </documentation>
130
187
  </xmlTrivia>
131
188
  <memberSectionTrivia type="type:Text">
132
- <documentation>Partial&lt;Record&lt;MemberSectionName, XmlTrivia>>. (optional)</documentation>
189
+ <documentation>
190
+ Partial&lt;Record&lt;MemberSectionName, XmlTrivia>>. (optional)
191
+ </documentation>
133
192
  </memberSectionTrivia>
134
193
  <metadataTrivia type="bomcommon:MetadataElementTrivia">
135
- <documentation>metadataTrivia (optional). TS type: bomcommon:MetadataElementTrivia.</documentation>
194
+ <documentation>
195
+ metadataTrivia (optional). TS type: bomcommon:MetadataElementTrivia.
196
+ </documentation>
136
197
  </metadataTrivia>
137
198
  <source type="bomcommon:SourceLocation">
138
- <documentation>source (optional). TS type: bomcommon:SourceLocation.</documentation>
199
+ <documentation>
200
+ source (optional). TS type: bomcommon:SourceLocation.
201
+ </documentation>
139
202
  </source>
140
203
  <typeSource type="bomcommon:SourceLocation">
141
- <documentation>Span of the type= attribute or &lt;type> element value. (optional)</documentation>
204
+ <documentation>
205
+ Span of the type= attribute or &lt;type> element value. (optional)
206
+ </documentation>
142
207
  </typeSource>
143
208
  <baseTypeSource type="bomcommon:SourceLocation">
144
- <documentation>baseTypeSource (optional). TS type: bomcommon:SourceLocation.</documentation>
209
+ <documentation>
210
+ baseTypeSource (optional). TS type: bomcommon:SourceLocation.
211
+ </documentation>
145
212
  </baseTypeSource>
146
213
  <unknownElements type="bomcommon:UnknownXmlNode[]">
147
- <documentation>unknownElements (optional). TS type: bomcommon:UnknownXmlNode[].</documentation>
214
+ <documentation>
215
+ unknownElements (optional). TS type: bomcommon:UnknownXmlNode[].
216
+ </documentation>
148
217
  </unknownElements>
149
218
  <unknownAttributes type="type:Text">
150
- <documentation>Record of unknown attributes on the grammar node. (optional)</documentation>
219
+ <documentation>
220
+ Record of unknown attributes on the grammar node. (optional)
221
+ </documentation>
151
222
  </unknownAttributes>
223
+ <wrapperForm type="type:Text">
224
+ <documentation>
225
+ Authored definition wrapper: "block" (legacy) or "type" (tag-as-identity). TS type: type:Text. (optional)
226
+ </documentation>
227
+ </wrapperForm>
228
+ <authoredNameChild type="type:Boolean">
229
+ <documentation>
230
+ True when a child &lt;name> element was authored. Omitted when absent. (optional)
231
+ </documentation>
232
+ </authoredNameChild>
233
+ <authoredTypeChild type="type:Boolean">
234
+ <documentation>
235
+ True when a child &lt;type> element was authored. Omitted when absent. (optional)
236
+ </documentation>
237
+ </authoredTypeChild>
152
238
  </properties>
153
-
154
- </block>
239
+ </bomblock:BlockDefinition>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — ChangelogEntry
3
- FQN: org.blockml.bml.bom.block.ChangelogEntry
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — ChangelogEntry
2
+ FQN: org.blockml.bml.bom.block.ChangelogEntry-->
3
+ <bomblock:ChangelogEntry xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,26 +17,35 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>ChangelogEntry</name>
27
- <type>bomblock:ChangelogEntry</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Changelog entry in BOM</is>
30
-
31
- <documentation>Changelog entry in BOM</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Changelog entry in BOM
25
+ </is>
26
+ <documentation>
27
+ Changelog entry in BOM
28
+ </documentation>
33
29
  <properties>
34
30
  <version type="type:Text">
35
- <documentation>version (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ version (required). TS type: type:Text.
33
+ </documentation>
36
34
  </version>
37
35
  <text type="type:Text">
38
- <documentation>text (required). TS type: type:Text.</documentation>
36
+ <documentation>
37
+ text (required). TS type: type:Text.
38
+ </documentation>
39
39
  </text>
40
40
  <languageFqn type="type:Text">
41
- <documentation>languageFqn (optional). TS type: type:Text.</documentation>
41
+ <documentation>
42
+ languageFqn (optional). TS type: type:Text.
43
+ </documentation>
42
44
  </languageFqn>
43
45
  <source type="bomcommon:SourceLocation">
44
- <documentation>source (optional). TS type: bomcommon:SourceLocation.</documentation>
46
+ <documentation>
47
+ source (optional). TS type: bomcommon:SourceLocation.
48
+ </documentation>
45
49
  </source>
46
50
  </properties>
47
-
48
- </block>
51
+ </bomblock:ChangelogEntry>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — DocumentationExample
3
- FQN: org.blockml.bml.bom.block.DocumentationExample
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — DocumentationExample
2
+ FQN: org.blockml.bml.bom.block.DocumentationExample-->
3
+ <bomblock:DocumentationExample xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,35 +17,50 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>DocumentationExample</name>
27
- <type>bomblock:DocumentationExample</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Usage example entry in BOM</is>
30
-
31
- <documentation>Usage example entry in BOM</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Usage example entry in BOM
25
+ </is>
26
+ <documentation>
27
+ Usage example entry in BOM
28
+ </documentation>
33
29
  <properties>
34
30
  <title type="type:Text">
35
- <documentation>title (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ title (required). TS type: type:Text.
33
+ </documentation>
36
34
  </title>
37
35
  <content type="type:Text">
38
- <documentation>content (required). TS type: type:Text.</documentation>
36
+ <documentation>
37
+ content (required). TS type: type:Text.
38
+ </documentation>
39
39
  </content>
40
40
  <authoredCharacterDataForm type="bomcommon:CharacterDataForm">
41
- <documentation>authoredCharacterDataForm (optional). TS type: bomcommon:CharacterDataForm.</documentation>
41
+ <documentation>
42
+ authoredCharacterDataForm (optional). TS type: bomcommon:CharacterDataForm.
43
+ </documentation>
42
44
  </authoredCharacterDataForm>
43
45
  <contentLanguageFqn type="type:Text">
44
- <documentation>contentLanguageFqn (optional). TS type: type:Text.</documentation>
46
+ <documentation>
47
+ contentLanguageFqn (optional). TS type: type:Text.
48
+ </documentation>
45
49
  </contentLanguageFqn>
46
50
  <snippet type="type:Boolean">
47
- <documentation>snippet (optional). TS type: type:Boolean.</documentation>
51
+ <documentation>
52
+ snippet (optional). TS type: type:Boolean.
53
+ </documentation>
48
54
  </snippet>
49
55
  <namespace type="type:Text">
50
- <documentation>namespace (optional). TS type: type:Text.</documentation>
56
+ <documentation>
57
+ namespace (optional). TS type: type:Text.
58
+ </documentation>
51
59
  </namespace>
52
60
  <source type="bomcommon:SourceLocation">
53
- <documentation>source (optional). TS type: bomcommon:SourceLocation.</documentation>
61
+ <documentation>
62
+ source (optional). TS type: bomcommon:SourceLocation.
63
+ </documentation>
54
64
  </source>
55
65
  </properties>
56
-
57
- </block>
66
+ </bomblock:DocumentationExample>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — DocumentationProseEntry
3
- FQN: org.blockml.bml.bom.block.DocumentationProseEntry
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — DocumentationProseEntry
2
+ FQN: org.blockml.bml.bom.block.DocumentationProseEntry-->
3
+ <bomblock:DocumentationProseEntry xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,29 +17,40 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>DocumentationProseEntry</name>
27
- <type>bomblock:DocumentationProseEntry</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Documentation or summary prose entry</is>
30
-
31
- <documentation>Documentation or summary prose entry</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Documentation or summary prose entry
25
+ </is>
26
+ <documentation>
27
+ Documentation or summary prose entry
28
+ </documentation>
33
29
  <properties>
34
30
  <namespace type="type:Text">
35
- <documentation>namespace (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ namespace (required). TS type: type:Text.
33
+ </documentation>
36
34
  </namespace>
37
35
  <text type="type:Text">
38
- <documentation>text (required). TS type: type:Text.</documentation>
36
+ <documentation>
37
+ text (required). TS type: type:Text.
38
+ </documentation>
39
39
  </text>
40
40
  <languageFqn type="type:Text">
41
- <documentation>languageFqn (required). TS type: type:Text.</documentation>
41
+ <documentation>
42
+ languageFqn (required). TS type: type:Text.
43
+ </documentation>
42
44
  </languageFqn>
43
45
  <authoredCharacterDataForm type="bomcommon:CharacterDataForm">
44
- <documentation>authoredCharacterDataForm (optional). TS type: bomcommon:CharacterDataForm.</documentation>
46
+ <documentation>
47
+ authoredCharacterDataForm (optional). TS type: bomcommon:CharacterDataForm.
48
+ </documentation>
45
49
  </authoredCharacterDataForm>
46
50
  <source type="bomcommon:SourceLocation">
47
- <documentation>source (optional). TS type: bomcommon:SourceLocation.</documentation>
51
+ <documentation>
52
+ source (optional). TS type: bomcommon:SourceLocation.
53
+ </documentation>
48
54
  </source>
49
55
  </properties>
50
-
51
- </block>
56
+ </bomblock:DocumentationProseEntry>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — DocumentationReference
3
- FQN: org.blockml.bml.bom.block.DocumentationReference
4
- -->
5
- <block
6
- xmlns="http://blockml.org/bml"
7
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8
- xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
9
- "
1
+ <!--BOM Urmodell — DocumentationReference
2
+ FQN: org.blockml.bml.bom.block.DocumentationReference-->
3
+ <bomblock:DocumentationReference xmlns="http://blockml.org/bml"
10
4
  xmlns:blockml="org.blockml.bml"
11
5
  xmlns:bom="org.blockml.bml.bom"
12
6
  xmlns:bomapi="org.blockml.bml.bom.api"
@@ -23,53 +17,80 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>DocumentationReference</name>
27
- <type>bomblock:DocumentationReference</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Cross-reference entry in BOM</is>
30
-
31
- <documentation>Cross-reference entry in BOM</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Cross-reference entry in BOM
25
+ </is>
26
+ <documentation>
27
+ Cross-reference entry in BOM
28
+ </documentation>
33
29
  <properties>
34
30
  <type type="type:Text">
35
- <documentation>type (optional). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ type (optional). TS type: type:Text.
33
+ </documentation>
36
34
  </type>
37
35
  <instance type="type:Text">
38
- <documentation>instance (optional). TS type: type:Text.</documentation>
36
+ <documentation>
37
+ instance (optional). TS type: type:Text.
38
+ </documentation>
39
39
  </instance>
40
40
  <file type="type:Text">
41
- <documentation>file (optional). TS type: type:Text.</documentation>
41
+ <documentation>
42
+ file (optional). TS type: type:Text.
43
+ </documentation>
42
44
  </file>
43
45
  <url type="type:Text">
44
- <documentation>url (optional). TS type: type:Text.</documentation>
46
+ <documentation>
47
+ url (optional). TS type: type:Text.
48
+ </documentation>
45
49
  </url>
46
50
  <property type="type:Text">
47
- <documentation>property (optional). TS type: type:Text.</documentation>
51
+ <documentation>
52
+ property (optional). TS type: type:Text.
53
+ </documentation>
48
54
  </property>
49
55
  <aggregation type="type:Text">
50
- <documentation>aggregation (optional). TS type: type:Text.</documentation>
56
+ <documentation>
57
+ aggregation (optional). TS type: type:Text.
58
+ </documentation>
51
59
  </aggregation>
52
60
  <association type="type:Text">
53
- <documentation>association (optional). TS type: type:Text.</documentation>
61
+ <documentation>
62
+ association (optional). TS type: type:Text.
63
+ </documentation>
54
64
  </association>
55
65
  <capability type="type:Text">
56
- <documentation>capability (optional). TS type: type:Text.</documentation>
66
+ <documentation>
67
+ capability (optional). TS type: type:Text.
68
+ </documentation>
57
69
  </capability>
58
70
  <relationFqn type="type:Text">
59
- <documentation>relationFqn (optional). TS type: type:Text.</documentation>
71
+ <documentation>
72
+ relationFqn (optional). TS type: type:Text.
73
+ </documentation>
60
74
  </relationFqn>
61
75
  <context type="type:Text">
62
- <documentation>context (required). TS type: type:Text.</documentation>
76
+ <documentation>
77
+ context (required). TS type: type:Text.
78
+ </documentation>
63
79
  </context>
64
80
  <languageFqn type="type:Text">
65
- <documentation>languageFqn (optional). TS type: type:Text.</documentation>
81
+ <documentation>
82
+ languageFqn (optional). TS type: type:Text.
83
+ </documentation>
66
84
  </languageFqn>
67
85
  <authoredEmptyElementForm type="bomcommon:EmptyElementForm">
68
- <documentation>authoredEmptyElementForm (optional). TS type: bomcommon:EmptyElementForm.</documentation>
86
+ <documentation>
87
+ authoredEmptyElementForm (optional). TS type: bomcommon:EmptyElementForm.
88
+ </documentation>
69
89
  </authoredEmptyElementForm>
70
90
  <source type="bomcommon:SourceLocation">
71
- <documentation>source (optional). TS type: bomcommon:SourceLocation.</documentation>
91
+ <documentation>
92
+ source (optional). TS type: bomcommon:SourceLocation.
93
+ </documentation>
72
94
  </source>
73
95
  </properties>
74
-
75
- </block>
96
+ </bomblock:DocumentationReference>