note
	description: "Cells containing an item"
	library: "Gobo Eiffel Kernel Library"
	copyright: "Copyright (c) 2001-2018, Eric Bezault and others"
	license: "MIT License"
	date: "$Date: 2019-02-07 22:54:15 +0000 (Thu, 07 Feb 2019) $"
	revision: "$Revision: 102807 $"

class interface
	KL_CELL [G]

create 
	make

feature -- Access

	item: G
			-- Content of cell
	
feature -- Element change

	put (v: G)
			-- Insert v in cell.
			-- Was declared in KL_CELL as synonym of make.
		ensure
			inserted: {KL_TYPE [G]}.same_objects (item, v)

	make (v: G)
			-- Insert v in cell.
			-- Was declared in KL_CELL as synonym of put.
		ensure
			inserted: {KL_TYPE [G]}.same_objects (item, v)
	
end -- class KL_CELL

Generated by ISE EiffelStudio