indexing description: "String constants used for Eiffel XML serialization" date: "$Date$" revision: "$Revision$" class EIFFEL_XML_SERIALIZER_DICTIONARY inherit EIFFEL_XML_SERIALIZATION_CONSTANTS feature -- Access Open_integer_field: SYSTEM_STRING is -- " once Result := ("").to_cil end Open_real_field: SYSTEM_STRING is -- " once Result := ("").to_cil end Open_double_field: SYSTEM_STRING is -- " once Result := ("").to_cil end Open_character_field: SYSTEM_STRING is -- " once Result := ("").to_cil end Open_boolean_field: SYSTEM_STRING is -- " once Result := ("").to_cil end Open_pointer_field: SYSTEM_STRING is -- " once Result := ("").to_cil end Open_string_field: SYSTEM_STRING is -- " once Result := ("").to_cil end Open_array_field: SYSTEM_STRING is -- " once Result := ("").to_cil end Open_reference_field: SYSTEM_STRING is -- " once Result := ("").to_cil end Open_none_field: SYSTEM_STRING is -- " once Result := ("").to_cil end Open_xmls_field: SYSTEM_STRING is -- " once Result := ("").to_cil end Quote_space: SYSTEM_STRING is -- "%" " once Result := ("%" ").to_cil end Equal_quote: SYSTEM_STRING is -- "=%"" once Result := ("=%"").to_cil end End_element: SYSTEM_STRING is -- "%">%N" once Result := ("%">").to_cil end New_line: SYSTEM_STRING is -- "%N" once Result := ("%N").to_cil end Empty_string: SYSTEM_STRING is -- "" once Result := ("").to_cil end Tab: SYSTEM_STRING is -- "%T" once Result := ("%T").to_cil end end -- class EIFFEL_XML_SERIALIZER_DICTIONARY