Class: DOT::DOTPort
- Inherits:
-
DOTSimpleElement
- Object
- DOTSimpleElement
- DOT::DOTPort
- Defined in:
- lib/puppet/external/dot.rb
Overview
This is used when we build nodes that have shape=record ports don’t have options :)
Instance Attribute Summary collapse
-
#label ⇒ Object
Returns the value of attribute label.
Attributes inherited from DOTSimpleElement
Instance Method Summary collapse
-
#initialize(params = {}) ⇒ DOTPort
constructor
A new instance of DOTPort.
- #to_s ⇒ Object
Constructor Details
#initialize(params = {}) ⇒ DOTPort
Returns a new instance of DOTPort.
171 172 173 174 |
# File 'lib/puppet/external/dot.rb', line 171 def initialize (params = {}) super(params) @name = params['label'] ? params['label'] : '' end |
Instance Attribute Details
#label ⇒ Object
Returns the value of attribute label.
169 170 171 |
# File 'lib/puppet/external/dot.rb', line 169 def label @label end |
Instance Method Details
#to_s ⇒ Object
176 177 178 |
# File 'lib/puppet/external/dot.rb', line 176 def to_s ( @name && @name != "" ? "<#{@name}>" : "" ) + "#{@label}" end |