Class: Mongoid::Relations::Binding
- Includes:
- Threaded::Lifecycle
- Defined in:
- lib/mongoid/relations/binding.rb
Overview
Superclass for all objects that bind relations together.
Direct Known Subclasses
Mongoid::Relations::Bindings::Embedded::In, Mongoid::Relations::Bindings::Embedded::Many, Mongoid::Relations::Bindings::Embedded::One, Mongoid::Relations::Bindings::Referenced::In, Mongoid::Relations::Bindings::Referenced::Many, Mongoid::Relations::Bindings::Referenced::ManyToMany, Mongoid::Relations::Bindings::Referenced::One
Instance Attribute Summary collapse
-
#base ⇒ Object
readonly
Returns the value of attribute base.
-
#metadata ⇒ Object
readonly
Returns the value of attribute metadata.
-
#target ⇒ Object
readonly
Returns the value of attribute target.
Instance Method Summary collapse
-
#initialize(base, target, metadata) ⇒ Binding
constructor
Create the new binding.
Constructor Details
#initialize(base, target, metadata) ⇒ Binding
Create the new binding.
21 22 23 |
# File 'lib/mongoid/relations/binding.rb', line 21 def initialize(base, target, ) @base, @target, @metadata = base, target, end |
Instance Attribute Details
#base ⇒ Object (readonly)
Returns the value of attribute base.
9 10 11 |
# File 'lib/mongoid/relations/binding.rb', line 9 def base @base end |
#metadata ⇒ Object (readonly)
Returns the value of attribute metadata.
9 10 11 |
# File 'lib/mongoid/relations/binding.rb', line 9 def @metadata end |
#target ⇒ Object (readonly)
Returns the value of attribute target.
9 10 11 |
# File 'lib/mongoid/relations/binding.rb', line 9 def target @target end |