indexing description: "[ processor for change_setting node ]" author: "Steiner Fabrizio" date: "$Date$" revision: "$Revision$" class CHANGE_SETTING_NODE_PROCESSOR inherit ACTION_PROCESSOR [CHANGE_SETTING] create make feature -- Access Name: STRING is "change_setting" -- Name of node to process Mandatory_attributes: ARRAY [STRING] is -- Table of mandatory attributes once Result := << "label","value" >> Result.compare_objects end feature -- Basic operations create_item: CHANGE_SETTING is -- Process node. do create result.make(create {SETTING}.make(attribute("label"),attribute_boolean("value"))) end end