class interface
HTML_TEXT
create
make
feature
stdout: STDOUT
SHARED_STDOUT
feature
put_bold (text: STRING)
text
HTML_GENERATOR
require HTML_GENERATOR
text_not_void: text /= void
put_glossary_definition
HTML_GENERATOR
put_glossary_end
HTML_GENERATOR
put_glossary_start
HTML_GENERATOR
put_glossary_term (text: STRING)
text
HTML_GENERATOR
require HTML_GENERATOR
text_not_void: text /= void
put_header1 (title: STRING)
title
HTML_GENERATOR
require HTML_GENERATOR
title_not_void: title /= void
put_header2 (title: STRING)
title
HTML_GENERATOR
require HTML_GENERATOR
title_not_void: title /= void
put_header3 (title: STRING)
title
HTML_GENERATOR
require HTML_GENERATOR
title_not_void: title /= void
put_header4 (title: STRING)
title
HTML_GENERATOR
require HTML_GENERATOR
title_not_void: title /= void
put_header5 (title: STRING)
title
HTML_GENERATOR
require HTML_GENERATOR
title_not_void: title /= void
put_header6 (title: STRING)
title
HTML_GENERATOR
require HTML_GENERATOR
title_not_void: title /= void
put_horizontal_rule
HTML_GENERATOR
put_italic (text: STRING)
text
HTML_GENERATOR
require HTML_GENERATOR
text_not_void: text /= void
put_line_break
HTML_GENERATOR
put_link (url, anchor: STRING)
anchorurl
HTML_GENERATOR
require HTML_GENERATOR
anchor_not_void: anchor /= void
url_not_void: url /= void
put_list_item_end
HTML_GENERATOR
put_list_item_start
HTML_GENERATOR
put_ordered_list_end
HTML_GENERATOR
put_ordered_list_start
HTML_GENERATOR
put_paragraph_end
HTML_GENERATOR
put_paragraph_start
HTML_GENERATOR
put_preformatted (text: STRING)
text
HTML_GENERATOR
require HTML_GENERATOR
text_not_void: text /= void
put_unordered_list_end
HTML_GENERATOR
put_unordered_list_start
HTML_GENERATOR
feature
make
feature
put_address (s: STRING)
put_blink (s: STRING)
put_center (s: STRING)
put_font (s: STRING; n: INTEGER)
put_indent (s: STRING)
wipe_out
HTML
feature
Bold_end: STRING is "</B>"
HTML_CONSTANTS
Bold_start: STRING is "<B>"
HTML_CONSTANTS
Glossary_definition: STRING is "<DD>"
HTML_CONSTANTS
Glossary_end: STRING is "</DL>"
HTML_CONSTANTS
Glossary_start: STRING is "<DL>"
HTML_CONSTANTS
Glossary_term: STRING is "<DT>"
HTML_CONSTANTS
H1_end: STRING is "</H1>"
HTML_CONSTANTS
H1_start: STRING is "<H1>"
HTML_CONSTANTS
H2_end: STRING is "</H2>"
HTML_CONSTANTS
H2_start: STRING is "<H2>"
HTML_CONSTANTS
H3_end: STRING is "</H3>"
HTML_CONSTANTS
H3_start: STRING is "<H3>"
HTML_CONSTANTS
H4_end: STRING is "</H4>"
HTML_CONSTANTS
H4_start: STRING is "<H4>"
HTML_CONSTANTS
H5_end: STRING is "</H5>"
HTML_CONSTANTS
H5_start: STRING is "<H5>"
HTML_CONSTANTS
H6_end: STRING is "</H6>"
HTML_CONSTANTS
H6_start: STRING is "<H6>"
HTML_CONSTANTS
Horizontal_rule: STRING is "<HR>"
HTML_CONSTANTS
Italic_end: STRING is "</I>"
HTML_CONSTANTS
Italic_start: STRING is "<I>"
HTML_CONSTANTS
Line_break: STRING is "<BR>"
HTML_CONSTANTS
List_item_end: STRING is "</LI>"
HTML_CONSTANTS
List_item_start: STRING is "<LI>"
HTML_CONSTANTS
Ordered_list_end: STRING is "</OL>"
HTML_CONSTANTS
Ordered_list_start: STRING is "<OL>"
HTML_CONSTANTS
Paragraph_end: STRING is "</P>"
HTML_CONSTANTS
Paragraph_start: STRING is "<P>"
HTML_CONSTANTS
Preformatted_end: STRING is "</PRE>"
HTML_CONSTANTS
Preformatted_start: STRING is "<PRE>"
HTML_CONSTANTS
Unordered_list_end: STRING is "</UL>"
HTML_CONSTANTS
Unordered_list_start: STRING is "<UL>"
HTML_CONSTANTS
feature
out: STRING
STRINGHTML
feature
put_basic (s: STRING)
require HTML_GENERATOR
string_not_void: s /= void
invariant
ANY
reflexive_equality: standard_is_equal (Current)
reflexive_conformance: conforms_to (Current)
end -- HTML_TEXT