Class: Blacklight::Rendering::AbstractStep

Inherits:
Object
  • Object
show all
Defined in:
app/presenters/blacklight/rendering/abstract_step.rb

Direct Known Subclasses

HelperMethod, Join, LinkToFacet, Microdata, Terminator

Instance Attribute Summary collapse

Instance Method Summary collapse

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, options, stack)
  @values = values
  @config = config
  @document = document
  @context = context
  @options = options
  @stack = stack
end

Instance Attribute Details

#configObject (readonly)

Returns the value of attribute config.



15
16
17
# File 'app/presenters/blacklight/rendering/abstract_step.rb', line 15

def config
  @config
end

#contextObject (readonly)

Returns the value of attribute context.



15
16
17
# File 'app/presenters/blacklight/rendering/abstract_step.rb', line 15

def context
  @context
end

#documentObject (readonly)

Returns the value of attribute document.



15
16
17
# File 'app/presenters/blacklight/rendering/abstract_step.rb', line 15

def document
  @document
end

#optionsObject (readonly)

Returns the value of attribute options.



15
16
17
# File 'app/presenters/blacklight/rendering/abstract_step.rb', line 15

def options
  @options
end

#stackObject (readonly)

Returns the value of attribute stack.



15
16
17
# File 'app/presenters/blacklight/rendering/abstract_step.rb', line 15

def stack
  @stack
end

#valuesObject (readonly)

Returns the value of attribute values.



15
16
17
# File 'app/presenters/blacklight/rendering/abstract_step.rb', line 15

def values
  @values
end