indexing description: "XMI code constants" date: "$Date$" revision: "$Revision$" class XMI_CODE create make feature --Initialization make is -- Initialize the constant elements of code. do header := "%N% %%N% %%N% %%N% %%N% %%N% %%N% %%N% %%N% %%N% %%N% %%N% %%N% %]>%N% %%N% % %N% % %N% % ISE EiffelBench%N% % 4.6%N% % %N% % %N% % %N" content_end := " %N% % %N% %%N" file_end := "%N" extensions_start := "%N" extensions_end := "%N" end feature -- Access header: STRING -- Header code of the XMI file. content_start (idref: INTEGER): STRING is -- Code of the beginning of the XMI file content. require ref_consistent: idref > 0 do Result := "%N% % %N% % empty%N% % %N% % %N% % %N% % %N% % %N% % %N% % %N% % %N") ensure result_not_void: Result /= Void end content_end: STRING -- Code of the end of the XMI file content. file_end: STRING -- Code of the end of the XMI file. extensions_start: STRING -- Code of the beginning of the XMI file extensions. extensions_end: STRING -- Code of the end of the XMI file extensions. end -- class XMI_CODE