# File lib/cgikit/key_value_coding.rb, line 48
  def method_missing( name, *args )
    if access_attributes? then
      if args.empty? then
        return stored_value_for_key(name.to_s)
      elsif (name.to_s =~ /([^=]+)=$/) and (args.size == 1) then
        return take_stored_value_for_key($1, args[0])
      end
    end
    super
  end