indexing description: "Item to denote a feature with an error."; date: "$Date$"; revision: "$Revision $" class FEATURE_ERROR_TEXT inherit FEATURE_TEXT rename make as feat_make redefine append_to end create make feature -- Initialization make (f: like e_feature; a_line: like line; t: like image) is -- Initialize Current with feat `f', position `p' -- and image `t'. require f_not_void: f /= Void t_not_void: t /= Void do feat_make (f, t) line := a_line ensure set: image = t and then e_feature = f and then line = a_line end; feature -- Access line: INTEGER -- Position of error in feature feature {TEXT_FORMATTER} -- Implementation append_to (text: TEXT_FORMATTER) is -- Append Current class name text to `text'. do text.process_feature_error (Current) end end -- class FEATURE_ERROR_TEXT