Class: Cfhighlander::Model::ComponentOutput

Inherits:
Object
  • Object
show all
Defined in:
lib/cfhighlander.model.component.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(component, name, value) ⇒ ComponentOutput

Returns a new instance of ComponentOutput.



272
273
274
275
276
# File 'lib/cfhighlander.model.component.rb', line 272

def initialize(component, name, value)
  @component = component
  @name = name
  @value = value
end

Instance Attribute Details

#componentObject (readonly)

Returns the value of attribute component.



270
271
272
# File 'lib/cfhighlander.model.component.rb', line 270

def component
  @component
end

#nameObject (readonly)

Returns the value of attribute name.



270
271
272
# File 'lib/cfhighlander.model.component.rb', line 270

def name
  @name
end

#valueObject (readonly)

Returns the value of attribute value.



270
271
272
# File 'lib/cfhighlander.model.component.rb', line 270

def value
  @value
end