@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 — AssociationDefinition
3
- FQN: org.blockml.bml.bom.member.AssociationDefinition
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 — AssociationDefinition
2
+ FQN: org.blockml.bml.bom.member.AssociationDefinition-->
3
+ <bommember:AssociationDefinition 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,24 +17,31 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>AssociationDefinition</name>
27
- <type>bommember:AssociationDefinition</type>
28
- <baseType>bommember:MemberDefinitionBase</baseType>
29
- <is>Association member definition (kind: association)</is>
30
-
31
- <documentation>Association member definition (kind: association)</documentation>
32
-
20
+ <baseType>
21
+ bommember:MemberDefinitionBase
22
+ </baseType>
23
+ <is>
24
+ Association member definition (kind: association)
25
+ </is>
26
+ <documentation>
27
+ Association member definition (kind: association)
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>association</value>
37
35
  </kind>
38
36
  <type type="bomtype:TypeExpression">
39
- <documentation>type (required). TS type: bomtype:TypeExpression.</documentation>
37
+ <documentation>
38
+ type (required). TS type: bomtype:TypeExpression.
39
+ </documentation>
40
40
  </type>
41
41
  <cardinality type="type:Text">
42
- <documentation>"0..1" | "0..n". (required)</documentation>
42
+ <documentation>
43
+ "0..1" | "0..n". (required)
44
+ </documentation>
43
45
  </cardinality>
44
46
  </properties>
45
-
46
- </block>
47
+ </bommember:AssociationDefinition>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — CapabilityDefinition
3
- FQN: org.blockml.bml.bom.member.CapabilityDefinition
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 — CapabilityDefinition
2
+ FQN: org.blockml.bml.bom.member.CapabilityDefinition-->
3
+ <bommember:CapabilityDefinition 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,39 +17,56 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>CapabilityDefinition</name>
27
- <type>bommember:CapabilityDefinition</type>
28
- <baseType>bommember:MemberDefinitionBase</baseType>
29
- <is>Capability member definition (kind: capability)</is>
30
-
31
- <documentation>Capability member definition (kind: capability)</documentation>
32
-
20
+ <baseType>
21
+ bommember:MemberDefinitionBase
22
+ </baseType>
23
+ <is>
24
+ Capability member definition (kind: capability)
25
+ </is>
26
+ <documentation>
27
+ Capability member definition (kind: capability)
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>capability</value>
37
35
  </kind>
38
36
  <typeFqn type="type:Text">
39
- <documentation>typeFqn (required). TS type: type:Text.</documentation>
37
+ <documentation>
38
+ typeFqn (required). TS type: type:Text.
39
+ </documentation>
40
40
  </typeFqn>
41
41
  <inputType type="bomtype:TypeDescriptor">
42
- <documentation>inputType (optional). TS type: bomtype:TypeDescriptor.</documentation>
42
+ <documentation>
43
+ inputType (optional). TS type: bomtype:TypeDescriptor.
44
+ </documentation>
43
45
  </inputType>
44
46
  <outputType type="bomtype:TypeDescriptor">
45
- <documentation>outputType (optional). TS type: bomtype:TypeDescriptor.</documentation>
47
+ <documentation>
48
+ outputType (optional). TS type: bomtype:TypeDescriptor.
49
+ </documentation>
46
50
  </outputType>
47
51
  <inputTypeSource type="bomcommon:SourceLocation">
48
- <documentation>Span of the inputType= attribute value. (optional)</documentation>
52
+ <documentation>
53
+ Span of the inputType= attribute value. (optional)
54
+ </documentation>
49
55
  </inputTypeSource>
50
56
  <outputTypeSource type="bomcommon:SourceLocation">
51
- <documentation>Span of the outputType= attribute value. (optional)</documentation>
57
+ <documentation>
58
+ Span of the outputType= attribute value. (optional)
59
+ </documentation>
52
60
  </outputTypeSource>
53
61
  <implementation type="bommember:ImplementationBlock">
54
- <documentation>implementation (optional). TS type: bommember:ImplementationBlock.</documentation>
62
+ <documentation>
63
+ implementation (optional). TS type: bommember:ImplementationBlock.
64
+ </documentation>
55
65
  </implementation>
