Class: LcpRuby::ModelFactory::AggregateApplicator
- Inherits:
-
Object
- Object
- LcpRuby::ModelFactory::AggregateApplicator
- Defined in:
- lib/lcp_ruby/model_factory/aggregate_applicator.rb
Overview
Backward compatibility — delegates to VirtualColumnApplicator
Instance Method Summary collapse
- #apply! ⇒ Object
-
#initialize(model_class, model_definition) ⇒ AggregateApplicator
constructor
A new instance of AggregateApplicator.
Constructor Details
#initialize(model_class, model_definition) ⇒ AggregateApplicator
Returns a new instance of AggregateApplicator.
5 6 7 |
# File 'lib/lcp_ruby/model_factory/aggregate_applicator.rb', line 5 def initialize(model_class, model_definition) @delegate = VirtualColumnApplicator.new(model_class, model_definition) end |
Instance Method Details
#apply! ⇒ Object
9 10 11 |
# File 'lib/lcp_ruby/model_factory/aggregate_applicator.rb', line 9 def apply! @delegate.apply! end |