indexing description: "Paragraphs of text" project: "Project Goanna " library: "FastCGI Applications" date: "$Date: 2001/05/10" revision: "$Revision$" author: "Neal L. Lester " copyright: "Copyright (c) 2001 Lockheed-Martin Space System Company" license: "Eiffel Forum Freeware License v1 (see forum.txt)." deferred class PARAGRAPH inherit CONTENT_CONTAINER ALIGNABLE EXPORT {NONE} set_top, set_middle, set_bottom end feature html_begin_element : STRING is -- Begin an http paragraph do Result := "" + new_line end html_end_element : STRING is -- End an http paragraph do Result := "

" + new_line end invariant not_top : alignment_code /= top not_middle : alignment_code /= middle not_bottom : alignment_code /= bottom end -- class PARAGRAPH