note
	description: "Field record"
	status: "See notice at end of class."
	legal: "See notice at end of class."
	date: "$Date: 2013-05-20 23:15:17 +0000 (Mon, 20 May 2013) $"
	revision: "$Revision: 92557 $"

class interface
	RT_DBG_FIELD_RECORD [G -> detachable ANY]

create 
	make

feature -- Properties

	object: ANY
			-- Associated object.

	value: detachable G
			-- Associated value.
	
feature -- Access

	current_value_record: detachable RT_DBG_VALUE_RECORD
			-- Record for current value

	associated_object: detachable ANY
			-- Associated object, if any

	Is_local_record: BOOLEAN = False
			-- Is local record ?

	is_same_as (other: RT_DBG_VALUE_RECORD): BOOLEAN
			-- Is Current same as other ?

	to_string: STRING_8
			-- String representation
	
feature -- Change properties

	get_value
			-- Get value on obj
	
feature -- Runtime

	restore (val: RT_DBG_VALUE_RECORD)
			-- Restore value on object, and associate val as backup

	revert (bak: RT_DBG_VALUE_RECORD)
			-- Revert previous change due to Current to object
	
invariant
	object_attached: object /= Void

note
	library: "EiffelBase: Library of reusable components for Eiffel."
	copyright: "Copyright (c) 1984-2013, Eiffel Software and others"
	license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
	source: "[
		Eiffel Software
		5949 Hollister Ave., Goleta, CA 93117 USA
		Telephone 805-685-1006, Fax 805-685-6869
		Website http://www.eiffel.com
		Customer support http://support.eiffel.com
	]"

end -- class RT_DBG_FIELD_RECORD

Generated by ISE EiffelStudio