indexing description: "Pattern converter for formatting literal strings" project: "Project Goanna " library: "log4e" date: "$Date$" revision: "$Revision$" author: "Glenn Maughan " copyright: "Copyright (c) 2001 Glenn Maughan and others" license: "Eiffel Forum Freeware License v1 (see forum.txt)." class L4E_DATE_PATTERN_CONVERTER inherit L4E_PATTERN_CONVERTER rename make as pattern_converter_make export {NONE} pattern_converter_make end creation make feature -- Initialisation make (formatting_info: L4E_FORMATTING_INFO; options: STRING) is -- Initialise with 'formatting_info'. require formatting_info_exists: formatting_info /= Void do pattern_converter_make (formatting_info) end feature {NONE} -- Implementation convert (event: L4E_EVENT): STRING is -- Convert conversion specifiers appropriately. do Result := event.time_stamp.out end end -- L4E_DATE_PATTERN_CONVERTER