indexing
description: "Registry manager"
status: "See notice at end of class"
date: "$Date$"
revision: "$Revision$"
class interface
WEL_REGISTRY_KEY
create
make (a_name, a_class_id: STRING; a_modification_time: WEL_FILE_TIME)
ensure
name_set: name = a_name
class_id_set: class_id = a_class_id
last_change_set: last_change = a_modification_time
feature
make (a_name, a_class_id: STRING; a_modification_time: WEL_FILE_TIME)
ensure
name_set: name = a_name
class_id_set: class_id = a_class_id
last_change_set: last_change = a_modification_time
feature
class_id: STRING
last_change: WEL_FILE_TIME
name: STRING
invariant
ANY
reflexive_equality: standard_is_equal (Current)
reflexive_conformance: conforms_to (Current)
end -- WEL_REGISTRY_KEY