Module: Vedeu::Views::Value::ClassMethods Private

Defined in:
lib/vedeu/views/value.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Provides view model class methods for Vedeu::Views.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#collection_klassvoid

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

This method returns an undefined value.



21
22
23
# File 'lib/vedeu/views/value.rb', line 21

def collection_klass
  @collection_klass
end

#deputy_klassvoid

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

This method returns an undefined value.



25
26
27
# File 'lib/vedeu/views/value.rb', line 25

def deputy_klass
  @deputy_klass
end

#entity_klassvoid

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

This method returns an undefined value.



29
30
31
# File 'lib/vedeu/views/value.rb', line 29

def entity_klass
  @entity_klass
end

#parent_klassvoid

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

This method returns an undefined value.



33
34
35
# File 'lib/vedeu/views/value.rb', line 33

def parent_klass
  @parent_klass
end

Instance Method Details

#collection(model) ⇒ void

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

This method returns an undefined value.



37
38
39
# File 'lib/vedeu/views/value.rb', line 37

def collection(model)
  @collection_klass = model
end

#deputy(model) ⇒ void

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

This method returns an undefined value.



43
44
45
# File 'lib/vedeu/views/value.rb', line 43

def deputy(model)
  @deputy_klass = model
end

#entity(model) ⇒ void

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

This method returns an undefined value.



49
50
51
# File 'lib/vedeu/views/value.rb', line 49

def entity(model)
  @entity_klass = model
end

#parent(model) ⇒ void

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

This method returns an undefined value.



55
56
57
# File 'lib/vedeu/views/value.rb', line 55

def parent(model)
  @parent_klass = model
end