@blockml/bom 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/blocks/org/blockml/bml/bom/Library.bml +153 -0
- package/blocks/org/blockml/bml/bom/README.bml +55 -0
- package/blocks/org/blockml/bml/bom/UrmodellType.bml +39 -0
- package/blocks/org/blockml/bml/bom/api/ParseOptions.bml +42 -0
- package/blocks/org/blockml/bml/bom/api/ParseResult.bml +45 -0
- package/blocks/org/blockml/bml/bom/api/SerializeOptions.bml +42 -0
- package/blocks/org/blockml/bml/bom/api/SerializeResult.bml +45 -0
- package/blocks/org/blockml/bml/bom/api/TypeRegistryReader.bml +34 -0
- package/blocks/org/blockml/bml/bom/api/ValidateOptions.bml +50 -0
- package/blocks/org/blockml/bml/bom/api/ValidateResult.bml +46 -0
- package/blocks/org/blockml/bml/bom/block/AliasEntry.bml +51 -0
- package/blocks/org/blockml/bml/bom/block/BlockDefinition.bml +136 -0
- package/blocks/org/blockml/bml/bom/block/ChangelogEntry.bml +48 -0
- package/blocks/org/blockml/bml/bom/block/DocumentationExample.bml +57 -0
- package/blocks/org/blockml/bml/bom/block/DocumentationProseEntry.bml +51 -0
- package/blocks/org/blockml/bml/bom/block/DocumentationReference.bml +72 -0
- package/blocks/org/blockml/bml/bom/block/GenericType.bml +45 -0
- package/blocks/org/blockml/bml/bom/block/KeywordEntry.bml +51 -0
- package/blocks/org/blockml/bml/bom/block/TypeReferenceEntityInstance.bml +45 -0
- package/blocks/org/blockml/bml/bom/capability/BomEquals.bml +45 -0
- package/blocks/org/blockml/bml/bom/capability/StripProvenance.bml +42 -0
- package/blocks/org/blockml/bml/bom/common/CharacterDataForm.bml +39 -0
- package/blocks/org/blockml/bml/bom/common/Diagnostic.bml +48 -0
- package/blocks/org/blockml/bml/bom/common/DiagnosticSeverity.bml +39 -0
- package/blocks/org/blockml/bml/bom/common/MemberSectionName.bml +39 -0
- package/blocks/org/blockml/bml/bom/common/MetadataElementTrivia.bml +39 -0
- package/blocks/org/blockml/bml/bom/common/SourceInfo.bml +51 -0
- package/blocks/org/blockml/bml/bom/common/SourceLocation.bml +51 -0
- package/blocks/org/blockml/bml/bom/common/XmlNodeKind.bml +39 -0
- package/blocks/org/blockml/bml/bom/common/XmlRenderingBlock.bml +39 -0
- package/blocks/org/blockml/bml/bom/common/XmlRenderingMember.bml +48 -0
- package/blocks/org/blockml/bml/bom/common/XmlTrivia.bml +42 -0
- package/blocks/org/blockml/bml/bom/composition/BlockInstance.bml +72 -0
- package/blocks/org/blockml/bml/bom/composition/BlockInstanceNode.bml +49 -0
- package/blocks/org/blockml/bml/bom/composition/CompositionNode.bml +35 -0
- package/blocks/org/blockml/bml/bom/composition/CompositionTemplate.bml +48 -0
- package/blocks/org/blockml/bml/bom/composition/DirectiveAttribute.bml +35 -0
- package/blocks/org/blockml/bml/bom/composition/EachDirective.bml +49 -0
- package/blocks/org/blockml/bml/bom/composition/IfDirective.bml +43 -0
- package/blocks/org/blockml/bml/bom/composition/InstanceAggregationComposition.bml +42 -0
- package/blocks/org/blockml/bml/bom/composition/UnlessDirective.bml +43 -0
- package/blocks/org/blockml/bml/bom/composition/VirtualContainerNode.bml +49 -0
- package/blocks/org/blockml/bml/bom/composition/WithBinding.bml +42 -0
- package/blocks/org/blockml/bml/bom/composition/WithDirective.bml +43 -0
- package/blocks/org/blockml/bml/bom/document/BomDocument.bml +49 -0
- package/blocks/org/blockml/bml/bom/documentation/AbstractionPrinciple.bml +46 -0
- package/blocks/org/blockml/bml/bom/documentation/ArchitectureOverview.bml +49 -0
- package/blocks/org/blockml/bml/bom/documentation/AuthoredSurfaceTable.bml +47 -0
- package/blocks/org/blockml/bml/bom/documentation/CalibratorExample.bml +53 -0
- package/blocks/org/blockml/bml/bom/documentation/CompositionDirectives.bml +45 -0
- package/blocks/org/blockml/bml/bom/documentation/DesignDecisions.bml +64 -0
- package/blocks/org/blockml/bml/bom/documentation/InstanceIdRules.bml +45 -0
- package/blocks/org/blockml/bml/bom/documentation/Introduction.bml +50 -0
- package/blocks/org/blockml/bml/bom/documentation/LayerSeparation.bml +47 -0
- package/blocks/org/blockml/bml/bom/documentation/MemberValueSemantics.bml +48 -0
- package/blocks/org/blockml/bml/bom/documentation/PackageOwnership.bml +56 -0
- package/blocks/org/blockml/bml/bom/documentation/PublicApi.bml +59 -0
- package/blocks/org/blockml/bml/bom/documentation/RelatedDiagnostics.bml +51 -0
- package/blocks/org/blockml/bml/bom/documentation/ScopeExclusions.bml +47 -0
- package/blocks/org/blockml/bml/bom/documentation/SubBlockAndEmbeddedBlocks.bml +45 -0
- package/blocks/org/blockml/bml/bom/documentation/TypeExpressionsOverview.bml +47 -0
- package/blocks/org/blockml/bml/bom/documentation/ValidationResponsibilities.bml +51 -0
- package/blocks/org/blockml/bml/bom/documentation/VersionRules.bml +41 -0
- package/blocks/org/blockml/bml/bom/documentation/XmlComments.bml +47 -0
- package/blocks/org/blockml/bml/bom/member/AggregationDefinition.bml +58 -0
- package/blocks/org/blockml/bml/bom/member/AssociationDefinition.bml +46 -0
- package/blocks/org/blockml/bml/bom/member/CapabilityDefinition.bml +52 -0
- package/blocks/org/blockml/bml/bom/member/ConstrainableDefinition.bml +39 -0
- package/blocks/org/blockml/bml/bom/member/EmbeddedExpression.bml +45 -0
- package/blocks/org/blockml/bml/bom/member/ImplementationBlock.bml +51 -0
- package/blocks/org/blockml/bml/bom/member/MemberDefinition.bml +35 -0
- package/blocks/org/blockml/bml/bom/member/MemberDefinitionBase.bml +90 -0
- package/blocks/org/blockml/bml/bom/member/PropertyDefinition.bml +61 -0
- package/blocks/org/blockml/bml/bom/member/PropertyValueEntry.bml +42 -0
- package/blocks/org/blockml/bml/bom/type/AnonymousStructType.bml +43 -0
- package/blocks/org/blockml/bml/bom/type/GenericParameterReference.bml +43 -0
- package/blocks/org/blockml/bml/bom/type/InstanceConfiguration.bml +42 -0
- package/blocks/org/blockml/bml/bom/type/Multiplicity.bml +42 -0
- package/blocks/org/blockml/bml/bom/type/NamedTypeReference.bml +52 -0
- package/blocks/org/blockml/bml/bom/type/SelfTypeReference.bml +40 -0
- package/blocks/org/blockml/bml/bom/type/StructField.bml +42 -0
- package/blocks/org/blockml/bml/bom/type/TypeDescriptor.bml +37 -0
- package/blocks/org/blockml/bml/bom/type/TypeExpression.bml +35 -0
- package/blocks/org/blockml/bml/bom/type/UnionTypeExpression.bml +43 -0
- package/blocks/org/blockml/bml/bom/value/Address.bml +54 -0
- package/blocks/org/blockml/bml/bom/value/AddressValue.bml +43 -0
- package/blocks/org/blockml/bml/bom/value/ExpressionValue.bml +49 -0
- package/blocks/org/blockml/bml/bom/value/LiteralValue.bml +49 -0
- package/blocks/org/blockml/bml/bom/value/MemberValue.bml +35 -0
- package/dist/equals.d.ts +10 -0
- package/dist/equals.d.ts.map +1 -0
- package/dist/equals.js +94 -0
- package/dist/equals.js.map +1 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/dist/types/api.d.ts +50 -0
- package/dist/types/api.d.ts.map +1 -0
- package/dist/types/api.js +2 -0
- package/dist/types/api.js.map +1 -0
- package/dist/types/block-definition.d.ts +150 -0
- package/dist/types/block-definition.d.ts.map +1 -0
- package/dist/types/block-definition.js +2 -0
- package/dist/types/block-definition.js.map +1 -0
- package/dist/types/common.d.ts +60 -0
- package/dist/types/common.d.ts.map +1 -0
- package/dist/types/common.js +2 -0
- package/dist/types/common.js.map +1 -0
- package/dist/types/composition.d.ts +77 -0
- package/dist/types/composition.d.ts.map +1 -0
- package/dist/types/composition.js +2 -0
- package/dist/types/composition.js.map +1 -0
- package/dist/types/document.d.ts +12 -0
- package/dist/types/document.d.ts.map +1 -0
- package/dist/types/document.js +2 -0
- package/dist/types/document.js.map +1 -0
- package/dist/types/member-definition.d.ts +96 -0
- package/dist/types/member-definition.d.ts.map +1 -0
- package/dist/types/member-definition.js +2 -0
- package/dist/types/member-definition.js.map +1 -0
- package/dist/types/type-expression.d.ts +42 -0
- package/dist/types/type-expression.d.ts.map +1 -0
- package/dist/types/type-expression.js +2 -0
- package/dist/types/type-expression.js.map +1 -0
- package/dist/types/values.d.ts +35 -0
- package/dist/types/values.d.ts.map +1 -0
- package/dist/types/values.js +2 -0
- package/dist/types/values.js.map +1 -0
- package/package.json +40 -0
|
@@ -0,0 +1,136 @@
|
|
|
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
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomapi="org.blockml.bml.bom.api"
|
|
13
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
14
|
+
xmlns:bomcap="org.blockml.bml.bom.capability"
|
|
15
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
16
|
+
xmlns:bomcomp="org.blockml.bml.bom.composition"
|
|
17
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
18
|
+
xmlns:bomdocumentation="org.blockml.bml.bom.documentation"
|
|
19
|
+
xmlns:bommember="org.blockml.bml.bom.member"
|
|
20
|
+
xmlns:bomtype="org.blockml.bml.bom.type"
|
|
21
|
+
xmlns:bomvalue="org.blockml.bml.bom.value"
|
|
22
|
+
xmlns:core="org.blockml.bml.core"
|
|
23
|
+
xmlns:def="org.blockml.bml.definition"
|
|
24
|
+
xmlns:type="org.blockml.bml.type">
|
|
25
|
+
|
|
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
|
+
|
|
33
|
+
<references>
|
|
34
|
+
<see type="def:BlockDefinition" relation="SeeAlso" />
|
|
35
|
+
</references>
|
|
36
|
+
|
|
37
|
+
<properties>
|
|
38
|
+
<name type="type:Text">
|
|
39
|
+
<documentation>name (required). TS type: type:Text.</documentation>
|
|
40
|
+
</name>
|
|
41
|
+
<type type="type:Text">
|
|
42
|
+
<documentation>type (required). TS type: type:Text.</documentation>
|
|
43
|
+
</type>
|
|
44
|
+
<baseType type="type:Text">
|
|
45
|
+
<documentation>baseType (optional). TS type: type:Text.</documentation>
|
|
46
|
+
</baseType>
|
|
47
|
+
<version type="type:Text">
|
|
48
|
+
<documentation>version (optional). TS type: type:Text.</documentation>
|
|
49
|
+
</version>
|
|
50
|
+
<is type="type:Text">
|
|
51
|
+
<documentation>is (optional). TS type: type:Text.</documentation>
|
|
52
|
+
</is>
|
|
53
|
+
<summaries type="bomblock:DocumentationProseEntry[]">
|
|
54
|
+
<documentation>summaries (optional). TS type: bomblock:DocumentationProseEntry[].</documentation>
|
|
55
|
+
</summaries>
|
|
56
|
+
<keywords type="bomblock:KeywordEntry[]">
|
|
57
|
+
<documentation>keywords (optional). TS type: bomblock:KeywordEntry[].</documentation>
|
|
58
|
+
</keywords>
|
|
59
|
+
<language type="bomblock:TypeReferenceEntityInstance">
|
|
60
|
+
<documentation>language (optional). TS type: bomblock:TypeReferenceEntityInstance.</documentation>
|
|
61
|
+
</language>
|
|
62
|
+
<languageFqn type="type:Text">
|
|
63
|
+
<documentation>languageFqn (optional). TS type: type:Text.</documentation>
|
|
64
|
+
</languageFqn>
|
|
65
|
+
<documentations type="bomblock:DocumentationProseEntry[]">
|
|
66
|
+
<documentation>documentations (optional). TS type: bomblock:DocumentationProseEntry[].</documentation>
|
|
67
|
+
</documentations>
|
|
68
|
+
<isNot type="type:Text">
|
|
69
|
+
<documentation>TS field isNot; BML XML element is isnot. (optional)</documentation>
|
|
70
|
+
</isNot>
|
|
71
|
+
<aliases type="bomblock:AliasEntry[]">
|
|
72
|
+
<documentation>aliases (optional). TS type: bomblock:AliasEntry[].</documentation>
|
|
73
|
+
</aliases>
|
|
74
|
+
<since type="type:Text">
|
|
75
|
+
<documentation>since (optional). TS type: type:Text.</documentation>
|
|
76
|
+
</since>
|
|
77
|
+
<changelog type="bomblock:ChangelogEntry[]">
|
|
78
|
+
<documentation>changelog (optional). TS type: bomblock:ChangelogEntry[].</documentation>
|
|
79
|
+
</changelog>
|
|
80
|
+
<examples type="bomblock:DocumentationExample[]">
|
|
81
|
+
<documentation>examples (optional). TS type: bomblock:DocumentationExample[].</documentation>
|
|
82
|
+
</examples>
|
|
83
|
+
<references type="bomblock:DocumentationReference[]">
|
|
84
|
+
<documentation>references (optional). TS type: bomblock:DocumentationReference[].</documentation>
|
|
85
|
+
</references>
|
|
86
|
+
<abstract type="type:Boolean">
|
|
87
|
+
<documentation>abstract (optional). TS type: type:Boolean.</documentation>
|
|
88
|
+
</abstract>
|
|
89
|
+
<final type="type:Boolean">
|
|
90
|
+
<documentation>final (optional). TS type: type:Boolean.</documentation>
|
|
91
|
+
</final>
|
|
92
|
+
<xmlRendering type="bomcommon:XmlRenderingBlock">
|
|
93
|
+
<documentation>xmlRendering (optional). TS type: bomcommon:XmlRenderingBlock.</documentation>
|
|
94
|
+
</xmlRendering>
|
|
95
|
+
<visibility type="type:Text">
|
|
96
|
+
<documentation>"private" | "protected" | "public". Sub-Blocks only. (optional)</documentation>
|
|
97
|
+
</visibility>
|
|
98
|
+
<contracts type="bomblock:TypeReferenceEntityInstance[]">
|
|
99
|
+
<documentation>contracts (optional). TS type: bomblock:TypeReferenceEntityInstance[].</documentation>
|
|
100
|
+
</contracts>
|
|
101
|
+
<genericTypes type="bomblock:GenericType[]">
|
|
102
|
+
<documentation>genericTypes (optional). TS type: bomblock:GenericType[].</documentation>
|
|
103
|
+
</genericTypes>
|
|
104
|
+
<definitionFqn type="type:Text">
|
|
105
|
+
<documentation>definitionFqn (optional). TS type: type:Text.</documentation>
|
|
106
|
+
</definitionFqn>
|
|
107
|
+
<constraints type="bomcomp:BlockInstance[]">
|
|
108
|
+
<documentation>constraints (optional). TS type: bomcomp:BlockInstance[].</documentation>
|
|
109
|
+
</constraints>
|
|
110
|
+
<members type="bommember:MemberDefinition[]">
|
|
111
|
+
<documentation>members (required). TS type: bommember:MemberDefinition[].</documentation>
|
|
112
|
+
</members>
|
|
113
|
+
<subBlocks type="bomblock:BlockDefinition[]">
|
|
114
|
+
<documentation>subBlocks (required). TS type: bomblock:BlockDefinition[].</documentation>
|
|
115
|
+
</subBlocks>
|
|
116
|
+
<embeddedBlocks type="bomblock:BlockDefinition[]">
|
|
117
|
+
<documentation>embeddedBlocks (required). TS type: bomblock:BlockDefinition[].</documentation>
|
|
118
|
+
</embeddedBlocks>
|
|
119
|
+
<compositions type="bomcomp:CompositionTemplate[]">
|
|
120
|
+
<documentation>compositions (required). TS type: bomcomp:CompositionTemplate[].</documentation>
|
|
121
|
+
</compositions>
|
|
122
|
+
<xmlTrivia type="bomcommon:XmlTrivia">
|
|
123
|
+
<documentation>xmlTrivia (optional). TS type: bomcommon:XmlTrivia.</documentation>
|
|
124
|
+
</xmlTrivia>
|
|
125
|
+
<memberSectionTrivia type="type:Text">
|
|
126
|
+
<documentation>Partial<Record<MemberSectionName, XmlTrivia>>. (optional)</documentation>
|
|
127
|
+
</memberSectionTrivia>
|
|
128
|
+
<metadataTrivia type="bomcommon:MetadataElementTrivia">
|
|
129
|
+
<documentation>metadataTrivia (optional). TS type: bomcommon:MetadataElementTrivia.</documentation>
|
|
130
|
+
</metadataTrivia>
|
|
131
|
+
<source type="bomcommon:SourceLocation">
|
|
132
|
+
<documentation>source (optional). TS type: bomcommon:SourceLocation.</documentation>
|
|
133
|
+
</source>
|
|
134
|
+
</properties>
|
|
135
|
+
|
|
136
|
+
</block>
|
|
@@ -0,0 +1,48 @@
|
|
|
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
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomapi="org.blockml.bml.bom.api"
|
|
13
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
14
|
+
xmlns:bomcap="org.blockml.bml.bom.capability"
|
|
15
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
16
|
+
xmlns:bomcomp="org.blockml.bml.bom.composition"
|
|
17
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
18
|
+
xmlns:bomdocumentation="org.blockml.bml.bom.documentation"
|
|
19
|
+
xmlns:bommember="org.blockml.bml.bom.member"
|
|
20
|
+
xmlns:bomtype="org.blockml.bml.bom.type"
|
|
21
|
+
xmlns:bomvalue="org.blockml.bml.bom.value"
|
|
22
|
+
xmlns:core="org.blockml.bml.core"
|
|
23
|
+
xmlns:def="org.blockml.bml.definition"
|
|
24
|
+
xmlns:type="org.blockml.bml.type">
|
|
25
|
+
|
|
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
|
+
|
|
33
|
+
<properties>
|
|
34
|
+
<version type="type:Text">
|
|
35
|
+
<documentation>version (required). TS type: type:Text.</documentation>
|
|
36
|
+
</version>
|
|
37
|
+
<text type="type:Text">
|
|
38
|
+
<documentation>text (required). TS type: type:Text.</documentation>
|
|
39
|
+
</text>
|
|
40
|
+
<languageFqn type="type:Text">
|
|
41
|
+
<documentation>languageFqn (optional). TS type: type:Text.</documentation>
|
|
42
|
+
</languageFqn>
|
|
43
|
+
<source type="bomcommon:SourceLocation">
|
|
44
|
+
<documentation>source (optional). TS type: bomcommon:SourceLocation.</documentation>
|
|
45
|
+
</source>
|
|
46
|
+
</properties>
|
|
47
|
+
|
|
48
|
+
</block>
|
|
@@ -0,0 +1,57 @@
|
|
|
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
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomapi="org.blockml.bml.bom.api"
|
|
13
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
14
|
+
xmlns:bomcap="org.blockml.bml.bom.capability"
|
|
15
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
16
|
+
xmlns:bomcomp="org.blockml.bml.bom.composition"
|
|
17
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
18
|
+
xmlns:bomdocumentation="org.blockml.bml.bom.documentation"
|
|
19
|
+
xmlns:bommember="org.blockml.bml.bom.member"
|
|
20
|
+
xmlns:bomtype="org.blockml.bml.bom.type"
|
|
21
|
+
xmlns:bomvalue="org.blockml.bml.bom.value"
|
|
22
|
+
xmlns:core="org.blockml.bml.core"
|
|
23
|
+
xmlns:def="org.blockml.bml.definition"
|
|
24
|
+
xmlns:type="org.blockml.bml.type">
|
|
25
|
+
|
|
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
|
+
|
|
33
|
+
<properties>
|
|
34
|
+
<title type="type:Text">
|
|
35
|
+
<documentation>title (required). TS type: type:Text.</documentation>
|
|
36
|
+
</title>
|
|
37
|
+
<content type="type:Text">
|
|
38
|
+
<documentation>content (required). TS type: type:Text.</documentation>
|
|
39
|
+
</content>
|
|
40
|
+
<authoredCharacterDataForm type="bomcommon:CharacterDataForm">
|
|
41
|
+
<documentation>authoredCharacterDataForm (optional). TS type: bomcommon:CharacterDataForm.</documentation>
|
|
42
|
+
</authoredCharacterDataForm>
|
|
43
|
+
<contentLanguageFqn type="type:Text">
|
|
44
|
+
<documentation>contentLanguageFqn (optional). TS type: type:Text.</documentation>
|
|
45
|
+
</contentLanguageFqn>
|
|
46
|
+
<snippet type="type:Boolean">
|
|
47
|
+
<documentation>snippet (optional). TS type: type:Boolean.</documentation>
|
|
48
|
+
</snippet>
|
|
49
|
+
<namespace type="type:Text">
|
|
50
|
+
<documentation>namespace (optional). TS type: type:Text.</documentation>
|
|
51
|
+
</namespace>
|
|
52
|
+
<source type="bomcommon:SourceLocation">
|
|
53
|
+
<documentation>source (optional). TS type: bomcommon:SourceLocation.</documentation>
|
|
54
|
+
</source>
|
|
55
|
+
</properties>
|
|
56
|
+
|
|
57
|
+
</block>
|
|
@@ -0,0 +1,51 @@
|
|
|
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
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomapi="org.blockml.bml.bom.api"
|
|
13
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
14
|
+
xmlns:bomcap="org.blockml.bml.bom.capability"
|
|
15
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
16
|
+
xmlns:bomcomp="org.blockml.bml.bom.composition"
|
|
17
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
18
|
+
xmlns:bomdocumentation="org.blockml.bml.bom.documentation"
|
|
19
|
+
xmlns:bommember="org.blockml.bml.bom.member"
|
|
20
|
+
xmlns:bomtype="org.blockml.bml.bom.type"
|
|
21
|
+
xmlns:bomvalue="org.blockml.bml.bom.value"
|
|
22
|
+
xmlns:core="org.blockml.bml.core"
|
|
23
|
+
xmlns:def="org.blockml.bml.definition"
|
|
24
|
+
xmlns:type="org.blockml.bml.type">
|
|
25
|
+
|
|
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
|
+
|
|
33
|
+
<properties>
|
|
34
|
+
<namespace type="type:Text">
|
|
35
|
+
<documentation>namespace (required). TS type: type:Text.</documentation>
|
|
36
|
+
</namespace>
|
|
37
|
+
<text type="type:Text">
|
|
38
|
+
<documentation>text (required). TS type: type:Text.</documentation>
|
|
39
|
+
</text>
|
|
40
|
+
<languageFqn type="type:Text">
|
|
41
|
+
<documentation>languageFqn (required). TS type: type:Text.</documentation>
|
|
42
|
+
</languageFqn>
|
|
43
|
+
<authoredCharacterDataForm type="bomcommon:CharacterDataForm">
|
|
44
|
+
<documentation>authoredCharacterDataForm (optional). TS type: bomcommon:CharacterDataForm.</documentation>
|
|
45
|
+
</authoredCharacterDataForm>
|
|
46
|
+
<source type="bomcommon:SourceLocation">
|
|
47
|
+
<documentation>source (optional). TS type: bomcommon:SourceLocation.</documentation>
|
|
48
|
+
</source>
|
|
49
|
+
</properties>
|
|
50
|
+
|
|
51
|
+
</block>
|
|
@@ -0,0 +1,72 @@
|
|
|
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
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomapi="org.blockml.bml.bom.api"
|
|
13
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
14
|
+
xmlns:bomcap="org.blockml.bml.bom.capability"
|
|
15
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
16
|
+
xmlns:bomcomp="org.blockml.bml.bom.composition"
|
|
17
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
18
|
+
xmlns:bomdocumentation="org.blockml.bml.bom.documentation"
|
|
19
|
+
xmlns:bommember="org.blockml.bml.bom.member"
|
|
20
|
+
xmlns:bomtype="org.blockml.bml.bom.type"
|
|
21
|
+
xmlns:bomvalue="org.blockml.bml.bom.value"
|
|
22
|
+
xmlns:core="org.blockml.bml.core"
|
|
23
|
+
xmlns:def="org.blockml.bml.definition"
|
|
24
|
+
xmlns:type="org.blockml.bml.type">
|
|
25
|
+
|
|
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
|
+
|
|
33
|
+
<properties>
|
|
34
|
+
<type type="type:Text">
|
|
35
|
+
<documentation>type (optional). TS type: type:Text.</documentation>
|
|
36
|
+
</type>
|
|
37
|
+
<instance type="type:Text">
|
|
38
|
+
<documentation>instance (optional). TS type: type:Text.</documentation>
|
|
39
|
+
</instance>
|
|
40
|
+
<file type="type:Text">
|
|
41
|
+
<documentation>file (optional). TS type: type:Text.</documentation>
|
|
42
|
+
</file>
|
|
43
|
+
<url type="type:Text">
|
|
44
|
+
<documentation>url (optional). TS type: type:Text.</documentation>
|
|
45
|
+
</url>
|
|
46
|
+
<property type="type:Text">
|
|
47
|
+
<documentation>property (optional). TS type: type:Text.</documentation>
|
|
48
|
+
</property>
|
|
49
|
+
<aggregation type="type:Text">
|
|
50
|
+
<documentation>aggregation (optional). TS type: type:Text.</documentation>
|
|
51
|
+
</aggregation>
|
|
52
|
+
<association type="type:Text">
|
|
53
|
+
<documentation>association (optional). TS type: type:Text.</documentation>
|
|
54
|
+
</association>
|
|
55
|
+
<capability type="type:Text">
|
|
56
|
+
<documentation>capability (optional). TS type: type:Text.</documentation>
|
|
57
|
+
</capability>
|
|
58
|
+
<relationFqn type="type:Text">
|
|
59
|
+
<documentation>relationFqn (optional). TS type: type:Text.</documentation>
|
|
60
|
+
</relationFqn>
|
|
61
|
+
<context type="type:Text">
|
|
62
|
+
<documentation>context (required). TS type: type:Text.</documentation>
|
|
63
|
+
</context>
|
|
64
|
+
<languageFqn type="type:Text">
|
|
65
|
+
<documentation>languageFqn (optional). TS type: type:Text.</documentation>
|
|
66
|
+
</languageFqn>
|
|
67
|
+
<source type="bomcommon:SourceLocation">
|
|
68
|
+
<documentation>source (optional). TS type: bomcommon:SourceLocation.</documentation>
|
|
69
|
+
</source>
|
|
70
|
+
</properties>
|
|
71
|
+
|
|
72
|
+
</block>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
BOM Urmodell — GenericType
|
|
3
|
+
FQN: org.blockml.bml.bom.block.GenericType
|
|
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
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomapi="org.blockml.bml.bom.api"
|
|
13
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
14
|
+
xmlns:bomcap="org.blockml.bml.bom.capability"
|
|
15
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
16
|
+
xmlns:bomcomp="org.blockml.bml.bom.composition"
|
|
17
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
18
|
+
xmlns:bomdocumentation="org.blockml.bml.bom.documentation"
|
|
19
|
+
xmlns:bommember="org.blockml.bml.bom.member"
|
|
20
|
+
xmlns:bomtype="org.blockml.bml.bom.type"
|
|
21
|
+
xmlns:bomvalue="org.blockml.bml.bom.value"
|
|
22
|
+
xmlns:core="org.blockml.bml.core"
|
|
23
|
+
xmlns:def="org.blockml.bml.definition"
|
|
24
|
+
xmlns:type="org.blockml.bml.type">
|
|
25
|
+
|
|
26
|
+
<name>GenericType</name>
|
|
27
|
+
<type>bomblock:GenericType</type>
|
|
28
|
+
<baseType>bom:UrmodellType</baseType>
|
|
29
|
+
<is>Generic type parameter on a Block definition</is>
|
|
30
|
+
|
|
31
|
+
<documentation>Generic type parameter on a Block definition</documentation>
|
|
32
|
+
|
|
33
|
+
<properties>
|
|
34
|
+
<name type="type:Text">
|
|
35
|
+
<documentation>name (required). TS type: type:Text.</documentation>
|
|
36
|
+
</name>
|
|
37
|
+
<baseType type="type:Text">
|
|
38
|
+
<documentation>baseType (required). TS type: type:Text.</documentation>
|
|
39
|
+
</baseType>
|
|
40
|
+
<defaultType type="type:Text">
|
|
41
|
+
<documentation>defaultType (optional). TS type: type:Text.</documentation>
|
|
42
|
+
</defaultType>
|
|
43
|
+
</properties>
|
|
44
|
+
|
|
45
|
+
</block>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
BOM Urmodell — KeywordEntry
|
|
3
|
+
FQN: org.blockml.bml.bom.block.KeywordEntry
|
|
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
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomapi="org.blockml.bml.bom.api"
|
|
13
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
14
|
+
xmlns:bomcap="org.blockml.bml.bom.capability"
|
|
15
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
16
|
+
xmlns:bomcomp="org.blockml.bml.bom.composition"
|
|
17
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
18
|
+
xmlns:bomdocumentation="org.blockml.bml.bom.documentation"
|
|
19
|
+
xmlns:bommember="org.blockml.bml.bom.member"
|
|
20
|
+
xmlns:bomtype="org.blockml.bml.bom.type"
|
|
21
|
+
xmlns:bomvalue="org.blockml.bml.bom.value"
|
|
22
|
+
xmlns:core="org.blockml.bml.core"
|
|
23
|
+
xmlns:def="org.blockml.bml.definition"
|
|
24
|
+
xmlns:type="org.blockml.bml.type">
|
|
25
|
+
|
|
26
|
+
<name>KeywordEntry</name>
|
|
27
|
+
<type>bomblock:KeywordEntry</type>
|
|
28
|
+
<baseType>bom:UrmodellType</baseType>
|
|
29
|
+
<is>Keyword Entity instance in BOM</is>
|
|
30
|
+
|
|
31
|
+
<documentation>Keyword Entity instance in BOM</documentation>
|
|
32
|
+
|
|
33
|
+
<properties>
|
|
34
|
+
<typeFqn type="type:Text">
|
|
35
|
+
<documentation>typeFqn (required). TS type: type:Text.</documentation>
|
|
36
|
+
</typeFqn>
|
|
37
|
+
<term type="type:Text">
|
|
38
|
+
<documentation>term (optional). TS type: type:Text.</documentation>
|
|
39
|
+
</term>
|
|
40
|
+
<languageFqn type="type:Text">
|
|
41
|
+
<documentation>languageFqn (optional). TS type: type:Text.</documentation>
|
|
42
|
+
</languageFqn>
|
|
43
|
+
<weight type="type:Decimal">
|
|
44
|
+
<documentation>weight (optional). TS type: type:Decimal.</documentation>
|
|
45
|
+
</weight>
|
|
46
|
+
<source type="bomcommon:SourceLocation">
|
|
47
|
+
<documentation>source (optional). TS type: bomcommon:SourceLocation.</documentation>
|
|
48
|
+
</source>
|
|
49
|
+
</properties>
|
|
50
|
+
|
|
51
|
+
</block>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
BOM Urmodell — TypeReferenceEntityInstance
|
|
3
|
+
FQN: org.blockml.bml.bom.block.TypeReferenceEntityInstance
|
|
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
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomapi="org.blockml.bml.bom.api"
|
|
13
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
14
|
+
xmlns:bomcap="org.blockml.bml.bom.capability"
|
|
15
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
16
|
+
xmlns:bomcomp="org.blockml.bml.bom.composition"
|
|
17
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
18
|
+
xmlns:bomdocumentation="org.blockml.bml.bom.documentation"
|
|
19
|
+
xmlns:bommember="org.blockml.bml.bom.member"
|
|
20
|
+
xmlns:bomtype="org.blockml.bml.bom.type"
|
|
21
|
+
xmlns:bomvalue="org.blockml.bml.bom.value"
|
|
22
|
+
xmlns:core="org.blockml.bml.core"
|
|
23
|
+
xmlns:def="org.blockml.bml.definition"
|
|
24
|
+
xmlns:type="org.blockml.bml.type">
|
|
25
|
+
|
|
26
|
+
<name>TypeReferenceEntityInstance</name>
|
|
27
|
+
<type>bomblock:TypeReferenceEntityInstance</type>
|
|
28
|
+
<baseType>bom:UrmodellType</baseType>
|
|
29
|
+
<is>BOM shape for TypeReferenceEntity instances</is>
|
|
30
|
+
|
|
31
|
+
<documentation>typeFqn is always "org.blockml.bml.type.TypeReferenceEntity".</documentation>
|
|
32
|
+
|
|
33
|
+
<properties>
|
|
34
|
+
<typeFqn type="type:Text">
|
|
35
|
+
<documentation>typeFqn (required). TS type: type:Text.</documentation>
|
|
36
|
+
</typeFqn>
|
|
37
|
+
<value type="type:Text">
|
|
38
|
+
<documentation>value (required). TS type: type:Text.</documentation>
|
|
39
|
+
</value>
|
|
40
|
+
<boundB type="type:Text">
|
|
41
|
+
<documentation>boundB (optional). TS type: type:Text.</documentation>
|
|
42
|
+
</boundB>
|
|
43
|
+
</properties>
|
|
44
|
+
|
|
45
|
+
</block>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
BOM Urmodell — BomEquals
|
|
3
|
+
FQN: org.blockml.bml.bom.capability.BomEquals
|
|
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
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomapi="org.blockml.bml.bom.api"
|
|
13
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
14
|
+
xmlns:bomcap="org.blockml.bml.bom.capability"
|
|
15
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
16
|
+
xmlns:bomcomp="org.blockml.bml.bom.composition"
|
|
17
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
18
|
+
xmlns:bomdocumentation="org.blockml.bml.bom.documentation"
|
|
19
|
+
xmlns:bommember="org.blockml.bml.bom.member"
|
|
20
|
+
xmlns:bomtype="org.blockml.bml.bom.type"
|
|
21
|
+
xmlns:bomvalue="org.blockml.bml.bom.value"
|
|
22
|
+
xmlns:core="org.blockml.bml.core"
|
|
23
|
+
xmlns:def="org.blockml.bml.definition"
|
|
24
|
+
xmlns:type="org.blockml.bml.type">
|
|
25
|
+
|
|
26
|
+
<name>BomEquals</name>
|
|
27
|
+
<type>bomcap:BomEquals</type>
|
|
28
|
+
<baseType>core:Capability</baseType>
|
|
29
|
+
<is>Structural equality modulo provenance (B20)</is>
|
|
30
|
+
|
|
31
|
+
<documentation>deepEqual(stripProvenance(a), stripProvenance(b)). Roundtrip gate for BML → BOM → BML tests.</documentation>
|
|
32
|
+
|
|
33
|
+
<properties>
|
|
34
|
+
<inputA type="bomdoc:BomDocument">
|
|
35
|
+
<documentation>inputA (required). TS type: bomdoc:BomDocument.</documentation>
|
|
36
|
+
</inputA>
|
|
37
|
+
<inputB type="bomdoc:BomDocument">
|
|
38
|
+
<documentation>inputB (required). TS type: bomdoc:BomDocument.</documentation>
|
|
39
|
+
</inputB>
|
|
40
|
+
<output type="type:Boolean">
|
|
41
|
+
<documentation>output (required). TS type: type:Boolean.</documentation>
|
|
42
|
+
</output>
|
|
43
|
+
</properties>
|
|
44
|
+
|
|
45
|
+
</block>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
BOM Urmodell — StripProvenance
|
|
3
|
+
FQN: org.blockml.bml.bom.capability.StripProvenance
|
|
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
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomapi="org.blockml.bml.bom.api"
|
|
13
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
14
|
+
xmlns:bomcap="org.blockml.bml.bom.capability"
|
|
15
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
16
|
+
xmlns:bomcomp="org.blockml.bml.bom.composition"
|
|
17
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
18
|
+
xmlns:bomdocumentation="org.blockml.bml.bom.documentation"
|
|
19
|
+
xmlns:bommember="org.blockml.bml.bom.member"
|
|
20
|
+
xmlns:bomtype="org.blockml.bml.bom.type"
|
|
21
|
+
xmlns:bomvalue="org.blockml.bml.bom.value"
|
|
22
|
+
xmlns:core="org.blockml.bml.core"
|
|
23
|
+
xmlns:def="org.blockml.bml.definition"
|
|
24
|
+
xmlns:type="org.blockml.bml.type">
|
|
25
|
+
|
|
26
|
+
<name>StripProvenance</name>
|
|
27
|
+
<type>bomcap:StripProvenance</type>
|
|
28
|
+
<baseType>core:Capability</baseType>
|
|
29
|
+
<is>Deep-clone omitting provenance keys (B20)</is>
|
|
30
|
+
|
|
31
|
+
<documentation>Removes sourceLocation, endLine, endColumn, and provenance source/SourceInfo fields recursively. Preserves ImplementationBlock.source (implementation code body). Reference: packages/bom/src/equals.ts.</documentation>
|
|
32
|
+
|
|
33
|
+
<properties>
|
|
34
|
+
<input type="core:Any">
|
|
35
|
+
<documentation>input (required). TS type: core:Any.</documentation>
|
|
36
|
+
</input>
|
|
37
|
+
<output type="core:Any">
|
|
38
|
+
<documentation>output (required). TS type: core:Any.</documentation>
|
|
39
|
+
</output>
|
|
40
|
+
</properties>
|
|
41
|
+
|
|
42
|
+
</block>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
BOM Urmodell — CharacterDataForm
|
|
3
|
+
FQN: org.blockml.bml.bom.common.CharacterDataForm
|
|
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
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomapi="org.blockml.bml.bom.api"
|
|
13
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
14
|
+
xmlns:bomcap="org.blockml.bml.bom.capability"
|
|
15
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
16
|
+
xmlns:bomcomp="org.blockml.bml.bom.composition"
|
|
17
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
18
|
+
xmlns:bomdocumentation="org.blockml.bml.bom.documentation"
|
|
19
|
+
xmlns:bommember="org.blockml.bml.bom.member"
|
|
20
|
+
xmlns:bomtype="org.blockml.bml.bom.type"
|
|
21
|
+
xmlns:bomvalue="org.blockml.bml.bom.value"
|
|
22
|
+
xmlns:core="org.blockml.bml.core"
|
|
23
|
+
xmlns:def="org.blockml.bml.definition"
|
|
24
|
+
xmlns:type="org.blockml.bml.type">
|
|
25
|
+
|
|
26
|
+
<name>CharacterDataForm</name>
|
|
27
|
+
<type>bomcommon:CharacterDataForm</type>
|
|
28
|
+
<baseType>bom:UrmodellType</baseType>
|
|
29
|
+
<is>Authored character data form (D8)</is>
|
|
30
|
+
|
|
31
|
+
<documentation>String-literal union: "text" | "cdata".</documentation>
|
|
32
|
+
|
|
33
|
+
<properties>
|
|
34
|
+
<value type="type:Text">
|
|
35
|
+
<documentation>value (required). TS type: type:Text.</documentation>
|
|
36
|
+
</value>
|
|
37
|
+
</properties>
|
|
38
|
+
|
|
39
|
+
</block>
|