note legal: "See notice at end of class." status: "See notice at end of class." class HTML inherit ANY undefine out end create make feature make do create options.make create title_value.make_empty end feature -- Routines out out: STRING do Result := "") Result.append ("%N") Result.append (head_out) Result.append ("%N") Result.append (body_out) Result.append ("%N") end; body_out: STRING do Result := "" Result.append ("%N") from options.start until options.after loop Result.append (options.item) Result.append ("%N") options.forth end; Result.append ("%N") end; attributes_out, body_attributes_out: STRING do Result := "" end head_out: STRING do Result := "" Result.append ("") if has_value (title_value) then Result.append (title_value) end Result.append ("") Result.append ("%N") end; feature -- Wipe out wipe_out do options.wipe_out end feature -- Set set_title (s: detachable STRING) do if s /= Void then title_value := s.twin else title_value := "" end end feature -- Add new options add_option (an_option: STRING) require an_option /= Void do options.extend (an_option.twin) end feature {NONE} has_value(s: detachable STRING): BOOLEAN -- Has the attribute 's' a value ? do Result := s /= Void and then not s.is_empty ensure s_not_void: Result = (s /= Void and then not s.is_empty) end feature {NONE} title_value: STRING options: LINKED_LIST [STRING]; note copyright: "Copyright (c) 1984-2006, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 356 Storke Road, Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end -- class HTML