# File lib_ctrl/rucy/properties.rb, line 102
    def set_map(name, map)
      transaction{
        mc_check(map)
        mc_count_up
        mc_set(map)
        store_map = Hash.new
        for key, value in map
          store_map[key] = value
        end
        @store[name] = store_map
      }
      nil
    end