Class: DOT::DOTNode

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

Overview

node element

Instance Attribute Summary

Attributes inherited from DOTElement

#name, #options

Attributes inherited from DOTSimpleElement

#name

Instance Method Summary collapse

Methods inherited from DOTElement

#each_option, #each_option_pair

Constructor Details

#initialize(params = {}, option_list = NODE_OPTS) ⇒ DOTNode

Returns a new instance of DOTNode.



140
141
142
143
# File 'lib/rdoc/dot/dot.rb', line 140

def initialize( params = {}, option_list = NODE_OPTS )
    super( params, option_list )
    @ports = params['ports'] ? params['ports'] : []
end

Instance Method Details

#<<(thing) ⇒ Object



149
150
151
# File 'lib/rdoc/dot/dot.rb', line 149

def << ( thing )
    @ports << thing
end

#each_portObject



145
146
147
# File 'lib/rdoc/dot/dot.rb', line 145

def each_port
    @ports.each{ |i| yield i }
end

#popObject



157
158
159
# File 'lib/rdoc/dot/dot.rb', line 157

def pop
    @ports.pop
end

#push(thing) ⇒ Object



153
154
155
# File 'lib/rdoc/dot/dot.rb', line 153

def push ( thing )
    @ports.push( thing )
end

#to_s(t = '' ) ⇒ Object



161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# File 'lib/rdoc/dot/dot.rb', line 161

def to_s( t = '' )

    label = @options['shape'] != 'record' && @ports.length == 0 ?
        @options['label'] ?
            t + $tab + "label = \"#{@options['label']}\"\n" :
            '' :
        t + $tab + 'label = "' + " \\\n" +
        t + $tab2 + "#{@options['label']}| \\\n" +
        @ports.collect{ |i|
            t + $tab2 + i.to_s
        }.join( "| \\\n" ) + " \\\n" +
        t + $tab + '"' + "\n"

    t + "#{@name} [\n" +
    @options.to_a.collect{ |i|
        i[1] && i[0] != 'label' ?
            t + $tab + "#{i[0]} = #{i[1]}" : nil
    }.compact.join( ",\n" ) + ( label != '' ? ",\n" : "\n" ) +
    label +
    t + "]\n"
end