File size: 1,191 Bytes
5070096 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
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;
}
} |