Class: DOT::DOTSimpleElement
- Defined in:
- lib/vendor/puppet/external/dot.rb
Overview
a root class for any element in dot notation
Direct Known Subclasses
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(params = {}) ⇒ DOTSimpleElement
constructor
A new instance of DOTSimpleElement.
- #to_s ⇒ Object
Constructor Details
#initialize(params = {}) ⇒ DOTSimpleElement
Returns a new instance of DOTSimpleElement.
121 122 123 |
# File 'lib/vendor/puppet/external/dot.rb', line 121 def initialize (params = {}) @label = params['name'] ? params['name'] : '' end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
119 120 121 |
# File 'lib/vendor/puppet/external/dot.rb', line 119 def name @name end |
Instance Method Details
#to_s ⇒ Object
125 126 127 |
# File 'lib/vendor/puppet/external/dot.rb', line 125 def to_s @name end |