@blockml/bom 0.9.4 → 0.9.5

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 +17 -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 — CompositionNode
3
- FQN: org.blockml.bml.bom.composition.CompositionNode
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 — CompositionNode
2
+ FQN: org.blockml.bml.bom.composition.CompositionNode-->
3
+ <bomcomp:CompositionNode 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,13 +17,16 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>CompositionNode</name>
27
- <type>bomcomp:CompositionNode</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Abstract union of composition tree nodes</is>
30
-
31
- <documentation>BlockInstanceNode | VirtualContainerNode.</documentation>
32
-
33
- <abstract>true</abstract>
34
-
35
- </block>
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Abstract union of composition tree nodes
25
+ </is>
26
+ <documentation>
27
+ BlockInstanceNode | VirtualContainerNode.
28
+ </documentation>
29
+ <abstract>
30
+ true
31
+ </abstract>
32
+ </bomcomp:CompositionNode>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — CompositionTemplate
3
- FQN: org.blockml.bml.bom.composition.CompositionTemplate
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 — CompositionTemplate
2
+ FQN: org.blockml.bml.bom.composition.CompositionTemplate-->
3
+ <bomcomp:CompositionTemplate 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>CompositionTemplate</name>
27
- <type>bomcomp:CompositionTemplate</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Composition tree for an aggregation</is>
30
-
31
- <documentation>Composition tree for an aggregation</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Composition tree for an aggregation
25
+ </is>
26
+ <documentation>
27
+ Composition tree for an aggregation
28
+ </documentation>
33
29
  <properties>
34
30
  <aggregationName type="type:Text">
