note description: "Summary description for {MD_ITERATOR}." author: "" date: "$Date$" revision: "$Revision$" class MD_ITERATOR inherit MD_VISITOR feature -- Visit visit_document (v: MD_DOCUMENT) do visit_composite (v) end visit_id_node (v: MD_ID_NODE) do visit_composite (v) end visit_item (v: MD_ITEM) do visit_composite (v) if attached v.references as refs and attached v.document as doc then across refs as c loop if attached {MD_ID_NODE} doc.id_node (c.item) as l_node then l_node.accept (Current) end end end end visit_property (v: MD_PROPERTY) do end feature -- Visit helper visit_composite (v: MD_COMPOSITE) do across v as c loop c.item.accept (Current) end end note copyright: "2011-2013, Jocelyn Fiat, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 5949 Hollister Ave., Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end