HansBug's picture
Sync raw source code, with 301 records, on 2024-08-14 05:51:28 CST
5070096 verified
raw
history blame
1.27 kB
standard library package RequirementDerivation {
doc /* This package provides language-extension metadata for modeling requirement derivation. */
public import DerivationConnections::*;
private import Metaobjects::SemanticMetadata;
metadata def <original> OriginalRequirementMetadata :> SemanticMetadata {
doc
/*
* OriginalRequirementMetadata identifies a usage as an original requirement.
* It is intended to be used to tag the original requirement end of a Derivation.
*/
:> annotatedElement : SysML::Usage;
:>> baseType = originalRequirements meta SysML::Usage;
}
metadata def <derive> DerivedRequirementMetadata :> SemanticMetadata {
doc
/*
* DerivedRequirementMetadata identifies a usage as a derived requirement.
* It is intended to be used to tag the derived requirement ends of a Derivation.
*/
:> annotatedElement : SysML::Usage;
:>> baseType = derivedRequirements meta SysML::Usage;
}
metadata def <derivation> DerivationMetadata :> SemanticMetadata {
doc
/*
* DerivationMetadata is SemanticMetadata for a Derivation connection.
*/
:> annotatedElement : SysML::ConnectionDefinition;
:> annotatedElement : SysML::ConnectionUsage;
:>> baseType = derivations meta SysML::Usage;
}
}