INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "A command which executes a list of commands. ", "WEL: library of reusable components for Eiffel. ", "Based on WEL library for ISE Eiffel, used with permission. "
project: "Windows Eiffel Library"
copyright: "(c) 1986-1997 Interactive Software Engineering Inc. ", "Modifications and extensions: ", "(c) 1997 Object Tools ", "All rights reserved. Duplication and distribution prohibited", "May be used only with Visual Eiffel under terms of user ", "license "
cluster: wel
class WEL_COMMAND_LIST
inherit

WEL_COMMAND
end

LINKED_LIST [WEL_COMMAND_EXEC]
end
creation

make
feature -- Element change

add_command (command: WEL_COMMAND; argument: ANY)
-- Add `command' with `argument' to list of commands.

remove_command (command: WEL_COMMAND; argument: ANY)
-- Remove all `command' with `argument' from the list of commands.
require
command_not_void: command /= void
feature -- Execution

execute (argument: ANY)
-- Execute list of commands
end -- class WEL_COMMAND_LIST

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES