Class: Formed::Reflection::HasManyReflection
- Inherits:
-
AssociationReflection
- Object
- AbstractReflection
- MacroReflection
- AssociationReflection
- Formed::Reflection::HasManyReflection
- Defined in:
- lib/formed/reflection.rb
Overview
:nodoc:
Instance Attribute Summary
Attributes inherited from AssociationReflection
#foreign_type, #parent_reflection, #type
Attributes inherited from MacroReflection
#active_form, #name, #options, #plural_name, #scope
Instance Method Summary collapse
Methods inherited from AssociationReflection
#add_as_polymorphic_through, #add_as_source, #add_as_through, #association_foreign_key, #association_primary_key, #belongs_to?, #check_eager_loadable!, #check_validity!, #collect_join_chain, #compute_class, #extensions, #foreign_key, #has_inverse?, #has_one?, #has_scope?, #initialize, #join_table, #nested?, #polymorphic?, #polymorphic_inverse_of, #source_reflection, #through_reflection, #validate?
Methods inherited from MacroReflection
#==, #autosave=, #compute_class, #initialize, #klass, #scope_for
Methods inherited from AbstractReflection
#alias_candidate, #build_association, #build_scope, #chain, #check_validity_of_inverse!, #class_name, #constraints, #inverse_of, #scopes, #strict_loading?, #strict_loading_violation_message, #table_name, #through_reflection?
Constructor Details
This class inherits a constructor from Formed::Reflection::AssociationReflection
Instance Method Details
#association_class ⇒ Object
581 582 583 584 585 586 587 |
# File 'lib/formed/reflection.rb', line 581 def association_class if [:through] Associations::HasManyThroughAssociation else Associations::HasManyAssociation end end |
#collection? ⇒ Boolean
577 578 579 |
# File 'lib/formed/reflection.rb', line 577 def collection? true end |
#macro ⇒ Object
573 574 575 |
# File 'lib/formed/reflection.rb', line 573 def macro :has_many end |