# File lib/facets/more/rexmlbuilder.rb, line 118
  def initialize( *options )
    # initialize options
    @options = (Hash === options.last ? options.pop : {} )
    options.each { |o| @options[o] = true }
    # initialize stack
    @stack = []
    # initialize buffer
    @target = builder.new( @options )
  end