indexing description: "[ processor for remove node ]" author: "Steiner Fabrizio" date: "$Date$" revision: "$Revision$" class REMOVE_NODE_PROCESSOR inherit ACTION_PROCESSOR [REMOVE] create make feature -- Access Name: STRING is "remove" -- Name of node to process Mandatory_attributes: ARRAY [STRING] is -- Table of mandatory attributes once Result := << "item_name" >> Result.compare_objects end feature -- Basic operations create_item: REMOVE is -- Process node. do create result.make(pool.get_item (attribute("item_name"))) end end