Class: DOT::DOTSimpleElement

Inherits:
Object
  • Object
show all
Defined in:
lib/rdoc/dot/dot.rb

Overview

a root class for any element in dot notation

Direct Known Subclasses

DOTElement, DOTPort

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params = {}) ⇒ DOTSimpleElement

Returns a new instance of DOTSimpleElement.



83
84
85
# File 'lib/rdoc/dot/dot.rb', line 83

def initialize( params = {} )
    @label = params['name'] ? params['name'] : ''
end

Instance Attribute Details

#nameObject

Returns the value of attribute name



81
82
83
# File 'lib/rdoc/dot/dot.rb', line 81

def name
  @name
end

Instance Method Details

#to_sObject



87
88
89
# File 'lib/rdoc/dot/dot.rb', line 87

def to_s
    @name
end