Class DOT::DOTSimpleElement
In: dot/dot.rb
Parent: Object

a root class for any element in dot notation

Methods

new   to_s  

Attributes

name  [RW] 

Public Class methods

[Source]

    # File dot/dot.rb, line 83
83:         def initialize( params = {} )
84:             @label = params['name'] ? params['name'] : ''
85:         end

Public Instance methods

[Source]

    # File dot/dot.rb, line 87
87:         def to_s
88:             @name
89:         end

[Validate]