Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Text Flat Contracts Go to:
note description: "[ Contiguous integer interval that calls an action sequence when it changes. ]" legal: "See notice at end of class." status: "See notice at end of class." keywords: "event, action, linked, list" date: "$Date: 2016-03-02 10:03:36 -0800 (Wed, 02 Mar 2016) $" revision: "$Revision: 98555 $" class interface ACTIVE_INTEGER_INTERVAL create make feature -- Initialization adapt (other: INTEGER_INTERVAL) -- Reset to be the same interval as `other'. feature -- Element change extend (v: INTEGER_32) -- Make sure that interval goes all the way -- to `v' (up or down). put (v: INTEGER_32) -- Make sure that interval goes all the way -- to `v' (up or down). feature -- Resizing resize (min_index, max_index: INTEGER_32) -- Rearrange interval to go from at most -- `min_index' to at least `max_index', -- encompassing previous bounds. resize_exactly (min_index, max_index: INTEGER_32) -- Rearrange interval to go from -- `min_index' to `max_index'. feature -- Duplication copy (other: like Current) -- Reset to be the same interval as `other'. feature -- Event handling change_actions: ACTION_SEQUENCE -- Actions performed when interval changes. ensure not_void: Result /= Void note library: "EiffelBase: Library of reusable components for Eiffel." copyright: "Copyright (c) 1984-2016, 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 ACTIVE_INTEGER_INTERVAL
Classes Clusters Cluster hierarchy Chart Relations Text Flat Contracts Go to:

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