note description: "[ simple_extended message handler. Inherit from this class if you want to handle A_EXAMPLE_SIMPLE_EXTENDED messages. GENERATED DO NOT MODIFY! ]" author: "Origo Team " date: "$ Date: $" revision: "$ Revision: $" deferred class A_EXAMPLE_SIMPLE_EXTENDED_MESSAGE_HANDLER inherit A_EXAMPLE_SIMPLE_MESSAGE_HANDLER feature -- Message handler handle_simple_extended (a_message: A_EXAMPLE_SIMPLE_EXTENDED_MESSAGE) -- This is the actual message handler that you have to specify -- It is called by the actual message, so assignment attempts are not necessary deferred end simple_extended_message_handler_register (a_message: A_ARANEA_MESSAGE) -- This is the message handler that you need to register. It will call do a_message.handle (Current) end end