Class: Cfhighlander::Model::ComponentOutput
- Inherits:
-
Object
- Object
- Cfhighlander::Model::ComponentOutput
- Defined in:
- lib/cfhighlander.model.component.rb
Instance Attribute Summary collapse
-
#component ⇒ Object
readonly
Returns the value of attribute component.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(component, name, value) ⇒ ComponentOutput
constructor
A new instance of ComponentOutput.
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
#component ⇒ Object (readonly)
Returns the value of attribute component.
270 271 272 |
# File 'lib/cfhighlander.model.component.rb', line 270 def component @component end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
270 271 272 |
# File 'lib/cfhighlander.model.component.rb', line 270 def name @name end |
#value ⇒ Object (readonly)
Returns the value of attribute value.
270 271 272 |
# File 'lib/cfhighlander.model.component.rb', line 270 def value @value end |