# File lib_ctrl/rucy/properties.rb, line 107
    def params(*names)
      transaction{
        params = Hash.new
        params.extend(ModifiedCount)
        mc_set(params)
        for name in names
          if (@store.root? name) then
            params[name] = @store[name]
          end
        end
        return params
      }
    end