25 lines
936 B
Plaintext
25 lines
936 B
Plaintext
// Copyright (c) 2005 DMTF. All rights reserved.
|
|
// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath
|
|
// qualifier values to CIM Schema.</change>
|
|
// ==================================================================
|
|
// CIM_BIOSFeatureBIOSElements
|
|
// ==================================================================
|
|
[Association, Aggregation, Version ( "2.6.0" ),
|
|
UMLPackagePath ( "CIM::Application::BIOS" ),
|
|
Description (
|
|
"A link between BIOSFeature and its aggregated BIOSElements." )]
|
|
class CIM_BIOSFeatureBIOSElements : CIM_SoftwareFeatureSoftwareElements {
|
|
|
|
[Aggregate, Override ( "GroupComponent" ),
|
|
Description ( "The BIOSFeature." )]
|
|
CIM_BIOSFeature REF GroupComponent;
|
|
|
|
[Override ( "PartComponent" ),
|
|
Description (
|
|
"The BIOSElement that implements the capabilities "
|
|
"described by BIOSFeature." )]
|
|
CIM_BIOSElement REF PartComponent;
|
|
|
|
|
|
};
|