# File lib/cgikit/component.rb, line 401
  def push_values_to_parent
    @associations.each do |key, as|
      if (key != Declaration::ELEMENT_KEY) and api.nil? or \
        (api and (as = api[key]) and \
         (as.settable_in_component?(self) == false)) then
        parent.take_value_for_key(key, value_for_key(key))
      end
    end
  end