35
- <documentation>aggregationName (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ aggregationName (required). TS type: type:Text.
33
+ </documentation>
36
34
  </aggregationName>
37
35
  <directives type="bomcomp:DirectiveAttribute[]">
38
- <documentation>directives (optional). TS type: bomcomp:DirectiveAttribute[].</documentation>
36
+ <documentation>
37
+ directives (optional). TS type: bomcomp:DirectiveAttribute[].
38
+ </documentation>
39
39
  </directives>
40
40
  <generics type="bomcomp:GenericsBinding">
41
- <documentation>Misplaced bml:generics on a composition wrapper. (optional)</documentation>
41
+ <documentation>
42
+ Misplaced bml:generics on a composition wrapper. (optional)
43
+ </documentation>
42
44
  </generics>
43
45
  <children type="bomcomp:CompositionNode[]">
44
- <documentation>children (required). TS type: bomcomp:CompositionNode[].</documentation>
46
+ <documentation>
47
+ children (required). TS type: bomcomp:CompositionNode[].
48
+ </documentation>
45
49
  </children>
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
+ </bomcomp:CompositionTemplate>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — DirectiveAttribute
3
- FQN: org.blockml.bml.bom.composition.DirectiveAttribute
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 — DirectiveAttribute
2
+ FQN: org.blockml.bml.bom.composition.DirectiveAttribute-->
3
+ <bomcomp:DirectiveAttribute 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,13 +17,16 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>DirectiveAttribute</name>
27
- <type>bomcomp:DirectiveAttribute</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Abstract union of flow-control directives</is>
30
-
31
- <documentation>EachDirective | IfDirective | UnlessDirective | WithDirective. Stored unexpanded.</documentation>
32
-
33
- <abstract>true</abstract>
34
-
35
- </block>
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Abstract union of flow-control directives
25
+ </is>
26
+ <documentation>
27
+ EachDirective | IfDirective | UnlessDirective | WithDirective. Stored unexpanded.
28
+ </documentation>
29
+ <abstract>
30
+ true
31
+ </abstract>
32
+ </bomcomp:DirectiveAttribute>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — EachDirective
3
- FQN: org.blockml.bml.bom.composition.EachDirective
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 — EachDirective
2
+ FQN: org.blockml.bml.bom.composition.EachDirective-->
3
+ <bomcomp:EachDirective 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,27 +17,36 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>EachDirective</name>
27
- <type>bomcomp:EachDirective</type>
28
- <baseType>bomcomp:DirectiveAttribute</baseType>
29
- <is>bml:each directive (type: each)</is>
30
-
31
- <documentation>bml:each directive (type: each)</documentation>
32
-
20
+ <baseType>
21
+ bomcomp:DirectiveAttribute
22
+ </baseType>
23
+ <is>
24
+ bml:each directive (type: each)
25
+ </is>
26
+ <documentation>
27
+ bml:each directive (type: each)
28
+ </documentation>
33
29
  <properties>
34
30
  <type type="type:Text">
35
- <documentation>type (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ type (required). TS type: type:Text.
33
+ </documentation>
36
34
  <value>each</value>
37
35
  </type>
38
36
  <variables type="type:Text[]">
39
- <documentation>variables (required). TS type: type:Text[].</documentation>
37
+ <documentation>
38
+ variables (required). TS type: type:Text[].
39
+ </documentation>
40
40
  </variables>
41
41
  <statVariable type="type:Text">
42
- <documentation>statVariable (optional). TS type: type:Text.</documentation>
42
+ <documentation>
43
+ statVariable (optional). TS type: type:Text.
44
+ </documentation>
43
45
  </statVariable>
44
46
  <collection type="bomvalue:ExpressionValue">
45
- <documentation>collection (required). TS type: bomvalue:ExpressionValue.</documentation>
47
+ <documentation>
48
+ collection (required). TS type: bomvalue:ExpressionValue.
49
+ </documentation>
46
50
  </collection>
47
51
  </properties>
48
-
49
- </block>
52
+ </bomcomp:EachDirective>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — GenericsBinding
3
- FQN: org.blockml.bml.bom.composition.GenericsBinding
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 — GenericsBinding
2
+ FQN: org.blockml.bml.bom.composition.GenericsBinding-->
3
+ <bomcomp:GenericsBinding 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,38 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>GenericsBinding</name>
27
- <type>bomcomp:GenericsBinding</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Authored bml:generics binding on an instance or illegal host</is>
30
-
31
- <documentation>Lossless bml:generics value. arguments is present only when the
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Authored bml:generics binding on an instance or illegal host
25
+ </is>
26
+ <documentation>
27
+ Lossless bml:generics value. arguments is present only when the
32
28
  parenthesized TypeExpression list parsed successfully. Legal host is
33
29
  BlockInstance; other hosts keep the binding so validate() can emit
34
- BML_GENERICS_DIRECTIVE_NOT_ALLOWED.</documentation>
35
-
30
+ BML_GENERICS_DIRECTIVE_NOT_ALLOWED.
31
+ </documentation>
36
32
  <properties>
37
33
  <raw type="type:Text">
38
- <documentation>raw (required). TS type: type:Text.</documentation>
34
+ <documentation>
35
+ raw (required). TS type: type:Text.
36
+ </documentation>
39
37
  </raw>
40
38
  <arguments type="bomtype:TypeExpression[]">
41
- <documentation>arguments (optional). TS type: bomtype:TypeExpression[].</documentation>
39
+ <documentation>
40
+ arguments (optional). TS type: bomtype:TypeExpression[].
41
+ </documentation>
42
42
  </arguments>
43
43
  <authoredPlacement type="type:Text">
44
- <documentation>"attribute" | "element". (required)</documentation>
44
+ <documentation>
45
+ "attribute" | "element". (required)
46
+ </documentation>
45
47
  </authoredPlacement>
46
48
  <source type="bomcommon:SourceLocation">
47
- <documentation>source (optional). TS type: bomcommon:SourceLocation.</documentation>
49
+ <documentation>
50
+ source (optional). TS type: bomcommon:SourceLocation.
51
+ </documentation>
48
52
  </source>
49
53
  </properties>
50
-
51
- </block>
54
+ </bomcomp:GenericsBinding>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — IfDirective
3
- FQN: org.blockml.bml.bom.composition.IfDirective
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 — IfDirective
2
+ FQN: org.blockml.bml.bom.composition.IfDirective-->
3
+ <bomcomp:IfDirective 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,21 +17,26 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>IfDirective</name>
27
- <type>bomcomp:IfDirective</type>
28
- <baseType>bomcomp:DirectiveAttribute</baseType>
29
- <is>bml:if directive (type: if)</is>
30
-
31
- <documentation>bml:if directive (type: if)</documentation>
32
-
20
+ <baseType>
21
+ bomcomp:DirectiveAttribute
22
+ </baseType>
23
+ <is>
24
+ bml:if directive (type: if)
25
+ </is>
26
+ <documentation>
27
+ bml:if directive (type: if)
28
+ </documentation>
33
29
  <properties>
34
30
  <type type="type:Text">
35
- <documentation>type (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ type (required). TS type: type:Text.
33
+ </documentation>
36
34
  <value>if</value>
37
35
  </type>
38
36
  <condition type="bomvalue:ExpressionValue">
39
- <documentation>condition (required). TS type: bomvalue:ExpressionValue.</documentation>
37
+ <documentation>
38
+ condition (required). TS type: bomvalue:ExpressionValue.
39
+ </documentation>
40
40
  </condition>
41
41
  </properties>
42
-
43
- </block>
42
+ </bomcomp:IfDirective>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — InstanceAggregationComposition
3
- FQN: org.blockml.bml.bom.composition.InstanceAggregationComposition
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 — InstanceAggregationComposition
2
+ FQN: org.blockml.bml.bom.composition.InstanceAggregationComposition-->
3
+ <bomcomp:InstanceAggregationComposition 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,22 +17,29 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>InstanceAggregationComposition</name>
27
- <type>bomcomp:InstanceAggregationComposition</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Inline aggregation fill on a Block instance</is>
30
-
31
- <documentation><![CDATA[Inline aggregation fill on a Block instance. Children are
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Inline aggregation fill on a Block instance
25
+ </is>
26
+ <documentation>
27
+ <![CDATA[
28
+ Inline aggregation fill on a Block instance. Children are
32
29
  authored as direct descendants of the aggregation member — no
33
- <composition> wrapper. A wrapper at this site is BML_NESTED_COMPOSITION.]]></documentation>
34
-
30
+ <composition> wrapper. A wrapper at this site is BML_NESTED_COMPOSITION.
31
+ ]]>
32
+ </documentation>
35
33
  <properties>
36
34
  <aggregationName type="type:Text">
37
- <documentation>aggregationName (required). TS type: type:Text.</documentation>
35
+ <documentation>
36
+ aggregationName (required). TS type: type:Text.
37
+ </documentation>
38
38
  </aggregationName>
39
39
  <composition type="bomcomp:CompositionTemplate">
40
- <documentation>composition (required). TS type: bomcomp:CompositionTemplate.</documentation>
40
+ <documentation>
41
+ composition (required). TS type: bomcomp:CompositionTemplate.
42
+ </documentation>
41
43
  </composition>
42
44
  </properties>
43
-
44
- </block>
45
+ </bomcomp:InstanceAggregationComposition>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — UnlessDirective
3
- FQN: org.blockml.bml.bom.composition.UnlessDirective
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 — UnlessDirective
2
+ FQN: org.blockml.bml.bom.composition.UnlessDirective-->
3
+ <bomcomp:UnlessDirective 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,21 +17,26 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>UnlessDirective</name>
27
- <type>bomcomp:UnlessDirective</type>
28
- <baseType>bomcomp:DirectiveAttribute</baseType>
29
- <is>bml:unless directive (type: unless)</is>
30
-
31
- <documentation>bml:unless directive (type: unless)</documentation>
32
-
20
+ <baseType>
21
+ bomcomp:DirectiveAttribute
22
+ </baseType>
23
+ <is>
24
+ bml:unless directive (type: unless)
25
+ </is>
26
+ <documentation>
27
+ bml:unless directive (type: unless)
28
+ </documentation>
33
29
  <properties>
34
30
  <type type="type:Text">
35
- <documentation>type (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ type (required). TS type: type:Text.
33
+ </documentation>
36
34
  <value>unless</value>
37
35
  </type>
38
36
  <condition type="bomvalue:ExpressionValue">
39
- <documentation>condition (required). TS type: bomvalue:ExpressionValue.</documentation>
37
+ <documentation>
38
+ condition (required). TS type: bomvalue:ExpressionValue.
39
+ </documentation>
40
40
  </condition>
41
41
  </properties>
42
-
43
- </block>
42
+ </bomcomp:UnlessDirective>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — VirtualContainerNode
3
- FQN: org.blockml.bml.bom.composition.VirtualContainerNode
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 — VirtualContainerNode
2
+ FQN: org.blockml.bml.bom.composition.VirtualContainerNode-->
3
+ <bomcomp:VirtualContainerNode 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,30 +17,41 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>VirtualContainerNode</name>
27
- <type>bomcomp:VirtualContainerNode</type>
28
- <baseType>bomcomp:CompositionNode</baseType>
29
- <is>Virtual bml:container node (kind: virtualContainer)</is>
30
-
31
- <documentation>Virtual bml:container node (kind: virtualContainer)</documentation>
32
-
20
+ <baseType>
21
+ bomcomp:CompositionNode
22
+ </baseType>
23
+ <is>
24
+ Virtual bml:container node (kind: virtualContainer)
25
+ </is>
26
+ <documentation>
27
+ Virtual bml:container node (kind: virtualContainer)
28
+ </documentation>
33
29
  <properties>
34
30
  <kind type="type:Text">
35
- <documentation>kind (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ kind (required). TS type: type:Text.
33
+ </documentation>
36
34
  <value>virtualContainer</value>
37
35
  </kind>
38
36
  <directives type="bomcomp:DirectiveAttribute[]">
39
- <documentation>directives (optional). TS type: bomcomp:DirectiveAttribute[].</documentation>
37
+ <documentation>
38
+ directives (optional). TS type: bomcomp:DirectiveAttribute[].
39
+ </documentation>
40
40
  </directives>
41
41
  <generics type="bomcomp:GenericsBinding">
42
- <documentation>Misplaced bml:generics on bml:container. (optional)</documentation>
42
+ <documentation>
43
+ Misplaced bml:generics on bml:container. (optional)
44
+ </documentation>
43
45
  </generics>
44
46
  <children type="bomcomp:CompositionNode[]">
45
- <documentation>children (required). TS type: bomcomp:CompositionNode[].</documentation>
47
+ <documentation>
48
+ children (required). TS type: bomcomp:CompositionNode[].
49
+ </documentation>
46
50
  </children>
47
51
  <source type="bomcommon:SourceLocation">
48
- <documentation>source (optional). TS type: bomcommon:SourceLocation.</documentation>
52
+ <documentation>
53
+ source (optional). TS type: bomcommon:SourceLocation.
54
+ </documentation>
49
55
  </source>
50
56
  </properties>
51
-
52
- </block>
57
+ </bomcomp:VirtualContainerNode>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — WithBinding
3
- FQN: org.blockml.bml.bom.composition.WithBinding
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 — WithBinding
2
+ FQN: org.blockml.bml.bom.composition.WithBinding-->
3
+ <bomcomp:WithBinding 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,20 +17,25 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>WithBinding</name>
27
- <type>bomcomp:WithBinding</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>bml:with binding entry</is>
30
-
31
- <documentation>bml:with binding entry</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ bml:with binding entry
25
+ </is>
26
+ <documentation>
27
+ bml:with binding entry
28
+ </documentation>
33
29
  <properties>
34
30
  <name type="type:Text">
35
- <documentation>name (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ name (required). TS type: type:Text.
33
+ </documentation>
36
34
  </name>
37
35
  <value type="bomvalue:ExpressionValue">
38
- <documentation>value (required). TS type: bomvalue:ExpressionValue.</documentation>
36
+ <documentation>
37
+ value (required). TS type: bomvalue:ExpressionValue.
38
+ </documentation>
39
39
  </value>
40
40
  </properties>
41
-
42
- </block>
41
+ </bomcomp:WithBinding>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — WithDirective
3
- FQN: org.blockml.bml.bom.composition.WithDirective
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 — WithDirective
2
+ FQN: org.blockml.bml.bom.composition.WithDirective-->
3
+ <bomcomp:WithDirective 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,21 +17,26 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>WithDirective</name>
27
- <type>bomcomp:WithDirective</type>
28
- <baseType>bomcomp:DirectiveAttribute</baseType>
29
- <is>bml:with directive (type: with)</is>
30
-
31
- <documentation>bml:with directive (type: with)</documentation>
32
-
20
+ <baseType>
21
+ bomcomp:DirectiveAttribute
22
+ </baseType>
23
+ <is>
24
+ bml:with directive (type: with)
25
+ </is>
26
+ <documentation>
27
+ bml:with directive (type: with)
28
+ </documentation>
33
29
  <properties>
34
30
  <type type="type:Text">
35
- <documentation>type (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ type (required). TS type: type:Text.
33
+ </documentation>
36
34
  <value>with</value>
37
35
  </type>
38
36
  <bindings type="bomcomp:WithBinding[]">
39
- <documentation>bindings (required). TS type: bomcomp:WithBinding[].</documentation>
37
+ <documentation>
38
+ bindings (required). TS type: bomcomp:WithBinding[].
39
+ </documentation>
40
40
  </bindings>
41
41
  </properties>
42
-
43
- </block>
42
+ </bomcomp:WithDirective>