Class: Blacklight::Rendering::AbstractStep
- Inherits:
-
Object
- Object
- Blacklight::Rendering::AbstractStep
- Defined in:
- app/presenters/blacklight/rendering/abstract_step.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#config ⇒ Object
readonly
Returns the value of attribute config.
-
#context ⇒ Object
readonly
Returns the value of attribute context.
-
#document ⇒ Object
readonly
Returns the value of attribute document.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#stack ⇒ Object
readonly
Returns the value of attribute stack.
-
#values ⇒ Object
readonly
Returns the value of attribute values.
Instance Method Summary collapse
-
#initialize(values, config, document, context, options, stack) ⇒ AbstractStep
constructor
A new instance of AbstractStep.
Constructor Details
#initialize(values, config, document, context, options, stack) ⇒ AbstractStep
Returns a new instance of AbstractStep.
6 7 8 9 10 11 12 13 |
# File 'app/presenters/blacklight/rendering/abstract_step.rb', line 6 def initialize(values, config, document, context, , stack) @values = values @config = config @document = document @context = context @options = @stack = stack end |
Instance Attribute Details
#config ⇒ Object (readonly)
Returns the value of attribute config.
15 16 17 |
# File 'app/presenters/blacklight/rendering/abstract_step.rb', line 15 def config @config end |
#context ⇒ Object (readonly)
Returns the value of attribute context.
15 16 17 |
# File 'app/presenters/blacklight/rendering/abstract_step.rb', line 15 def context @context end |
#document ⇒ Object (readonly)
Returns the value of attribute document.
15 16 17 |
# File 'app/presenters/blacklight/rendering/abstract_step.rb', line 15 def document @document end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
15 16 17 |
# File 'app/presenters/blacklight/rendering/abstract_step.rb', line 15 def @options end |
#stack ⇒ Object (readonly)
Returns the value of attribute stack.
15 16 17 |
# File 'app/presenters/blacklight/rendering/abstract_step.rb', line 15 def stack @stack end |
#values ⇒ Object (readonly)
Returns the value of attribute values.
15 16 17 |
# File 'app/presenters/blacklight/rendering/abstract_step.rb', line 15 def values @values end |