# File lib/sax-machine/sax_config.rb, line 11
    def initialize
      # Default value is an empty array
      @top_level_elements = Hash.new { |hash, key| hash[key] = [] }
      @top_level_attributes  = []
      @top_level_element_value = []
      @collection_elements = Hash.new { |hash, key| hash[key] = [] }
      @ancestors = []
    end