indexing description: "Window displaying a console application output% %Used together with class PROCESS_LAUNCHER" status: "See notice at end of class"; date: "$Date$" revision: "$Revision$" deferred class WIZARD_OUTPUT_WINDOW feature -- Basic Operations add_title (a_text: STRING) is -- Add `a_text' to output using title format. require non_void_text: a_text /= Void deferred end add_message (a_text: STRING) is -- Add `a_text' to output using standard format. require non_void_message: a_text /= Void deferred end add_continuous_message (a_text: STRING) is -- Add `a_text' to output using standard format. -- Do not add new line. require non_void_message: a_text /= Void deferred end add_warning (a_text: STRING) is -- Add `a_text' to output using warning format. require non_void_text: a_text /= Void deferred end add_error (a_text: STRING) is -- Add `a_text' to output using error format. require non_void_text: a_text /= Void deferred end clear is -- Clear output. deferred end refresh is -- Refresh output. deferred end end -- class WIZARD_OUTPUT_WINDOW --|---------------------------------------------------------------- --| EiffelCOM: library of reusable components for ISE Eiffel. --| Copyright (C) 1988-1999 Interactive Software Engineering Inc. --| All rights reserved. Duplication and distribution prohibited. --| May be used only with ISE Eiffel, under terms of user license. --| Contact ISE for any other use. --| --| Interactive Software Engineering Inc. --| ISE Building, 2nd floor --| 270 Storke Road, Goleta, CA 93117 USA --| Telephone 805-685-1006, Fax 805-685-6869 --| Electronic mail --| Customer support http://support.eiffel.com --| For latest info see award-winning pages: http://www.eiffel.com --|----------------------------------------------------------------