class NOTE_FIELD
Eiffel class note field name and text
note
description: "Eiffel class note field name and text"
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-08 15:29:49 GMT (Sunday 8th September 2024)"
revision: "5"
class
NOTE_FIELD
inherit
NOTE_CONSTANTS
EL_ZSTRING_CONSTANTS
create
make
feature {NONE} -- Initialization
make (a_name: IMMUTABLE_STRING_8; a_text: like text)
do
name := a_name; text := a_text
end
feature -- Access
lines: EL_ZSTRING_LIST
do
create Result.make (1)
Result.extend (Field_line_template #$ [name, text])
end
name: IMMUTABLE_STRING_8
text: ZSTRING
feature -- Element change
set_text (a_text: like text)
do
text := a_text
end
feature {NONE} -- Constants
Field_line_template: ZSTRING
once
Result := "%S: %"%S%""
end
end