56
66
  <throws type="bomblock:TypeReferenceEntityInstance[]">
57
- <documentation>Declared exception types (TypeReferenceEntity(core:Exception)[]). (optional)</documentation>
67
+ <documentation>
68
+ Declared exception types (TypeReferenceEntity(core:Exception)[]). (optional)
69
+ </documentation>
58
70
  </throws>
59
71
  </properties>
60
-
61
- </block>
72
+ </bommember:CapabilityDefinition>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — ConstrainableDefinition
3
- FQN: org.blockml.bml.bom.member.ConstrainableDefinition
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 — ConstrainableDefinition
2
+ FQN: org.blockml.bml.bom.member.ConstrainableDefinition-->
3
+ <bommember:ConstrainableDefinition 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,17 +17,20 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>ConstrainableDefinition</name>
27
- <type>bommember:ConstrainableDefinition</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Mixin shape for constraint Block instances</is>
30
-
31
- <documentation>Mixin shape for constraint Block instances</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Mixin shape for constraint Block instances
25
+ </is>
26
+ <documentation>
27
+ Mixin shape for constraint Block instances
28
+ </documentation>
33
29
  <properties>
34
30
  <constraints type="bomcomp:BlockInstance[]">
35
- <documentation>constraints (optional). TS type: bomcomp:BlockInstance[].</documentation>
31
+ <documentation>
32
+ constraints (optional). TS type: bomcomp:BlockInstance[].
33
+ </documentation>
36
34
  </constraints>
37
35
  </properties>
38
-
39
- </block>
36
+ </bommember:ConstrainableDefinition>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — EmbeddedExpression
3
- FQN: org.blockml.bml.bom.member.EmbeddedExpression
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 — EmbeddedExpression
2
+ FQN: org.blockml.bml.bom.member.EmbeddedExpression-->
3
+ <bommember:EmbeddedExpression 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,23 +17,30 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>EmbeddedExpression</name>
27
- <type>bommember:EmbeddedExpression</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Embedded expression region in implementation source</is>
30
-
31
- <documentation>Embedded expression region in implementation source</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Embedded expression region in implementation source
25
+ </is>
26
+ <documentation>
27
+ Embedded expression region in implementation source
28
+ </documentation>
33
29
  <properties>
34
30
  <raw type="type:Text">
