# File lib/cgikit/component.rb, line 390
  def pull_values_from_parent
    #settable_in_component,  take_value_for_key
    @associations.each do |key, as|
      if api and (as = api[key]) and as.settable_in_component?(self) then
        take_value_for_key(key, as.value)
      else
        take_value_for_key(key, as.value(parent))
      end
    end
  end