class BOOLEAN_PARAMETER
Boolean parameter
note
description: "Boolean 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: "2023-06-24 14:53:01 GMT (Saturday 24th June 2023)"
revision: "7"
class
BOOLEAN_PARAMETER
inherit
TEXT_NODE_PARAMETER [BOOLEAN]
create
make
feature -- Basic operations
display_item
--
do
log.put_labeled_string (" value", item.out)
log.put_new_line
end
feature {NONE} -- Build from XML
set_item_from_node
do
item := node
end
end