note description: "Values of time" legal: "See notice at end of class." status: "See notice at end of class." date: "$Date: 2009-01-01 12:38:30 +0000 (Thu, 01 Jan 2009) $" revision: "$Revision: 76534 $" access: time class interface TIME_VALUE create default_create feature -- Access hour: INTEGER_32 -- Hour of the current time minute: INTEGER_32 -- Minute of the current time second: INTEGER_32 -- Second of the current time fractional_second: REAL_64 -- Fractional part of fine_second compact_time: INTEGER_32 -- Hour, minute, second coded. fine_second: REAL_64 -- Representation of second with decimals milli_second: INTEGER_32 -- Millisecond of the current time micro_second: INTEGER_32 -- Microsecond of the current time nano_second: INTEGER_32 -- Nanosecond of the current time feature -- Element change set_hour (h: INTEGER_32) -- Set hour to h. set_minute (m: INTEGER_32) -- Set minute to m. set_second (s: INTEGER_32) -- Set second to s. set_fine_second (s: REAL_64) -- Set fine_second to s set_fractionals (f: REAL_64) -- Set fractional_second to f. note copyright: "Copyright (c) 1984-2009, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 5949 Hollister Ave., 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 TIME_VALUE
Generated by ISE EiffelStudio