source_raw / src /sysml.library /Domain Libraries /Metadata /ParametersOfInterestMetadata.sysml
HansBug's picture
Sync raw source code, with 301 records, on 2024-08-14 05:51:28 CST
5070096 verified
raw
history blame
1.19 kB
standard library package ParametersOfInterestMetadata {
doc
/*
* This package contains definitions of metadata to identify key parameters of interest,
* including measures of effectiveness (MOE) and other key measures of performance (MOP).
*/
private import Metaobjects::SemanticMetadata;
attribute measuresOfEffectiveness[*] nonunique {
doc /* Base feature for attributes that are measures of effectiveness. */
}
attribute measuresOfPerformance[*] nonunique {
doc /* Base feature for attributes that are measures of performance. */
}
metadata def <moe> MeasureOfEffectiveness :> SemanticMetadata {
doc
/*
* MeasureOfEffectiveness is semantic metadata for identifying an attribute as a
* measure of effectiveness.
*/
:>> annotatedElement : SysML::Usage;
:>> baseType = measuresOfEffectiveness meta SysML::Usage;
}
metadata def <mop> MeasureOfPerformance :> SemanticMetadata {
doc
/*
* MeasureOfPerformance is semantic metadata for identifying an attribute as a
* measure of performance.
*/
:>> annotatedElement : SysML::Usage;
:>> baseType = measuresOfPerformance meta SysML::Usage;
}
}