# File lib/soap/element.rb, line 157
  def initialize(element, mustunderstand = true, encodingstyle = nil, actor = nil)
    super()
    @type = nil
    @element = element
    @mustunderstand = mustunderstand
    @encodingstyle = encodingstyle
    @actor = actor
    element.parent = self if element
    element.qualified = true
  end