35
- <documentation>raw (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ raw (required). TS type: type:Text.
33
+ </documentation>
36
34
  </raw>
37
35
  <start type="type:Integer">
38
- <documentation>start (required). TS type: type:Integer.</documentation>
36
+ <documentation>
37
+ start (required). TS type: type:Integer.
38
+ </documentation>
39
39
  </start>
40
40
  <end type="type:Integer">
41
- <documentation>end (required). TS type: type:Integer.</documentation>
41
+ <documentation>
42
+ end (required). TS type: type:Integer.
43
+ </documentation>
42
44
  </end>
43
45
  </properties>
44
-
45
- </block>
46
+ </bommember:EmbeddedExpression>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — ImplementationBlock
3
- FQN: org.blockml.bml.bom.member.ImplementationBlock
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 — ImplementationBlock
2
+ FQN: org.blockml.bml.bom.member.ImplementationBlock-->
3
+ <bommember:ImplementationBlock 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>ImplementationBlock</name>
27
- <type>bommember:ImplementationBlock</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Capability implementation source block</is>
30
-
31
- <documentation>Capability implementation source block</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Capability implementation source block
25
+ </is>
26
+ <documentation>
27
+ Capability implementation source block
28
+ </documentation>
33
29
  <properties>
34
30
  <languageFqn type="type:Text">
35
- <documentation>languageFqn (required). TS type: type:Text.</documentation>
31
+ <documentation>
32
+ languageFqn (required). TS type: type:Text.
33
+ </documentation>
36
34
  </languageFqn>
37
35
  <source type="type:Text">
38
- <documentation>Preserved by stripProvenance — not provenance. (required)</documentation>
36
+ <documentation>
37
+ Preserved by stripProvenance — not provenance. (required)
38
+ </documentation>
39
39
  </source>
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
  <embeddedExpressions type="bommember:EmbeddedExpression[]">
44
- <documentation>embeddedExpressions (optional). TS type: bommember:EmbeddedExpression[].</documentation>
46
+ <documentation>
47
+ embeddedExpressions (optional). TS type: bommember:EmbeddedExpression[].
48
+ </documentation>
45
49
  </embeddedExpressions>
46
50
  <sourceLocation type="bomcommon:SourceLocation">
47
- <documentation>sourceLocation (optional). TS type: bomcommon:SourceLocation.</documentation>
51
+ <documentation>
52
+ sourceLocation (optional). TS type: bomcommon:SourceLocation.
53
+ </documentation>
48
54
  </sourceLocation>
49
55
  </properties>
50
-
51
- </block>
56
+ </bommember:ImplementationBlock>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — MemberDefinition
3
- FQN: org.blockml.bml.bom.member.MemberDefinition
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 — MemberDefinition
2
+ FQN: org.blockml.bml.bom.member.MemberDefinition-->
3
+ <bommember:MemberDefinition 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>MemberDefinition</name>
27
- <type>bommember:MemberDefinition</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Abstract union of member definition kinds</is>
30
-
31
- <documentation>PropertyDefinition | AggregationDefinition | AssociationDefinition | CapabilityDefinition.</documentation>
32
-
33
- <abstract>true</abstract>
34
-
35
- </block>
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Abstract union of member definition kinds
25
+ </is>
26
+ <documentation>
27
+ PropertyDefinition | AggregationDefinition | AssociationDefinition | CapabilityDefinition.
28
+ </documentation>
29
+ <abstract>
30
+ true
31
+ </abstract>
32
+ </bommember:MemberDefinition>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — MemberDefinitionBase
3
- FQN: org.blockml.bml.bom.member.MemberDefinitionBase
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 — MemberDefinitionBase
2
+ FQN: org.blockml.bml.bom.member.MemberDefinitionBase-->
3
+ <bommember:MemberDefinitionBase 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,80 +17,125 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>MemberDefinitionBase</name>
27
- <type>bommember:MemberDefinitionBase</type>
28
- <baseType>bom:UrmodellType</baseType>
29
- <is>Shared base for all member definition kinds</is>
30
-
31
- <documentation>Shared base for all member definition kinds</documentation>
32
-
20
+ <baseType>
21
+ bom:UrmodellType
22
+ </baseType>
23
+ <is>
24
+ Shared base for all member definition kinds
25
+ </is>
26
+ <documentation>
27
+ Shared base for all member definition kinds
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
  <summaries type="bomblock:DocumentationProseEntry[]">
38
- <documentation>summaries (optional). TS type: bomblock:DocumentationProseEntry[].</documentation>
36
+ <documentation>
37
+ summaries (optional). TS type: bomblock:DocumentationProseEntry[].
38
+ </documentation>
39
39
  </summaries>
40
40
  <keywords type="bomblock:KeywordEntry[]">
41
- <documentation>keywords (optional). TS type: bomblock:KeywordEntry[].</documentation>
41
+ <documentation>
42
+ keywords (optional). TS type: bomblock:KeywordEntry[].
43
+ </documentation>
42
44
  </keywords>
43
45
  <documentations type="bomblock:DocumentationProseEntry[]">
44
- <documentation>documentations (optional). TS type: bomblock:DocumentationProseEntry[].</documentation>
46
+ <documentation>
47
+ documentations (optional). TS type: bomblock:DocumentationProseEntry[].
48
+ </documentation>
45
49
  </documentations>
46
50
  <since type="type:Text">
47
- <documentation>since (optional). TS type: type:Text.</documentation>
51
+ <documentation>
52
+ since (optional). TS type: type:Text.
53
+ </documentation>
48
54
  </since>
49
55
  <changelog type="bomblock:ChangelogEntry[]">
50
- <documentation>changelog (optional). TS type: bomblock:ChangelogEntry[].</documentation>
56
+ <documentation>
57
+ changelog (optional). TS type: bomblock:ChangelogEntry[].
58
+ </documentation>
51
59
  </changelog>
52
60
  <examples type="bomblock:DocumentationExample[]">
53
- <documentation>examples (optional). TS type: bomblock:DocumentationExample[].</documentation>
61
+ <documentation>
62
+ examples (optional). TS type: bomblock:DocumentationExample[].
63
+ </documentation>
54
64
  </examples>
55
65
  <references type="bomblock:DocumentationReference[]">
56
- <documentation>references (optional). TS type: bomblock:DocumentationReference[].</documentation>
66
+ <documentation>
67
+ references (optional). TS type: bomblock:DocumentationReference[].
68
+ </documentation>
57
69
  </references>
58
70
  <namespace type="type:Text">
59
- <documentation>namespace (optional). TS type: type:Text.</documentation>
71
+ <documentation>
72
+ namespace (optional). TS type: type:Text.
73
+ </documentation>
60
74
  </namespace>
61
75
  <visibility type="type:Text">
62
- <documentation>visibility (optional). TS type: type:Text.</documentation>
76
+ <documentation>
77
+ visibility (optional). TS type: type:Text.
78
+ </documentation>
63
79
  </visibility>
64
80
  <readOnly type="type:Boolean">
65
- <documentation>readOnly (optional). TS type: type:Boolean.</documentation>
81
+ <documentation>
82
+ readOnly (optional). TS type: type:Boolean.
83
+ </documentation>
66
84
  </readOnly>
67
85
  <abstract type="type:Boolean">
68
- <documentation>abstract (optional). TS type: type:Boolean.</documentation>
86
+ <documentation>
87
+ abstract (optional). TS type: type:Boolean.
88
+ </documentation>
69
89
  </abstract>
70
90
  <final type="type:Boolean">
71
- <documentation>final (optional). TS type: type:Boolean.</documentation>
91
+ <documentation>
92
+ final (optional). TS type: type:Boolean.
93
+ </documentation>
72
94
  </final>
73
95
  <override type="type:Boolean">
74
- <documentation>override (optional). TS type: type:Boolean.</documentation>
96
+ <documentation>
97
+ override (optional). TS type: type:Boolean.
98
+ </documentation>
75
99
  </override>
76
100
  <xmlRendering type="bomcommon:XmlRenderingMember">
77
- <documentation>xmlRendering (optional). TS type: bomcommon:XmlRenderingMember.</documentation>
101
+ <documentation>
102
+ xmlRendering (optional). TS type: bomcommon:XmlRenderingMember.
103
+ </documentation>
78
104
  </xmlRendering>
79
105
  <generics type="bomcomp:GenericsBinding">
80
- <documentation>Misplaced bml:generics on a member declaration. (optional)</documentation>
106
+ <documentation>
107
+ Misplaced bml:generics on a member declaration. (optional)
108
+ </documentation>
81
109
  </generics>
82
110
  <constraints type="bomcomp:BlockInstance[]">
83
- <documentation>constraints (optional). TS type: bomcomp:BlockInstance[].</documentation>
111
+ <documentation>
112
+ constraints (optional). TS type: bomcomp:BlockInstance[].
113
+ </documentation>
84
114
  </constraints>
85
115
  <xmlTrivia type="bomcommon:XmlTrivia">
86
- <documentation>xmlTrivia (optional). TS type: bomcommon:XmlTrivia.</documentation>
116
+ <documentation>
117
+ xmlTrivia (optional). TS type: bomcommon:XmlTrivia.
118
+ </documentation>
87
119
  </xmlTrivia>
88
120
  <source type="bomcommon:SourceLocation">
89
- <documentation>source (optional). TS type: bomcommon:SourceLocation.</documentation>
121
+ <documentation>
122
+ source (optional). TS type: bomcommon:SourceLocation.
123
+ </documentation>
90
124
  </source>
91
125
  <typeSource type="bomcommon:SourceLocation">
92
- <documentation>Span of the type= attribute value (use-site for type diagnostics). (optional)</documentation>
126
+ <documentation>
127
+ Span of the type= attribute value (use-site for type diagnostics). (optional)
128
+ </documentation>
93
129
  </typeSource>
94
130
  <unknownElements type="bomcommon:UnknownXmlNode[]">
95
- <documentation>unknownElements (optional). TS type: bomcommon:UnknownXmlNode[].</documentation>
131
+ <documentation>
132
+ unknownElements (optional). TS type: bomcommon:UnknownXmlNode[].
133
+ </documentation>
96
134
  </unknownElements>
97
135
  <unknownAttributes type="type:Text">
98
- <documentation>Record of unknown attributes on this member. (optional)</documentation>
136
+ <documentation>
137
+ Record of unknown attributes on this member. (optional)
138
+ </documentation>
99
139
  </unknownAttributes>
100
140
  </properties>
101
-
102
- </block>
141
+ </bommember:MemberDefinitionBase>
@@ -1,12 +1,6 @@
1
- <!--
2
- BOM Urmodell — PropertyDefinition
3
- FQN: org.blockml.bml.bom.member.PropertyDefinition
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 — PropertyDefinition
2
+ FQN: org.blockml.bml.bom.member.PropertyDefinition-->
3
+ <bommember:PropertyDefinition 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,39 +17,56 @@
23
17
  xmlns:def="org.blockml.bml.definition"
24
18
  xmlns:type="org.blockml.bml.type">
25
19
 
26
- <name>PropertyDefinition</name>
27
- <type>bommember:PropertyDefinition</type>
28
- <baseType>bommember:MemberDefinitionBase</baseType>
29
- <is>Property member definition (kind: property)</is>
30
-
31
- <documentation>Property member definition (kind: property)</documentation>
32
-
20
+ <baseType>
21
+ bommember:MemberDefinitionBase
22
+ </baseType>
23
+ <is>
24
+ Property member definition (kind: property)
25
+ </is>
26
+ <documentation>
27
+ Property member definition (kind: property)
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>property</value>
37
35
  </kind>
38
36
  <typeFqn type="type:Text">
39
- <documentation>typeFqn (required). TS type: type:Text.</documentation>
37
+ <documentation>
38
+ typeFqn (required). TS type: type:Text.
39
+ </documentation>
40
40
  </typeFqn>
41
41
  <type type="bomtype:TypeExpression">
42
- <documentation>type (optional). TS type: bomtype:TypeExpression.</documentation>
42
+ <documentation>
43
+ type (optional). TS type: bomtype:TypeExpression.
44
+ </documentation>
43
45
  </type>
44
46
  <values type="bommember:PropertyValueEntry[]">
45
- <documentation>values (optional). At most one entry per namespace. TS type: bommember:PropertyValueEntry[].</documentation>
47
+ <documentation>
48
+ values (optional). At most one entry per namespace. TS type: bommember:PropertyValueEntry[].
49
+ </documentation>
46
50
  </values>
47
51
  <value type="bomvalue:MemberValue">
48
- <documentation>value (optional). TS type: bomvalue:MemberValue.</documentation>
52
+ <documentation>
53
+ value (optional). TS type: bomvalue:MemberValue.
54
+ </documentation>
49
55
  </value>
50
56
  <group type="type:Text">
51
- <documentation>group (optional). TS type: type:Text.</documentation>
57
+ <documentation>
58
+ group (optional). TS type: type:Text.
59
+ </documentation>
52
60
  </group>
53
61
  <suggestions type="bomcomp:BlockInstance[]">
54
- <documentation>suggestions (optional). TS type: bomcomp:BlockInstance[].</documentation>
62
+ <documentation>
63
+ suggestions (optional). TS type: bomcomp:BlockInstance[].
64
+ </documentation>
55
65
  </suggestions>
56
66
  <groups type="bomblock:TypeReferenceEntityInstance[]">
57
- <documentation>groups (optional). TS type: bomblock:TypeReferenceEntityInstance[].</documentation>
67
+ <documentation>
68
+ groups (optional). TS type: bomblock:TypeReferenceEntityInstance[].
69
+ </documentation>
58
70
  </groups>
59
71
  </properties>
60
-
61
- </block>
72
+ </bommember:PropertyDefinition>