indexing description: "Objects that represent an EiffelVision2 header item for EV_GRID_COLUMN." date: "$Date$" revision: "$Revision$" class EV_GRID_HEADER_ITEM inherit EV_HEADER_ITEM create {EV_GRID_COLUMN_I} make_with_grid_column feature {NONE} -- Initialization make_with_grid_column (a_column: EV_GRID_COLUMN_I) is -- Create and associate `Current' with `a_column' require a_column_not_void: a_column /= Void do default_create column := a_column end feature {NONE} -- Implementation column: EV_GRID_COLUMN_I -- Grid column to which `Current' is associated with. invariant column_not_void: column /= Void parented_whilst_in_grid: column.is_displayed implies column.parent.header = parent end --|---------------------------------------------------------------- --| EiffelVision2: library of reusable components for ISE Eiffel. --| Copyright (C) 1985-2004 Eiffel Software. All rights reserved. --| Duplication and distribution prohibited. May be used only with --| ISE Eiffel, under terms of user license. --| Contact Eiffel Software for any other use. --| --| Interactive Software Engineering Inc. --| dba Eiffel Software --| 356 Storke Road, Goleta, CA 93117 USA --| Telephone 805-685-1006, Fax 805-685-6869 --| Contact us at: http://www.eiffel.com/general/email.html --| Customer support: http://support.eiffel.com --| For latest info on our award winning products, visit: --| http://www.eiffel.com --|----------------------------------------------------------------