note description: "Error when a selection is needed." legal: "See notice at end of class." status: "See notice at end of class."; date: "$Date$"; revision: "$Revision $" class VMRC3 obsolete "NOT DEFINED IN THE BOOK" inherit VMRC redefine build_explain, subcode, is_defined end feature -- Property selection_list: LINKED_LIST [CELL2 [E_FEATURE, CLASS_C]]; -- Info about the features to select subcode: INTEGER = 2; feature -- Access is_defined: BOOLEAN -- Is the error fully defined? do Result := is_class_defined and then selection_list /= Void ensure then valid_selection_list: Result implies selection_list /= Void end feature -- Output build_explain (a_text_formatter: TEXT_FORMATTER) -- Build specific explanation explain for current error -- in `a_text_formatter'. local info: CELL2 [E_FEATURE, CLASS_C]; do from selection_list.start until selection_list.after loop info := selection_list.item; if (info.item2 = Void) then a_text_formatter.add ("In current class: "); else a_text_formatter.add ("In parent "); info.item2.append_name (a_text_formatter); a_text_formatter.add (": "); end; info.item1.append_signature (a_text_formatter); a_text_formatter.add_new_line; selection_list.forth; end; end; feature {COMPILER_EXPORTER} set_selection_list (l: SELECTION_LIST) -- Assign `l' to `selection_list'. require valid_l: l /= Void local info: INHERIT_INFO; cell2: cell2 [E_FEATURE, CLASS_C]; api_feature: E_FEATURE do from create selection_list.make; l.start until l.after loop info := l.item; api_feature := info.a_feature.api_feature (info.a_feature.written_in); if info.parent = Void then create cell2.make (api_feature, Void); else create cell2.make (api_feature, info.parent.parent); end; selection_list.extend (cell2) l.forth end end; note copyright: "Copyright (c) 1984-2006, Eiffel Software" license: "GPL version 2 (see http://www.eiffel.com/licensing/gpl.txt)" licensing_options: "http://www.eiffel.com/licensing" copying: "[ This file is part of Eiffel Software's Eiffel Development Environment. Eiffel Software's Eiffel Development Environment is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2 of the License (available at the URL listed under "license" above). Eiffel Software's Eiffel Development Environment is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Eiffel Software's Eiffel Development Environment; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ]" source: "[ Eiffel Software 356 Storke Road, 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 VMRC3