Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Text Flat Contracts Flat contracts Go to:
indexing description: "[ Commonly used console input and output mechanisms. This class may be used as ancestor by classes needing its facilities. ]" status: "See notice at end of class" date: "$Date: 2001-11-16 20:32:23 +0000 (Fri, 16 Nov 2001) $" revision: "$Revision: 51435 $" class interface CONSOLE create feature -- Initialization make_open_stdin (fn: STRING) -- Create an unix standard input file. make_open_stdout (fn: STRING) -- Create an unix standard output file. make_open_stderr (fn: STRING) -- Create an unix standard error file. feature -- Status report end_of_file: BOOLEAN -- Have we reached the end of file? exists: BOOLEAN -- Does file exist? feature -- Removal dispose -- This is closed by the operating system at completion. feature -- Input read_integer -- Read a new integer from standard input. -- Make result available in last_integer. -- Was declared in CONSOLE as synonym of readint. readint -- Read a new integer from standard input. -- Make result available in last_integer. -- Was declared in CONSOLE as synonym of read_integer. read_real -- Read a new real from standard input. -- Make result available in last_real. -- Was declared in CONSOLE as synonym of readreal. readreal -- Read a new real from standard input. -- Make result available in last_real. -- Was declared in CONSOLE as synonym of read_real. read_double -- Read a new double from standard input. -- Make result available in last_double. -- Was declared in CONSOLE as synonym of readdouble. readdouble -- Read a new double from standard input. -- Make result available in last_double. -- Was declared in CONSOLE as synonym of read_double. read_line -- Read a string until new line or end of file. -- Make result available in last_string. -- New line will be consumed but not part of last_string. -- Was declared in CONSOLE as synonym of readline. require else is_readable: file_readable readline -- Read a string until new line or end of file. -- Make result available in last_string. -- New line will be consumed but not part of last_string. -- Was declared in CONSOLE as synonym of read_line. require else is_readable: file_readable read_stream (nb_char: INTEGER) -- Read a string of at most nb_char bound characters -- from standard input. -- Make result available in last_string. -- Was declared in CONSOLE as synonym of readstream. readstream (nb_char: INTEGER) -- Read a string of at most nb_char bound characters -- from standard input. -- Make result available in last_string. -- Was declared in CONSOLE as synonym of read_stream. read_word -- Read a new word from standard input. -- Make result available in last_string. -- Was declared in CONSOLE as synonym of readword. readword -- Read a new word from standard input. -- Make result available in last_string. -- Was declared in CONSOLE as synonym of read_word. read_character -- Read a new character from standard input. -- Make result available in last_character. -- Was declared in CONSOLE as synonym of readchar. readchar -- Read a new character from standard input. -- Make result available in last_character. -- Was declared in CONSOLE as synonym of read_character. next_line -- Move to next input line on standard input. feature -- Output put_character (c: CHARACTER) -- Write c at end of default output. -- Was declared in CONSOLE as synonym of putchar. putchar (c: CHARACTER) -- Write c at end of default output. -- Was declared in CONSOLE as synonym of put_character. put_string (s: STRING) -- Write s at end of default output. -- Was declared in CONSOLE as synonym of putstring. putstring (s: STRING) -- Write s at end of default output. -- Was declared in CONSOLE as synonym of put_string. put_real (r: REAL) -- Write r at end of default output. -- Was declared in CONSOLE as synonym of putreal. putreal (r: REAL) -- Write r at end of default output. -- Was declared in CONSOLE as synonym of put_real. put_double (d: DOUBLE) -- Write d at end of default output. -- Was declared in CONSOLE as synonym of putdouble. putdouble (d: DOUBLE) -- Write d at end of default output. -- Was declared in CONSOLE as synonym of put_double. put_integer (i: INTEGER) -- Write i at end of default output. -- Was declared in CONSOLE as synonym of putint. putint (i: INTEGER) -- Write i at end of default output. -- Was declared in CONSOLE as synonym of put_integer. put_boolean (b: BOOLEAN) -- Write b at end of default output. -- Was declared in CONSOLE as synonym of putbool. putbool (b: BOOLEAN) -- Write b at end of default output. -- Was declared in CONSOLE as synonym of put_boolean. put_new_line -- Write line feed at end of default output. -- Was declared in CONSOLE as synonym of new_line. new_line -- Write line feed at end of default output. -- Was declared in CONSOLE as synonym of put_new_line. indexing library: "[ EiffelBase: Library of reusable components for Eiffel. ]" status: "[ Copyright 1986-2001 Interactive Software Engineering (ISE). For ISE customers the original versions are an ISE product covered by the ISE Eiffel license and support agreements. ]" license: "[ EiffelBase may now be used by anyone as FREE SOFTWARE to develop any product, public-domain or commercial, without payment to ISE, under the terms of the ISE Free Eiffel Library License (IFELL) at http://eiffel.com/products/base/license.html. ]" source: "[ Interactive Software Engineering Inc. ISE Building 360 Storke Road, Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Electronic mail <info@eiffel.com> Customer support http://support.eiffel.com ]" info: "[ For latest info see award-winning pages: http://eiffel.com ]" end -- class CONSOLE
Classes Clusters Cluster hierarchy Chart Relations Text Flat Contracts Flat contracts Go to:

-- Generated by ISE Eiffel --
For more details: www.eiffel.com