class BIOINFO_COMMAND
Bioinfo command
note
	description: "Bioinfo command"
	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:15:07 GMT (Sunday 22nd September 2024)"
	revision: "7"
		
		class
	BIOINFO_COMMAND
inherit
	EL_EIF_OBJ_BUILDER_CONTEXT
		redefine
			building_action_table
		end
	EL_MODULE_LOG
create
	make
feature {NONE} -- Initialization
	make
			--
		do
			make_default
			create parameter_list.make (10)
			create id.make_empty
			create menu.make_empty
		end
feature -- Access
	id: STRING
	menu: STRING
	parameter_list: PARAMETER_LIST
feature -- Basic operations
	display
			--
		do
			log.enter ("display")
			log.put_string_field ("id", id)
			log.put_new_line
			log.put_string_field ("menu", menu)
			log.put_new_line
			from parameter_list.start until parameter_list.after loop
				parameter_list.item.display
				parameter_list.forth
			end
			log.exit
		end
feature {NONE} -- Build from XML
	building_action_table: EL_PROCEDURE_TABLE [STRING]
			-- Nodes relative to element: command
		do
			-- Call precursor to include xmlns attribute
			create Result.make_assignments (<<
				["id/text()",	 agent do node.set_8 (id) end],
				["menu/text()", agent do node.set_8 (menu) end],
				["parlist",		 agent do set_next_context (parameter_list) end]
			>>)
		end
end