# File src/Element.rb, line 68
        def handleChildren(method, context)
                context.pushElement
                for child in @children
                        context.nextElement!
                        child.__send__(method, context)
                end
                context.popElement
        end