# File lib/cim/qualifier.rb, line 29
    def initialize declaration, value = nil, flavor = nil
      raise "Not a CIM::QualifierDeclaration: #{declaration.inspect}" unless declaration.is_a?(CIM::QualifierDeclaration)
      @declaration = declaration
      # FIXME, check if the value type matches the declaration type
      @value = value
      @flavor = flavor
    end