class CONTAINER_PARAMETER
Recursive class. Attribute parameter_list may have other references to CONTAINER_PARAMETER
note
	description: "Recursive class. Attribute parameter_list may have other references to `CONTAINER_PARAMETER'"
	author: "Finnian Reilly"
	copyright: "Copyright (c) 2001-2022 Finnian Reilly"
	contact: "finnian at eiffel hyphen loop dot com"
	license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
	date: "2024-09-22 14:16:47 GMT (Sunday 22nd September 2024)"
	revision: "6"
		
		class
	CONTAINER_PARAMETER
inherit
	PARAMETER
		redefine
			make, building_action_table, display_item
		end
create
	make
feature {NONE} -- Initialization
	make
			--
		do
			Precursor
			create parameter_list.make (10)
		end
feature -- Access
	parameter_list: PARAMETER_LIST
feature -- Basic operations
	display_item
			--
		do
			log.put_new_line
			across parameter_list as list loop
				list.item.display
			end
		end
feature {NONE} -- Build from XML
	building_action_table: EL_PROCEDURE_TABLE [STRING]
			-- Nodes relative to element: value
		do
			create Result.make_assignments (<<
				["parlist", agent do set_next_context (parameter_list) end]
			>>)
		end
end